Commit aa3fa2d6eabc8a71c4d7922eb428d38146e53968

Authored by Adley
1 parent 620e4a5a
Exists in master

alterações de templetes, mensagens e prints(removidos). Apagando arquivos desnecessários.

Showing 129 changed files with 277 additions and 4486 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 129 files displayed.

wscacicneo/__init__.py
... ... @@ -23,26 +23,27 @@ def main(global_config, **settings):
23 23  
24 24 cfg.include('pyramid_chameleon')
25 25 cfg.add_static_view('static', 'static', cache_max_age=3600)
  26 +
  27 + # Rotas de Configuração
26 28 cfg.add_route('master', 'master')
27 29 cfg.add_route('blankmaster', 'blankmaster')
28 30 cfg.add_route('root', '/')
29 31  
  32 + # Rotas Básicas
30 33 cfg.add_route('home', 'home')
31 34 cfg.add_route('error', 'error')
32   - cfg.add_route('graficop', 'graficop')
33 35 cfg.add_route('notifications', 'notifications')
34   - cfg.add_route('admin', 'admin')
35   - cfg.add_route('proc', 'proc')
36   - cfg.add_route('sistema', 'sistema')
37   - cfg
38 36 cfg.add_route('orgao', 'orgao/cadastro')
  37 +
  38 + # Orgãos
39 39 cfg.add_route('post_orgao', 'post_orgao')
40 40 cfg.add_route('put_orgao', 'put_orgao')
41 41 cfg.add_route('editorgao', 'orgao/editar/{sigla}')
42 42 cfg.add_route('listorgao', 'orgao/lista')
43 43 cfg.add_route('delete_orgao', 'orgao/delete/{sigla}')
44 44 cfg.add_route('base_de_dados', 'orgao/base/{sigla}')
45   - #
  45 +
  46 + # Users
46 47 cfg.add_route('user', 'usuario/cadastro')
47 48 cfg.add_route('post_user', 'post_user')
48 49 cfg.add_route('put_user', 'put_user')
... ... @@ -54,40 +55,21 @@ def main(global_config, **settings):
54 55 cfg.add_route('notify', 'notificacoes/cadastro')
55 56 cfg.add_route('post_notify', 'post_notify')
56 57 cfg.add_route('list_notify', 'notificacoes/lista')
57   - # base orgaos
  58 +
  59 + # Base de Rerpot por Orgãos
58 60 cfg.add_route('create_orgao', 'create/orgao/{nm_orgao}')
59   - # relatorios
  61 +
  62 + # Relatórios
60 63 cfg.add_route('conf_report', 'relatorios/configuracao')
61 64 cfg.add_route('report_itens', 'relatorio/{nm_orgao}/{attr}/{child}')
  65 +
62 66 # Coleta Manual
63 67 cfg.add_route('cadastro_coleta', 'coleta/cadastro')
64 68 cfg.add_route('post_coleta_manual', 'post_coleta_manual')
65   - #
66   - cfg.add_route('list', 'list')
67   - cfg.add_route('gestao', 'gestao')
68   - cfg.add_route('memoria', 'memoria')
69   - cfg.add_route('basico', 'basico')
70   - cfg.add_route('rede', 'rede')
71   - cfg.add_route('escritorio', 'escritorio')
72   - cfg.add_route('hd', 'hd')
73   - cfg.add_route('config', 'config')
74   - cfg.add_route('bot', 'bot')
  69 +
  70 + # Autenticação
75 71 cfg.add_route('login', 'login')
76   - cfg.add_route('loginautentication', 'loginautentication')
77 72 cfg.add_route('logout', 'logout')
78   - cfg.add_route('computador', 'computador')
79   - cfg.add_route('busca', 'busca')
80   - cfg.add_route('gestor', 'gestor')
81   - cfg.add_route('diagnostic', 'diagnostic')
82   - cfg.add_route('cadastro', 'cadastro')
83   - cfg.add_route('sobre', 'sobre')
84   - cfg.add_route('perfil', 'perfil')
85   - cfg.add_route('configapi','configapi')
86   - cfg.add_route('processador','processador')
87   - cfg.add_route('configcoleta','configcoleta')
88   - cfg.add_route('configfav','configfav')
89   - cfg.add_route('questionarcoleta','questionarcoleta')
90   - cfg.add_route('confighome','confighome')
91   - cfg.add_route('db','db')
  73 +
92 74 cfg.scan()
93 75 return cfg.make_wsgi_app()
... ...
wscacicneo/model/coleta_manual.py
... ... @@ -202,6 +202,7 @@ class ColetaManualBase():
202 202 )
203 203  
204 204 content_list = Content()
  205 + content_list.append(data_coleta)
205 206 content_list.append(Win32_Processor)
206 207 content_list.append(OperatingSystem)
207 208 content_list.append(Win32_BIOS)
... ...
wscacicneo/model/orgao.py
... ... @@ -148,7 +148,6 @@ class OrgaoBase():
148 148 Cria base no LB
149 149 """
150 150 response = self.baserest.create(self.lbbase)
151   - #print(response.status_code)
152 151 if response.status_code == 200:
153 152 return self.lbbase
154 153 else:
... ...
wscacicneo/model/reports.py
... ... @@ -27,7 +27,6 @@ class Reports():
27 27 self.rest_url = rest_url
28 28 self.coleta_manual_base = coleta_manual.ColetaManualBase(nm_base, self.rest_url)
29 29 self.base = self.coleta_manual_base.lbbase
30   - print(type(self.base))
31 30 self.documentrest = DocumentREST(self.rest_url, self.base, response_object=True)
32 31  
33 32  
... ... @@ -64,15 +63,10 @@ class Reports():
64 63 """
65 64 Insere dados de coleta
66 65 """
67   - document = self.coleta_to_json()
68   - try:
69   - coleta = self.documentrest.create(document)
70   - except HTTPError as err:
71   - log.error(err.strerror)
72   - return None
73   -
74   - return coleta
  66 + result = self.documentrest.create(document)
75 67  
  68 + return result
  69 +
76 70 def update_coleta(self,id, document):
77 71 """
78 72 Altera dados de coleta
... ... @@ -116,7 +110,6 @@ class Reports():
116 110 for elm in results:
117 111 if child:
118 112 parent = getattr(elm, attr)
119   - print(parent)
120 113 attribute = getattr(parent, child)
121 114 else:
122 115 attribute = getattr(elm, attr)
... ...
wscacicneo/static/WMI.css
... ... @@ -1,4 +0,0 @@
1   -#group-table
2   -{
3   - width: 120px;
4   -}
5 0 \ No newline at end of file
wscacicneo/static/WMI.js
... ... @@ -1,118 +0,0 @@
1   -var regAllContent = document.getElementById('wmi-content').innerText,
2   - regReplace = regAllContent.replace(/'/gi, '"'),
3   - regObjectJson = JSON.parse(regReplace);
4   - regObjectJson = {"reg": regObjectJson},
5   - x = new Array(),
6   - counter = 0,
7   - regAberto = '';
8   -
9   -$.each(regObjectJson.reg, function(k, v){
10   - if (k != "id_reg"){
11   - //aplica os nomes dos grupos na tabela GRUPOS
12   - // x.push({text: k, handler: function(e){
13   - //verifica o contador
14   - // if (counter <= 3){
15   - x.push({"base_name": k});
16   - fields = new Array();
17   - columns = new Array();
18   - //aplica as respectivas strings no array (colocar grid e store)
19   - $.each(v[0], function(key, value){
20   - data = v[0];
21   - fields.push(key);
22   - columns.push({text: key, flex: 1, minWidth: 108, dataIndex: key});
23   - });
24   - // doTable(data, fields, columns);
25   - //}else{
26   - // alert('É permitido abrir apenas 4 tabelas simultaneamente');
27   - // }
28   - // }});
29   - }
30   -});
31   -
32   -$.each(regObjectJson.reg, function(k, v){
33   -});
34   -
35   -function doCombobox(x, data, fields, columns){
36   - //tabelas ExtJS
37   -
38   - // var mainMenu = Ext.create('Ext.menu.Menu', {
39   - // width: 190,
40   - // renderTo: 'group-table',
41   - // floating: false,
42   - // collapsible: true,
43   - // border: true,
44   - // frame: true,
45   - // title: 'Home',
46   - // titleAlign: 'center',
47   - // items: x
48   - // });
49   -
50   - var states = Ext.create('Ext.data.Store', {
51   - fields: ['base_name'],
52   - data : x
53   - // {"abbr":"AL", "name":"Alabama"},
54   - // {"abbr":"AK", "name":"Alaska"},
55   - // {"abbr":"AZ", "name":"Arizona"}
56   -
57   - });
58   -
59   - // Create the combo box, attached to the states data store
60   - Ext.create('Ext.form.ComboBox', {
61   - listeners: {
62   - 'select': function(){
63   - if (counter < 7){
64   - doTable(data, fields, columns);
65   - counter++;
66   - }else{
67   - alert('Só é permitido abrir 7 bases simultaneamente!')
68   - }
69   - }
70   - },
71   - fieldLabel: 'Escolha a Base',
72   - store: states,
73   - queryMode: 'local',
74   - displayField: 'base_name',
75   - // valueField: 'base_name',
76   - renderTo: 'group-table'
77   - });
78   -}
79   -
80   -doCombobox(x, data, fields, columns);
81   -
82   -function doTable(data, fields, columns){
83   - Ext.require([
84   - 'Ext.data.*',
85   - 'Ext.grid.*'
86   - ]);
87   -
88   - Ext.onReady(function(){
89   - var store2 = Ext.create('Ext.data.Store', {
90   - autoLoad: true,
91   - data: data,
92   - fields: fields,
93   - proxy: {
94   - type: 'memory',
95   - reader: {
96   - type: 'json',
97   - }
98   - }
99   - });
100   -
101   -
102   -
103   - var panel = Ext.create('Ext.grid.Panel', {
104   - forceFit: false,
105   - closable: true,
106   - listeners: {
107   - close: function(e){
108   - counter--;
109   - }
110   - },
111   - store: store2,
112   - columns: columns,
113   - renderTo:'reg-table',
114   - width: 750,
115   - height: 85
116   - });
117   - });
118   -}
wscacicneo/static/caciclogo.jpg

9.15 KB

wscacicneo/static/footerbg.png

333 Bytes

wscacicneo/static/headerbg.png

203 Bytes

wscacicneo/static/icons/ajuda.png

4.8 KB

wscacicneo/static/icons/busca.png

3.32 KB

wscacicneo/static/icons/delete.png

280 Bytes

wscacicneo/static/icons/downloads.png

3.43 KB

wscacicneo/static/icons/edit.png

345 Bytes

wscacicneo/static/icons/estatisticas.png

3.1 KB

wscacicneo/static/icons/exportar-pdf.png

31.2 KB

wscacicneo/static/icons/ferramentas.png

6.3 KB

wscacicneo/static/icons/mensagens.png

3.71 KB

wscacicneo/static/icons/relatorios.png

6.05 KB

wscacicneo/static/icons/usuario.png

2.94 KB

wscacicneo/static/js/admin.js
... ... @@ -1,82 +0,0 @@
1   -var painelContent=
2   - Ext.create('Ext.tree.Panel', {
3   - renderTo: Ext.getBody(),
4   - title: '',
5   - root: {
6   - text: 'Administração',
7   - expanded: true,
8   - children: [
9   - {
10   - text: 'Administração de Órgãos',
11   - expanded: true,
12   - children: [
13   - {
14   - text: 'Cadastrar Órgão',
15   - leaf: true
16   - },
17   - {
18   - text: 'Configuração do Bot',
19   - leaf: true
20   - },
21   - {
22   - text: 'Lista de Órgãos',
23   - leaf: true
24   - },
25   - ]
26   - },
27   - {
28   - text: 'Administração de Usuário',
29   - expanded: true,
30   - children: [
31   - {
32   - text: 'Cadastro de Usuário',
33   - leaf: true
34   - },
35   - {
36   - text: 'Lista de Usuários',
37   - leaf: true
38   - },
39   - ]
40   - },
41   - {
42   - text: 'Configurções do sistema',
43   - expanded: true,
44   - children: [
45   - {
46   - text: 'Configurações das Bases de dados',
47   - leaf: true
48   - },
49   - {
50   - text: 'Confirgurações da aplicação',
51   - leaf: true
52   - },
53   - ]
54   - },
55   -
56   - ]
57   - }
58   - });
59   -
60   -admin = Ext.create('Ext.panel.Panel', {
61   - title: 'Painel de Administração',
62   - width: '75%',
63   - frame: true,
64   - layout: 'fit',
65   - collapsible: true,
66   - draggable: true,
67   - border : true,
68   - style: {
69   - margin: '0px auto 15px auto'
70   - },
71   - items: painelContent
72   - });
73   -
74   -Ext.onReady(function(){
75   -
76   - Ext.create('Ext.Container', {
77   - padding: '15px',
78   - items: [admin],
79   - renderTo: 'widgets'
80   - });
81   -
82   -});
wscacicneo/static/js/ajaxurl.js
... ... @@ -1,16 +0,0 @@
1   -function crossDomainPost() {
2   - // Add the iframe with a unique name
3   - var iframe = document.createElement("iframe");
4   - var uniqueString = "nome";
5   - document.body.appendChild(iframe);
6   - iframe.style.display = "none";
7   - iframe.contentWindow.name = uniqueString;
8   -
9   - // construct a form with hidden inputs, targeting the iframe
10   - var form = document.createElement("form");
11   - form.target = uniqueString;
12   - form.action = "http://http://10.1.0.95/Cacic/so";
13   - form.method = "POST";
14   -
15   - form.submit();
16   -}
17 0 \ No newline at end of file
wscacicneo/static/js/analisegraficatabela.js
... ... @@ -1,97 +0,0 @@
1   -w = document.getElementById('widgets');
2   -t = w.textContent;
3   -var regex = new RegExp("'", 'g');
4   -t.replace(regex,'"');
5   -t = t.replace(regex,'"');
6   -JSON.parse(t);
7   -t = JSON.parse(t);
8   -
9   -var store1 = Ext.create('Ext.data.Store', {
10   - storeId:'Simpsons',
11   - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'],
12   - data: t,
13   - proxy: {
14   - type: 'memory',
15   - reader: {
16   - type: 'json',
17   - root: 'items'
18   - }
19   - }
20   -});
21   -
22   -Ext.require('Ext.chart.*');
23   -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']);
24   -
25   -Ext.onReady(function () {
26   -
27   - var chart = Ext.create('Ext.chart.Chart', {
28   - animate: true,
29   - shadow: true,
30   - store: store1,
31   - axes: [{
32   - type: 'Numeric',
33   - position: 'left',
34   - fields: ['data1'],
35   - title: 'Quantidade',
36   - grid: true,
37   - minimum: 0,
38   - maximum: 16
39   - }, {
40   - type: 'Category',
41   - position: 'bottom',
42   - fields: ['a', 'b', 'c'],
43   - title: 'Sistemas Operacionais',
44   - label: {
45   - }
46   - }],
47   - series: [{
48   - type: 'column',
49   - axis: 'left',
50   - gutter: 80,
51   - xField: '',
52   - yField: ['wcount', 'ucount', 'dcount'],
53   - tips: {
54   - trackMouse: true,
55   - width: 74,
56   - height: 38,
57   - renderer: function(storeItem, item) {
58   - this.setTitle(storeItem.get('name'));
59   - this.update(storeItem.get('data1'));
60   - }
61   - },
62   - style: {
63   - fill: '#38B8BF'
64   - }
65   - }]
66   - });
67   -
68   -
69   - var panel1 = Ext.create('widget.panel', {
70   - width: 800,
71   - height: 400,
72   - title: 'Column Chart with Reload - Hits per Month',
73   - renderTo: 'centro',
74   - layout: 'fit',
75   - tbar: [{
76   - text: 'Save Chart',
77   - handler: function() {
78   - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){
79   - if(choice == 'yes'){
80   - chart.save({
81   - type: 'image/png'
82   - });
83   - }
84   - });
85   - }
86   - }, {
87   - text: 'Reload Data',
88   - handler: function() {
89   - // Add a short delay to prevent fast sequential clicks
90   - window.loadTask.delay(100, function() {
91   - store1.loadData(generateData());
92   - });
93   - }
94   - }],
95   - items: chart
96   - });
97   -});
98 0 \ No newline at end of file
wscacicneo/static/js/basico.js
... ... @@ -1,63 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nome',
15   - width: 350,
16   - name: 'matricula'
17   - },
18   - {
19   - fieldLabel: 'Data da instalação',
20   - width: 200,
21   - name: 'email'
22   - },
23   - {
24   - xtype: 'button',
25   - text: 'Enviar',
26   - style : {
27   - margin : " 0px 10px 0px 330px"
28   - }
29   - },
30   - {
31   - xtype: 'button',
32   - text: 'Limpar',
33   - },
34   - ]
35   -});
36   -
37   -painel = Ext.create('Ext.panel.Panel', {
38   - layout: 'fit',
39   - title: 'Software Básico',
40   - width: '75%',
41   - height: 200,
42   - frame: true,
43   - draggable: true,
44   - collapsible: true,
45   - border : true,
46   - style: {
47   - "text-align": 'center',
48   - margin: '0px auto 15px auto'
49   - },
50   - items: table,
51   -});
52   -
53   -Ext.onReady(function(){
54   -
55   -
56   - Ext.create('Ext.Container', {
57   - padding: '15px',
58   - items: [painel],
59   - renderTo: 'widgets'
60   - });
61   -
62   -});
63   -
wscacicneo/static/js/bot.js
... ... @@ -1,53 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Órgão',
15   - width: 250,
16   - name: 'matricula'
17   - },
18   - {
19   - xtype: 'combobox',
20   - name: 'checkbox1',
21   - fieldLabel: 'Coleta',
22   - boxLabel: 'Coleta'
23   - },
24   - ]
25   -});
26   -
27   -painel = Ext.create('Ext.panel.Panel', {
28   - layout: 'fit',
29   - title: 'Memoria',
30   - width: '75%',
31   - height: 200,
32   - frame: true,
33   - draggable: true,
34   - collapsible: true,
35   - border : true,
36   - style: {
37   - "text-align": 'center',
38   - margin: '0px auto 15px auto'
39   - },
40   - items: table,
41   -});
42   -
43   -Ext.onReady(function(){
44   -
45   -
46   - Ext.create('Ext.Container', {
47   - padding: '15px',
48   - items: [painel],
49   - renderTo: 'widgets'
50   - });
51   -
52   -});
53   -
wscacicneo/static/js/botaocentro.js
... ... @@ -1,43 +0,0 @@
1   -Ext.create('Ext.button.Button', {
2   - text: 'Abrir texto',
3   - renderTo: 'centro',
4   - handler: function () {
5   -
6   -
7   - if (window.XMLHttpRequest){
8   -
9   - xmlhttp=new XMLHttpRequest();
10   -
11   - }
12   -
13   - xmlhttp.onreadystatechange=function(){
14   -
15   - if (xmlhttp.readyState==4 && xmlhttp.status==200)
16   -
17   - {
18   -
19   - document.getElementById("centro").innerHTML=xmlhttp.responseText;
20   -
21   - }
22   -
23   - }
24   -
25   - xmlhttp.open("GET",'static/cartoon.xml',true);
26   - xmlhttp.send();
27   -
28   -
29   -
30   -
31   -
32   -
33   -
34   -
35   -
36   - }
37   -
38   -
39   -
40   -
41   -
42   -
43   -});
wscacicneo/static/js/cadastro.js
... ... @@ -1,101 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nome',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Username',
20   - width: 250,
21   - name: 'matricula'
22   - },
23   - {
24   - fieldLabel: 'Senha',
25   - width: 300,
26   - name: 'email'
27   - },
28   - {
29   - fieldLabel: 'Confirmar senha',
30   - width: 300,
31   - name: 'email'
32   - },
33   -
34   - {
35   - fieldLabel: 'E-mail',
36   - name: 'telefone'
37   - },
38   - {
39   - xtype: 'combobox',
40   - name: 'checkbox1',
41   - fieldLabel: 'Orgão',
42   - boxLabel: 'Orgão'
43   - },
44   - {
45   - xtype:'combobox',
46   - fieldLabel: 'Cargo',
47   - width:450,
48   - name: 'cargo'
49   - },
50   - {
51   - fieldLabel: 'Telefone',
52   - xtype:'combobox',
53   - fieldLabel: 'Setor',
54   - width:450,
55   - name: 'setor'
56   - },
57   - {
58   - fieldLabel: 'SIAPE',
59   - width:450,
60   - name: 'setor'
61   - },
62   - {
63   - xtype: 'button',
64   - text: 'Enviar',
65   - style:{
66   - margin: '0px 10px 0px 300px',
67   - }
68   - },
69   - {
70   - xtype: 'button',
71   - text: 'Cancelar',
72   - },
73   - ]
74   -});
75   -
76   -painel = Ext.create('Ext.panel.Panel', {
77   - layout: 'fit',
78   - title: 'Cadastro Usuário',
79   - width: '75%',
80   - height: 320,
81   - frame: true,
82   - draggable: true,
83   - collapsible: true,
84   - border : true,
85   - style: {
86   - "text-align": 'center',
87   - margin: '0px auto 15px auto'
88   - },
89   - items: table,
90   -});
91   -
92   -Ext.onReady(function(){
93   -
94   -
95   - Ext.create('Ext.Container', {
96   - padding: '15px',
97   - items: [painel],
98   - renderTo: 'widgets'
99   - });
100   -
101   -});
wscacicneo/static/js/coleta.json
... ... @@ -1 +0,0 @@
1   -{"results":[{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF46","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2659","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2659","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-122112"},"id_reg":"d4735e3a265e16eee03f59718b9b5d03019c07d8b6c51f90da3a666eec13ab35","Win32_MemoryDevice":{"SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139168[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112[[REG]]SLTI-122112","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"00000000[[REG]]00000000","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"21[[REG]]21","InterleavePosition":"[[REG]]","Manufacturer":"Unknown[[REG]]Unknown","Speed":"1067[[REG]]1067","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"000000000000000000000000000000000000[[REG]]000000000000000000000000000000000000","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BK80G","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"LGA 775","Name":"Intel(R) Core(TM)2 Quad CPU Q8400 @ 2.66GHz","Family":"190","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 23 Stepping 10","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Architecture":"9","Caption":"Intel64 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"21","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2667","ExtClock":"333","DataWidth":"64","SystemName":"SLTI-120715"},"id_reg":"4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce","Win32_MemoryDevice":{"SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Caption":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Memory Device[[REG]]Memory Device[[REG]]Memory Device[[REG]]Memory Device","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE4[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE2[[REG]]....CDROM0","Version":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SerialNumber":"S21PJ50Z229955[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715[[REG]]SLTI-120715","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","PortName":"XPSPort:[[REG]]10.209.50.70[[REG]]FOXIT_PDF:[[REG]]SHRFAX:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","Attributes":"576[[REG]]576[[REG]]64[[REG]]16448[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]hpcPP6de[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer Driver[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Foxit PDF Printer[[REG]]Fax[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]300[[REG]]200[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Base Board","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"073357A4[[REG]]073357B3","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41JV8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136570"},"id_reg":"4b227777d4dd1fc61c6f884f48641d02b4d121d3fd328cb08b5531fcacdabf8a","Win32_MemoryDevice":{"SystemName":"SLTI-136570[[REG]]SLTI-136570","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....CDROM0","Version":"[[REG]][[REG]]","Caption":"[[REG]][[REG]]","Name":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","Model":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SerialNumber":"9VPEAXQ9[[REG]][[REG]]","MediaDescription":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]]","Capacity":"[[REG]][[REG]]","MediaType":"[[REG]][[REG]]","Manufacturer":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570[[REG]]SLTI-136570","Parameters":"[[REG]][[REG]][[REG]]","Name":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"XPSPort:[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]200[[REG]]600[[REG]]600","Attributes":"576[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"Microsoft XPS Document Writer[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Microsoft XPS Document Writer[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41JV8S1/BR108191BJ005L/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9RX","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SPOA-112240"},"id_reg":"ef2d127de37b942baad06145e54b0c619a1f22327b2ebbcfbec78f5564afe39d","Win32_MemoryDevice":{"SystemName":"SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240[[REG]]SPOA-112240","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2FQ"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SPOA-112240[[REG]]SPOA-112240","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9RX","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9JZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112211"},"id_reg":"e7f6c011776e8db7cd330b54174fd76f7d0216b612387a5ffcfb81e6f0919683","Win32_MemoryDevice":{"SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7X2N7"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7","SystemName":"SLTI-112211[[REG]]SLTI-112211[[REG]]SLTI-112211","Parameters":"[[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576","Network":"False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9JZ","Tag":"Base Board","Description":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Caption":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BLF3R","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-122248"},"id_reg":"7902699be42c8a8e46fbbb4501726517e86b22c56a189f7625a6da49081b2451","Win32_MemoryDevice":{"SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0139148[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248[[REG]]SE-122248","Parameters":"[[REG]][[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG903F9LZ","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2992","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112208"},"id_reg":"2c624232cdd221771294dfbb310aca000a0df6ac8b66b696d90ef06fdefb64a3","Win32_MemoryDevice":{"SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","SerialNumber":"6RX7WZER"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]7[[REG]]7[[REG]]7","SystemName":"SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208[[REG]]SLTI-112208","Parameters":"[[REG]][[REG]][[REG]]","Name":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","PortName":"PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70[[REG]]nul:","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]600","Attributes":"68[[REG]]64[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"eDoc Printer[[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint[[REG]]hpcPP6de[[REG]]MS_XPS","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Send To Microsoft OneNote 2010 Driver","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"True[[REG]]False[[REG]]False[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600[[REG]]Enviar para o OneNote 2010","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"PDFCreator[[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG903F9LZ","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 1[[REG]]Physical Memory 3","Version":"[[REG]]","InterleaveDataDepth":"2[[REG]]2","Name":"Physical Memory[[REG]]Physical Memory","Capacity":"4294967296[[REG]]4294967296","TotalWidth":"64[[REG]]64","SerialNumber":"07336A67[[REG]]07336A6D","BankLabel":"BANK 1[[REG]]BANK 3","MemoryType":"0[[REG]]0","InterleavePosition":"1[[REG]]2","Manufacturer":"0194[[REG]]0194","Speed":"1333[[REG]]1333","Caption":"Physical Memory[[REG]]Physical Memory","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"ChannelA-DIMM1[[REG]]ChannelB-DIMM1","Description":"Physical Memory[[REG]]Physical Memory","PositionInRow":"1[[REG]]1","OtherIdentifyingInfo":"[[REG]]","PartNumber":"SH564128FH8N0QHSCG[[REG]]SH564128FH8N0QHSCG","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"64[[REG]]64"},"Win32_BIOS":{"Version":"DELL - 6222004","Caption":"Default System BIOS","SMBIOSMinorVersion":"6","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"DELL - 6222004","Description":"Default System BIOS","SMBIOSBIOSVersion":"A10","BiosCharacteristics":"7","SerialNumber":"41QH8S1","PrimaryBIOS":"True","ReleaseDate":"20111124000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Dell Inc."},"Win32_NetworkAdapter":{},"Win32_Processor":{"SocketDesignation":"CPU 1","Name":"Intel(R) Core(TM) i3-2120 CPU @ 3.30GHz","Family":"206","Level":"6","AddressWidth":"64","ProcessorType":"3","Description":"Intel64 Family 6 Model 42 Stepping 7","Role":"CPU","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF000206A7","Architecture":"9","Caption":"Intel64 Family 6 Model 42 Stepping 7","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"4","UpgradeMethod":"1","DeviceID":"CPU0","L2CacheSize":"512","Revision":"10759","MaxClockSpeed":"3300","ExtClock":"100","DataWidth":"64","SystemName":"SLTI-136537"},"id_reg":"19581e27de7ced00ff1ce50b2047e7a567c76b1cbaebabe5ef03f7c3017bb5b7","Win32_MemoryDevice":{"SystemName":"SLTI-136537[[REG]]SLTI-136537","Caption":"Memory Device[[REG]]Memory Device","Availability":"[[REG]]","InstallDate":"[[REG]]","SystemLevelAddress":"[[REG]]","NumberOfBlocks":"[[REG]]","Access":"[[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1","Description":"Memory Device[[REG]]Memory Device","EndingAddress":"4194303[[REG]]8388607","Purpose":"[[REG]]","Name":"Memory Device[[REG]]Memory Device","BlockSize":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de Entrada USB","Name":"Dispositivo de Entrada USB","Description":"Dispositivo de Entrada USB","Manufacturer":"(Dispositivos padro do sistema)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....CDROM0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"9VPEEZ7Y[[REG]]","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]7[[REG]]7[[REG]]7[[REG]]7[[REG]]1","SystemName":"SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537[[REG]]SLTI-136537","Parameters":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","PortName":"10.209.50.129[[REG]]XPSPort:[[REG]]10.209.50.40[[REG]]SHRFAX:[[REG]]nul:[[REG]]CPW2:","MaxSizeSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","HorizontalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","Attributes":"584[[REG]]576[[REG]]2624[[REG]]16448[[REG]]576[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Comment":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PrintProcessor":"winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint[[REG]]winprint","MaxCopies":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]][[REG]][[REG]]","DriverName":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Microsoft Shared Fax Driver[[REG]]Send To Microsoft OneNote 2010 Driver[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","Shared":"True[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Caption":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"50[[REG]][[REG]]49[[REG]][[REG]][[REG]]6","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Ricoh Aficio MP C2500 PCL6[[REG]]Microsoft XPS Document Writer[[REG]]Kyocera TASKalfa 400ci[[REG]]Fax[[REG]]Enviar para o OneNote 2010[[REG]]CutePDF Writer","JobCountSinceLastReset":"1[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False[[REG]]False[[REG]]False","ShareName":"Ricoh Aficio MP C2500 PCL6[[REG]][[REG]][[REG]][[REG]][[REG]]","VerticalResolution":"600[[REG]]600[[REG]]600[[REG]]200[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"/41QH8S1/BR108191BI00MZ/","Tag":"Base Board","Caption":"Base Board","HostingBoard":"True","Name":"Base Board","Version":"A00","Product":"0HY9JP","Description":"Base Board","Manufacturer":"Dell Inc."},"Win32_Keyboard":{"Caption":"Enhanced (101- or 102-key)","Name":"Enhanced (101- or 102-key)","Description":"Dispositivo de Entrada USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKM50","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SE-120708"},"id_reg":"4a44dc15364204a80fe80e9039455cc1608281820fe2b24f1e5233ade6af1dd5","Win32_MemoryDevice":{"SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Lenovo USB Optical Wheel Mouse (HID)","Name":"Lenovo USB Optical Wheel Mouse (HID)","Description":"Lenovo USB Optical Wheel Mouse (HID)","Manufacturer":"Lenovo"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"2SP15JZ0035648[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7[[REG]]7","SystemName":"SE-120708[[REG]]SE-120708[[REG]]SE-120708[[REG]]SE-120708","Parameters":"[[REG]][[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:[[REG]]IP_10.209.50.70","MaxSizeSupported":"[[REG]][[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68[[REG]]576","Network":"False[[REG]]False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]][[REG]]","CharSetsSupported":"[[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint[[REG]]HPZPP052","MaxCopies":"[[REG]][[REG]][[REG]]","Location":"[[REG]][[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","PaperTypesAvailable":"[[REG]][[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True[[REG]]False","Shared":"False[[REG]]False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer[[REG]]HP Color LaserJet 3600","JobCountSinceLastReset":"0[[REG]]0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]][[REG]]","VerticalResolution":"[[REG]]600[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2","Version":"[[REG]]","InterleaveDataDepth":"[[REG]]","Name":"Memria fsica[[REG]]Memria fsica","Capacity":"2147483648[[REG]]2147483648","TotalWidth":"40960[[REG]]41984","SerialNumber":"[[REG]]","BankLabel":"DIMM 0[[REG]]DIMM 2","MemoryType":"0[[REG]]0","InterleavePosition":"[[REG]]","Manufacturer":"[[REG]]","Speed":"1067[[REG]]1067","Caption":"Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]]","FormFactor":"8[[REG]]8","Model":"[[REG]]","DeviceLocator":"J6G1[[REG]]J6H1","Description":"Memria fsica[[REG]]Memria fsica","PositionInRow":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","PartNumber":"[[REG]]","SKU":"[[REG]]","TypeDetail":"128[[REG]]128","DataWidth":"40960[[REG]]41984"},"Win32_BIOS":{"Version":"LENOVO - 13d","Caption":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMinorVersion":"5","Name":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSMajorVersion":"2","BIOSVersion":"LENOVO - 13d","Description":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","SMBIOSBIOSVersion":"5CKT61AUS","BiosCharacteristics":"7","SerialNumber":"L1BKZD1","PrimaryBIOS":"True","ReleaseDate":"20100201000000.000000+000","SoftwareElementID":"Lenovo ThinkCentre BIOS Ver 5CKT61.0","Manufacturer":"LENOVO"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"LGA 775","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"2660","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"4","NumberOfLogicalProcessors":"4","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"4096","Revision":"5898","MaxClockSpeed":"2660","ExtClock":"333","DataWidth":"32","SystemName":"SLTI-120396"},"id_reg":"4fc82b26aecb47d2868c4efbe3581732a3e7cbcc6c2efb32062c08170a05eeb8","Win32_MemoryDevice":{"SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]2097151[[REG]]4194303[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Dispositivo de interface humana USB","Name":"Dispositivo de interface humana USB","Description":"Dispositivo de interface humana USB","Manufacturer":"(Dispositivos de sistema padro)"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0[[REG]]....PHYSICALDRIVE1[[REG]]....PHYSICALDRIVE2[[REG]]....PHYSICALDRIVE3[[REG]]....PHYSICALDRIVE4","Version":"[[REG]][[REG]][[REG]][[REG]]","Caption":"[[REG]][[REG]][[REG]][[REG]]","Name":"[[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]]","Model":"[[REG]][[REG]][[REG]][[REG]]","PartNumber":"[[REG]][[REG]][[REG]][[REG]]","SerialNumber":"1SUF5JQ0432076[[REG]][[REG]][[REG]][[REG]]","MediaDescription":"[[REG]][[REG]][[REG]][[REG]]","Description":"[[REG]][[REG]][[REG]][[REG]]","OtherIdentifyingInfo":"[[REG]][[REG]][[REG]][[REG]]","Capacity":"[[REG]][[REG]][[REG]][[REG]]","MediaType":"[[REG]][[REG]][[REG]][[REG]]","Manufacturer":"[[REG]][[REG]][[REG]][[REG]]","SKU":"[[REG]][[REG]][[REG]][[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"7[[REG]]1[[REG]]7","SystemName":"SLTI-120396[[REG]]SLTI-120396[[REG]]SLTI-120396","Parameters":"[[REG]][[REG]]","Name":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PortName":"OLFModem[[REG]]PDFCreator:[[REG]]XPSPort:","MaxSizeSupported":"[[REG]][[REG]]","HorizontalResolution":"[[REG]]600[[REG]]600","Attributes":"64[[REG]]64[[REG]]68","Network":"False[[REG]]False[[REG]]False","Comment":"Imprimir neste dispositivo para enviar um fax.[[REG]]eDoc Printer[[REG]]","CharSetsSupported":"[[REG]][[REG]]","Description":"[[REG]][[REG]]","PrintProcessor":"olfprint[[REG]]WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]][[REG]]","Location":"[[REG]][[REG]]","DriverName":"OLFAXDRV[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","PaperTypesAvailable":"[[REG]][[REG]]","Default":"False[[REG]]False[[REG]]True","Shared":"False[[REG]]False[[REG]]False","MimeTypesSupported":"[[REG]][[REG]]","Caption":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","Availability":"[[REG]][[REG]]","InstallDate":"[[REG]][[REG]]","CurrentCharSet":"[[REG]][[REG]]","Local":"True[[REG]]True[[REG]]True","Direct":"False[[REG]]False[[REG]]False","LanguagesSupported":"[[REG]][[REG]]","WorkOffline":"False[[REG]]False[[REG]]False","SpoolEnabled":"True[[REG]]True[[REG]]True","DeviceID":"Symantec Fax Starter Edition[[REG]]PDFCreator[[REG]]Microsoft XPS Document Writer","JobCountSinceLastReset":"0[[REG]]0[[REG]]0","ServerName":"[[REG]][[REG]]","MarkingTechnology":"[[REG]][[REG]]","KeepPrintedJobs":"False[[REG]]False[[REG]]False","ShareName":"[[REG]]PDFCreator[[REG]]","VerticalResolution":"[[REG]]600[[REG]]600","MaxNumberUp":"[[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"NONE","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","ConfigOptions":"JP 1: 1-2 Normal[[COMMA]] 2-3 Clear CMOS/Boot Block Recovery","Version":"NONE","Product":"LENOVO","Description":"Placa base","Manufacturer":"LENOVO"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Dispositivo de interface humana USB"}},{"Win32_PhysicalMemory":{"Tag":"Physical Memory 0[[REG]]Physical Memory 2[[REG]]Physical Memory 4","Version":"[[REG]][[REG]]","InterleaveDataDepth":"2[[REG]]2[[REG]]0","Name":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","Capacity":"1073741824[[REG]]1073741824[[REG]]4194304","TotalWidth":"64[[REG]]64[[REG]]2","SerialNumber":"[[REG]][[REG]]","MemoryType":"0[[REG]]0[[REG]]11","InterleavePosition":"1[[REG]]2[[REG]]0","Manufacturer":"[[REG]][[REG]]","Speed":"800[[REG]]800[[REG]]","Caption":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","InstallDate":"[[REG]][[REG]]","FormFactor":"8[[REG]]8[[REG]]0","Model":"[[REG]][[REG]]","DeviceLocator":"XMM1[[REG]]XMM3[[REG]]SYSTEM ROM","Description":"Memria fsica[[REG]]Memria fsica[[REG]]Memria fsica","PositionInRow":"1[[REG]]1[[REG]]1","OtherIdentifyingInfo":"[[REG]][[REG]]","PartNumber":"[[REG]][[REG]]","SKU":"[[REG]][[REG]]","TypeDetail":"128[[REG]]128[[REG]]4096","DataWidth":"64[[REG]]64[[REG]]2"},"Win32_BIOS":{"Version":"HPQOEM - 20080801","Caption":"Default System BIOS","SMBIOSMinorVersion":"5","Name":"Default System BIOS","SMBIOSMajorVersion":"2","BIOSVersion":"HPQOEM - 20080801","Description":"Default System BIOS","SMBIOSBIOSVersion":"786F2 v01.51","BiosCharacteristics":"7","SerialNumber":"BRG904F0ZH","PrimaryBIOS":"True","ReleaseDate":"20080801000000.000000+000","SoftwareElementID":"Default System BIOS","Manufacturer":"Hewlett-Packard"},"Win32_NetworkAdapter":{},"Win32_Processor":{"Version":"Modelo 7[[COMMA]] Nvel 10","SocketDesignation":"XU1 PROCESSOR","Name":"Processador Intel Pentium III Xeon","Family":"176","Level":"6","AddressWidth":"32","ProcessorType":"3","Description":"x86 Family 6 Model 23 Stepping 10","Role":"CPU","L2CacheSpeed":"1974","Manufacturer":"GenuineIntel","ProcessorId":"BFEBFBFF0001067A","Caption":"x86 Family 6 Model 23 Stepping 10","Availability":"3","NumberOfCores":"2","NumberOfLogicalProcessors":"2","UpgradeMethod":"9","DeviceID":"CPU0","L2CacheSize":"6144","Revision":"5898","MaxClockSpeed":"2992","ExtClock":"1333","DataWidth":"32","SystemName":"SLTI-112183"},"id_reg":"6b51d431df5d7f141cbececcf79edf3dd861c3b4069f0b11661a3eefacbba918","Win32_MemoryDevice":{"SystemName":"SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183[[REG]]SLTI-112183","Caption":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","Availability":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","InstallDate":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","SystemLevelAddress":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","NumberOfBlocks":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Access":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","DeviceID":"Memory Device 0[[REG]]Memory Device 1[[REG]]Memory Device 2[[REG]]Memory Device 3[[REG]]Memory Device 4[[REG]]Memory Device 5[[REG]]Memory Device 6[[REG]]Memory Device 7[[REG]]Memory Device 8","Description":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","EndingAddress":"2097151[[REG]]0[[REG]]2097151[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]0[[REG]]4194303","Purpose":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","Name":"Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria[[REG]]Dispositivo de memria","BlockSize":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]","PNPDeviceID":"[[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]][[REG]]"},"Win32_PointingDevice":{"Caption":"Mouse compatvel com PS/2","Name":"Mouse compatvel com PS/2","Description":"Mouse compatvel com PS/2","Manufacturer":"Microsoft"},"Win32_PhysicalMedia":{"Tag":"....PHYSICALDRIVE0","Version":"[[REG]]","Caption":"[[REG]]","Name":"[[REG]]","InstallDate":"[[REG]]","Model":"[[REG]]","PartNumber":"[[REG]]","SerialNumber":"6RX7VX3V","MediaDescription":"[[REG]]","Description":"[[REG]]","OtherIdentifyingInfo":"[[REG]]","Capacity":"[[REG]]","MediaType":"[[REG]]","Manufacturer":"[[REG]]","SKU":"[[REG]]"},"Win32_DesktopMonitor":{},"Win32_Printer":{"PaperSizesSupported":"1[[REG]]1","SystemName":"SLTI-112183[[REG]]SLTI-112183","Parameters":"[[REG]]","Name":"PDFCreator[[REG]]CutePDF Writer","PortName":"PDFCreator:[[REG]]CPW2:","MaxSizeSupported":"[[REG]]","HorizontalResolution":"600[[REG]]600","Attributes":"68[[REG]]576","Network":"False[[REG]]False","Comment":"eDoc Printer[[REG]]","CharSetsSupported":"[[REG]]","Description":"[[REG]]","PrintProcessor":"WinPrint[[REG]]WinPrint","MaxCopies":"[[REG]]","Location":"[[REG]]","DriverName":"PDFCreator[[REG]]CutePDF Writer","PaperTypesAvailable":"[[REG]]","Default":"True[[REG]]False","Shared":"False[[REG]]False","MimeTypesSupported":"[[REG]]","Caption":"PDFCreator[[REG]]CutePDF Writer","Availability":"[[REG]]","InstallDate":"[[REG]]","CurrentCharSet":"[[REG]]","Local":"True[[REG]]True","Direct":"False[[REG]]False","LanguagesSupported":"[[REG]]","WorkOffline":"False[[REG]]False","SpoolEnabled":"True[[REG]]True","DeviceID":"PDFCreator[[REG]]CutePDF Writer","JobCountSinceLastReset":"0[[REG]]0","ServerName":"[[REG]]","MarkingTechnology":"[[REG]]","KeepPrintedJobs":"False[[REG]]False","ShareName":"PDFCreator[[REG]]","VerticalResolution":"600[[REG]]600","MaxNumberUp":"[[REG]]","PNPDeviceID":"[[REG]]"},"Win32_ComputerSystem":{},"Win32_BaseBoard":{"SerialNumber":"BRG904F0ZH","Tag":"Base Board","Caption":"Placa base","HostingBoard":"True","Name":"Placa base","Product":"2820h","Description":"Placa base","Manufacturer":"Hewlett-Packard"},"Win32_Keyboard":{"Caption":"Aperfeioado (101 ou 102 teclas)","Name":"Aperfeioado (101 ou 102 teclas)","Description":"Teclado padro com 101/102 teclas ou Microsoft Natural PS/2 Keyboard"}}],"result_count":12}
2 0 \ No newline at end of file
wscacicneo/static/js/computador.js
... ... @@ -1,72 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nº Patrimônio',
15   - width:300,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Fabricante',
20   - xtype:'combobox',
21   - width: 300,
22   - name: 'tipo'
23   - },
24   - {
25   - fieldLabel: 'Marca',
26   - width:300,
27   - name: 'marca'
28   - },
29   - {
30   - xtype: 'button',
31   - text: 'Enviar',
32   - style:{
33   - margin: '0px 10px 0px 270px',
34   - }
35   - },
36   - {
37   - xtype: 'button',
38   - text: 'Limpar',
39   - style:{
40   - margin: '0px 10px 0px 0px',
41   - }
42   - },
43   - ]
44   -});
45   -
46   -painel = Ext.create('Ext.panel.Panel', {
47   - layout: 'fit',
48   - title: 'Computador',
49   - width: 425,
50   - height: 150,
51   - frame: true,
52   - draggable: true,
53   - collapsible: true,
54   - border : true,
55   - style: {
56   - "text-align": 'center',
57   - margin: '0px auto 15px auto'
58   - },
59   - items: table,
60   -});
61   -
62   -Ext.onReady(function(){
63   -
64   -
65   - Ext.create('Ext.Container', {
66   - padding: '15px',
67   - items: [painel],
68   - renderTo: 'widgets'
69   - });
70   -
71   -});
72   -
wscacicneo/static/js/config.js
... ... @@ -1,128 +0,0 @@
1   -/*GRAFICO DE ORGÃOS*/
2   -
3   -
4   -Ext.define('User',{
5   - extend: 'Ext.data.Model',
6   - fields: [ 'codigo', 'orgao', 'date' ]
7   -});
8   -
9   -var userStore = Ext.create('Ext.data.Store', {
10   - model: 'User',
11   - data: [
12   - { codigo: 'Gráficos'},
13   - { codigo: 'Favoritos'},
14   - { codigo: 'Pesquisa Rápida'},
15   - { codigo: 'Notificações'},
16   - { codigo: 'Base de Dados'},
17   - ]
18   -});
19   -
20   -table = Ext.create('Ext.grid.Panel', {
21   - store: userStore,
22   - width: 400,
23   - height: 200,
24   - // title: 'Application Users',
25   - columns: [
26   - {
27   - text: 'Opções',
28   - width: 550,
29   - sortable: true,
30   - hideable: false,
31   - dataIndex: 'codigo'
32   - },
33   - ]
34   -});
35   -
36   -tabela = Ext.create('Ext.panel.Panel', {
37   - layout: 'fit',
38   - title: 'Configurações da Aplicação',
39   - width: '75%',
40   - height: 165,
41   - frame: true,
42   - draggable: true,
43   - collapsible: true,
44   - border : true,
45   - style: {
46   - "text-align": 'center',
47   - margin: '0px auto 15px auto'
48   - },
49   - items: table,
50   -});
51   -
52   -Ext.onReady(function(){
53   -
54   -
55   - Ext.create('Ext.Container', {
56   - padding: '15px',
57   - items: [tabela],
58   - renderTo: 'widgets'
59   - });
60   -
61   -});
62   -
63   -
64   -// **** FILTRO DE ITENS ****
65   -
66   -Ext.define('User1',{
67   - extend: 'Ext.data.Model',
68   - fields: ['chbox', 'item' ]
69   -});
70   -
71   -var userStore1 = Ext.create('Ext.data.Store', {
72   - model: 'User1',
73   - data: [
74   - { item: 'Relatórios'},
75   - { item: 'Meu Perfil'},
76   - ]
77   -});
78   -
79   -table1 = Ext.create('Ext.grid.Panel', {
80   - store: userStore1,
81   - width: 400,
82   - height: 200,
83   - // title: 'Application Users',
84   - columns: [
85   - {
86   - text: 'Pesquisar',
87   - width: 500,
88   - sortable: true,
89   - hideable: false,
90   - dataIndex: 'item'
91   - },
92   - {
93   - text: 'Remover',
94   - width: 100,
95   - sortable: true,
96   - hideable: false,
97   - dataIndex: 'excluir'
98   - },
99   -
100   - ]
101   -});
102   -
103   -tabela1 = Ext.create('Ext.panel.Panel', {
104   - layout: 'fit',
105   - title: 'Favoritos',
106   - width: '75%',
107   - frame: true,
108   - draggable: true,
109   - collapsible: true,
110   - border : true,
111   - style: {
112   - "text-align": 'center',
113   - margin: '0px auto 15px auto'
114   - },
115   - items: table1,
116   -});
117   -
118   -Ext.onReady(function(){
119   -
120   -
121   - Ext.create('Ext.Container', {
122   - padding:'15px',
123   - items: [tabela1],
124   - renderTo: 'widgets'
125   - });
126   -
127   -});
128   -
wscacicneo/static/js/configapi.js
... ... @@ -1,66 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - xtype:'combobox',
15   - fieldLabel: 'Fonte',
16   - width:300,
17   - name: 'fonte'
18   - },
19   - {
20   - xtype:'combobox',
21   - fieldLabel: 'Estilo de cores',
22   - width: 250,
23   - name: 'matricula'
24   - },
25   - {
26   - xtype: 'button',
27   - text: 'Confirmar',
28   - style:{
29   - margin: '0px 10px 0px 300px',
30   - }
31   - },
32   - {
33   - xtype: 'button',
34   - text: 'Cancelar',
35   - },
36   -
37   - ]
38   -});
39   -
40   -painel = Ext.create('Ext.panel.Panel', {
41   - layout: 'fit',
42   - title: 'Configuração da Aplicação',
43   - width: '75%',
44   - height: 200,
45   - frame: true,
46   - draggable: true,
47   - collapsible: true,
48   - border : true,
49   - style: {
50   - "text-align": 'center',
51   - margin: '0px auto 15px auto'
52   - },
53   - items: table,
54   -});
55   -
56   -Ext.onReady(function(){
57   -
58   -
59   - Ext.create('Ext.Container', {
60   - padding: '15px',
61   - items: [painel],
62   - renderTo: 'widgets'
63   - });
64   -
65   -});
66   -
wscacicneo/static/js/configcoleta.js
... ... @@ -1,154 +0,0 @@
1   -// **** FILTRO DE ITENS ****
2   -
3   -Ext.define('User1',{
4   - extend: 'Ext.data.Model',
5   - fields: ['chbox', 'item' ]
6   -});
7   -
8   -var userStore1 = Ext.create('Ext.data.Store', {
9   - model: 'User1',
10   - data: [
11   - { item: 'Computador'},
12   - { item: 'Processador'},
13   - { item: 'Memórias'},
14   - { item: 'Hard Disk (HD)'},
15   - { item: 'Sistemas Operacionais'},
16   - { item: 'Suítes de Escritórios'},
17   - { item: 'Ativos de Redes'},
18   - { item: 'Softwares Básicos'},
19   - ]
20   -});
21   -
22   -table1 = Ext.create('Ext.grid.Panel', {
23   - store: userStore1,
24   - width: 400,
25   - height: 200,
26   - // title: 'Application Users',
27   - columns: [
28   - {
29   - text: 'Item',
30   - width: 500,
31   - sortable: true,
32   - hideable: false,
33   - dataIndex: 'item'
34   - },
35   - ]
36   -});
37   -
38   -tabela1 = Ext.create('Ext.panel.Panel', {
39   - layout: 'fit',
40   - title: 'Campos da Coleta',
41   - width: '75%',
42   - frame: true,
43   - draggable: true,
44   - collapsible: true,
45   - border : true,
46   - style: {
47   - "text-align": 'center',
48   - margin: '0px auto 15px auto'
49   - },
50   - items: table1,
51   -});
52   -
53   -
54   - Ext.create('Ext.Container', {
55   - padding:'15px',
56   - items: [tabela1],
57   - renderTo: 'widgets'
58   - });
59   -
60   -
61   -
62   -//------------------------------------
63   -
64   -
65   -Ext.define('User2',{
66   - extend: 'Ext.data.Model',
67   - fields: ['chbox', 'item' ]
68   -});
69   -
70   -var userStore2 = Ext.create('Ext.data.Store', {
71   - model: 'User2',
72   - data: [
73   - { item: 'Computador'},
74   - { item: 'Processador'},
75   - { item: 'memórias'},
76   - { item: 'memórias'},
77   -
78   - ]
79   -});
80   -
81   -table2 = Ext.create('Ext.grid.Panel', {
82   - store: userStore2,
83   - width: 400,
84   - // title: 'Application Users',
85   - columns: [
86   - {
87   - text: 'Item',
88   - width: 490,
89   - sortable: true,
90   - hideable: false,
91   - dataIndex: 'item'
92   - },
93   - ],
94   - bbar:[
95   - {
96   - xtype: 'button',
97   - text: 'Gerar Relatório',
98   - style:{
99   - margin: '0px 10px 0px 200px',
100   - }
101   - },
102   - {
103   - xtype: 'button',
104   - text: 'Limpar Campos',
105   - },{
106   - xtype: 'button',
107   - text: 'Cancelar',
108   - },
109   - ]
110   -});
111   -
112   -tabela2 =Ext.create('Ext.panel.Panel', {
113   - layout: 'fit',
114   - title: 'Campos Selecionados',
115   - width: '75%',
116   - frame: true,
117   - draggable: true,
118   - collapsible: true,
119   - border : true,
120   - style: {
121   - "text-align": 'center',
122   - margin: '0px auto 15px auto'
123   - },
124   - items: [table2,
125   - {
126   - xtype: 'button',
127   - text: 'Gerar Relatório',
128   - style:{
129   - margin: '0px 10px 0px 0px',
130   - }
131   - },
132   - {
133   - xtype: 'button',
134   - text: 'Limpar Campos',
135   - },{
136   - xtype: 'button',
137   - text: 'Cancelar',
138   - },
139   -]
140   -
141   -});
142   -
143   -Ext.onReady(function(){
144   -
145   -
146   - Ext.create('Ext.Container', {
147   - padding:'15px',
148   - items: [tabela2],
149   - renderTo: 'widgets'
150   - });
151   -
152   -});
153   -
154   -
wscacicneo/static/js/configfav.js
... ... @@ -1,130 +0,0 @@
1   -// **** FILTRO DE ITENS ****
2   -
3   -Ext.define('User1',{
4   - extend: 'Ext.data.Model',
5   - fields: ['chbox', 'item' ]
6   -});
7   -
8   -var userStore1 = Ext.create('Ext.data.Store', {
9   - model: 'User1',
10   - data: [
11   - { item: 'Relatórios'},
12   - { item: 'Gestão de Orgãos'},
13   - { item: 'Notificações'},
14   - { item: 'Meu Perfil'},
15   - { item: 'Configurar API'},
16   - ]
17   -});
18   -
19   -table1 = Ext.create('Ext.grid.Panel', {
20   - store: userStore1,
21   - width: 400,
22   - height: 200,
23   - // title: 'Application Users',
24   - columns: [
25   - {
26   - text: 'Item',
27   - width: 500,
28   - sortable: true,
29   - hideable: false,
30   - dataIndex: 'item'
31   - },
32   - ]
33   -});
34   -
35   -tabela1 = Ext.create('Ext.panel.Panel', {
36   - layout: 'fit',
37   - title: 'Lista de Funcionalidade',
38   - width: '75%',
39   - frame: true,
40   - draggable: true,
41   - collapsible: true,
42   - border : true,
43   - style: {
44   - "text-align": 'center',
45   - margin: '0px auto 15px auto'
46   - },
47   - items: table1,
48   -});
49   -
50   -
51   - Ext.create('Ext.Container', {
52   - padding:'15px',
53   - items: [tabela1],
54   - renderTo: 'widgets'
55   - });
56   -
57   -
58   -
59   -//------------------------------------
60   -
61   -
62   -Ext.define('User2',{
63   - extend: 'Ext.data.Model',
64   - fields: ['chbox', 'item' ]
65   -});
66   -
67   -var userStore2 = Ext.create('Ext.data.Store', {
68   - model: 'User2',
69   - data: [
70   - { item: 'Relatório'},
71   - { item: 'Meu Perfil'},
72   -
73   - ]
74   -});
75   -
76   -table2 = Ext.create('Ext.grid.Panel', {
77   - store: userStore2,
78   - width: 400,
79   - // title: 'Application Users',
80   - columns: [
81   - {
82   - text: 'Item',
83   - width: 490,
84   - sortable: true,
85   - hideable: false,
86   - dataIndex: 'item'
87   - },
88   - ],
89   - bbar:[
90   - {
91   - xtype: 'button',
92   - text: 'Confirmar',
93   - style:{
94   - margin: '0px 10px 0px 320px',
95   - }
96   - },
97   - ,{
98   - xtype: 'button',
99   - text: 'Cancelar',
100   - },
101   - ]
102   -});
103   -
104   -tabela2 =Ext.create('Ext.panel.Panel', {
105   - layout: 'fit',
106   - title: 'Favoritos',
107   - width: '75%',
108   - frame: true,
109   - draggable: true,
110   - collapsible: true,
111   - border : true,
112   - style: {
113   - "text-align": 'center',
114   - margin: '0px auto 15px auto'
115   - },
116   - items: table2,
117   -});
118   -
119   -Ext.onReady(function(){
120   -
121   -
122   - Ext.create('Ext.Container', {
123   - padding:'15px',
124   - items: [tabela2],
125   - renderTo: 'widgets'
126   - });
127   -
128   -});
129   -
130   -
wscacicneo/static/js/confighome.js
... ... @@ -1,64 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Numero de atividades visíveis',
15   - width:200,
16   - name: 'ultimas'
17   - },
18   - {
19   - fieldLabel: 'Numero da coleta do grafico',
20   - width: 250,
21   - name: 'matricula'
22   - },
23   - {
24   - xtype: 'button',
25   - text: 'Confirmar',
26   - style:{
27   - margin: '0px 10px 0px 300px',
28   - }
29   - },
30   - {
31   - xtype: 'button',
32   - text: 'Cancelar',
33   - },
34   -
35   - ]
36   -});
37   -
38   -painel = Ext.create('Ext.panel.Panel', {
39   - layout: 'fit',
40   - title: 'Configurações da Pagina Inicial',
41   - width: '75%',
42   - height: 200,
43   - frame: true,
44   - draggable: true,
45   - collapsible: true,
46   - border : true,
47   - style: {
48   - "text-align": 'center',
49   - margin: '0px auto 15px auto'
50   - },
51   - items: table,
52   -});
53   -
54   -Ext.onReady(function(){
55   -
56   -
57   - Ext.create('Ext.Container', {
58   - padding: '15px',
59   - items: [painel],
60   - renderTo: 'widgets'
61   - });
62   -
63   -});
64   -
wscacicneo/static/js/dashboard.js
... ... @@ -1,58 +0,0 @@
1   -// **** FILTRO DE ITENS ****
2   -
3   -Ext.define('User1',{
4   - extend: 'Ext.data.Model',
5   - fields: ['chbox', 'item' ]
6   -});
7   -
8   -var userStore1 = Ext.create('Ext.data.Store', {
9   - model: 'User1',
10   - data: [
11   - { item: 'Coletas 1120, 1131, 1149, estão desatualizadas'},
12   - { item: 'Coleta 1123, Incorreta Número de computadores inconsistente'},
13   - { item: 'Coleta não efetuada: coleta 1151 está atualizada'},
14   - ]
15   -});
16   -
17   -table1 = Ext.create('Ext.grid.Panel', {
18   - store: userStore1,
19   - width: 400,
20   - height: 200,
21   - // title: 'Application Users',
22   - columns: [
23   - {
24   - text: 'Item',
25   - width: 500,
26   - sortable: true,
27   - hideable: false,
28   - dataIndex: 'item'
29   - },
30   - ]
31   -});
32   -
33   -tabela1 = Ext.create('Ext.panel.Panel', {
34   - layout: 'fit',
35   - title: 'Notificações',
36   - width: '75%',
37   - frame: true,
38   - draggable: true,
39   - collapsible: true,
40   - border : true,
41   - style: {
42   - "text-align": 'center',
43   - margin: '0px auto 15px auto'
44   - },
45   - items: table1,
46   -});
47   -
48   -Ext.onReady(function(){
49   -
50   -
51   - Ext.create('Ext.Container', {
52   - padding:'15px',
53   - items: [tabela1],
54   - renderTo: 'widgets'
55   - });
56   -
57   -});
58   -
wscacicneo/static/js/db.js
... ... @@ -1,83 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 1000,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - xtype: 'combobox',
15   - name: 'checkbox1',
16   - fieldLabel: 'Órgão',
17   - boxLabel: 'Orgão'
18   - },
19   - {
20   - fieldLabel: 'Senha da base',
21   - name: 'senha',
22   - },
23   - {
24   - fieldLabel: 'Confirmar senha',
25   - name: 'email'
26   - },
27   - {
28   - fieldLabel: 'Nome da Base',
29   - name: 'telefone'
30   - },
31   - {
32   - xtype:'combobox',
33   - fieldLabel: 'Remover campo',
34   - name: 'cargo'
35   - },
36   - {
37   - fieldLabel: 'MAC',
38   - name: 'setor'
39   - },
40   - {
41   - fieldLabel: 'App a evitar',
42   - name: 'setor'
43   - },
44   - {
45   - xtype: 'button',
46   - text: 'Enviar',
47   - style:{
48   - margin: '0px 10px 0px 0px',
49   - }
50   - },
51   - {
52   - xtype: 'button',
53   - text: 'Cancelar',
54   - },
55   - ]
56   -});
57   -
58   -painel = Ext.create('Ext.panel.Panel', {
59   - layout: 'fit',
60   - title: 'Configurar Base de Dados',
61   - width: 500,
62   - height: 280,
63   - frame: true,
64   - draggable: true,
65   - collapsible: true,
66   - border : true,
67   - style: {
68   - "text-align": 'center',
69   - margin: '0px auto 15px auto'
70   - },
71   - items: table,
72   -});
73   -
74   -Ext.onReady(function(){
75   -
76   -
77   - Ext.create('Ext.Container', {
78   - padding: '15px',
79   - items: [painel],
80   - renderTo: 'widgets'
81   - });
82   -
83   -});
wscacicneo/static/js/diagnostic.js
... ... @@ -1,48 +0,0 @@
1   -var painelContent=
2   - "Diagnóstico 1" + "<br>" +
3   - "Diagnóstico 2" + "<br>" +
4   - "Diagnóstico 3" + "<br>" +
5   - "Diagnóstico 4" + "<br>" +
6   - "Diagnóstico 5" + "<br>" +
7   - "Diagnóstico 6" + "<br>" +
8   - "Diagnóstico 7" + "<br>" +
9   - "Diagnóstico 8" + "<br>" +
10   - "<hr>" +
11   - "Diagnóstico 1" + "<br>" +
12   - "Diagnóstico 2" + "<br>" +
13   - "Diagnóstico 3" + "<br>" +
14   - "Diagnóstico 4" + "<br>" +
15   - "Diagnóstico 5" + "<br>" +
16   - "Diagnóstico 6" + "<br>" +
17   - "Diagnóstico 7" + "<br>" +
18   - "Diagnóstico 8" + "<br>" +
19   - "<hr>" +
20   - "Diagnóstico 1" + "<br>" +
21   - "Diagnóstico 2" + "<br>" +
22   - "Diagnóstico 3" + "<br>" +
23   - "Diagnóstico 4" + "<br>" +
24   - "Diagnóstico 5" ;
25   -
26   -relatorio = Ext.create('Ext.panel.Panel', {
27   - layout: 'fit',
28   - title: 'Relatórios',
29   - width: '75%',
30   - frame: true,
31   - collapsible: true,
32   - draggable: true,
33   - border : true,
34   - style: {
35   - margin: '0px auto 15px auto'
36   - },
37   - html: painelContent
38   - });
39   -
40   -Ext.onReady(function(){
41   -
42   - Ext.create('Ext.Container', {
43   - padding: '15px',
44   - items: [relatorio],
45   - renderTo: 'widgets'
46   - });
47   -
48   -});
wscacicneo/static/js/editarorgao.js
... ... @@ -1,81 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nome',
15   - width: 450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Sigla',
20   - width: 250,
21   - name: 'Sigla'
22   - },
23   - {
24   - fieldLabel: 'E-mail',
25   - width: 350,
26   - name: 'email'
27   - },
28   - {
29   - fieldLabel: 'Telefone',
30   - width: 250,
31   - name: 'telefone'
32   - },
33   - {
34   - fieldLabel: 'Endereço',
35   - width: 450,
36   - name: 'telefone'
37   - },
38   - {
39   - fieldLabel: 'Coleta',
40   - xtype: 'combobox',
41   - width: 250,
42   - name: 'telefone'
43   - },
44   -
45   - {
46   - xtype: 'button',
47   - text: 'Editar',
48   - style:{
49   - margin: '0px 0px 0px 450px',
50   - },
51   - },
52   - ]
53   -});
54   -
55   -painel = Ext.create('Ext.panel.Panel', {
56   - layout: 'fit',
57   - title: 'Editar Orgão',
58   - width: '75%',
59   - height: 250,
60   - frame: true,
61   - draggable: true,
62   - collapsible: true,
63   - border : true,
64   - style: {
65   - "text-align": 'center',
66   - margin: '0px auto 15px auto'
67   - },
68   - items: table,
69   -});
70   -
71   -Ext.onReady(function(){
72   -
73   -
74   - Ext.create('Ext.Container', {
75   - padding: '15px',
76   - items: [painel],
77   - renderTo: 'widgets'
78   - });
79   -
80   -});
81   -
wscacicneo/static/js/escritorio.js
... ... @@ -1,70 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nome',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Data da intalação',
20   - width: 250,
21   - name: 'matricula'
22   - },
23   - {
24   - xtype:'combobox',
25   - fieldLabel: 'Tipo',
26   - width: 300,
27   - name: 'email'
28   - },
29   - {
30   - xtype: 'button',
31   - text: 'Enviar',
32   - style : {
33   - margin : " 0px 10px 0px 330px"
34   - }
35   - },
36   - {
37   - xtype: 'button',
38   - text: 'Limpar',
39   - },
40   -
41   - ]
42   -});
43   -
44   -painel = Ext.create('Ext.panel.Panel', {
45   - layout: 'fit',
46   - title: 'Swites De Escritórios',
47   - width: '75%',
48   - height: 155,
49   - frame: true,
50   - draggable: true,
51   - collapsible: true,
52   - border : true,
53   - style: {
54   - "text-align": 'center',
55   - margin: '0px auto 15px auto'
56   - },
57   - items: table,
58   -});
59   -
60   -Ext.onReady(function(){
61   -
62   -
63   - Ext.create('Ext.Container', {
64   - padding: '15px',
65   - items: [painel],
66   - renderTo: 'widgets'
67   - });
68   -
69   -});
70   -
wscacicneo/static/js/gestao.js
... ... @@ -1,65 +0,0 @@
1   -
2   -// **** FILTRO DE ITENS ****
3   -
4   -Ext.define('User1',{
5   - extend: 'Ext.data.Model',
6   - fields: ['chbox', 'item' ]
7   -});
8   -
9   -var userStore1 = Ext.create('Ext.data.Store', {
10   - model: 'User1',
11   - data: [
12   - { item: 'Computador'},
13   - { item: 'Processador'},
14   - { item: 'Memórias'},
15   - { item: 'Hard Disk (HD)'},
16   - { item: 'Sistemas Operacionais'},
17   - { item: 'Suítes de Escritórios'},
18   - { item: 'Ativos de Redes'},
19   - { item: 'Softwares Básicos'},
20   - ]
21   -});
22   -
23   -table1 = Ext.create('Ext.grid.Panel', {
24   - store: userStore1,
25   - width: 400,
26   - height: 200,
27   - // title: 'Application Users',
28   - columns: [
29   - {
30   - text: 'Item',
31   - width: 500,
32   - sortable: true,
33   - hideable: false,
34   - dataIndex: 'item'
35   - },
36   - ]
37   -});
38   -
39   -tabela1 = Ext.create('Ext.panel.Panel', {
40   - layout: 'fit',
41   - title: 'Gerar Relatório',
42   - width: '75%',
43   - frame: true,
44   - draggable: true,
45   - collapsible: true,
46   - border : true,
47   - style: {
48   - "text-align": 'center',
49   - margin: '0px auto 15px auto'
50   - },
51   - items: table1,
52   -});
53   -
54   -Ext.onReady(function(){
55   -
56   -
57   - Ext.create('Ext.Container', {
58   - padding:'15px',
59   - items: [tabela1],
60   - renderTo: 'widgets'
61   - });
62   -
63   -});
64   -
65   -
wscacicneo/static/js/gestor.js
... ... @@ -1,47 +0,0 @@
1   -var painelContent=
2   - Ext.create('Ext.tree.Panel', {
3   - renderTo: Ext.getBody(),
4   - title: '',
5   - root: {
6   - text: 'Gestor',
7   - expanded: true,
8   - children: [
9   - {
10   - text: 'Coleta automática',
11   - leaf: true
12   - },
13   - {
14   - text: 'Coleta manual',
15   - leaf: true
16   - },
17   - {
18   - text: 'Questionar coleta',
19   - leaf: true
20   - },
21   - ]
22   - }
23   - });
24   -
25   -admin = Ext.create('Ext.panel.Panel', {
26   - title: 'Gestor de Orgãos',
27   - width: '75%',
28   - frame: true,
29   - layout: 'fit',
30   - collapsible: true,
31   - draggable: true,
32   - border : true,
33   - style: {
34   - margin: '0px auto 15px auto'
35   - },
36   - items: painelContent
37   - });
38   -
39   -Ext.onReady(function(){
40   -
41   - Ext.create('Ext.Container', {
42   - padding: '15px',
43   - items: [admin],
44   - renderTo: 'widgets'
45   - });
46   -
47   -});
wscacicneo/static/js/gridajax.js
... ... @@ -1,54 +0,0 @@
1   -Ext.require([
2   - 'Ext.data.*',
3   - 'Ext.grid.*'
4   -]);
5   -
6   -Ext.onReady(function(){
7   - Ext.define('Book',{
8   - extend: 'Ext.data.Model',
9   - proxy: {
10   - type: 'ajax',
11   - reader: 'xml'
12   - },
13   - fields: [
14   -
15   - // set up the fields mapping into the xml doc
16   - // The first needs mapping, the others are very basic
17   - {name: 'Author', mapping: '@author.name'},
18   - 'Title', 'Manufacturer', 'ProductGroup'
19   - ]
20   - });
21   -
22   - // create the Data Store
23   - var store = Ext.create('Ext.data.Store', {
24   - model: 'Book',
25   - autoLoad: true,
26   - proxy: {
27   - // load using HTTP
28   - type: 'ajax',
29   - url: 'sheldon.xml',
30   - // the return will be XML, so lets set up a reader
31   - reader: {
32   - type: 'xml',
33   - // records will have an "Item" tag
34   - record: 'Item',
35   - idProperty: 'ASIN',
36   - totalRecords: '@total'
37   - }
38   - }
39   - });
40   -
41   - // create the grid
42   - Ext.create('Ext.grid.Panel', {
43   - store: store,
44   - columns: [
45   - {text: "Author", flex: 1, dataIndex: 'Author'},
46   - {text: "Title", width: 180, dataIndex: 'Title'},
47   - {text: "Manufacturer", width: 115, dataIndex: 'Manufacturer'},
48   - {text: "Product Group", width: 100, dataIndex: 'ProductGroup'}
49   - ],
50   - renderTo:'centro',
51   - width: 540,
52   - height: 200
53   - });
54   -});
wscacicneo/static/js/hd.js
... ... @@ -1,78 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Marca',
15   - width: 300,
16   - name: 'matricula'
17   - },
18   -
19   - {
20   - fieldLabel: 'Tamanho',
21   - width: 200,
22   - name: 'matricula'
23   - },
24   -
25   -
26   - {
27   - xtype:'combobox',
28   - fieldLabel: 'Tipo',
29   - width: 300,
30   - name: 'email'
31   - },
32   - {
33   - fieldLabel: 'Idade',
34   - width: 200,
35   - name: 'idade'
36   - },
37   - {
38   - xtype: 'button',
39   - text: 'Enviar',
40   - style : {
41   - margin : " 0px 10px 0px 300px"
42   - }
43   - },
44   - {
45   - xtype: 'button',
46   - text: 'Limpar',
47   - },
48   -
49   - ]
50   -});
51   -
52   -painel = Ext.create('Ext.panel.Panel', {
53   - layout: 'fit',
54   - title: 'HD',
55   - width: '75%',
56   - height: 200,
57   - frame: true,
58   - draggable: true,
59   - collapsible: true,
60   - border : true,
61   - style: {
62   - "text-align": 'center',
63   - margin: '0px auto 15px auto'
64   - },
65   - items: table,
66   -});
67   -
68   -Ext.onReady(function(){
69   -
70   -
71   - Ext.create('Ext.Container', {
72   - padding: '15px',
73   - items: [painel],
74   - renderTo: 'widgets'
75   - });
76   -
77   -});
78   -
wscacicneo/static/js/home.js
... ... @@ -1,110 +0,0 @@
1   -var painelContent=
2   - "<br>"+
3   - "Coleta 123658 - 12/12/2012" + "<br>" + "<hr />" +
4   - "Coleta 115613 - 13/12/2012" + "<br>" +"<hr />" +
5   - "Questionamento da coleta 115613 - 14/12/2012" + "<br>" +"<hr />" +
6   - "Notificação da coleta 123658 - 20/12/2012" + "<br>" +"<hr />" +
7   - "Relatório gerado da coleta 115613 - 25/12/2012" + "<br>" +"<hr />"
8   -
9   -admin = Ext.create('Ext.panel.Panel', {
10   - title: 'Ultimas Atividades',
11   - width: '75%',
12   - height : 175,
13   - frame: true,
14   - layout: 'fit',
15   - collapsible: true,
16   - draggable: true,
17   - border : true,
18   - titleAlign:'center',
19   - style: {
20   - margin: '0px auto 15px auto'
21   - },
22   - html: painelContent
23   - });
24   -
25   -Ext.onReady(function(){
26   -
27   - Ext.create('Ext.Container', {
28   - padding: '15px',
29   - items: [admin],
30   - renderTo: 'widgets'
31   - });
32   -
33   -});
34   -
35   -// **** GRAFICO DE PIZZA ****
36   -
37   -var store = Ext.create('Ext.data.JsonStore', {
38   - fields: ['name', 'data'],
39   - data: [
40   - { 'name': 'dado1', 'data': 2 },
41   - { 'name': 'dado2', 'data': 2 },
42   - { 'name': 'dado3', 'data': 4 },
43   - { 'name': 'dado4', 'data': 10 }
44   -]});
45   -
46   -var chart = Ext.create('Ext.chart.Chart', {
47   - layout: 'fit',
48   - width: 500,
49   - height: 350,
50   - animate: true,
51   - store: store,
52   - theme: 'Base:gradients',
53   - shadow: true,
54   - legend: {
55   - position: 'right'
56   - },
57   - series: [{
58   - type: 'pie',
59   - angleField: 'data',
60   - showInLegend: true,
61   - tips: {
62   - trackMouse: true,
63   - width: 140,
64   - height: 28,
65   - renderer: function(storeItem, item) {
66   - // calculate and display percentage on hover
67   - var total = 0;
68   - store.each(function(rec) {
69   - total += rec.get('data');
70   - });
71   - this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data') / total * 100) + '%');
72   - }
73   - },
74   - highlight: {
75   - segment: {
76   - margin: 20
77   - }
78   - },
79   - label: {
80   - field: 'name',
81   - display: 'rotate',
82   - contrast: true,
83   - font: '18px Arial'
84   - }
85   - }]
86   -});
87   -
88   -widget = Ext.create('Ext.panel.Panel', {
89   - layout: 'fit',
90   - title: 'Gráfico',
91   - width: '75%',
92   - frame: true,
93   - draggable: true,
94   - collapsible: true,
95   - border : true,
96   - style: {
97   - "text-align": 'center',
98   - margin: '-35px auto 15px auto'
99   - },
100   - items: chart
101   -});
102   -
103   -Ext.onReady(function(){
104   - Ext.create('Ext.Container', {
105   - padding: '15px',
106   - items: [widget],
107   - renderTo: 'widgets'
108   - });
109   -});
110   -
wscacicneo/static/js/home2.js
... ... @@ -1,38 +0,0 @@
1   -Ext.require([
2   - 'Ext.data.*',
3   - 'Ext.grid.*'
4   -]);
5   -
6   -Ext.onReady(function(){
7   -
8   - Ext.create('Ext.data.JsonPStore', {
9   - storeId:'baseboard',
10   - fields:['Win32_BaseBoard.Product', 'Win32_BaseBoard.Manufacturer', 'Win32_BaseBoard.Version', 'Win32_BaseBoard.SerialNumber'],
11   - autoLoad: true,
12   - model: 'User',
13   - proxy: {
14   - type: 'jsonp',
15   - url : 'http://10.209.8.39/wscserver/rest/coleta',
16   - callbackKey: 'callback',
17   - reader: {
18   - type: 'json',
19   - root: 'results',
20   - totalProperty: 'result_count',
21   - }
22   - }
23   - });
24   -
25   - Ext.create('Ext.grid.Panel', {
26   - title: 'BaseBoard',
27   - store: Ext.data.StoreManager.lookup('baseboard'),
28   - columns: [
29   - { header: 'Product', dataIndex: 'Win32_BaseBoard.Product', flex: 1 },
30   - { header: 'Manufacturer', dataIndex: 'Win32_BaseBoard.Manufacturer', flex: 1 },
31   - { header: 'Version', dataIndex: 'Win32_BaseBoard.Version', flex: 1 },
32   - { header: 'SerialNumber', dataIndex: 'Win32_BaseBoard.SerialNumber', flex: 1 }
33   - ],
34   - width: "50%",
35   - draggable: true,
36   - renderTo: Ext.getBody()
37   - });
38   -});
wscacicneo/static/js/jquery.min.js
... ... @@ -1,4 +0,0 @@
1   -/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
2   -!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)
3   -},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=L.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var Q=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,R=["Top","Right","Bottom","Left"],S=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)},T=/^(?:checkbox|radio)$/i;!function(){var a=l.createDocumentFragment(),b=a.appendChild(l.createElement("div")),c=l.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||l,d=c.documentElement,e=c.body,a.pageX=b.clientX+(d&&d.scrollLeft||e&&e.scrollLeft||0)-(d&&d.clientLeft||e&&e.clientLeft||0),a.pageY=b.clientY+(d&&d.scrollTop||e&&e.scrollTop||0)-(d&&d.clientTop||e&&e.clientTop||0)),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=W.test(e)?this.mouseHooks:V.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=l),3===a.target.nodeType&&(a.target=a.target.parentNode),g.filter?g.filter(a,f):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==_()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===_()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&n.nodeName(this,"input")?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?Z:$):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={isDefaultPrevented:$,isPropagationStopped:$,isImmediatePropagationStopped:$,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=Z,a&&a.preventDefault&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=Z,a&&a.stopPropagation&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=Z,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.focusinBubbles||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=L.access(d,b);e||d.addEventListener(a,c,!0),L.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=L.access(d,b)-1;e?L.access(d,b,e):(d.removeEventListener(a,c,!0),L.remove(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(g in a)this.on(g,b,c,a[g],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=$;else if(!d)return this;return 1===e&&(f=d,d=function(a){return n().off(a),f.apply(this,arguments)},d.guid=f.guid||(f.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=$),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ab=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ib={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1></$2>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=qb[0].contentDocument,b.write(),b.close(),c=sb(a,b),qb.detach()),rb[a]=c),c}var ub=/^margin/,vb=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)};function xb(a,b,c){var d,e,f,g,h=a.style;return c=c||wb(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),vb.test(g)&&ub.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function yb(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement("div"),f=l.createElement("div");if(f.style){f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===f.style.backgroundClip,e.style.cssText="border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute",e.appendChild(f);function g(){f.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",f.innerHTML="",d.appendChild(e);var g=a.getComputedStyle(f,null);b="1%"!==g.top,c="4px"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement("div"));return c.style.cssText=f.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",f.style.width="1px",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),b}})}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var zb=/^(none|table(?!-c[ea]).+)/,Ab=new RegExp("^("+Q+")(.*)$","i"),Bb=new RegExp("^([+-])=("+Q+")","i"),Cb={position:"absolute",visibility:"hidden",display:"block"},Db={letterSpacing:"0",fontWeight:"400"},Eb=["Webkit","O","Moz","ms"];function Fb(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Eb.length;while(e--)if(b=Eb[e]+c,b in a)return b;return d}function Gb(a,b,c){var d=Ab.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Hb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ib(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xb(a,b,f),(0>e||null==e)&&(e=a.style[b]),vb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Hb(a,b,c||(g?"border":"content"),d,f)+"px"}function Jb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",tb(d.nodeName)))):(e=S(d),"none"===c&&e||L.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Fb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=Bb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Fb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xb(a,b,d)),"normal"===e&&b in Db&&(e=Db[b]),""===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?zb.test(n.css(a,"display"))&&0===a.offsetWidth?n.swap(a,Cb,function(){return Ib(a,b,d)}):Ib(a,b,d):void 0},set:function(a,c,d){var e=d&&wb(a);return Gb(a,c,d?Hb(a,b,d,"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),n.cssHooks.marginRight=yb(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},xb,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ub.test(a)||(n.cssHooks[a+b].set=Gb)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Jb(this,!0)},hide:function(){return Jb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Kb(a,b,c,d,e){return new Kb.prototype.init(a,b,c,d,e)}n.Tween=Kb,Kb.prototype={constructor:Kb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Kb.propHooks[this.prop];return a&&a.get?a.get(this):Kb.propHooks._default.get(this)},run:function(a){var b,c=Kb.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Kb.propHooks._default.set(this),this}},Kb.prototype.init.prototype=Kb.prototype,Kb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Kb.propHooks.scrollTop=Kb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=Kb.prototype.init,n.fx.step={};var Lb,Mb,Nb=/^(?:toggle|show|hide)$/,Ob=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pb=/queueHooks$/,Qb=[Vb],Rb={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Ob.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&Ob.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sb(){return setTimeout(function(){Lb=void 0}),Lb=n.now()}function Tb(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ub(a,b,c){for(var d,e=(Rb[b]||[]).concat(Rb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Vb(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?L.get(a,"olddisplay")||tb(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Nb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?tb(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=L.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ub(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function Wb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xb(a,b,c){var d,e,f=0,g=Qb.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Lb||Sb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:Lb||Sb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wb(k,j.opts.specialEasing);g>f;f++)if(d=Qb[f].call(j,a,k,j.opts))return d;return n.map(k,Ub,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(Xb,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Rb[c]=Rb[c]||[],Rb[c].unshift(b)},prefilter:function(a,b){b?Qb.unshift(a):Qb.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=Xb(this,n.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=L.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Tb(b,!0),a,d,e)}}),n.each({slideDown:Tb("show"),slideUp:Tb("hide"),slideToggle:Tb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Lb=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),Lb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){Mb||(Mb=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(Mb),Mb=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a=l.createElement("input"),b=l.createElement("select"),c=b.appendChild(l.createElement("option"));a.type="checkbox",k.checkOn=""!==a.value,k.optSelected=c.selected,b.disabled=!0,k.optDisabled=!c.disabled,a=l.createElement("input"),a.value="t",a.type="radio",k.radioValue="t"===a.value}();var Yb,Zb,$b=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return J(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Zb:Yb)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))
4   -},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Zb={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=$b[b]||n.find.attr;$b[b]=function(a,b,d){var e,f;return d||(f=$b[b],$b[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$b[b]=f),e}});var _b=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute("tabindex")||_b.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var ac=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ac," ").indexOf(b)>=0)return!0;return!1}});var bc=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(bc,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(d.value,f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var cc=n.now(),dc=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&n.error("Invalid XML: "+a),b};var ec,fc,gc=/#.*$/,hc=/([?&])_=[^&]*/,ic=/^(.*?):[ \t]*([^\r\n]*)$/gm,jc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,kc=/^(?:GET|HEAD)$/,lc=/^\/\//,mc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,nc={},oc={},pc="*/".concat("*");try{fc=location.href}catch(qc){fc=l.createElement("a"),fc.href="",fc=fc.href}ec=mc.exec(fc.toLowerCase())||[];function rc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function sc(a,b,c,d){var e={},f=a===oc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function tc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function uc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function vc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:fc,type:"GET",isLocal:jc.test(ec[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":pc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?tc(tc(a,n.ajaxSettings),b):tc(n.ajaxSettings,a)},ajaxPrefilter:rc(nc),ajaxTransport:rc(oc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=ic.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||fc)+"").replace(gc,"").replace(lc,ec[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=mc.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===ec[1]&&h[2]===ec[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(ec[3]||("http:"===ec[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),sc(nc,k,b,v),2===t)return v;i=k.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!kc.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(dc.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=hc.test(d)?d.replace(hc,"$1_="+cc++):d+(dc.test(d)?"&":"?")+"_="+cc++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader("If-Modified-Since",n.lastModified[d]),n.etag[d]&&v.setRequestHeader("If-None-Match",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+pc+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=sc(oc,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=uc(k,v,f)),u=vc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(n.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var wc=/%20/g,xc=/\[\]$/,yc=/\r?\n/g,zc=/^(?:submit|button|image|reset|file)$/i,Ac=/^(?:input|select|textarea|keygen)/i;function Bc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||xc.test(a)?d(a,e):Bc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Bc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Bc(c,a[c],b,e);return d.join("&").replace(wc,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Ac.test(this.nodeName)&&!zc.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(yc,"\r\n")}}):{name:b.name,value:c.replace(yc,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Cc=0,Dc={},Ec={0:200,1223:204},Fc=n.ajaxSettings.xhr();a.ActiveXObject&&n(a).on("unload",function(){for(var a in Dc)Dc[a]()}),k.cors=!!Fc&&"withCredentials"in Fc,k.ajax=Fc=!!Fc,n.ajaxTransport(function(a){var b;return k.cors||Fc&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Cc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Dc[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Ec[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Dc[g]=b("abort");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=n("<script>").prop({async:!0,charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&e("error"===a.type?404:200,a.type)}),l.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Gc=[],Hc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Gc.pop()||n.expando+"_"+cc++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Hc.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Hc.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Hc,"$1"+e):b.jsonp!==!1&&(b.url+=(dc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Gc.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||l;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var Ic=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&Ic)return Ic.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=n.trim(a.slice(h)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e,dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,f||[a.responseText,b,a])}),this},n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};var Jc=a.document.documentElement;function Kc(a){return n.isWindow(a)?a:9===a.nodeType&&a.defaultView}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d=this[0],e={top:0,left:0},f=d&&d.ownerDocument;if(f)return b=f.documentElement,n.contains(b,d)?(typeof d.getBoundingClientRect!==U&&(e=d.getBoundingClientRect()),c=Kc(f),{top:e.top+c.pageYOffset-b.clientTop,left:e.left+c.pageXOffset-b.clientLeft}):e},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===n.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(d=a.offset()),d.top+=n.css(a[0],"borderTopWidth",!0),d.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-d.top-n.css(c,"marginTop",!0),left:b.left-d.left-n.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||Jc;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Jc})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(b,c){var d="pageYOffset"===c;n.fn[b]=function(e){return J(this,function(b,e,f){var g=Kc(b);return void 0===f?g?g[c]:b[e]:void(g?g.scrollTo(d?a.pageXOffset:f,d?f:a.pageYOffset):b[e]=f)},b,e,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=yb(k.pixelPosition,function(a,c){return c?(c=xb(a,b),vb.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return J(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var Lc=a.jQuery,Mc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Mc),b&&a.jQuery===n&&(a.jQuery=Lc),n},typeof b===U&&(a.jQuery=a.$=n),n});
wscacicneo/static/js/jquery.validate.min.js
... ... @@ -1,4 +0,0 @@
1   -/*! jQuery Validation Plugin - v1.12.0 - 4/1/2014
2   - * http://jqueryvalidation.org/
3   - * Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */
4   -!function(a){a.extend(a.fn,{validate:function(b){if(!this.length)return void(b&&b.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing."));var c=a.data(this[0],"validator");return c?c:(this.attr("novalidate","novalidate"),c=new a.validator(b,this[0]),a.data(this[0],"validator",c),c.settings.onsubmit&&(this.validateDelegate(":submit","click",function(b){c.settings.submitHandler&&(c.submitButton=b.target),a(b.target).hasClass("cancel")&&(c.cancelSubmit=!0),void 0!==a(b.target).attr("formnovalidate")&&(c.cancelSubmit=!0)}),this.submit(function(b){function d(){var d;return c.settings.submitHandler?(c.submitButton&&(d=a("<input type='hidden'/>").attr("name",c.submitButton.name).val(a(c.submitButton).val()).appendTo(c.currentForm)),c.settings.submitHandler.call(c,c.currentForm,b),c.submitButton&&d.remove(),!1):!0}return c.settings.debug&&b.preventDefault(),c.cancelSubmit?(c.cancelSubmit=!1,d()):c.form()?c.pendingRequest?(c.formSubmitted=!0,!1):d():(c.focusInvalid(),!1)})),c)},valid:function(){var b,c;return a(this[0]).is("form")?b=this.validate().form():(b=!0,c=a(this[0].form).validate(),this.each(function(){b=c.element(this)&&b})),b},removeAttrs:function(b){var c={},d=this;return a.each(b.split(/\s/),function(a,b){c[b]=d.attr(b),d.removeAttr(b)}),c},rules:function(b,c){var d,e,f,g,h,i,j=this[0];if(b)switch(d=a.data(j.form,"validator").settings,e=d.rules,f=a.validator.staticRules(j),b){case"add":a.extend(f,a.validator.normalizeRule(c)),delete f.messages,e[j.name]=f,c.messages&&(d.messages[j.name]=a.extend(d.messages[j.name],c.messages));break;case"remove":return c?(i={},a.each(c.split(/\s/),function(b,c){i[c]=f[c],delete f[c],"required"===c&&a(j).removeAttr("aria-required")}),i):(delete e[j.name],f)}return g=a.validator.normalizeRules(a.extend({},a.validator.classRules(j),a.validator.attributeRules(j),a.validator.dataRules(j),a.validator.staticRules(j)),j),g.required&&(h=g.required,delete g.required,g=a.extend({required:h},g),a(j).attr("aria-required","true")),g.remote&&(h=g.remote,delete g.remote,g=a.extend(g,{remote:h})),g}}),a.extend(a.expr[":"],{blank:function(b){return!a.trim(""+a(b).val())},filled:function(b){return!!a.trim(""+a(b).val())},unchecked:function(b){return!a(b).prop("checked")}}),a.validator=function(b,c){this.settings=a.extend(!0,{},a.validator.defaults,b),this.currentForm=c,this.init()},a.validator.format=function(b,c){return 1===arguments.length?function(){var c=a.makeArray(arguments);return c.unshift(b),a.validator.format.apply(this,c)}:(arguments.length>2&&c.constructor!==Array&&(c=a.makeArray(arguments).slice(1)),c.constructor!==Array&&(c=[c]),a.each(c,function(a,c){b=b.replace(new RegExp("\\{"+a+"\\}","g"),function(){return c})}),b)},a.extend(a.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:!0,errorContainer:a([]),errorLabelContainer:a([]),onsubmit:!0,ignore:":hidden",ignoreTitle:!1,onfocusin:function(a){this.lastActive=a,this.settings.focusCleanup&&!this.blockFocusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass),this.addWrapper(this.errorsFor(a)).hide())},onfocusout:function(a){this.checkable(a)||!(a.name in this.submitted)&&this.optional(a)||this.element(a)},onkeyup:function(a,b){(9!==b.which||""!==this.elementValue(a))&&(a.name in this.submitted||a===this.lastElement)&&this.element(a)},onclick:function(a){a.name in this.submitted?this.element(a):a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).addClass(c).removeClass(d):a(b).addClass(c).removeClass(d)},unhighlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).removeClass(c).addClass(d):a(b).removeClass(c).addClass(d)}},setDefaults:function(b){a.extend(a.validator.defaults,b)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",maxlength:a.validator.format("Please enter no more than {0} characters."),minlength:a.validator.format("Please enter at least {0} characters."),rangelength:a.validator.format("Please enter a value between {0} and {1} characters long."),range:a.validator.format("Please enter a value between {0} and {1}."),max:a.validator.format("Please enter a value less than or equal to {0}."),min:a.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:!1,prototype:{init:function(){function b(b){var c=a.data(this[0].form,"validator"),d="on"+b.type.replace(/^validate/,""),e=c.settings;e[d]&&!this.is(e.ignore)&&e[d].call(c,this[0],b)}this.labelContainer=a(this.settings.errorLabelContainer),this.errorContext=this.labelContainer.length&&this.labelContainer||a(this.currentForm),this.containers=a(this.settings.errorContainer).add(this.settings.errorLabelContainer),this.submitted={},this.valueCache={},this.pendingRequest=0,this.pending={},this.invalid={},this.reset();var c,d=this.groups={};a.each(this.settings.groups,function(b,c){"string"==typeof c&&(c=c.split(/\s/)),a.each(c,function(a,c){d[c]=b})}),c=this.settings.rules,a.each(c,function(b,d){c[b]=a.validator.normalizeRule(d)}),a(this.currentForm).validateDelegate(":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'] ,[type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'] ","focusin focusout keyup",b).validateDelegate("[type='radio'], [type='checkbox'], select, option","click",b),this.settings.invalidHandler&&a(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler),a(this.currentForm).find("[required], [data-rule-required], .required").attr("aria-required","true")},form:function(){return this.checkForm(),a.extend(this.submitted,this.errorMap),this.invalid=a.extend({},this.errorMap),this.valid()||a(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]);return this.valid()},element:function(b){var c=this.clean(b),d=this.validationTargetFor(c),e=!0;return this.lastElement=d,void 0===d?delete this.invalid[c.name]:(this.prepareElement(d),this.currentElements=a(d),e=this.check(d)!==!1,e?delete this.invalid[d.name]:this.invalid[d.name]=!0),a(b).attr("aria-invalid",!e),this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),e},showErrors:function(b){if(b){a.extend(this.errorMap,b),this.errorList=[];for(var c in b)this.errorList.push({message:b[c],element:this.findByName(c)[0]});this.successList=a.grep(this.successList,function(a){return!(a.name in b)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){a.fn.resetForm&&a(this.currentForm).resetForm(),this.submitted={},this.lastElement=null,this.prepareForm(),this.hideErrors(),this.elements().removeClass(this.settings.errorClass).removeData("previousValue").removeAttr("aria-invalid")},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(a){var b,c=0;for(b in a)c++;return c},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return 0===this.size()},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{a(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(b){}},findLastActive:function(){var b=this.lastActive;return b&&1===a.grep(this.errorList,function(a){return a.element.name===b.name}).length&&b},elements:function(){var b=this,c={};return a(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){return!this.name&&b.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.name in c||!b.objectLength(a(this).rules())?!1:(c[this.name]=!0,!0)})},clean:function(b){return a(b)[0]},errors:function(){var b=this.settings.errorClass.split(" ").join(".");return a(this.settings.errorElement+"."+b,this.errorContext)},reset:function(){this.successList=[],this.errorList=[],this.errorMap={},this.toShow=a([]),this.toHide=a([]),this.currentElements=a([])},prepareForm:function(){this.reset(),this.toHide=this.errors().add(this.containers)},prepareElement:function(a){this.reset(),this.toHide=this.errorsFor(a)},elementValue:function(b){var c,d=a(b),e=d.attr("type");return"radio"===e||"checkbox"===e?a("input[name='"+d.attr("name")+"']:checked").val():(c=d.val(),"string"==typeof c?c.replace(/\r/g,""):c)},check:function(b){b=this.validationTargetFor(this.clean(b));var c,d,e,f=a(b).rules(),g=a.map(f,function(a,b){return b}).length,h=!1,i=this.elementValue(b);for(d in f){e={method:d,parameters:f[d]};try{if(c=a.validator.methods[d].call(this,i,b,e.parameters),"dependency-mismatch"===c&&1===g){h=!0;continue}if(h=!1,"pending"===c)return void(this.toHide=this.toHide.not(this.errorsFor(b)));if(!c)return this.formatAndAdd(b,e),!1}catch(j){throw this.settings.debug&&window.console&&console.log("Exception occurred when checking element "+b.id+", check the '"+e.method+"' method.",j),j}}if(!h)return this.objectLength(f)&&this.successList.push(b),!0},customDataMessage:function(b,c){return a(b).data("msg"+c[0].toUpperCase()+c.substring(1).toLowerCase())||a(b).data("msg")},customMessage:function(a,b){var c=this.settings.messages[a];return c&&(c.constructor===String?c:c[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(void 0!==arguments[a])return arguments[a];return void 0},defaultMessage:function(b,c){return this.findDefined(this.customMessage(b.name,c),this.customDataMessage(b,c),!this.settings.ignoreTitle&&b.title||void 0,a.validator.messages[c],"<strong>Warning: No message defined for "+b.name+"</strong>")},formatAndAdd:function(b,c){var d=this.defaultMessage(b,c.method),e=/\$?\{(\d+)\}/g;"function"==typeof d?d=d.call(this,c.parameters,b):e.test(d)&&(d=a.validator.format(d.replace(e,"{$1}"),c.parameters)),this.errorList.push({message:d,element:b,method:c.method}),this.errorMap[b.name]=d,this.submitted[b.name]=d},addWrapper:function(a){return this.settings.wrapper&&(a=a.add(a.parent(this.settings.wrapper))),a},defaultShowErrors:function(){var a,b,c;for(a=0;this.errorList[a];a++)c=this.errorList[a],this.settings.highlight&&this.settings.highlight.call(this,c.element,this.settings.errorClass,this.settings.validClass),this.showLabel(c.element,c.message);if(this.errorList.length&&(this.toShow=this.toShow.add(this.containers)),this.settings.success)for(a=0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight)for(a=0,b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow),this.hideErrors(),this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return a(this.errorList).map(function(){return this.element})},showLabel:function(b,c){var d=this.errorsFor(b);d.length?(d.removeClass(this.settings.validClass).addClass(this.settings.errorClass),d.html(c)):(d=a("<"+this.settings.errorElement+">").attr("for",this.idOrName(b)).addClass(this.settings.errorClass).html(c||""),this.settings.wrapper&&(d=d.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.append(d).length||(this.settings.errorPlacement?this.settings.errorPlacement(d,a(b)):d.insertAfter(b))),!c&&this.settings.success&&(d.text(""),"string"==typeof this.settings.success?d.addClass(this.settings.success):this.settings.success(d,b)),this.toShow=this.toShow.add(d)},errorsFor:function(b){var c=this.idOrName(b);return this.errors().filter(function(){return a(this).attr("for")===c})},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},validationTargetFor:function(a){return this.checkable(a)&&(a=this.findByName(a.name).not(this.settings.ignore)[0]),a},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(b){return a(this.currentForm).find("[name='"+b+"']")},getLength:function(b,c){switch(c.nodeName.toLowerCase()){case"select":return a("option:selected",c).length;case"input":if(this.checkable(c))return this.findByName(c.name).filter(":checked").length}return b.length},depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):!0},dependTypes:{"boolean":function(a){return a},string:function(b,c){return!!a(b,c.form).length},"function":function(a,b){return a(b)}},optional:function(b){var c=this.elementValue(b);return!a.validator.methods.required.call(this,c,b)&&"dependency-mismatch"},startRequest:function(a){this.pending[a.name]||(this.pendingRequest++,this.pending[a.name]=!0)},stopRequest:function(b,c){this.pendingRequest--,this.pendingRequest<0&&(this.pendingRequest=0),delete this.pending[b.name],c&&0===this.pendingRequest&&this.formSubmitted&&this.form()?(a(this.currentForm).submit(),this.formSubmitted=!1):!c&&0===this.pendingRequest&&this.formSubmitted&&(a(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(b){return a.data(b,"previousValue")||a.data(b,"previousValue",{old:null,valid:!0,message:this.defaultMessage(b,"remote")})}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(b,c){b.constructor===String?this.classRuleSettings[b]=c:a.extend(this.classRuleSettings,b)},classRules:function(b){var c={},d=a(b).attr("class");return d&&a.each(d.split(" "),function(){this in a.validator.classRuleSettings&&a.extend(c,a.validator.classRuleSettings[this])}),c},attributeRules:function(b){var c,d,e={},f=a(b),g=b.getAttribute("type");for(c in a.validator.methods)"required"===c?(d=b.getAttribute(c),""===d&&(d=!0),d=!!d):d=f.attr(c),/min|max/.test(c)&&(null===g||/number|range|text/.test(g))&&(d=Number(d)),d||0===d?e[c]=d:g===c&&"range"!==g&&(e[c]=!0);return e.maxlength&&/-1|2147483647|524288/.test(e.maxlength)&&delete e.maxlength,e},dataRules:function(b){var c,d,e={},f=a(b);for(c in a.validator.methods)d=f.data("rule"+c[0].toUpperCase()+c.substring(1).toLowerCase()),void 0!==d&&(e[c]=d);return e},staticRules:function(b){var c={},d=a.data(b.form,"validator");return d.settings.rules&&(c=a.validator.normalizeRule(d.settings.rules[b.name])||{}),c},normalizeRules:function(b,c){return a.each(b,function(d,e){if(e===!1)return void delete b[d];if(e.param||e.depends){var f=!0;switch(typeof e.depends){case"string":f=!!a(e.depends,c.form).length;break;case"function":f=e.depends.call(c,c)}f?b[d]=void 0!==e.param?e.param:!0:delete b[d]}}),a.each(b,function(d,e){b[d]=a.isFunction(e)?e(c):e}),a.each(["minlength","maxlength"],function(){b[this]&&(b[this]=Number(b[this]))}),a.each(["rangelength","range"],function(){var c;b[this]&&(a.isArray(b[this])?b[this]=[Number(b[this][0]),Number(b[this][1])]:"string"==typeof b[this]&&(c=b[this].split(/[\s,]+/),b[this]=[Number(c[0]),Number(c[1])]))}),a.validator.autoCreateRanges&&(b.min&&b.max&&(b.range=[b.min,b.max],delete b.min,delete b.max),b.minlength&&b.maxlength&&(b.rangelength=[b.minlength,b.maxlength],delete b.minlength,delete b.maxlength)),b},normalizeRule:function(b){if("string"==typeof b){var c={};a.each(b.split(/\s/),function(){c[this]=!0}),b=c}return b},addMethod:function(b,c,d){a.validator.methods[b]=c,a.validator.messages[b]=void 0!==d?d:a.validator.messages[b],c.length<3&&a.validator.addClassRules(b,a.validator.normalizeRule(b))},methods:{required:function(b,c,d){if(!this.depend(d,c))return"dependency-mismatch";if("select"===c.nodeName.toLowerCase()){var e=a(c).val();return e&&e.length>0}return this.checkable(c)?this.getLength(b,c)>0:a.trim(b).length>0},email:function(a,b){return this.optional(b)||/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(a)},url:function(a,b){return this.optional(b)||/^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(a)},date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a).toString())},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},creditcard:function(a,b){if(this.optional(b))return"dependency-mismatch";if(/[^0-9 \-]+/.test(a))return!1;var c,d,e=0,f=0,g=!1;if(a=a.replace(/\D/g,""),a.length<13||a.length>19)return!1;for(c=a.length-1;c>=0;c--)d=a.charAt(c),f=parseInt(d,10),g&&(f*=2)>9&&(f-=9),e+=f,g=!g;return e%10===0},minlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(a.trim(b),c);return this.optional(c)||e>=d},maxlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(a.trim(b),c);return this.optional(c)||d>=e},rangelength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(a.trim(b),c);return this.optional(c)||e>=d[0]&&e<=d[1]},min:function(a,b,c){return this.optional(b)||a>=c},max:function(a,b,c){return this.optional(b)||c>=a},range:function(a,b,c){return this.optional(b)||a>=c[0]&&a<=c[1]},equalTo:function(b,c,d){var e=a(d);return this.settings.onfocusout&&e.unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){a(c).valid()}),b===e.val()},remote:function(b,c,d){if(this.optional(c))return"dependency-mismatch";var e,f,g=this.previousValue(c);return this.settings.messages[c.name]||(this.settings.messages[c.name]={}),g.originalMessage=this.settings.messages[c.name].remote,this.settings.messages[c.name].remote=g.message,d="string"==typeof d&&{url:d}||d,g.old===b?g.valid:(g.old=b,e=this,this.startRequest(c),f={},f[c.name]=b,a.ajax(a.extend(!0,{url:d,mode:"abort",port:"validate"+c.name,dataType:"json",data:f,context:e.currentForm,success:function(d){var f,h,i,j=d===!0||"true"===d;e.settings.messages[c.name].remote=g.originalMessage,j?(i=e.formSubmitted,e.prepareElement(c),e.formSubmitted=i,e.successList.push(c),delete e.invalid[c.name],e.showErrors()):(f={},h=d||e.defaultMessage(c,"remote"),f[c.name]=g.message=a.isFunction(h)?h(b):h,e.invalid[c.name]=!0,e.showErrors(f)),g.valid=j,e.stopRequest(c,j)}},d)),"pending")}}}),a.format=function(){throw"$.format has been deprecated. Please use $.validator.format instead."}}(jQuery),function(a){var b,c={};a.ajaxPrefilter?a.ajaxPrefilter(function(a,b,d){var e=a.port;"abort"===a.mode&&(c[e]&&c[e].abort(),c[e]=d)}):(b=a.ajax,a.ajax=function(d){var e=("mode"in d?d:a.ajaxSettings).mode,f=("port"in d?d:a.ajaxSettings).port;return"abort"===e?(c[f]&&c[f].abort(),c[f]=b.apply(this,arguments),c[f]):b.apply(this,arguments)})}(jQuery),function(a){a.extend(a.fn,{validateDelegate:function(b,c,d){return this.bind(c,function(c){var e=a(c.target);return e.is(b)?d.apply(e,arguments):void 0})}})}(jQuery);
5 0 \ No newline at end of file
wscacicneo/static/js/list.js
... ... @@ -1,72 +0,0 @@
1   -/*GRAFICO DE ORGÃOS*/
2   -
3   -
4   -Ext.define('User',{
5   - extend: 'Ext.data.Model',
6   - fields: [ 'codigo', 'orgao']
7   -});
8   -
9   -var userStore = Ext.create('Ext.data.Store', {
10   - model: 'User',
11   - data: [
12   - { orgao: 'Minist&eacuterio da Fazenda', date: 'Editar Excluir' },
13   - { orgao: 'Minist&eacuterio da Fazenda', date: 'Editar Excluir' },
14   - { orgao: 'Minist&eacuterio da Fazenda', date: 'Editar Excluir' },
15   - { orgao: 'Minist&eacuterio da Fazenda', date: 'Editar Excluir' },
16   - ]
17   -});
18   -
19   -table = Ext.create('Ext.grid.Panel', {
20   - store: userStore,
21   - width: 400,
22   - height: 200,
23   - // title: 'Application Users',
24   - columns: [
25   - {
26   - text: 'Órgão',
27   - width: 390,
28   - dataIndex: 'orgao',
29   - hidden: false,
30   - },
31   - {
32   - xtype: 'actioncolumn',
33   - width: 165,
34   - align: 'center',
35   - items:[{
36   - icon:'static/icons/edit.png',
37   - tooltip: 'Editar'
38   - },
39   - {
40   - icon:'static/icons/delete.png',
41   - tooltip: 'Excluir'
42   - },
43   - ]},
44   - ]
45   -});
46   -
47   -tabela = Ext.create('Ext.panel.Panel', {
48   - layout: 'fit',
49   - title: 'Órgãos',
50   - width: '75%',
51   - frame: true,
52   - draggable: true,
53   - collapsible: true,
54   - border : true,
55   - style: {
56   - "text-align": 'center',
57   - margin: '0px auto 15px auto'
58   - },
59   - items: table,
60   -});
61   -
62   -Ext.onReady(function(){
63   -
64   -
65   - Ext.create('Ext.Container', {
66   - padding: '15px',
67   - items: [tabela],
68   - renderTo: 'widgets'
69   - });
70   -
71   -});
72   -
wscacicneo/static/js/login.js
... ... @@ -1,67 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Usuário',
15   - width:300,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Senha',
20   - width: 300,
21   - name: 'matricula'
22   - },
23   - {
24   - xtype: 'button',
25   - text: 'Login',
26   - style:{
27   - margin: '10px 10px 0px 0px',
28   - }
29   - },
30   - {
31   - xtype: 'button',
32   - text: 'Recuperar Senha',
33   - style:{
34   - margin: '10px 10px 0px 0px',
35   - }
36   -
37   - },
38   - ]
39   -});
40   -
41   -painel = Ext.create('Ext.panel.Panel', {
42   - layout: 'fit',
43   - title: 'Meu Perfil',
44   - width: 400,
45   - height: 150,
46   - frame: true,
47   - draggable: true,
48   - collapsible: true,
49   - border : true,
50   - style: {
51   - "text-align": 'center',
52   - margin: '0px auto 50px 100px'
53   - },
54   - items: table,
55   -});
56   -
57   -Ext.onReady(function(){
58   -
59   -
60   - Ext.create('Ext.Container', {
61   - padding: '15px',
62   - items: [painel],
63   - renderTo: 'widgets'
64   - });
65   -
66   -});
67   -
wscacicneo/static/js/main.js
... ... @@ -1,37 +0,0 @@
1   -Ext.onReady(function() {
2   -
3   - var mainMenu = Ext.create('Ext.menu.Menu',{
4   - renderTo: 'menu-principal',
5   - floating: false,
6   - collapsible: true,
7   - border: true,
8   - frame: true,
9   - title: 'Home',
10   - titleAlign: 'center',
11   - items: [
12   - {text: 'Meu Perfil' },
13   - {text: 'Gestor de Órgãos' },
14   - {text: 'Notificações' },
15   - {text: 'Relatórios' },
16   - {text: 'Sobre' },
17   - ]
18   - });
19   -
20   - fav_html = '<div id="favoriteItems">'+
21   - '<div class="fav"><a href="reports"><img src="static/icons/relatorios.png">Relat&oacuterios</a></div>'+
22   - '<div class="fav"><a><img src="static/icons/usuario.png">Meu Perfil</a></div>'+
23   - '</div>';
24   -
25   - var favoriteMenu = Ext.create('Ext.panel.Panel', {
26   - layout: 'fit',
27   - renderTo: 'menu-favoritos',
28   - collapsible: true,
29   - border: true,
30   - frame: true,
31   - heigth: "100%",
32   - width: "100%",
33   - title: 'Favoritos',
34   - titleAlign: 'center',
35   - html: fav_html
36   - });
37   -});
wscacicneo/static/js/memoria.js
... ... @@ -1,68 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Interface',
15   - width: 250,
16   - name: 'matricula'
17   - },
18   - {
19   - fieldLabel: 'Armazenamento',
20   - width: 300,
21   - name: 'email'
22   - },
23   - {
24   - fieldLabel: 'Idade',
25   - name: 'telefone'
26   - },
27   - {
28   - xtype: 'button',
29   - text: 'Enviar',
30   - style : {
31   - margin : " 0px 10px 0px 0px"
32   - }
33   - },
34   - {
35   - xtype: 'button',
36   - text: 'Limpar',
37   - },
38   -
39   - ]
40   -});
41   -
42   -painel = Ext.create('Ext.panel.Panel', {
43   - layout: 'fit',
44   - title: 'Memoria',
45   - width: '75%',
46   - height: 200,
47   - frame: true,
48   - draggable: true,
49   - collapsible: true,
50   - border : true,
51   - style: {
52   - "text-align": 'center',
53   - margin: '0px auto 15px auto'
54   - },
55   - items: table,
56   -});
57   -
58   -Ext.onReady(function(){
59   -
60   -
61   - Ext.create('Ext.Container', {
62   - padding: '15px',
63   - items: [painel],
64   - renderTo: 'widgets'
65   - });
66   -
67   -});
68   -
wscacicneo/static/js/notify.js
... ... @@ -1,75 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - xtype:'displayfield',
15   - fieldLabel: 'Nome do responsavel',
16   - name: 'nome',
17   - value: 'João da Silva'
18   - },
19   - {
20   - xtype:'displayfield',
21   - fieldLabel: 'Orgão da coleta:',
22   - name: 'orgao',
23   - value: 'Ministerio do Planejamento',
24   - },
25   - {
26   - xtype:'displayfield',
27   - fieldLabel: 'Data',
28   - name: 'data',
29   - value:'12/12/2012',
30   - },
31   - {
32   - xtype:'textfield',
33   - fieldLabel: 'Descrição',
34   - name: 'Descrição',
35   - width: 450,
36   - height: 100,
37   - },
38   -
39   - {
40   - xtype: 'button',
41   - text: 'Enviar',
42   - style:{
43   - margin: '50px 10px 0px 350px',
44   - },
45   - },
46   - ]
47   -});
48   -
49   -painel = Ext.create('Ext.panel.Panel', {
50   - layout: 'fit',
51   - title: 'Enviar Notificação',
52   - width: '75%',
53   - height: 350,
54   - frame: true,
55   - draggable: true,
56   - collapsible: true,
57   - border : true,
58   - style: {
59   - "text-align": 'center',
60   - margin: '0px auto 15px auto'
61   - },
62   - items: table,
63   -});
64   -
65   -Ext.onReady(function(){
66   -
67   -
68   - Ext.create('Ext.Container', {
69   - padding: '15px',
70   - items: [painel],
71   - renderTo: 'widgets'
72   - });
73   -
74   -});
75   -
wscacicneo/static/js/orgao.js
... ... @@ -1,136 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Nome',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Sigla',
20   - width: 200,
21   - name: 'sigla'
22   - },
23   - {
24   - fieldLabel: 'Cargo / Gestor',
25   - width: 300,
26   - name: 'cargo'
27   - },
28   -
29   - {
30   - fieldLabel: 'Telefone',
31   - width: 300,
32   - name: 'telefone'
33   - },
34   -
35   - {
36   - fieldLabel: 'E-mail',
37   - width: 300,
38   - name: 'email'
39   - },
40   - {
41   - fieldLabel: 'Endereço',
42   - width: 450,
43   - name: 'end'
44   - },
45   - {
46   - xtype: 'combobox',
47   - name: 'checkbox1',
48   - fieldLabel: 'Coleta',
49   - boxLabel: 'coleta'
50   - },
51   - {
52   - xtype: 'button',
53   - text: 'Enviar',
54   - style:{
55   - margin: '0px 10px 0px 320px',
56   - }
57   - },
58   - {
59   - xtype: 'button',
60   - text: 'Limpar',
61   - },
62   - {
63   - xtype: 'button',
64   - text: 'Cadastrar',
65   - style:{
66   - margin: '50px 10px 0px 350px',
67   - },
68   - },
69   - ]
70   -});
71   -
72   -painel = Ext.create('Ext.panel.Panel', {
73   - layout: 'fit',
74   - title: 'Órgão',
75   - width: '75%',
76   - height: 265,
77   - frame: true,
78   - draggable: true,
79   - collapsible: true,
80   - border : true,
81   - style: {
82   - "text-align": 'center',
83   - margin: '0px auto 15px auto'
84   - },
85   - items: table,
86   -});
87   -
88   -Ext.onReady(function(){
89   - Ext.create('Ext.Container', {
90   - padding: '15px',
91   - items: [painel],
92   - renderTo: 'widgets'
93   - });
94   -});
95   -
96   -
97   -$('#button-1017-btnIconEl').click(function(){
98   - var nome = $('#textfield-1010-inputEl').val()
99   - sigla = $('#textfield-1011-inputEl').val()
100   - cargo = $('#textfield-1012-inputEl').val()
101   - telefone = $('#textfield-1013-inputEl').val()
102   - email = $('#textfield-1014-inputEl').val()
103   - end = $('#textfield-1015-inputEl').val()
104   - coleta = $('#combobox-1016-inputEl').val()
105   - var reg = {
106   - 'nome' : nome,
107   - 'sigla': sigla,
108   - 'gestor': cargo,
109   - 'telefone': telefone,
110   - 'email': email,
111   - 'end': end,
112   - 'coleta': '15'
113   - }
114   - $.ajax({
115   - type: "POST",
116   - url: 'post_orgao',
117   - data : reg,
118   - cache: false,
119   - success: function(jqXHR, textStatus, errorThrown){
120   - alert('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
121   - },
122   - error: function(jqXHR, textStatus, errorThrown){
123   - alert('ooooooooooooooooooooooooooooooooooooo')
124   - }
125   - });
126   -});
127   -
128   -$('#button-1018-btnIconEl').click(function(){
129   - $('#textfield-1010-inputEl').val('')
130   - $('#textfield-1011-inputEl').val('')
131   - $('#textfield-1012-inputEl').val('')
132   - $('#textfield-1013-inputEl').val('')
133   - $('#textfield-1014-inputEl').val('')
134   - $('#textfield-1015-inputEl').val('')
135   - $('#combobox-1016-inputEl').val('')
136   -});
wscacicneo/static/js/perfil.js
... ... @@ -1,105 +0,0 @@
1   - table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - items: [
12   - {
13   - xtype: 'displayfield',
14   - name: 'name',
15   - fieldLabel: 'Nome',
16   - value: 'João da Silva'
17   - },
18   - {
19   - xtype: 'displayfield',
20   - name: 'matricula',
21   - fieldLabel: 'Matricula',
22   - value: '00326'
23   - },
24   - {
25   - xtype: 'displayfield',
26   - name: 'E-mail',
27   - fieldLabel: 'E-mail',
28   - value: 'joão@email.com'
29   - },
30   - {
31   - xtype: 'displayfield',
32   - name: 'telefone',
33   - fieldLabel: 'Telefone',
34   - value: '(61)3669-6548'
35   - },
36   - {
37   - xtype: 'displayfield',
38   - name: 'orgao',
39   - fieldLabel: 'Orgão',
40   - value: 'Ministerio do Desenvolvimento'
41   - },
42   - {
43   - xtype: 'displayfield',
44   - name: 'cargo',
45   - fieldLabel: 'Cargo',
46   - value: 'Analísta'
47   - },
48   - {
49   - xtype: 'displayfield',
50   - name: 'setor',
51   - fieldLabel: 'Setor',
52   - value: 'Setor Sul'
53   - },
54   -{
55   - xtype: 'displayfield',
56   - name: 'name',
57   - fieldLabel: 'Permissão',
58   - value: 'Usuário'
59   - },
60   -
61   -
62   - {
63   - xtype: 'button',
64   - text: 'Editar',
65   - style:{
66   - margin: '0px 10px 0px 320px',
67   - }
68   - },
69   - {
70   - xtype: 'button',
71   - text: 'Alterar Senha',
72   - style:{
73   - margin: '0px 10px 0px 0px',
74   - }
75   - },
76   - ]
77   -});
78   -
79   -painel = Ext.create('Ext.panel.Panel', {
80   - layout: 'fit',
81   - title: 'Meu Perfil',
82   - width: '75%',
83   - height: 300,
84   - frame: true,
85   - draggable: true,
86   - collapsible: true,
87   - border : true,
88   - style: {
89   - "text-align": 'center',
90   - margin: '0px auto 15px auto'
91   - },
92   - items: table,
93   -});
94   -
95   -Ext.onReady(function(){
96   -
97   -
98   - Ext.create('Ext.Container', {
99   - padding: '15px',
100   - items: [painel],
101   - renderTo: 'widgets'
102   - });
103   -
104   -});
105   -
wscacicneo/static/js/proc.js
... ... @@ -1,73 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Quantidade',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Marca',
20   - width: 250,
21   - name: 'matricula'
22   - },
23   - {
24   - fieldLabel: 'Tipo',
25   - width: 300,
26   - name: 'email'
27   - },
28   - {
29   - fieldLabel: 'Idade',
30   - name: 'telefone'
31   - },
32   - {
33   - xtype: 'button',
34   - text: 'Enviar',
35   - style : {
36   - margin : " 0px 10px 0px 0px"
37   - }
38   - },
39   - {
40   - xtype: 'button',
41   - text: 'Limpar',
42   - },
43   -
44   - ]
45   -});
46   -
47   -painel = Ext.create('Ext.panel.Panel', {
48   - layout: 'fit',
49   - title: 'Processador',
50   - width: '75%',
51   - height: 200,
52   - frame: true,
53   - draggable: true,
54   - collapsible: true,
55   - border : true,
56   - style: {
57   - "text-align": 'center',
58   - margin: '0px auto 15px auto'
59   - },
60   - items: table,
61   -});
62   -
63   -Ext.onReady(function(){
64   -
65   -
66   - Ext.create('Ext.Container', {
67   - padding: '15px',
68   - items: [painel],
69   - renderTo: 'widgets'
70   - });
71   -
72   -});
73   -
wscacicneo/static/js/processador.js
... ... @@ -1,69 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Marca',
15   - width: 250,
16   - name: 'matricula'
17   - },
18   - {
19   - xtype:'combobox',
20   - fieldLabel: 'Tipo',
21   - width: 300,
22   - name: 'email'
23   - },
24   - {
25   - fieldLabel: 'Idade',
26   - name: 'telefone'
27   - },
28   - {
29   - xtype: 'button',
30   - text: 'Enviar',
31   - style : {
32   - margin : " 0px 10px 0px 270px"
33   - }
34   - },
35   - {
36   - xtype: 'button',
37   - text: 'Limpar',
38   - },
39   -
40   - ]
41   -});
42   -
43   -painel = Ext.create('Ext.panel.Panel', {
44   - layout: 'fit',
45   - title: 'Processador',
46   - width: '75%',
47   - height: 200,
48   - frame: true,
49   - draggable: true,
50   - collapsible: true,
51   - border : true,
52   - style: {
53   - "text-align": 'center',
54   - margin: '0px auto 15px auto'
55   - },
56   - items: table,
57   -});
58   -
59   -Ext.onReady(function(){
60   -
61   -
62   - Ext.create('Ext.Container', {
63   - padding: '15px',
64   - items: [painel],
65   - renderTo: 'widgets'
66   - });
67   -
68   -});
69   -
wscacicneo/static/js/questionarcoleta.js
... ... @@ -1,89 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - xtype:'displayfield',
15   - fieldLabel: 'Nome do responsavel',
16   - name: 'nome',
17   - value: 'João da Silva'
18   - },
19   - {
20   - xtype:'displayfield',
21   - fieldLabel: 'Orgão da coleta:',
22   - name: 'orgao',
23   - value: 'Ministerio do Planejamento',
24   - },{
25   - xtype:'displayfield',
26   - fieldLabel: 'Codigo da coleta:',
27   - name: 'orgao',
28   - value: '1231654',
29   - },
30   -
31   - {
32   - xtype:'displayfield',
33   - fieldLabel: 'Data',
34   - name: 'data',
35   - value:'12/12/2012',
36   - },
37   - {
38   - xtype:'textfield',
39   - fieldLabel: 'Descrição',
40   - name: 'Descrição',
41   - width: 450,
42   - height: 100,
43   - },
44   -
45   - {
46   - xtype: 'button',
47   - text: 'Enviar',
48   - style:{
49   - margin: '20px 10px 0px 300px',
50   - },
51   - },
52   - {
53   - xtype: 'button',
54   - text: 'Cancelar',
55   - style:{
56   - margin: '20px 10px 0px 0px',
57   - },
58   -
59   - },
60   - ]
61   -});
62   -
63   -painel = Ext.create('Ext.panel.Panel', {
64   - layout: 'fit',
65   - title: 'Questionar Coleta',
66   - width: '75%',
67   - height: 350,
68   - frame: true,
69   - draggable: true,
70   - collapsible: true,
71   - border : true,
72   - style: {
73   - "text-align": 'center',
74   - margin: '0px auto 15px auto'
75   - },
76   - items: table,
77   -});
78   -
79   -Ext.onReady(function(){
80   -
81   -
82   - Ext.create('Ext.Container', {
83   - padding: '15px',
84   - items: [painel],
85   - renderTo: 'widgets'
86   - });
87   -
88   -});
89   -
wscacicneo/static/js/rede.js
... ... @@ -1,64 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Ativos de rede',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'Quantidade',
20   - width: 200,
21   - name: 'matricula'
22   - },
23   - {
24   - xtype: 'button',
25   - text: 'Enviar',
26   - style : {
27   - margin : " 0px 10px 0px 330px"
28   - }
29   - },
30   - {
31   - xtype: 'button',
32   - text: 'Limpar',
33   - },
34   -
35   - ]
36   -});
37   -
38   -painel = Ext.create('Ext.panel.Panel', {
39   - layout: 'fit',
40   - title: 'Rede',
41   - width: '75%',
42   - height: 200,
43   - frame: true,
44   - draggable: true,
45   - collapsible: true,
46   - border : true,
47   - style: {
48   - "text-align": 'center',
49   - margin: '0px auto 15px auto'
50   - },
51   - items: table,
52   -});
53   -
54   -Ext.onReady(function(){
55   -
56   -
57   - Ext.create('Ext.Container', {
58   - padding: '15px',
59   - items: [painel],
60   - renderTo: 'widgets'
61   - });
62   -
63   -});
64   -
wscacicneo/static/js/relatorio.js
... ... @@ -1,246 +0,0 @@
1   -/*TABELA DE RELATÓRIOS*/
2   -
3   -Ext.define('User',{
4   - extend: 'Ext.data.Model',
5   - fields: [ 'marca', 'modelo', 'fabricacao', 'quantidade' ],
6   -});
7   -
8   -var userStore = Ext.create('Ext.data.Store', {
9   - model: 'User',
10   - data: [
11   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
12   - { marca: 'AMD', modelo: 'AMD 3.2GHZ', fabricacao: '08/22/2008', quantidade: '26' },
13   -
14   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
15   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
16   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
17   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
18   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
19   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
20   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
21   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
22   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
23   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
24   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
25   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
26   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
27   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
28   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
29   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
30   - { marca: 'INTEL', modelo: 'CORE I7 3.2GHZ', fabricacao: '12/12/2014', quantidade: '32' },
31   - { marca: 'AMD', modelo: 'AMD 3.2GHZ', fabricacao: '08/22/2008', quantidade: '26' },
32   - ],
33   - autoLoad: false,
34   -
35   - id:'simpsonsStore',
36   -});
37   -
38   -table = Ext.create('Ext.grid.Panel', {
39   - store: userStore,
40   - width: 400,
41   - height: 300,
42   - // title: 'Application Users',
43   - columns: [
44   - {
45   - text: 'MARCA',
46   - width: 75,
47   - sortable: true,
48   - hideable: false,
49   - dataIndex: 'marca'
50   - },
51   - {
52   - text: 'MODELO',
53   - width: 200,
54   - dataIndex: 'modelo',
55   - hidden: false,
56   - },
57   - {
58   - text: 'FABRICAÇÃO',
59   - sortable: false,
60   - width:100,
61   - renderer: Ext.util.Format.dateRenderer('d/m/Y'),
62   - flex: 1,
63   - dataIndex: 'fabricacao'
64   - },
65   - {
66   - text: 'QUANTIDADE',
67   - sortable: false,
68   - width:120,
69   - dataIndex: 'quantidade'
70   - },
71   - ],
72   - tbar:[
73   -
74   -
75   - 'Exportar PDF',
76   - { xtype: 'tbfill'},
77   - 'Imprimir',
78   - { xtype: 'tbfill'},
79   - 'Favorito',
80   - { xtype: 'tbfill'},
81   - 'Questionar Coleta',
82   - { xtype: 'tbfill'},
83   - 'CSV',
84   - ]
85   -});
86   -
87   -/*COMEÇANDO PAGINAÇÃO - LEMBRANDO QUE TODA A PAGINAÇÃO NÃO ESTÁ COMPLETAMENTE FUNCIONANDO.
88   -APENAS PARA QUESTÃO DE DOCUMENTAÇÃO.*/
89   -
90   -
91   -var itemsPerPage = 2; // set the number of items you want per page
92   -
93   -var store = Ext.create('Ext.data.Store', {
94   - id:'simpsonsStore',
95   - autoLoad: false,
96   - fields:['name', 'email', 'phone'],
97   - pageSize: itemsPerPage, // items per page
98   - proxy: {
99   - type: 'ajax',
100   - url: 'pagingstore.js', // url that will load data with respect to start and limit params
101   - reader: {
102   - type: 'json',
103   - root: 'items',
104   - totalProperty: 'total'
105   - }
106   - }
107   -});
108   -
109   -
110   -
111   -
112   -// specify segment of data you want to load using params
113   -store.load({
114   - params:{
115   - start:0,
116   - limit: itemsPerPage
117   - }
118   -});
119   -
120   -tabela = Ext.create('Ext.panel.Panel', {
121   - layout: 'fit',
122   - title: 'Relatório de coletas por PROCESSADOR',
123   - width: '75%',
124   - frame: true,
125   - draggable: true,
126   - collapsible: true,
127   - border : true,
128   - style: {
129   - "text-align": 'center',
130   - margin: '0px auto 15px auto'
131   - },
132   - items: table,
133   -
134   - dockedItems: [{
135   - xtype: 'pagingtoolbar',
136   - store: userStore, // same store GridPanel is using
137   - dock: 'bottom',
138   - displayInfo: true
139   - }],
140   -
141   -});
142   -
143   -Ext.onReady(function(){
144   - Ext.create('Ext.Container', {
145   - padding: '15px',
146   - items: [tabela],
147   - renderTo: 'widgets'
148   - });
149   -
150   -});
151   -
152   -
153   -//CRIANDO GRAFICO
154   -
155   -
156   -var store = Ext.create('Ext.data.JsonStore', {
157   - fields: ['name', 'data'],
158   - data: [
159   - { 'name': 'INTEL 55%', 'data': 32 },
160   - { 'name': 'AMD 45%', 'data': 26 }
161   -]});
162   -
163   -var chart = Ext.create('Ext.chart.Chart', {
164   - layout: 'fit',
165   - width: 500,
166   - height: 350,
167   - animate: true,
168   - store: store,
169   - theme: 'Base:gradients',
170   - shadow: true,
171   - legend: {
172   - position: 'right'
173   - },
174   - series: [{
175   - type: 'pie',
176   - angleField: 'data',
177   - showInLegend: true,
178   - tips: {
179   - trackMouse: true,
180   - width: 140,
181   - height: 28,
182   - renderer: function(storeItem, item) {
183   - // calculate and display percentage on hover
184   - var total = 0;
185   - store.each(function(rec) {
186   - total += rec.get('data');
187   - });
188   - this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data') / total * 100) + '%');
189   - }
190   - },
191   - highlight: {
192   - segment: {
193   - margin: 20
194   - }
195   - },
196   - label: {
197   - field: 'name',
198   - display: 'rotate',
199   - contrast: true,
200   - font: '18px Arial'
201   - }
202   - }]
203   -});
204   -
205   -widget = Ext.create('Ext.panel.Panel', {
206   - layout: 'fit',
207   - title: 'Gráfico',
208   - width: '75%',
209   - frame: true,
210   - draggable: true,
211   - collapsible: true,
212   - border : true,
213   - style: {
214   - "text-align": 'center',
215   - margin: '-35px auto 15px auto'
216   - },
217   - items: chart,
218   -
219   - tbar:[
220   - 'Exportar PDF',
221   - { xtype: 'tbfill'},
222   - 'Imprimir',
223   - { xtype: 'tbfill'},
224   - 'CSV',
225   - ],
226   -
227   - bbar:[
228   - 'Quantidade de Orgãos: 12',
229   - { xtype: 'tbfill'},
230   - 'Período da Coleta: 01/2014 - 06/2014',
231   - ]
232   -
233   -});
234   -
235   -Ext.onReady(function(){
236   -
237   -
238   - Ext.create('Ext.Container', {
239   - padding: '15px',
240   - items: [widget],
241   - renderTo: 'widgets'
242   - });
243   -});
244   -
245   -
246   -
wscacicneo/static/js/reports.js
... ... @@ -1,156 +0,0 @@
1   -/*GRAFICO DE ORGÃOS*/
2   -
3   -
4   -Ext.define('User',{
5   - extend: 'Ext.data.Model',
6   - fields: [ 'codigo', 'orgao', 'date' ]
7   -});
8   -
9   -var userStore = Ext.create('Ext.data.Store', {
10   - model: 'User',
11   - data: [
12   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
13   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
14   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
15   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
16   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
17   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
18   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
19   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
20   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
21   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
22   - { codigo: '27236', orgao: 'Minist&eacuterio da Fazenda', date: '12/12/2014' },
23   - ]
24   -});
25   -
26   -table = Ext.create('Ext.grid.Panel', {
27   - store: userStore,
28   - width: 400,
29   - height: 200,
30   - // title: 'Application Users',
31   - columns: [
32   - {
33   - xtype: 'checkcolumn',
34   - allowBlank: false,
35   - dataIndex: 'active',
36   - width: 60,
37   - editor:{
38   - xtype: 'checkbox',
39   - cls: 'item'
40   - },
41   - },
42   - {
43   - text: 'Codigo',
44   - width: 75,
45   - sortable: true,
46   - hideable: false,
47   - dataIndex: 'codigo'
48   - },
49   - {
50   - text: 'Orgao',
51   - width: 300,
52   - dataIndex: 'orgao',
53   - hidden: false,
54   - },
55   - {
56   - text: 'Data',
57   - sortable: false,
58   - width:80,
59   - renderer: Ext.util.Format.dateRenderer('m/d/Y'),
60   - flex: 1,
61   - dataIndex: 'date'
62   - },
63   - ]
64   -});
65   -
66   -tabela = Ext.create('Ext.panel.Panel', {
67   - layout: 'fit',
68   - title: 'Relatórios de Coletas',
69   - width: '75%',
70   - frame: true,
71   - draggable: true,
72   - collapsible: true,
73   - border : true,
74   - style: {
75   - "text-align": 'center',
76   - margin: '0px auto 15px auto'
77   - },
78   - items: table,
79   -});
80   -
81   -Ext.onReady(function(){
82   -
83   -
84   - Ext.create('Ext.Container', {
85   - padding: '15px',
86   - items: [tabela],
87   - renderTo: 'widgets'
88   - });
89   -
90   -});
91   -
92   -
93   -// **** FILTRO DE ITENS ****
94   -
95   -Ext.define('User1',{
96   - extend: 'Ext.data.Model',
97   - fields: ['chbox', 'item' ]
98   -});
99   -
100   -var userStore1 = Ext.create('Ext.data.Store', {
101   - model: 'User1',
102   - data: [
103   - { item: 'Computador'},
104   - { item: 'Processador'},
105   - { item: 'Memórias'},
106   - { item: 'Hard Disk (HD)'},
107   - { item: 'Sistemas Operacionais'},
108   - { item: 'Suítes de Escritórios'},
109   - { item: 'Ativos de Redes'},
110   - { item: 'Softwares Básicos'},
111   - ]
112   -});
113   -
114   -table1 = Ext.create('Ext.grid.Panel', {
115   - store: userStore1,
116   - width: 400,
117   - height: 200,
118   - // title: 'Application Users',
119   - columns: [
120   - {
121   - text: 'Item',
122   - width: 500,
123   - sortable: true,
124   - hideable: false,
125   - dataIndex: 'item'
126   - },
127   - ]
128   -});
129   -
130   -tabela1 = Ext.create('Ext.panel.Panel', {
131   - layout: 'fit',
132   - title: 'Gerar Relatório',
133   - width: '75%',
134   - frame: true,
135   - draggable: true,
136   - collapsible: true,
137   - border : true,
138   - style: {
139   - "text-align": 'center',
140   - margin: '0px auto 15px auto'
141   - },
142   - items: table1,
143   -});
144   -
145   -Ext.onReady(function(){
146   -
147   -
148   - Ext.create('Ext.Container', {
149   - padding:'15px',
150   - items: [tabela1],
151   - renderTo: 'widgets'
152   - });
153   -
154   -});
155   -
156   -
wscacicneo/static/js/reportsgestor.js
... ... @@ -1,79 +0,0 @@
1   -
2   -// **** FILTRO DE ITENS ****
3   -
4   -Ext.define('User1',{
5   - extend: 'Ext.data.Model',
6   - fields: ['chbox', 'item' ]
7   -});
8   -
9   -var userStore1 = Ext.create('Ext.data.Store', {
10   - model: 'User1',
11   - data: [
12   - { item: 'Computador'},
13   - { item: 'Processador'},
14   - { item: 'Memórias'},
15   - { item: 'Hard Disk (HD)'},
16   - { item: 'Sistemas Operacionais'},
17   - { item: 'Suítes de Escritórios'},
18   - { item: 'Ativos de Redes'},
19   - { item: 'Softwares Básicos'},
20   - ]
21   -});
22   -
23   -table1 = Ext.create('Ext.grid.Panel', {
24   - store: userStore1,
25   - width: 450,
26   - height: 300,
27   - // title: 'Application Users',
28   - columns: [
29   - {
30   - text: 'Item',
31   - width:'100%',
32   - sortable: true,
33   - hideable: false,
34   - dataIndex: 'item'
35   - },
36   - ],
37   - bbar:[
38   - {
39   - xtype: 'button',
40   - text: 'Gerar Relatório',
41   - style:{
42   - margin: '0px 10px 0px 300px',
43   - }
44   - },
45   - {
46   - xtype: 'button',
47   - text: 'Cancelar',
48   - },
49   - ]
50   -
51   -});
52   -
53   -tabela1 = Ext.create('Ext.panel.Panel', {
54   - layout: 'fit',
55   - title: 'Gerar Relatório',
56   - width: '75%',
57   - frame: true,
58   - draggable: true,
59   - collapsible: true,
60   - border : true,
61   - style: {
62   - "text-align": 'center',
63   - margin: '0px auto 15px auto'
64   - },
65   - items: table1,
66   -});
67   -
68   -Ext.onReady(function(){
69   -
70   -
71   - Ext.create('Ext.Container', {
72   - padding:'15px',
73   - items: [tabela1],
74   - renderTo: 'widgets'
75   - });
76   -
77   -});
78   -
79   -
wscacicneo/static/js/sistema.js
... ... @@ -1,74 +0,0 @@
1   -var table = Ext.create('Ext.form.Panel', {
2   - renderTo: Ext.getBody(),
3   - title: '',
4   - height: 130,
5   - width: 280,
6   - style: {
7   - "text-align": 'left',
8   - },
9   -
10   - bodyPadding: 10,
11   - defaultType: 'textfield',
12   - items: [
13   - {
14   - fieldLabel: 'Quantidade',
15   - width:450,
16   - name: 'nome'
17   - },
18   - {
19   - fieldLabel: 'instalação',
20   - width: 250,
21   - name: 'data instalação'
22   - },
23   - {
24   - fieldLabel: 'Nome',
25   - width: 300,
26   - name: 'email'
27   - },
28   - {
29   - fieldLabel: 'Versão',
30   - width: 250,
31   - name: 'email'
32   - },
33   - {
34   - xtype: 'button',
35   - text: 'Enviar',
36   - style : {
37   - margin : " 0px 10px 0px 0px"
38   - }
39   - },
40   - {
41   - xtype: 'button',
42   - text: 'Limpar',
43   - },
44   -
45   - ]
46   -});
47   -
48   -painel = Ext.create('Ext.panel.Panel', {
49   - layout: 'fit',
50   - title: 'Sistemas Operacionais',
51   - width: '75%',
52   - height: 200,
53   - title: 'Processador',
54   - frame: true,
55   - draggable: true,
56   - collapsible: true,
57   - border : true,
58   - style: {
59   - "text-align": 'center',
60   - margin: '0px auto 15px auto'
61   - },
62   - items: table,
63   -});
64   -
65   -Ext.onReady(function(){
66   -
67   -
68   - Ext.create('Ext.Container', {
69   - padding: '15px',
70   - items: [painel],
71   - renderTo: 'widgets'
72   - });
73   -});
74   -
wscacicneo/static/js/so-grafico.js
... ... @@ -1,97 +0,0 @@
1   -w = document.getElementById('data2');
2   -t = w.textContent;
3   -var regex = new RegExp("'", 'g');
4   -t.replace(regex,'"');
5   -t = t.replace(regex,'"');
6   -JSON.parse(t);
7   -t = JSON.parse(t);
8   -
9   -var store1 = Ext.create('Ext.data.Store', {
10   - storeId:'Simpsons',
11   - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'],
12   - data: t,
13   - proxy: {
14   - type: 'memory',
15   - reader: {
16   - type: 'json',
17   - root: 'items'
18   - }
19   - }
20   -});
21   -
22   -Ext.require('Ext.chart.*');
23   -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']);
24   -
25   -Ext.onReady(function () {
26   -
27   - var chart = Ext.create('Ext.chart.Chart', {
28   - animate: true,
29   - shadow: true,
30   - store: store1,
31   - axes: [{
32   - type: 'Numeric',
33   - position: 'left',
34   - fields: ['data1'],
35   - title: 'Quantidade',
36   - grid: true,
37   - minimum: 0,
38   - maximum: 16
39   - }, {
40   - type: 'Category',
41   - position: 'bottom',
42   - fields: ['a', 'b', 'c'],
43   - title: 'Sistemas Operacionais',
44   - label: {
45   - }
46   - }],
47   - series: [{
48   - type: 'column',
49   - axis: 'left',
50   - gutter: 80,
51   - xField: '',
52   - yField: ['wcount', 'ucount', 'dcount'],
53   - tips: {
54   - trackMouse: true,
55   - width: 74,
56   - height: 38,
57   - renderer: function(storeItem, item) {
58   - this.setTitle(storeItem.get('name'));
59   - this.update(storeItem.get('data1'));
60   - }
61   - },
62   - style: {
63   - fill: '#38B8BF'
64   - }
65   - }]
66   - });
67   -
68   -
69   - var panel1 = Ext.create('widget.panel', {
70   - width: 800,
71   - height: 400,
72   - title: 'Column Chart with Reload - Hits per Month',
73   - renderTo: 'centro',
74   - layout: 'fit',
75   - tbar: [{
76   - text: 'Save Chart',
77   - handler: function() {
78   - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){
79   - if(choice == 'yes'){
80   - chart.save({
81   - type: 'image/png'
82   - });
83   - }
84   - });
85   - }
86   - }, {
87   - text: 'Reload Data',
88   - handler: function() {
89   - // Add a short delay to prevent fast sequential clicks
90   - window.loadTask.delay(100, function() {
91   - store1.loadData(generateData());
92   - });
93   - }
94   - }],
95   - items: chart
96   - });
97   -});
98 0 \ No newline at end of file
wscacicneo/static/js/sobre.js
... ... @@ -1,17 +0,0 @@
1   - var html = "<div style='padding: 25px ; font-size: 14px; text-align: justify;'><div style='width: 29%; height: 100px; float: left;'><img src='static/caciclogo.jpg'> </div><div style='width: 70%; float: right'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse turpis eros, accumsan in dignissim nec, rhoncus sed nunc. Integer sit amet venenatis ante, id lacinia velit. Fusce a elit purus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam aliquam lacus accumsan cursus tempus. Suspendisse ante ipsum, mollis eget ultrices eget, cursus sed quam. Fusce eget dui ut felis scelerisque sodales. Maecenas pellentesque dolor ac erat fringilla, ut vehicula mi viverra. In non turpis a massa auctor accumsan.</div></div>";
2   -
3   -
4   -Ext.onReady(function(){
5   -
6   - Ext.create('Ext.Panel', {
7   - layout: 'fit',
8   - height: '220px',
9   - style: {margin: '15px'},
10   - frame: true,
11   - draggable: true,
12   - title: 'SOBRE O SUPER GERENTE',
13   - titleAlign: 'center',
14   - html: html,
15   - renderTo: 'g1'
16   - });
17   -});
wscacicneo/static/js/tabelaajax.js
... ... @@ -1,18 +0,0 @@
1   -function carregamentoTabela()
2   -{
3   -var xmlhttp;
4   -if (window.XMLHttpRequest)
5   - {// code for IE7+, Firefox, Chrome, Opera, Safari
6   - xmlhttp=new XMLHttpRequest();
7   - }
8   -
9   -xmlhttp.onreadystatechange=function()
10   - {
11   - if (xmlhttp.readyState==4 && xmlhttp.status==200)
12   - {
13   - document.getElementById("centro").innerHTML=xmlhttp.responseXML;
14   - }
15   - }
16   -xmlhttp.open("GET","cartoon.xml",true);
17   -xmlhttp.send();
18   -}
wscacicneo/static/js/teste-grafico.js
... ... @@ -1,97 +0,0 @@
1   -w = document.getElementById('data2');
2   -t = w.textContent;
3   -var regex = new RegExp("'", 'g');
4   -t.replace(regex,'"');
5   -t = t.replace(regex,'"');
6   -JSON.parse(t);
7   -t = JSON.parse(t);
8   -
9   -var store1 = Ext.create('Ext.data.Store', {
10   - storeId:'Simpsons',
11   - fields:['wcount', 'ucount', 'dcount', 'a', 'b', 'c'],
12   - data: t,
13   - proxy: {
14   - type: 'memory',
15   - reader: {
16   - type: 'json',
17   - root: 'items'
18   - }
19   - }
20   -});
21   -
22   -Ext.require('Ext.chart.*');
23   -Ext.require(['Ext.layout.container.Fit', 'Ext.window.MessageBox']);
24   -
25   -Ext.onReady(function () {
26   -
27   - var chart = Ext.create('Ext.chart.Chart', {
28   - animate: true,
29   - shadow: true,
30   - store: store1,
31   - axes: [{
32   - type: 'Numeric',
33   - position: 'left',
34   - fields: ['data1'],
35   - title: 'Quantidade',
36   - grid: true,
37   - minimum: 0,
38   - maximum: 16
39   - }, {
40   - type: 'Category',
41   - position: 'bottom',
42   - fields: ['a', 'b', 'c'],
43   - title: 'Sistemas Operacionais',
44   - label: {
45   - }
46   - }],
47   - series: [{
48   - type: 'column',
49   - axis: 'left',
50   - gutter: 80,
51   - xField: '',
52   - yField: ['wcount', 'ucount', 'dcount'],
53   - tips: {
54   - trackMouse: true,
55   - width: 74,
56   - height: 38,
57   - renderer: function(storeItem, item) {
58   - this.setTitle(storeItem.get('name'));
59   - this.update(storeItem.get('data1'));
60   - }
61   - },
62   - style: {
63   - fill: '#38B8BF'
64   - }
65   - }]
66   - });
67   -
68   -
69   - var panel1 = Ext.create('widget.panel', {
70   - width: 800,
71   - height: 400,
72   - title: 'Column Chart with Reload - Hits per Month',
73   - renderTo: 'centro',
74   - layout: 'fit',
75   - tbar: [{
76   - text: 'Save Chart',
77   - handler: function() {
78   - Ext.MessageBox.confirm('Confirm Download', 'Would you like to download the chart as an image?', function(choice){
79   - if(choice == 'yes'){
80   - chart.save({
81   - type: 'image/png'
82   - });
83   - }
84   - });
85   - }
86   - }, {
87   - text: 'Reload Data',
88   - handler: function() {
89   - // Add a short delay to prevent fast sequential clicks
90   - window.loadTask.delay(100, function() {
91   - store1.loadData(generateData());
92   - });
93   - }
94   - }],
95   - items: chart
96   - });
97   -});
98 0 \ No newline at end of file
wscacicneo/static/js/users.js
... ... @@ -1,80 +0,0 @@
1   -Ext.define('User',{
2   - extend: 'Ext.data.Model',
3   - fields: [ 'codigo', 'orgao']
4   -});
5   -
6   -var userStore = Ext.create('Ext.data.Store', {
7   - model: 'User',
8   - data: [
9   - { codigo: 'Pedro', orgao: 'Minist&eacuterio da Fazenda'},
10   - { codigo: 'Carlos', orgao: 'Minist&eacuterio da Fazenda'},
11   - { codigo: 'Thiago', orgao: 'Minist&eacuterio da Fazenda'},
12   - { codigo: 'Helder', orgao: 'Minist&eacuterio da Fazenda'},
13   - ]
14   -});
15   -
16   -table = Ext.create('Ext.grid.Panel', {
17   - store: userStore,
18   - width: 400,
19   - height: 200,
20   - // title: 'Application Users',
21   - columns: [
22   - {
23   - text: 'Nome',
24   - width: 75,
25   - sortable: true,
26   - hideable: false,
27   - dataIndex: 'codigo'
28   - },
29   - {
30   - text: 'Orgao',
31   - width: 300,
32   - dataIndex: 'orgao',
33   - hidden: false,
34   - },
35   - {
36   - xtype: 'actioncolumn',
37   - width: 100,
38   - align: 'center',
39   - items:[{
40   - icon:'static/icons/edit.png',
41   - tooltip: 'Editar'
42   - },
43   - {
44   - icon:''
45   - },
46   - {
47   - icon:'static/icons/delete.png',
48   - tooltip: 'Excluir'
49   - }
50   - ]
51   - },
52   - ]
53   -});
54   -
55   -tabela = Ext.create('Ext.panel.Panel', {
56   - layout: 'fit',
57   - title: 'Usuários',
58   - width: '75%',
59   - frame: true,
60   - draggable: true,
61   - collapsible: true,
62   - border : true,
63   - style: {
64   - "text-align": 'center',
65   - margin: '0px auto 15px auto'
66   - },
67   - items: table,
68   -});
69   -
70   -Ext.onReady(function(){
71   -
72   -
73   - Ext.create('Ext.Container', {
74   - padding: '15px',
75   - items: [tabela],
76   - renderTo: 'widgets'
77   - });
78   -
79   -});
80   -
wscacicneo/static/layout.css
... ... @@ -1,33 +0,0 @@
1   -.x-body{
2   - height: 100%;
3   - background: #958F8F;
4   -}
5   -
6   -.x-panel-header-text-container-default-framed {
7   - color: #FFFFFF;
8   -}
9   -
10   -.x-panel-header-default-framed-top {
11   - background: #032A65;
12   -}
13   -
14   -.x-panel-header-default-framed-collapsed-top {
15   - background: #032A65;
16   -}
17   -
18   -.x-panel-default-framed {
19   - border-color: #032A65;
20   -}
21   -
22   -.x-panel-header-default-framed {
23   - border: 0px;
24   -}
25   -
26   -.x-menu-icon-separator {
27   - height: 0%;
28   -}
29   -
30   -.x-menu-item-link {
31   - outline: 0 none;
32   - text-decoration: none;
33   -}
wscacicneo/static/logoff.png

4.72 KB

wscacicneo/static/middlebg.png

2.73 KB

wscacicneo/static/pyramid-small.png

6.88 KB

wscacicneo/static/pyramid.png

32.3 KB

wscacicneo/static/testeajax.txt
... ... @@ -1 +0,0 @@
1   -Texto teste chamada AJAX
wscacicneo/static/transparent.gif

49 Bytes

wscacicneo/templates/admin.pt
... ... @@ -1,12 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <metal:content fill-slot="conteudo">
3   - <div>
4   - <p> Text </p>
5   - <ul>
6   - <li><a href="#"><i class="fa fa-user"></i> Profile</a></li>
7   - <li><a href="#"><i class="fa fa-cogs"></i> Settings</a></li>
8   - <li><a href="login.html"><i class="fa fa-sign-out"></i> Logout</a></li>
9   - </ul>
10   - </div>
11   - </metal:content>
12   -</metal:main>
wscacicneo/templates/ajuda.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/tabelapedro.js"></script>
4   - <script metal:fill-slot="javascript" type="text/javascript" src=""></script>
5   - <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
6   - <div metal:fill-slot="conteudo" id="widgets"></div>
7   -</metal:main>
wscacicneo/templates/basico.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/basico.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/blankmaster.pt
... ... @@ -10,6 +10,7 @@
10 10 <meta name="keywords" content="">
11 11 <meta name="author" content="adley">
12 12 <metal:content define-slot="head" />
  13 + <title>Super-Gerente</title>
13 14 <!-- Stylesheets -->
14 15 <link href="${request.route_url('root')}static/macadmin/css/bootstrap.min.css" rel="stylesheet">
15 16 <!-- Font awesome icon -->
... ...
wscacicneo/templates/bot.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/bot.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/busca.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/analisegraficatabela.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" style="display:none;" id="widgets">${data}</div>
6   -
7   -</metal:main>
wscacicneo/templates/cadastro.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/cadastro.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/cadastro_coleta.pt
... ... @@ -26,111 +26,70 @@
26 26 </div>
27 27 <br/>
28 28 <div class="form-group">
29   - <div style="margin-left: 200px;font-size: 150%;">Hard Disk</div>
  29 + <div style="margin-left: 200px;font-size: 150%;">Software List</div>
30 30 </div>
31 31 <div class="form-group">
32   - <label class="col-lg-2 control-label">Marca do HD:</label>
  32 + <label class="col-lg-2 control-label">softwarelist:</label>
33 33 <div class="col-lg-5">
34   - <input type="text" id="marca_hd" class="form-control" placeholder="Marca do HD">
35   - </div>
36   - </div>
37   - <div class="form-group">
38   - <label class="col-lg-2 control-label">Tamanho do HD:</label>
39   - <div class="col-lg-5">
40   - <input type="text" id="tamanho_hd" class="form-control" placeholder="Tamanho do HD">
41   - </div>
42   - </div>
43   - <div class="form-group">
44   - <label class="col-lg-2 control-label">Tipo do HD</label>
45   - <div class="col-lg-5">
46   - <input type="text" id="tipo_hd" class="form-control" placeholder="Tipo do HD">
47   - </div>
48   - </div>
49   - <div class="form-group">
50   - <label class="col-lg-2 control-label">Idade do HD</label>
51   - <div class="col-lg-5">
52   - <input type="text" id="idade_hd" class="form-control" placeholder="Idade do HD">
  34 + <input type="text" id="softwarelist" class="form-control" placeholder="softwarelist">
53 35 </div>
54 36 </div>
  37 +
55 38 <br/>
56 39 <div class="form-group">
57 40 <div style="margin-left: 200px;font-size: 150%;">Sistema Operacional</div>
58 41 </div>
59 42 <div class="form-group">
60   - <label class="col-lg-2 control-label">Nome do SO:</label>
  43 + <label class="col-lg-2 control-label">operatingsystem_caption:</label>
61 44 <div class="col-lg-5">
62   - <input type="text" id="nome_so" class="form-control" placeholder="Nome do Sistema Operacional">
  45 + <input type="text" id="operatingsystem_caption" class="form-control" placeholder="operatingsystem_caption">
63 46 </div>
64 47 </div>
65 48 <div class="form-group">
66   - <label class="col-lg-2 control-label">Versão do SO:</label>
  49 + <label class="col-lg-2 control-label">operatingsystem_version:</label>
67 50 <div class="col-lg-5">
68   - <input type="text" id="versao_so" class="form-control" placeholder="Versão do Sistema Operacional">
  51 + <input type="text" id="operatingsystem_version" class="form-control" placeholder="operatingsystem_version">
69 52 </div>
70 53 </div>
71 54 <div class="form-group">
72   - <label class="col-lg-2 control-label">Fabricante do SO:</label>
  55 + <label class="col-lg-2 control-label">operatingsystem_installdate:</label>
73 56 <div class="col-lg-5">
74   - <input type="text" id="fabricante_so" class="form-control" placeholder="Fabricante do Sistema Operacional">
  57 + <input type="text" id="operatingsystem_installdate" class="form-control"
  58 + placeholder="operatingsystem_installdate">
75 59 </div>
76 60 </div>
77 61 <div class="form-group">
78   - <div style="margin-left: 200px;font-size: 150%;">BIOS</div>
  62 + <div style="margin-left: 200px;font-size: 150%;">win32_bios</div>
79 63 </div>
80 64 <div class="form-group">
81   - <label class="col-lg-2 control-label">Patrimonio da BIOS:</label>
82   - <div class="col-lg-5">
83   - <input type="text" id="patrimonio_bios" class="form-control" placeholder="Patrimonio da BIOS">
84   - </div>
85   - </div>
86   - <div class="form-group">
87   - <label class="col-lg-2 control-label">Fabricante da BIOS:</label>
88   - <div class="col-lg-5">
89   - <input type="text" id="fabricante_bios" class="form-control" placeholder="Fabricante da BIOS">
90   - </div>
91   - </div>
92   - <br/>
93   - <div class="form-group">
94   - <div style="margin-left: 200px;font-size: 150%;">Memória</div>
95   - </div>
96   - <div class="form-group">
97   - <label class="col-lg-2 control-label">Interface da Memória:</label>
  65 + <label class="col-lg-2 control-label">win32_bios_manufacturer:</label>
98 66 <div class="col-lg-5">
99   - <input type="text" id="interface_memoria" class="form-control" placeholder="Interface da Memória">
  67 + <input type="text" id="win32_bios_manufacturer" class="form-control" placeholder="win32_bios_manufacturer">
100 68 </div>
101 69 </div>
  70 + <br/>
102 71 <div class="form-group">
103   - <label class="col-lg-2 control-label">Armazenamento:</label>
104   - <div class="col-lg-5">
105   - <input type="text" id="armazenamento_memoria" class="form-control" placeholder="Armazenamento da Memória">
106   - </div>
107   - </div>
108   - <div class="form-group">
109   - <label class="col-lg-2 control-label">Idade da Memória</label>
110   - <div class="col-lg-5">
111   - <input type="text" id="idade_memoria" class="form-control" placeholder="Idade da Memória">
112   - </div>
113   - </div>
114   - <br/>
115   - <div class="form-group">
116   - <div style="margin-left: 200px;font-size: 150%;">Processador</div>
  72 + <div style="margin-left: 200px;font-size: 150%;">win32_processor</div>
117 73 </div>
118 74 <div class="form-group">
119   - <label class="col-lg-2 control-label">Nome do Processador:</label>
  75 + <label class="col-lg-2 control-label">win32_processor_manufacturer:</label>
120 76 <div class="col-lg-5">
121   - <input type="text" id="nome_processador" class="form-control" placeholder="Nome do Processador">
  77 + <input type="text" id="win32_processor_manufacturer" class="form-control"
  78 + placeholder="win32_processor_manufacturer">
122 79 </div>
123 80 </div>
124 81 <div class="form-group">
125   - <label class="col-lg-2 control-label">Versão do Processador:</label>
  82 + <label class="col-lg-2 control-label">win32_processor_numberoflogicalprocessors:</label>
126 83 <div class="col-lg-5">
127   - <input type="text" id="versao_processador" class="form-control" placeholder="Versão do Processador">
  84 + <input type="text" id="win32_processor_numberoflogicalprocessors" class="form-control"
  85 + placeholder="win32_processor_numberoflogicalprocessors">
128 86 </div>
129 87 </div>
130 88 <div class="form-group">
131   - <label class="col-lg-2 control-label">Data de Instalação</label>
  89 + <label class="col-lg-2 control-label">win32_processor_caption</label>
132 90 <div class="col-lg-5">
133   - <input type="text" id="data_instalacao_processador" class="form-control" placeholder="Data de Instalação do Processador">
  91 + <input type="text" id="win32_processor_caption" class="form-control"
  92 + placeholder="win32_processor_caption">
134 93 </div>
135 94 </div>
136 95 <br/>
... ... @@ -146,28 +105,29 @@
146 105 <metal:content fill-slot="javascript">
147 106 <script type="text/javascript">
148 107 $('#limpar').click(function(){
149   - $('#nome_processador').val('')
  108 + $('#data_coleta').val('')
  109 + $('#softwarelist').val('')
  110 + $('#win32_processor_manufacturer').val('')
  111 + $('#win32_processor_numberoflogicalprocessors').val('')
  112 + $('#win32_processor_caption').val('')
  113 + $('#operatingsystem_version').val('')
  114 + $('#operatingsystem_installdate').val('')
  115 + $('#operatingsystem_caption').val('')
  116 + $('#win32_bios_manufacturer').val('')
150 117 });
151 118 $('#enviar').click(function(){
152 119 var data = {
153   - 'orgao': $('#orgao').val(),
154   - 'data_coleta': $('#data_coleta').val(),
155   - 'marca_hd': $('#marca_hd').val(),
156   - 'tamanho_hd': $('#tamanho_hd').val(),
157   - 'tipo_hd': $('#tipo_hd').val(),
158   - 'idade_hd': $('#idade_hd').val(),
159   - 'nome_so': $('#nome_so').val(),
160   - 'versao_so': $('#versao_so').val(),
161   - 'fabricante_so': $('#fabricante_so').val(),
162   - 'patrimonio_bios': $('#patrimonio_bios').val(),
163   - 'fabricante_bios': $('#fabricante_bios').val(),
164   - 'interface_memoria': $('#interface_memoria').val(),
165   - 'armazenamento_memoria': $('#armazenamento_memoria').val(),
166   - 'idade_memoria': $('#idade_memoria').val(),
167   - 'nome_processador': $('#nome_processador').val(),
168   - 'versao_processador': $('#versao_processador').val(),
169   - 'data_instalacao_processador': $('#data_instalacao_processador').val()
170   - }
  120 + 'orgao': $('#orgao').val(),
  121 + 'data_coleta': $('#data_coleta').val(),
  122 + 'softwarelist': $('#softwarelist').val(),
  123 + 'win32_processor_manufacturer': $('#win32_processor_manufacturer').val(),
  124 + 'win32_processor_numberoflogicalprocessors': $('#win32_processor_numberoflogicalprocessors').val(),
  125 + 'win32_processor_caption': $('#win32_processor_caption').val(),
  126 + 'operatingsystem_version': $('#operatingsystem_version').val(),
  127 + 'operatingsystem_installdate': $('#operatingsystem_installdate').val(),
  128 + 'operatingsystem_caption': $('#operatingsystem_caption').val(),
  129 + 'win32_bios_manufacturer': $('#win32_bios_manufacturer').val(),
  130 + }
171 131 $.ajax({
172 132 type: "POST",
173 133 url: "${request.route_url('root')}post_coleta_manual",
... ...
wscacicneo/templates/computador.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/computador.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/config.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/config.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/configapi.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/configapi.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
7   -
wscacicneo/templates/configcoleta.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/configcoleta.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/configfav.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/configfav.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
7   -
wscacicneo/templates/confighome.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/confighome.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
7   -
wscacicneo/templates/dashboard.pt
... ... @@ -1,14 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/dashboard.js"></script>
4   - <LINK metal:fill-slot="css" href="static/dashboard.css" type="text/css" rel="stylesheet">
5   -
6   -
7   -<div metal:fill-slot="conteudo" id="widgets">
8   -
9   -<div id="panels">
10   -<div id="g1"></div>
11   -</div>
12   -
13   -</div>
14   -</metal:main>
wscacicneo/templates/diagnostic.pt
... ... @@ -1,6 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/relatorio.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
wscacicneo/templates/downloads.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   -<script metal:fill-slot="javascript" type="text/javascript" src=""></script>
4   -
5   -
6   - <div metal:fill-slot="conteudo" style="display:none;" id="widgets"></div>
7   -</metal:main>
wscacicneo/templates/editarorgao.pt
... ... @@ -105,8 +105,8 @@
105 105 type: "PUT",
106 106 url: "${request.route_url('root')}put_orgao",
107 107 data: data,
108   - success: function(){ alert('aaaaaaaaaaaaaaaaaaaaaa') },
109   - error: function(){ alert('ooooooooooooooooooooooooo') },
  108 + success: function(){ alert('Cadastro realizado com sucesso') },
  109 + error: function(){ alert('Erro ao realizar o cadastro. Todos os campos são obrigatórios') },
110 110 });
111 111 });
112 112 </script>
... ...
wscacicneo/templates/error.pt
1 1 <metal:main use-macro="load: master.pt">
2 2 <metal:content fill-slot="conteudo">
3   -<div class="container">
4   -
5   - <div class="row">
6   - <div class="col-md-12">
7   - <!-- Widget starts -->
8   - <div class="widget">
9   - <!-- Widget head -->
10   - <div class="widget-head">
11   - <i class="fa fa-question-circle"></i> Error
12   - </div>
13   -
14   - <div class="widget-content">
15   - <div class="padd error">
16   -
17   - <h1>Opps!!! It's 404</h1>
18   - <p>Aliquam consequat, purus vitae auctor ullamcorper, sem velit convallis quam, a pharetra justo nunc et mauris. </p>
19   - <br>
20   -
21   - <div class="input-group input-group-width">
22   - <input type="text" class="form-control">
23   - <span class="input-group-btn">
24   - <button class="btn btn-default" type="button">Search</button>
25   - </span>
26   - </div>
27   -
28   - <br>
29   - <div class="horizontal-links">
30   - <a href="index.html">Home</a></div>
31   - </div>
32   - <div class="widget-foot">
33   - <!-- Footer goes here -->
  3 + <div class="container">
  4 + <div class="row">
  5 + <div class="col-md-12">
  6 + <!-- Widget starts -->
  7 + <div class="widget">
  8 + <!-- Widget head -->
  9 + <div class="widget-head">
  10 + <i class="fa fa-question-circle"></i> Error
34 11 </div>
35   - </div>
36   - </div>
  12 + <div class="padd error">
  13 + <h1>Erro 404</h1>
  14 + <p>A página solicitada não foi encontrada ou não existe. </p>
  15 + <br>
  16 + <br>
  17 + <div class="horizontal-links">
  18 + <a href="${request.route_url('root')}home">Início</a></div>
  19 + <div class="widget-foot">
  20 + <!-- Footer goes here -->
  21 + </div>
  22 + </div>
  23 + </div>
  24 + </div>
37 25 </div>
38 26 </div>
39   - </div>
40 27 </metal:content>
41   - <metal:content fill-slot="javascript">
42   - <script type="text/javascript">
43   - </script>
44   - </metal:content>
45 28 </metal:main>
... ...
wscacicneo/templates/escritorio.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/escritorio.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>
wscacicneo/templates/estatisticas.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   -<!-- <script metal:fill-slot="javascript" type="text/javascript" src="static/teste-tabela.js"></script> -->
4   -<script metal:fill-slot="javascript" type="text/javascript" src=""></script>
5   -
6   -<div metal:fill-slot="conteudo" style="display:none;" id="widgets"></div>
7   -</metal:main>
wscacicneo/templates/ferramentas.pt
... ... @@ -1,5 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   -
4   - <div metal:fill-slot="conteudo" id="widgets"></div>
5   -</metal:main>
wscacicneo/templates/gestao.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/gestao.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
7   -
wscacicneo/templates/gestor.pt
... ... @@ -1,5 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <script metal:fill-slot="javascript" type="text/javascript" src="static/gestor.js"></script>
3   -
4   - <div metal:fill-slot="conteudo" id="widgets"></div>
5   -</metal:main>
wscacicneo/templates/graficop.pt
... ... @@ -1,6 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/home2.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets"></div>
6   -</metal:main>
wscacicneo/templates/hd.pt
... ... @@ -1,7 +0,0 @@
1   -<metal:main use-macro="load: master.pt">
2   - <!-- Insere JavaScript -->
3   - <script metal:fill-slot="javascript" type="text/javascript" src="static/hd.js"></script>
4   -
5   - <div metal:fill-slot="conteudo" id="widgets">
6   -</div>
7   -</metal:main>