MX-SAT 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec +3 -0
- data/.travis.yml +11 -0
- data/.yardopts +9 -0
- data/Gemfile +34 -0
- data/Guardfile +26 -0
- data/LICENSE.txt +22 -0
- data/MX-SAT.gemspec +26 -0
- data/README.md +89 -0
- data/REFERENCIAS.md +30 -0
- data/Rakefile +15 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/Anexo24_05012015.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/M_1aRMRMF_270215.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/RecomendacionesalSAT.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/catalogo_bancos.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/catalogo_metodos_pago.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/catalogo_monedas.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/codigo_agrupador.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_AuxiliarCtas.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_AuxiliarFolios.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_BalanzaComprobacion.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_CatalogoCuentas.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_PolizasPeriodo.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/e_SelloDigitalContElec.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/pdf/extracto_reglas.pdf +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/plantillas_xls/balanza_comprobacion.xlsx +0 -0
- data/data/MX/SAT/contabilidad/archivos/v1.0/plantillas_xls/catalogo_cuentas.xlsx +0 -0
- data/lib/MX/SAT.rb +8 -0
- data/lib/MX/SAT/Contabilidad/balanza_comprobacion.rb +141 -0
- data/lib/MX/SAT/Contabilidad/catalogo_cuentas.rb +117 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/AuxiliarCtas_1_1.xsd +215 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/AuxiliarFolios_1_2.xsd +342 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/BalanzaComprobacion_1_1.xsd +160 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/CatalogoCuentas_1_1.xsd +157 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/CatalogosParaEsqContE.xsd +1398 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/PolizasPeriodo_1_1.xsd +664 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xsd/SelloDigitalContElec.xsd +80 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/AuxiliarCtas_1_1.xslt +63 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/AuxiliarFolios_1_1.xslt +104 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/BalanzaComprobacion_1_1.xslt +53 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/CatalogoCuentas_1_1.xslt +47 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/PolizasPeriodo_1_1.xslt +176 -0
- data/lib/MX/SAT/Contabilidad/data/v1.1/xslt/utilerias.xslt +22 -0
- data/lib/MX/SAT/certificacion.rb +36 -0
- data/lib/MX/SAT/version.rb +6 -0
- data/spec/MX/SAT/contabilidad/balanza_comprobacion_spec.rb +160 -0
- data/spec/MX/SAT/contabilidad/catalogo_cuentas_spec.rb +101 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/support/archivos/xlsx/balanza_comprobacion_complementaria.xlsx +0 -0
- data/spec/support/archivos/xlsx/balanza_comprobacion_normal.xlsx +0 -0
- data/spec/support/archivos/xlsx/catalogo_cuentas.xlsx +0 -0
- data/spec/support/archivos/xml/MTS110304UT4201501BC.xml +8 -0
- data/spec/support/archivos/xml/MTS110304UT4201501BN.xml +8 -0
- data/spec/support/archivos/xml/MTS110304UT4201501CT.xml +8 -0
- metadata +152 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:BCE="www.sat.gob.mx/esquemas/ContabilidadE/1_1/BalanzaComprobacion" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="www.sat.gob.mx/esquemas/ContabilidadE/1_1/BalanzaComprobacion" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
|
3
|
+
<xs:element name="Balanza">
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Estándar de balanza de comprobación que se entrega como parte de la contabilidad electrónica.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<xs:complexType>
|
|
8
|
+
<xs:sequence>
|
|
9
|
+
<xs:element name="Ctas" maxOccurs="unbounded">
|
|
10
|
+
<xs:annotation>
|
|
11
|
+
<xs:documentation>Nodo obligatorio para expresar el detalle de cada cuenta o subcuenta de la balanza de comprobación.</xs:documentation>
|
|
12
|
+
</xs:annotation>
|
|
13
|
+
<xs:complexType>
|
|
14
|
+
<xs:attribute name="NumCta" use="required">
|
|
15
|
+
<xs:annotation>
|
|
16
|
+
<xs:documentation>Atributo requerido para expresar la clave asignada con que se distingue la cuenta o subcuenta en el catálogo de cuentas del contribuyente.</xs:documentation>
|
|
17
|
+
</xs:annotation>
|
|
18
|
+
<xs:simpleType>
|
|
19
|
+
<xs:restriction base="xs:string">
|
|
20
|
+
<xs:minLength value="1"/>
|
|
21
|
+
<xs:maxLength value="100"/>
|
|
22
|
+
</xs:restriction>
|
|
23
|
+
</xs:simpleType>
|
|
24
|
+
</xs:attribute>
|
|
25
|
+
<xs:attribute name="SaldoIni" type="BCE:t_Importe" use="required">
|
|
26
|
+
<xs:annotation>
|
|
27
|
+
<xs:documentation>Atributo requerido para expresar el monto del saldo inicial de la cuenta o subcuenta en el periodo. De acuerdo a la naturaleza de la cuenta o subcuenta, deberá de corresponder el saldo inicial, de lo contrario se entenderá que es un saldo inicial de naturaleza inversa. En caso de no existir dato, colocar cero (0)</xs:documentation>
|
|
28
|
+
</xs:annotation>
|
|
29
|
+
</xs:attribute>
|
|
30
|
+
<xs:attribute name="Debe" use="required">
|
|
31
|
+
<xs:annotation>
|
|
32
|
+
<xs:documentation>Atributo requerido para expresar el monto de los movimientos deudores de la cuenta o subcuenta. En caso de no existir dato, colocar cero (0)</xs:documentation>
|
|
33
|
+
</xs:annotation>
|
|
34
|
+
<xs:simpleType>
|
|
35
|
+
<xs:restriction base="BCE:t_Importe"/>
|
|
36
|
+
</xs:simpleType>
|
|
37
|
+
</xs:attribute>
|
|
38
|
+
<xs:attribute name="Haber" type="BCE:t_Importe" use="required">
|
|
39
|
+
<xs:annotation>
|
|
40
|
+
<xs:documentation>Atributo requerido para expresar el monto de los movimientos acreedores de la cuenta o subcuenta. En caso de no existir dato, colocar cero (0)</xs:documentation>
|
|
41
|
+
</xs:annotation>
|
|
42
|
+
</xs:attribute>
|
|
43
|
+
<xs:attribute name="SaldoFin" type="BCE:t_Importe" use="required">
|
|
44
|
+
<xs:annotation>
|
|
45
|
+
<xs:documentation>Atributo requerido para expresar el monto del saldo final de la cuenta o subcuenta en el periodo. De acuerdo a la naturaleza de la cuenta o subcuenta, deberá de corresponder el saldo final, de lo contrario se entenderá que es un saldo final de naturaleza inversa. En caso de no existir dato, colocar cero (0)</xs:documentation>
|
|
46
|
+
</xs:annotation>
|
|
47
|
+
</xs:attribute>
|
|
48
|
+
</xs:complexType>
|
|
49
|
+
</xs:element>
|
|
50
|
+
</xs:sequence>
|
|
51
|
+
<xs:attribute name="Version" type="xs:string" use="required" fixed="1.1">
|
|
52
|
+
<xs:annotation>
|
|
53
|
+
<xs:documentation>Atributo requerido para expresar la versión del formato.</xs:documentation>
|
|
54
|
+
</xs:annotation>
|
|
55
|
+
</xs:attribute>
|
|
56
|
+
<xs:attribute name="RFC" use="required">
|
|
57
|
+
<xs:annotation>
|
|
58
|
+
<xs:documentation>Atributo requerido para expresar el RFC del contribuyente que envía los datos</xs:documentation>
|
|
59
|
+
</xs:annotation>
|
|
60
|
+
<xs:simpleType>
|
|
61
|
+
<xs:restriction base="xs:string">
|
|
62
|
+
<xs:minLength value="12"/>
|
|
63
|
+
<xs:maxLength value="13"/>
|
|
64
|
+
<xs:whiteSpace value="collapse"/>
|
|
65
|
+
<xs:pattern value="[A-ZÑ&]{3,4}[0-9]{2}[0-1][0-9][0-3][0-9][A-Z0-9]?[A-Z0-9]?[0-9A-Z]?"/>
|
|
66
|
+
</xs:restriction>
|
|
67
|
+
</xs:simpleType>
|
|
68
|
+
</xs:attribute>
|
|
69
|
+
<xs:attribute name="Mes" use="required">
|
|
70
|
+
<xs:annotation>
|
|
71
|
+
<xs:documentation>Atributo requerido para expresar el mes al que corresponde la balanza de comprobación</xs:documentation>
|
|
72
|
+
</xs:annotation>
|
|
73
|
+
<xs:simpleType>
|
|
74
|
+
<xs:restriction base="xs:string">
|
|
75
|
+
<xs:enumeration value="01"/>
|
|
76
|
+
<xs:enumeration value="02"/>
|
|
77
|
+
<xs:enumeration value="03"/>
|
|
78
|
+
<xs:enumeration value="04"/>
|
|
79
|
+
<xs:enumeration value="05"/>
|
|
80
|
+
<xs:enumeration value="06"/>
|
|
81
|
+
<xs:enumeration value="07"/>
|
|
82
|
+
<xs:enumeration value="08"/>
|
|
83
|
+
<xs:enumeration value="09"/>
|
|
84
|
+
<xs:enumeration value="10"/>
|
|
85
|
+
<xs:enumeration value="11"/>
|
|
86
|
+
<xs:enumeration value="12"/>
|
|
87
|
+
<xs:enumeration value="13"/>
|
|
88
|
+
</xs:restriction>
|
|
89
|
+
</xs:simpleType>
|
|
90
|
+
</xs:attribute>
|
|
91
|
+
<xs:attribute name="Anio" use="required">
|
|
92
|
+
<xs:annotation>
|
|
93
|
+
<xs:documentation>Atributo requerido para expresar el año al que corresponde la balanza</xs:documentation>
|
|
94
|
+
</xs:annotation>
|
|
95
|
+
<xs:simpleType>
|
|
96
|
+
<xs:restriction base="xs:int">
|
|
97
|
+
<xs:minInclusive value="2015"/>
|
|
98
|
+
<xs:maxInclusive value="2099"/>
|
|
99
|
+
</xs:restriction>
|
|
100
|
+
</xs:simpleType>
|
|
101
|
+
</xs:attribute>
|
|
102
|
+
<xs:attribute name="TipoEnvio" use="required">
|
|
103
|
+
<xs:annotation>
|
|
104
|
+
<xs:documentation>Atributo requerido para expresar el tipo de envío de la balanza (N - Normal; C - Complementaria)</xs:documentation>
|
|
105
|
+
</xs:annotation>
|
|
106
|
+
<xs:simpleType>
|
|
107
|
+
<xs:restriction base="xs:string">
|
|
108
|
+
<xs:pattern value="[NC]"/>
|
|
109
|
+
</xs:restriction>
|
|
110
|
+
</xs:simpleType>
|
|
111
|
+
</xs:attribute>
|
|
112
|
+
<xs:attribute name="FechaModBal" type="xs:date" use="optional">
|
|
113
|
+
<xs:annotation>
|
|
114
|
+
<xs:documentation>Atributo opcional para expresar la fecha de la última modificación contable de la balanza de comprobación. Es requerido cuando el atributo TipoEnvio = C. Se convierte en requerido cuando se cuente con la información.</xs:documentation>
|
|
115
|
+
</xs:annotation>
|
|
116
|
+
</xs:attribute>
|
|
117
|
+
<xs:attribute name="Sello" use="optional">
|
|
118
|
+
<xs:annotation>
|
|
119
|
+
<xs:documentation>Atributo opcional para contener el sello digital del archivo de contabilidad electrónica. El sello deberá ser expresado cómo una cadena de texto en formato Base 64</xs:documentation>
|
|
120
|
+
</xs:annotation>
|
|
121
|
+
<xs:simpleType>
|
|
122
|
+
<xs:restriction base="xs:string">
|
|
123
|
+
<xs:whiteSpace value="collapse"/>
|
|
124
|
+
</xs:restriction>
|
|
125
|
+
</xs:simpleType>
|
|
126
|
+
</xs:attribute>
|
|
127
|
+
<xs:attribute name="noCertificado" use="optional">
|
|
128
|
+
<xs:annotation>
|
|
129
|
+
<xs:documentation>Atributo opcional para expresar el número de serie del certificado de sello digital que ampara el archivo de contabilidad electrónica, de acuerdo al acuse correspondiente a 20 posiciones otorgado por el sistema del SAT.</xs:documentation>
|
|
130
|
+
</xs:annotation>
|
|
131
|
+
<xs:simpleType>
|
|
132
|
+
<xs:restriction base="xs:string">
|
|
133
|
+
<xs:length value="20"/>
|
|
134
|
+
</xs:restriction>
|
|
135
|
+
</xs:simpleType>
|
|
136
|
+
</xs:attribute>
|
|
137
|
+
<xs:attribute name="Certificado" use="optional">
|
|
138
|
+
<xs:annotation>
|
|
139
|
+
<xs:documentation>Atributo opcional que sirve para expresar el certificado de sello digital que ampara al archivo de contabilidad electrónica como texto, en formato base 64.</xs:documentation>
|
|
140
|
+
</xs:annotation>
|
|
141
|
+
<xs:simpleType>
|
|
142
|
+
<xs:restriction base="xs:string">
|
|
143
|
+
<xs:whiteSpace value="collapse"/>
|
|
144
|
+
</xs:restriction>
|
|
145
|
+
</xs:simpleType>
|
|
146
|
+
</xs:attribute>
|
|
147
|
+
</xs:complexType>
|
|
148
|
+
</xs:element>
|
|
149
|
+
<xs:simpleType name="t_Importe">
|
|
150
|
+
<xs:annotation>
|
|
151
|
+
<xs:documentation>Tipo definido para expresar importes numéricos con fracción hasta dos decimales</xs:documentation>
|
|
152
|
+
</xs:annotation>
|
|
153
|
+
<xs:restriction base="xs:decimal">
|
|
154
|
+
<xs:whiteSpace value="collapse"/>
|
|
155
|
+
<xs:fractionDigits value="2"/>
|
|
156
|
+
<xs:maxInclusive value="99999999999999.99"/>
|
|
157
|
+
<xs:minExclusive value="-99999999999999.99"/>
|
|
158
|
+
</xs:restriction>
|
|
159
|
+
</xs:simpleType>
|
|
160
|
+
</xs:schema>
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:catalogocuentas="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogoCuentas" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:contelec_td="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogosParaEsqContE" targetNamespace="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogoCuentas" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
|
3
|
+
<xs:import namespace="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogosParaEsqContE" schemaLocation="CatalogosParaEsqContE.xsd"/>
|
|
4
|
+
<xs:element name="Catalogo">
|
|
5
|
+
<xs:annotation>
|
|
6
|
+
<xs:documentation>Estándar de catálogo de cuentas que se entrega como parte de la contabilidad electrónica.</xs:documentation>
|
|
7
|
+
</xs:annotation>
|
|
8
|
+
<xs:complexType>
|
|
9
|
+
<xs:sequence>
|
|
10
|
+
<xs:element name="Ctas" maxOccurs="unbounded">
|
|
11
|
+
<xs:annotation>
|
|
12
|
+
<xs:documentation>Nodo obligatorio para expresar el detalle de cada cuenta y subcuenta del catálogo.</xs:documentation>
|
|
13
|
+
</xs:annotation>
|
|
14
|
+
<xs:complexType>
|
|
15
|
+
<xs:attribute name="CodAgrup" type="contelec_td:c_CodAgrup" use="required">
|
|
16
|
+
<xs:annotation>
|
|
17
|
+
<xs:documentation>Atributo requerido para expresar el código asociador de cuentas y subcuentas conforme al catálogo publicado en la página de internet del SAT. Se debe asociar cada cuenta y subcuenta que sea más apropiado de acuerdo con la naturaleza y preponderancia de la cuenta o subcuenta.</xs:documentation>
|
|
18
|
+
</xs:annotation>
|
|
19
|
+
</xs:attribute>
|
|
20
|
+
<xs:attribute name="NumCta" use="required">
|
|
21
|
+
<xs:annotation>
|
|
22
|
+
<xs:documentation>Atributo requerido, es la clave con que se distingue la cuenta o subcuenta en la contabilidad</xs:documentation>
|
|
23
|
+
</xs:annotation>
|
|
24
|
+
<xs:simpleType>
|
|
25
|
+
<xs:restriction base="xs:string">
|
|
26
|
+
<xs:maxLength value="100"/>
|
|
27
|
+
<xs:minLength value="1"/>
|
|
28
|
+
</xs:restriction>
|
|
29
|
+
</xs:simpleType>
|
|
30
|
+
</xs:attribute>
|
|
31
|
+
<xs:attribute name="Desc" use="required">
|
|
32
|
+
<xs:annotation>
|
|
33
|
+
<xs:documentation>Atributo requerido para expresar el nombre de la cuenta o subcuenta</xs:documentation>
|
|
34
|
+
</xs:annotation>
|
|
35
|
+
<xs:simpleType>
|
|
36
|
+
<xs:restriction base="xs:string">
|
|
37
|
+
<xs:minLength value="1"/>
|
|
38
|
+
<xs:maxLength value="400"/>
|
|
39
|
+
</xs:restriction>
|
|
40
|
+
</xs:simpleType>
|
|
41
|
+
</xs:attribute>
|
|
42
|
+
<xs:attribute name="SubCtaDe" use="optional">
|
|
43
|
+
<xs:annotation>
|
|
44
|
+
<xs:documentation>Atributo opcional en el caso de subcuentas. Sirve para expresar la clave de la cuenta a la que pertenece dicha subcuenta. Se convierte en requerido cuando se cuente con la información.</xs:documentation>
|
|
45
|
+
</xs:annotation>
|
|
46
|
+
<xs:simpleType>
|
|
47
|
+
<xs:restriction base="xs:string">
|
|
48
|
+
<xs:minLength value="1"/>
|
|
49
|
+
<xs:maxLength value="100"/>
|
|
50
|
+
</xs:restriction>
|
|
51
|
+
</xs:simpleType>
|
|
52
|
+
</xs:attribute>
|
|
53
|
+
<xs:attribute name="Nivel" use="required">
|
|
54
|
+
<xs:annotation>
|
|
55
|
+
<xs:documentation>Atributo requerido para expresar el nivel en el que se encuentra la cuenta o subcuenta en el catálogo.</xs:documentation>
|
|
56
|
+
</xs:annotation>
|
|
57
|
+
<xs:simpleType>
|
|
58
|
+
<xs:restriction base="xs:int">
|
|
59
|
+
<xs:minInclusive value="1"/>
|
|
60
|
+
</xs:restriction>
|
|
61
|
+
</xs:simpleType>
|
|
62
|
+
</xs:attribute>
|
|
63
|
+
<xs:attribute name="Natur" use="required">
|
|
64
|
+
<xs:annotation>
|
|
65
|
+
<xs:documentation>Atributo requerido para expresar la naturaleza de la cuenta o subcuenta. (D - Deudora, A - Acreedora). ( Activo = D ) ( Pasivo = A ) ( Capital = A ) ( Ingreso = A ) ( Costo = D ) ( Gasto = D ) ( Resultado Integral de Financiamiento = D y/o A ) ( Cuentas de orden = D y/o A ).</xs:documentation>
|
|
66
|
+
</xs:annotation>
|
|
67
|
+
<xs:simpleType>
|
|
68
|
+
<xs:restriction base="xs:string">
|
|
69
|
+
<xs:pattern value="[DA]"/>
|
|
70
|
+
</xs:restriction>
|
|
71
|
+
</xs:simpleType>
|
|
72
|
+
</xs:attribute>
|
|
73
|
+
</xs:complexType>
|
|
74
|
+
</xs:element>
|
|
75
|
+
</xs:sequence>
|
|
76
|
+
<xs:attribute name="Version" type="xs:string" use="required" fixed="1.1">
|
|
77
|
+
<xs:annotation>
|
|
78
|
+
<xs:documentation>Atributo requerido para expresar la versión del formato</xs:documentation>
|
|
79
|
+
</xs:annotation>
|
|
80
|
+
</xs:attribute>
|
|
81
|
+
<xs:attribute name="RFC" use="required">
|
|
82
|
+
<xs:annotation>
|
|
83
|
+
<xs:documentation>Atributo requerido para expresar el RFC del contribuyente que envía los datos</xs:documentation>
|
|
84
|
+
</xs:annotation>
|
|
85
|
+
<xs:simpleType>
|
|
86
|
+
<xs:restriction base="xs:string">
|
|
87
|
+
<xs:minLength value="12"/>
|
|
88
|
+
<xs:maxLength value="13"/>
|
|
89
|
+
<xs:pattern value="[A-ZÑ&]{3,4}[0-9]{2}[0-1][0-9][0-3][0-9][A-Z0-9]?[A-Z0-9]?[0-9A-Z]?"/>
|
|
90
|
+
</xs:restriction>
|
|
91
|
+
</xs:simpleType>
|
|
92
|
+
</xs:attribute>
|
|
93
|
+
<xs:attribute name="Mes" use="required">
|
|
94
|
+
<xs:annotation>
|
|
95
|
+
<xs:documentation>Atributo requerido para expresar el mes en que inicia la vigencia del catálogo para la balanza</xs:documentation>
|
|
96
|
+
</xs:annotation>
|
|
97
|
+
<xs:simpleType>
|
|
98
|
+
<xs:restriction base="xs:string">
|
|
99
|
+
<xs:enumeration value="01"/>
|
|
100
|
+
<xs:enumeration value="02"/>
|
|
101
|
+
<xs:enumeration value="03"/>
|
|
102
|
+
<xs:enumeration value="04"/>
|
|
103
|
+
<xs:enumeration value="05"/>
|
|
104
|
+
<xs:enumeration value="06"/>
|
|
105
|
+
<xs:enumeration value="07"/>
|
|
106
|
+
<xs:enumeration value="08"/>
|
|
107
|
+
<xs:enumeration value="09"/>
|
|
108
|
+
<xs:enumeration value="10"/>
|
|
109
|
+
<xs:enumeration value="11"/>
|
|
110
|
+
<xs:enumeration value="12"/>
|
|
111
|
+
</xs:restriction>
|
|
112
|
+
</xs:simpleType>
|
|
113
|
+
</xs:attribute>
|
|
114
|
+
<xs:attribute name="Anio" use="required">
|
|
115
|
+
<xs:annotation>
|
|
116
|
+
<xs:documentation>Atributo requerido para expresar el año en que inicia la vigencia del catálogo para la balanza</xs:documentation>
|
|
117
|
+
</xs:annotation>
|
|
118
|
+
<xs:simpleType>
|
|
119
|
+
<xs:restriction base="xs:int">
|
|
120
|
+
<xs:minInclusive value="2015"/>
|
|
121
|
+
<xs:maxInclusive value="2099"/>
|
|
122
|
+
</xs:restriction>
|
|
123
|
+
</xs:simpleType>
|
|
124
|
+
</xs:attribute>
|
|
125
|
+
<xs:attribute name="Sello" use="optional">
|
|
126
|
+
<xs:annotation>
|
|
127
|
+
<xs:documentation>Atributo opcional para contener el sello digital del archivo de contabilidad electrónica. El sello deberá ser expresado cómo una cadena de texto en formato Base 64</xs:documentation>
|
|
128
|
+
</xs:annotation>
|
|
129
|
+
<xs:simpleType>
|
|
130
|
+
<xs:restriction base="xs:string">
|
|
131
|
+
<xs:whiteSpace value="collapse"/>
|
|
132
|
+
</xs:restriction>
|
|
133
|
+
</xs:simpleType>
|
|
134
|
+
</xs:attribute>
|
|
135
|
+
<xs:attribute name="noCertificado" use="optional">
|
|
136
|
+
<xs:annotation>
|
|
137
|
+
<xs:documentation>Atributo opcional para expresar el número de serie del certificado de sello digital que ampara el archivo de contabilidad electrónica, de acuerdo al acuse correspondiente a 20 posiciones otorgado por el sistema del SAT.</xs:documentation>
|
|
138
|
+
</xs:annotation>
|
|
139
|
+
<xs:simpleType>
|
|
140
|
+
<xs:restriction base="xs:string">
|
|
141
|
+
<xs:length value="20"/>
|
|
142
|
+
</xs:restriction>
|
|
143
|
+
</xs:simpleType>
|
|
144
|
+
</xs:attribute>
|
|
145
|
+
<xs:attribute name="Certificado" use="optional">
|
|
146
|
+
<xs:annotation>
|
|
147
|
+
<xs:documentation>Atributo opcional que sirve para expresar el certificado de sello digital que ampara al archivo de contabilidad electrónica como texto, en formato base 64.</xs:documentation>
|
|
148
|
+
</xs:annotation>
|
|
149
|
+
<xs:simpleType>
|
|
150
|
+
<xs:restriction base="xs:string">
|
|
151
|
+
<xs:whiteSpace value="collapse"/>
|
|
152
|
+
</xs:restriction>
|
|
153
|
+
</xs:simpleType>
|
|
154
|
+
</xs:attribute>
|
|
155
|
+
</xs:complexType>
|
|
156
|
+
</xs:element>
|
|
157
|
+
</xs:schema>
|
|
@@ -0,0 +1,1398 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:contelec_td="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogosParaEsqContE" targetNamespace="www.sat.gob.mx/esquemas/ContabilidadE/1_1/CatalogosParaEsqContE" elementFormDefault="qualified" attributeFormDefault="unqualified">
|
|
3
|
+
<xs:simpleType name="c_CodAgrup">
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Catálogo de Códigos Agrupadores</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<xs:restriction base="xs:string">
|
|
8
|
+
<xs:enumeration value="000"/>
|
|
9
|
+
<xs:enumeration value="100"/>
|
|
10
|
+
<xs:enumeration value="100.01"/>
|
|
11
|
+
<xs:enumeration value="101"/>
|
|
12
|
+
<xs:enumeration value="101.01"/>
|
|
13
|
+
<xs:enumeration value="102"/>
|
|
14
|
+
<xs:enumeration value="102.01"/>
|
|
15
|
+
<xs:enumeration value="102.02"/>
|
|
16
|
+
<xs:enumeration value="103"/>
|
|
17
|
+
<xs:enumeration value="103.01"/>
|
|
18
|
+
<xs:enumeration value="103.02"/>
|
|
19
|
+
<xs:enumeration value="103.03"/>
|
|
20
|
+
<xs:enumeration value="104"/>
|
|
21
|
+
<xs:enumeration value="104.01"/>
|
|
22
|
+
<xs:enumeration value="105"/>
|
|
23
|
+
<xs:enumeration value="105.01"/>
|
|
24
|
+
<xs:enumeration value="105.02"/>
|
|
25
|
+
<xs:enumeration value="105.03"/>
|
|
26
|
+
<xs:enumeration value="105.04"/>
|
|
27
|
+
<xs:enumeration value="106"/>
|
|
28
|
+
<xs:enumeration value="106.01"/>
|
|
29
|
+
<xs:enumeration value="106.02"/>
|
|
30
|
+
<xs:enumeration value="106.03"/>
|
|
31
|
+
<xs:enumeration value="106.04"/>
|
|
32
|
+
<xs:enumeration value="106.05"/>
|
|
33
|
+
<xs:enumeration value="106.06"/>
|
|
34
|
+
<xs:enumeration value="106.07"/>
|
|
35
|
+
<xs:enumeration value="106.08"/>
|
|
36
|
+
<xs:enumeration value="106.09"/>
|
|
37
|
+
<xs:enumeration value="106.10"/>
|
|
38
|
+
<xs:enumeration value="107"/>
|
|
39
|
+
<xs:enumeration value="107.01"/>
|
|
40
|
+
<xs:enumeration value="107.02"/>
|
|
41
|
+
<xs:enumeration value="107.03"/>
|
|
42
|
+
<xs:enumeration value="107.04"/>
|
|
43
|
+
<xs:enumeration value="107.05"/>
|
|
44
|
+
<xs:enumeration value="108"/>
|
|
45
|
+
<xs:enumeration value="108.01"/>
|
|
46
|
+
<xs:enumeration value="108.02"/>
|
|
47
|
+
<xs:enumeration value="108.03"/>
|
|
48
|
+
<xs:enumeration value="108.04"/>
|
|
49
|
+
<xs:enumeration value="109"/>
|
|
50
|
+
<xs:enumeration value="109.01"/>
|
|
51
|
+
<xs:enumeration value="109.02"/>
|
|
52
|
+
<xs:enumeration value="109.03"/>
|
|
53
|
+
<xs:enumeration value="109.04"/>
|
|
54
|
+
<xs:enumeration value="109.05"/>
|
|
55
|
+
<xs:enumeration value="109.06"/>
|
|
56
|
+
<xs:enumeration value="109.07"/>
|
|
57
|
+
<xs:enumeration value="109.08"/>
|
|
58
|
+
<xs:enumeration value="109.09"/>
|
|
59
|
+
<xs:enumeration value="109.10"/>
|
|
60
|
+
<xs:enumeration value="109.11"/>
|
|
61
|
+
<xs:enumeration value="109.12"/>
|
|
62
|
+
<xs:enumeration value="109.13"/>
|
|
63
|
+
<xs:enumeration value="109.14"/>
|
|
64
|
+
<xs:enumeration value="109.15"/>
|
|
65
|
+
<xs:enumeration value="109.16"/>
|
|
66
|
+
<xs:enumeration value="109.17"/>
|
|
67
|
+
<xs:enumeration value="109.18"/>
|
|
68
|
+
<xs:enumeration value="109.19"/>
|
|
69
|
+
<xs:enumeration value="109.20"/>
|
|
70
|
+
<xs:enumeration value="109.21"/>
|
|
71
|
+
<xs:enumeration value="109.22"/>
|
|
72
|
+
<xs:enumeration value="109.23"/>
|
|
73
|
+
<xs:enumeration value="110"/>
|
|
74
|
+
<xs:enumeration value="110.01"/>
|
|
75
|
+
<xs:enumeration value="111"/>
|
|
76
|
+
<xs:enumeration value="111.01"/>
|
|
77
|
+
<xs:enumeration value="112"/>
|
|
78
|
+
<xs:enumeration value="112.01"/>
|
|
79
|
+
<xs:enumeration value="113"/>
|
|
80
|
+
<xs:enumeration value="113.01"/>
|
|
81
|
+
<xs:enumeration value="113.02"/>
|
|
82
|
+
<xs:enumeration value="113.03"/>
|
|
83
|
+
<xs:enumeration value="113.04"/>
|
|
84
|
+
<xs:enumeration value="113.05"/>
|
|
85
|
+
<xs:enumeration value="113.06"/>
|
|
86
|
+
<xs:enumeration value="113.07"/>
|
|
87
|
+
<xs:enumeration value="113.08"/>
|
|
88
|
+
<xs:enumeration value="114"/>
|
|
89
|
+
<xs:enumeration value="114.01"/>
|
|
90
|
+
<xs:enumeration value="115"/>
|
|
91
|
+
<xs:enumeration value="115.01"/>
|
|
92
|
+
<xs:enumeration value="115.02"/>
|
|
93
|
+
<xs:enumeration value="115.03"/>
|
|
94
|
+
<xs:enumeration value="115.04"/>
|
|
95
|
+
<xs:enumeration value="115.05"/>
|
|
96
|
+
<xs:enumeration value="115.06"/>
|
|
97
|
+
<xs:enumeration value="115.07"/>
|
|
98
|
+
<xs:enumeration value="116"/>
|
|
99
|
+
<xs:enumeration value="116.01"/>
|
|
100
|
+
<xs:enumeration value="117"/>
|
|
101
|
+
<xs:enumeration value="117.01"/>
|
|
102
|
+
<xs:enumeration value="118"/>
|
|
103
|
+
<xs:enumeration value="118.01"/>
|
|
104
|
+
<xs:enumeration value="118.02"/>
|
|
105
|
+
<xs:enumeration value="118.03"/>
|
|
106
|
+
<xs:enumeration value="118.04"/>
|
|
107
|
+
<xs:enumeration value="119"/>
|
|
108
|
+
<xs:enumeration value="119.01"/>
|
|
109
|
+
<xs:enumeration value="119.02"/>
|
|
110
|
+
<xs:enumeration value="119.03"/>
|
|
111
|
+
<xs:enumeration value="119.04"/>
|
|
112
|
+
<xs:enumeration value="120"/>
|
|
113
|
+
<xs:enumeration value="120.01"/>
|
|
114
|
+
<xs:enumeration value="120.02"/>
|
|
115
|
+
<xs:enumeration value="120.03"/>
|
|
116
|
+
<xs:enumeration value="120.04"/>
|
|
117
|
+
<xs:enumeration value="121"/>
|
|
118
|
+
<xs:enumeration value="121.01"/>
|
|
119
|
+
<xs:enumeration value="100.02"/>
|
|
120
|
+
<xs:enumeration value="151"/>
|
|
121
|
+
<xs:enumeration value="151.01"/>
|
|
122
|
+
<xs:enumeration value="152"/>
|
|
123
|
+
<xs:enumeration value="152.01"/>
|
|
124
|
+
<xs:enumeration value="153"/>
|
|
125
|
+
<xs:enumeration value="153.01"/>
|
|
126
|
+
<xs:enumeration value="154"/>
|
|
127
|
+
<xs:enumeration value="154.01"/>
|
|
128
|
+
<xs:enumeration value="155"/>
|
|
129
|
+
<xs:enumeration value="155.01"/>
|
|
130
|
+
<xs:enumeration value="156"/>
|
|
131
|
+
<xs:enumeration value="156.01"/>
|
|
132
|
+
<xs:enumeration value="157"/>
|
|
133
|
+
<xs:enumeration value="157.01"/>
|
|
134
|
+
<xs:enumeration value="158"/>
|
|
135
|
+
<xs:enumeration value="158.01"/>
|
|
136
|
+
<xs:enumeration value="159"/>
|
|
137
|
+
<xs:enumeration value="159.01"/>
|
|
138
|
+
<xs:enumeration value="160"/>
|
|
139
|
+
<xs:enumeration value="160.01"/>
|
|
140
|
+
<xs:enumeration value="161"/>
|
|
141
|
+
<xs:enumeration value="161.01"/>
|
|
142
|
+
<xs:enumeration value="162"/>
|
|
143
|
+
<xs:enumeration value="162.01"/>
|
|
144
|
+
<xs:enumeration value="163"/>
|
|
145
|
+
<xs:enumeration value="163.01"/>
|
|
146
|
+
<xs:enumeration value="164"/>
|
|
147
|
+
<xs:enumeration value="164.01"/>
|
|
148
|
+
<xs:enumeration value="165"/>
|
|
149
|
+
<xs:enumeration value="165.01"/>
|
|
150
|
+
<xs:enumeration value="166"/>
|
|
151
|
+
<xs:enumeration value="166.01"/>
|
|
152
|
+
<xs:enumeration value="167"/>
|
|
153
|
+
<xs:enumeration value="167.01"/>
|
|
154
|
+
<xs:enumeration value="168"/>
|
|
155
|
+
<xs:enumeration value="168.01"/>
|
|
156
|
+
<xs:enumeration value="169"/>
|
|
157
|
+
<xs:enumeration value="169.01"/>
|
|
158
|
+
<xs:enumeration value="170"/>
|
|
159
|
+
<xs:enumeration value="170.01"/>
|
|
160
|
+
<xs:enumeration value="171"/>
|
|
161
|
+
<xs:enumeration value="171.01"/>
|
|
162
|
+
<xs:enumeration value="171.02"/>
|
|
163
|
+
<xs:enumeration value="171.03"/>
|
|
164
|
+
<xs:enumeration value="171.04"/>
|
|
165
|
+
<xs:enumeration value="171.05"/>
|
|
166
|
+
<xs:enumeration value="171.06"/>
|
|
167
|
+
<xs:enumeration value="171.07"/>
|
|
168
|
+
<xs:enumeration value="171.08"/>
|
|
169
|
+
<xs:enumeration value="171.09"/>
|
|
170
|
+
<xs:enumeration value="171.10"/>
|
|
171
|
+
<xs:enumeration value="171.11"/>
|
|
172
|
+
<xs:enumeration value="171.12"/>
|
|
173
|
+
<xs:enumeration value="171.13"/>
|
|
174
|
+
<xs:enumeration value="171.14"/>
|
|
175
|
+
<xs:enumeration value="171.15"/>
|
|
176
|
+
<xs:enumeration value="171.16"/>
|
|
177
|
+
<xs:enumeration value="171.17"/>
|
|
178
|
+
<xs:enumeration value="171.18"/>
|
|
179
|
+
<xs:enumeration value="172"/>
|
|
180
|
+
<xs:enumeration value="172.01"/>
|
|
181
|
+
<xs:enumeration value="172.02"/>
|
|
182
|
+
<xs:enumeration value="172.03"/>
|
|
183
|
+
<xs:enumeration value="172.04"/>
|
|
184
|
+
<xs:enumeration value="172.05"/>
|
|
185
|
+
<xs:enumeration value="172.06"/>
|
|
186
|
+
<xs:enumeration value="172.07"/>
|
|
187
|
+
<xs:enumeration value="172.08"/>
|
|
188
|
+
<xs:enumeration value="172.09"/>
|
|
189
|
+
<xs:enumeration value="172.10"/>
|
|
190
|
+
<xs:enumeration value="172.11"/>
|
|
191
|
+
<xs:enumeration value="172.12"/>
|
|
192
|
+
<xs:enumeration value="172.13"/>
|
|
193
|
+
<xs:enumeration value="172.14"/>
|
|
194
|
+
<xs:enumeration value="172.15"/>
|
|
195
|
+
<xs:enumeration value="172.16"/>
|
|
196
|
+
<xs:enumeration value="172.17"/>
|
|
197
|
+
<xs:enumeration value="172.18"/>
|
|
198
|
+
<xs:enumeration value="173"/>
|
|
199
|
+
<xs:enumeration value="173.01"/>
|
|
200
|
+
<xs:enumeration value="174"/>
|
|
201
|
+
<xs:enumeration value="174.01"/>
|
|
202
|
+
<xs:enumeration value="175"/>
|
|
203
|
+
<xs:enumeration value="175.01"/>
|
|
204
|
+
<xs:enumeration value="176"/>
|
|
205
|
+
<xs:enumeration value="176.01"/>
|
|
206
|
+
<xs:enumeration value="177"/>
|
|
207
|
+
<xs:enumeration value="177.01"/>
|
|
208
|
+
<xs:enumeration value="178"/>
|
|
209
|
+
<xs:enumeration value="178.01"/>
|
|
210
|
+
<xs:enumeration value="179"/>
|
|
211
|
+
<xs:enumeration value="179.01"/>
|
|
212
|
+
<xs:enumeration value="180"/>
|
|
213
|
+
<xs:enumeration value="180.01"/>
|
|
214
|
+
<xs:enumeration value="181"/>
|
|
215
|
+
<xs:enumeration value="181.01"/>
|
|
216
|
+
<xs:enumeration value="182"/>
|
|
217
|
+
<xs:enumeration value="182.01"/>
|
|
218
|
+
<xs:enumeration value="183"/>
|
|
219
|
+
<xs:enumeration value="183.01"/>
|
|
220
|
+
<xs:enumeration value="183.02"/>
|
|
221
|
+
<xs:enumeration value="183.03"/>
|
|
222
|
+
<xs:enumeration value="183.04"/>
|
|
223
|
+
<xs:enumeration value="183.05"/>
|
|
224
|
+
<xs:enumeration value="183.06"/>
|
|
225
|
+
<xs:enumeration value="183.07"/>
|
|
226
|
+
<xs:enumeration value="183.08"/>
|
|
227
|
+
<xs:enumeration value="183.09"/>
|
|
228
|
+
<xs:enumeration value="183.10"/>
|
|
229
|
+
<xs:enumeration value="184"/>
|
|
230
|
+
<xs:enumeration value="184.01"/>
|
|
231
|
+
<xs:enumeration value="184.02"/>
|
|
232
|
+
<xs:enumeration value="184.03"/>
|
|
233
|
+
<xs:enumeration value="185"/>
|
|
234
|
+
<xs:enumeration value="185.01"/>
|
|
235
|
+
<xs:enumeration value="186"/>
|
|
236
|
+
<xs:enumeration value="186.01"/>
|
|
237
|
+
<xs:enumeration value="186.02"/>
|
|
238
|
+
<xs:enumeration value="186.03"/>
|
|
239
|
+
<xs:enumeration value="186.04"/>
|
|
240
|
+
<xs:enumeration value="186.05"/>
|
|
241
|
+
<xs:enumeration value="186.06"/>
|
|
242
|
+
<xs:enumeration value="186.07"/>
|
|
243
|
+
<xs:enumeration value="186.08"/>
|
|
244
|
+
<xs:enumeration value="186.09"/>
|
|
245
|
+
<xs:enumeration value="186.10"/>
|
|
246
|
+
<xs:enumeration value="187"/>
|
|
247
|
+
<xs:enumeration value="187.01"/>
|
|
248
|
+
<xs:enumeration value="188"/>
|
|
249
|
+
<xs:enumeration value="188.01"/>
|
|
250
|
+
<xs:enumeration value="188.02"/>
|
|
251
|
+
<xs:enumeration value="188.03"/>
|
|
252
|
+
<xs:enumeration value="189"/>
|
|
253
|
+
<xs:enumeration value="189.01"/>
|
|
254
|
+
<xs:enumeration value="190"/>
|
|
255
|
+
<xs:enumeration value="190.01"/>
|
|
256
|
+
<xs:enumeration value="191"/>
|
|
257
|
+
<xs:enumeration value="191.01"/>
|
|
258
|
+
<xs:enumeration value="200"/>
|
|
259
|
+
<xs:enumeration value="200.01"/>
|
|
260
|
+
<xs:enumeration value="201"/>
|
|
261
|
+
<xs:enumeration value="201.01"/>
|
|
262
|
+
<xs:enumeration value="201.02"/>
|
|
263
|
+
<xs:enumeration value="201.03"/>
|
|
264
|
+
<xs:enumeration value="201.04"/>
|
|
265
|
+
<xs:enumeration value="202"/>
|
|
266
|
+
<xs:enumeration value="202.01"/>
|
|
267
|
+
<xs:enumeration value="202.02"/>
|
|
268
|
+
<xs:enumeration value="202.03"/>
|
|
269
|
+
<xs:enumeration value="202.04"/>
|
|
270
|
+
<xs:enumeration value="202.05"/>
|
|
271
|
+
<xs:enumeration value="202.06"/>
|
|
272
|
+
<xs:enumeration value="202.07"/>
|
|
273
|
+
<xs:enumeration value="202.08"/>
|
|
274
|
+
<xs:enumeration value="202.09"/>
|
|
275
|
+
<xs:enumeration value="202.10"/>
|
|
276
|
+
<xs:enumeration value="202.11"/>
|
|
277
|
+
<xs:enumeration value="202.12"/>
|
|
278
|
+
<xs:enumeration value="203"/>
|
|
279
|
+
<xs:enumeration value="203.01"/>
|
|
280
|
+
<xs:enumeration value="203.02"/>
|
|
281
|
+
<xs:enumeration value="203.03"/>
|
|
282
|
+
<xs:enumeration value="203.04"/>
|
|
283
|
+
<xs:enumeration value="203.05"/>
|
|
284
|
+
<xs:enumeration value="203.06"/>
|
|
285
|
+
<xs:enumeration value="203.07"/>
|
|
286
|
+
<xs:enumeration value="203.08"/>
|
|
287
|
+
<xs:enumeration value="203.09"/>
|
|
288
|
+
<xs:enumeration value="203.10"/>
|
|
289
|
+
<xs:enumeration value="203.11"/>
|
|
290
|
+
<xs:enumeration value="203.12"/>
|
|
291
|
+
<xs:enumeration value="203.13"/>
|
|
292
|
+
<xs:enumeration value="203.14"/>
|
|
293
|
+
<xs:enumeration value="203.15"/>
|
|
294
|
+
<xs:enumeration value="203.16"/>
|
|
295
|
+
<xs:enumeration value="203.17"/>
|
|
296
|
+
<xs:enumeration value="203.18"/>
|
|
297
|
+
<xs:enumeration value="204"/>
|
|
298
|
+
<xs:enumeration value="204.01"/>
|
|
299
|
+
<xs:enumeration value="205"/>
|
|
300
|
+
<xs:enumeration value="205.01"/>
|
|
301
|
+
<xs:enumeration value="205.02"/>
|
|
302
|
+
<xs:enumeration value="205.03"/>
|
|
303
|
+
<xs:enumeration value="205.04"/>
|
|
304
|
+
<xs:enumeration value="205.05"/>
|
|
305
|
+
<xs:enumeration value="205.06"/>
|
|
306
|
+
<xs:enumeration value="206"/>
|
|
307
|
+
<xs:enumeration value="206.01"/>
|
|
308
|
+
<xs:enumeration value="206.02"/>
|
|
309
|
+
<xs:enumeration value="206.03"/>
|
|
310
|
+
<xs:enumeration value="206.04"/>
|
|
311
|
+
<xs:enumeration value="206.05"/>
|
|
312
|
+
<xs:enumeration value="207"/>
|
|
313
|
+
<xs:enumeration value="207.01"/>
|
|
314
|
+
<xs:enumeration value="207.02"/>
|
|
315
|
+
<xs:enumeration value="208"/>
|
|
316
|
+
<xs:enumeration value="208.01"/>
|
|
317
|
+
<xs:enumeration value="208.02"/>
|
|
318
|
+
<xs:enumeration value="209"/>
|
|
319
|
+
<xs:enumeration value="209.01"/>
|
|
320
|
+
<xs:enumeration value="209.02"/>
|
|
321
|
+
<xs:enumeration value="210"/>
|
|
322
|
+
<xs:enumeration value="210.01"/>
|
|
323
|
+
<xs:enumeration value="210.02"/>
|
|
324
|
+
<xs:enumeration value="210.03"/>
|
|
325
|
+
<xs:enumeration value="210.04"/>
|
|
326
|
+
<xs:enumeration value="210.05"/>
|
|
327
|
+
<xs:enumeration value="210.06"/>
|
|
328
|
+
<xs:enumeration value="210.07"/>
|
|
329
|
+
<xs:enumeration value="211"/>
|
|
330
|
+
<xs:enumeration value="211.01"/>
|
|
331
|
+
<xs:enumeration value="211.02"/>
|
|
332
|
+
<xs:enumeration value="211.03"/>
|
|
333
|
+
<xs:enumeration value="212"/>
|
|
334
|
+
<xs:enumeration value="212.01"/>
|
|
335
|
+
<xs:enumeration value="213"/>
|
|
336
|
+
<xs:enumeration value="213.01"/>
|
|
337
|
+
<xs:enumeration value="213.02"/>
|
|
338
|
+
<xs:enumeration value="213.03"/>
|
|
339
|
+
<xs:enumeration value="213.04"/>
|
|
340
|
+
<xs:enumeration value="213.05"/>
|
|
341
|
+
<xs:enumeration value="213.06"/>
|
|
342
|
+
<xs:enumeration value="213.07"/>
|
|
343
|
+
<xs:enumeration value="214"/>
|
|
344
|
+
<xs:enumeration value="214.01"/>
|
|
345
|
+
<xs:enumeration value="215"/>
|
|
346
|
+
<xs:enumeration value="215.01"/>
|
|
347
|
+
<xs:enumeration value="215.02"/>
|
|
348
|
+
<xs:enumeration value="215.03"/>
|
|
349
|
+
<xs:enumeration value="216"/>
|
|
350
|
+
<xs:enumeration value="216.01"/>
|
|
351
|
+
<xs:enumeration value="216.02"/>
|
|
352
|
+
<xs:enumeration value="216.03"/>
|
|
353
|
+
<xs:enumeration value="216.04"/>
|
|
354
|
+
<xs:enumeration value="216.05"/>
|
|
355
|
+
<xs:enumeration value="216.06"/>
|
|
356
|
+
<xs:enumeration value="216.07"/>
|
|
357
|
+
<xs:enumeration value="216.08"/>
|
|
358
|
+
<xs:enumeration value="216.09"/>
|
|
359
|
+
<xs:enumeration value="216.10"/>
|
|
360
|
+
<xs:enumeration value="216.11"/>
|
|
361
|
+
<xs:enumeration value="216.12"/>
|
|
362
|
+
<xs:enumeration value="217"/>
|
|
363
|
+
<xs:enumeration value="217.01"/>
|
|
364
|
+
<xs:enumeration value="218"/>
|
|
365
|
+
<xs:enumeration value="218.01"/>
|
|
366
|
+
<xs:enumeration value="200.02"/>
|
|
367
|
+
<xs:enumeration value="251"/>
|
|
368
|
+
<xs:enumeration value="251.01"/>
|
|
369
|
+
<xs:enumeration value="251.02"/>
|
|
370
|
+
<xs:enumeration value="251.03"/>
|
|
371
|
+
<xs:enumeration value="251.04"/>
|
|
372
|
+
<xs:enumeration value="251.05"/>
|
|
373
|
+
<xs:enumeration value="251.06"/>
|
|
374
|
+
<xs:enumeration value="252"/>
|
|
375
|
+
<xs:enumeration value="252.01"/>
|
|
376
|
+
<xs:enumeration value="252.02"/>
|
|
377
|
+
<xs:enumeration value="252.03"/>
|
|
378
|
+
<xs:enumeration value="252.04"/>
|
|
379
|
+
<xs:enumeration value="252.05"/>
|
|
380
|
+
<xs:enumeration value="252.06"/>
|
|
381
|
+
<xs:enumeration value="252.07"/>
|
|
382
|
+
<xs:enumeration value="252.08"/>
|
|
383
|
+
<xs:enumeration value="252.09"/>
|
|
384
|
+
<xs:enumeration value="252.10"/>
|
|
385
|
+
<xs:enumeration value="252.11"/>
|
|
386
|
+
<xs:enumeration value="252.12"/>
|
|
387
|
+
<xs:enumeration value="252.13"/>
|
|
388
|
+
<xs:enumeration value="252.14"/>
|
|
389
|
+
<xs:enumeration value="252.15"/>
|
|
390
|
+
<xs:enumeration value="252.16"/>
|
|
391
|
+
<xs:enumeration value="252.17"/>
|
|
392
|
+
<xs:enumeration value="253"/>
|
|
393
|
+
<xs:enumeration value="253.01"/>
|
|
394
|
+
<xs:enumeration value="253.02"/>
|
|
395
|
+
<xs:enumeration value="253.03"/>
|
|
396
|
+
<xs:enumeration value="253.04"/>
|
|
397
|
+
<xs:enumeration value="253.05"/>
|
|
398
|
+
<xs:enumeration value="253.06"/>
|
|
399
|
+
<xs:enumeration value="253.07"/>
|
|
400
|
+
<xs:enumeration value="253.08"/>
|
|
401
|
+
<xs:enumeration value="253.09"/>
|
|
402
|
+
<xs:enumeration value="253.10"/>
|
|
403
|
+
<xs:enumeration value="253.11"/>
|
|
404
|
+
<xs:enumeration value="253.12"/>
|
|
405
|
+
<xs:enumeration value="253.13"/>
|
|
406
|
+
<xs:enumeration value="253.14"/>
|
|
407
|
+
<xs:enumeration value="253.15"/>
|
|
408
|
+
<xs:enumeration value="253.16"/>
|
|
409
|
+
<xs:enumeration value="253.17"/>
|
|
410
|
+
<xs:enumeration value="253.18"/>
|
|
411
|
+
<xs:enumeration value="254"/>
|
|
412
|
+
<xs:enumeration value="254.01"/>
|
|
413
|
+
<xs:enumeration value="255"/>
|
|
414
|
+
<xs:enumeration value="255.01"/>
|
|
415
|
+
<xs:enumeration value="256"/>
|
|
416
|
+
<xs:enumeration value="256.01"/>
|
|
417
|
+
<xs:enumeration value="257"/>
|
|
418
|
+
<xs:enumeration value="257.01"/>
|
|
419
|
+
<xs:enumeration value="258"/>
|
|
420
|
+
<xs:enumeration value="258.01"/>
|
|
421
|
+
<xs:enumeration value="259"/>
|
|
422
|
+
<xs:enumeration value="259.01"/>
|
|
423
|
+
<xs:enumeration value="259.02"/>
|
|
424
|
+
<xs:enumeration value="259.03"/>
|
|
425
|
+
<xs:enumeration value="260"/>
|
|
426
|
+
<xs:enumeration value="260.01"/>
|
|
427
|
+
<xs:enumeration value="300"/>
|
|
428
|
+
<xs:enumeration value="301"/>
|
|
429
|
+
<xs:enumeration value="301.01"/>
|
|
430
|
+
<xs:enumeration value="301.02"/>
|
|
431
|
+
<xs:enumeration value="301.03"/>
|
|
432
|
+
<xs:enumeration value="301.04"/>
|
|
433
|
+
<xs:enumeration value="301.05"/>
|
|
434
|
+
<xs:enumeration value="302"/>
|
|
435
|
+
<xs:enumeration value="302.01"/>
|
|
436
|
+
<xs:enumeration value="302.02"/>
|
|
437
|
+
<xs:enumeration value="302.03"/>
|
|
438
|
+
<xs:enumeration value="303"/>
|
|
439
|
+
<xs:enumeration value="303.01"/>
|
|
440
|
+
<xs:enumeration value="304"/>
|
|
441
|
+
<xs:enumeration value="304.01"/>
|
|
442
|
+
<xs:enumeration value="304.02"/>
|
|
443
|
+
<xs:enumeration value="304.03"/>
|
|
444
|
+
<xs:enumeration value="304.04"/>
|
|
445
|
+
<xs:enumeration value="305"/>
|
|
446
|
+
<xs:enumeration value="305.01"/>
|
|
447
|
+
<xs:enumeration value="305.02"/>
|
|
448
|
+
<xs:enumeration value="305.03"/>
|
|
449
|
+
<xs:enumeration value="306"/>
|
|
450
|
+
<xs:enumeration value="306.01"/>
|
|
451
|
+
<xs:enumeration value="400"/>
|
|
452
|
+
<xs:enumeration value="401"/>
|
|
453
|
+
<xs:enumeration value="401.01"/>
|
|
454
|
+
<xs:enumeration value="401.02"/>
|
|
455
|
+
<xs:enumeration value="401.03"/>
|
|
456
|
+
<xs:enumeration value="401.04"/>
|
|
457
|
+
<xs:enumeration value="401.05"/>
|
|
458
|
+
<xs:enumeration value="401.06"/>
|
|
459
|
+
<xs:enumeration value="401.07"/>
|
|
460
|
+
<xs:enumeration value="401.08"/>
|
|
461
|
+
<xs:enumeration value="401.09"/>
|
|
462
|
+
<xs:enumeration value="401.10"/>
|
|
463
|
+
<xs:enumeration value="401.11"/>
|
|
464
|
+
<xs:enumeration value="401.12"/>
|
|
465
|
+
<xs:enumeration value="401.13"/>
|
|
466
|
+
<xs:enumeration value="401.14"/>
|
|
467
|
+
<xs:enumeration value="401.15"/>
|
|
468
|
+
<xs:enumeration value="401.16"/>
|
|
469
|
+
<xs:enumeration value="401.17"/>
|
|
470
|
+
<xs:enumeration value="401.18"/>
|
|
471
|
+
<xs:enumeration value="401.19"/>
|
|
472
|
+
<xs:enumeration value="401.20"/>
|
|
473
|
+
<xs:enumeration value="401.21"/>
|
|
474
|
+
<xs:enumeration value="401.22"/>
|
|
475
|
+
<xs:enumeration value="401.23"/>
|
|
476
|
+
<xs:enumeration value="401.24"/>
|
|
477
|
+
<xs:enumeration value="401.25"/>
|
|
478
|
+
<xs:enumeration value="401.26"/>
|
|
479
|
+
<xs:enumeration value="401.27"/>
|
|
480
|
+
<xs:enumeration value="401.28"/>
|
|
481
|
+
<xs:enumeration value="401.29"/>
|
|
482
|
+
<xs:enumeration value="401.30"/>
|
|
483
|
+
<xs:enumeration value="401.31"/>
|
|
484
|
+
<xs:enumeration value="401.32"/>
|
|
485
|
+
<xs:enumeration value="401.33"/>
|
|
486
|
+
<xs:enumeration value="401.34"/>
|
|
487
|
+
<xs:enumeration value="401.35"/>
|
|
488
|
+
<xs:enumeration value="401.36"/>
|
|
489
|
+
<xs:enumeration value="401.37"/>
|
|
490
|
+
<xs:enumeration value="401.38"/>
|
|
491
|
+
<xs:enumeration value="402"/>
|
|
492
|
+
<xs:enumeration value="402.01"/>
|
|
493
|
+
<xs:enumeration value="402.02"/>
|
|
494
|
+
<xs:enumeration value="402.03"/>
|
|
495
|
+
<xs:enumeration value="402.04"/>
|
|
496
|
+
<xs:enumeration value="403"/>
|
|
497
|
+
<xs:enumeration value="403.01"/>
|
|
498
|
+
<xs:enumeration value="403.02"/>
|
|
499
|
+
<xs:enumeration value="403.03"/>
|
|
500
|
+
<xs:enumeration value="403.04"/>
|
|
501
|
+
<xs:enumeration value="403.05"/>
|
|
502
|
+
<xs:enumeration value="500"/>
|
|
503
|
+
<xs:enumeration value="501"/>
|
|
504
|
+
<xs:enumeration value="501.01"/>
|
|
505
|
+
<xs:enumeration value="501.02"/>
|
|
506
|
+
<xs:enumeration value="501.03"/>
|
|
507
|
+
<xs:enumeration value="501.04"/>
|
|
508
|
+
<xs:enumeration value="501.05"/>
|
|
509
|
+
<xs:enumeration value="501.06"/>
|
|
510
|
+
<xs:enumeration value="501.07"/>
|
|
511
|
+
<xs:enumeration value="501.08"/>
|
|
512
|
+
<xs:enumeration value="502"/>
|
|
513
|
+
<xs:enumeration value="502.01"/>
|
|
514
|
+
<xs:enumeration value="502.02"/>
|
|
515
|
+
<xs:enumeration value="502.03"/>
|
|
516
|
+
<xs:enumeration value="502.04"/>
|
|
517
|
+
<xs:enumeration value="503"/>
|
|
518
|
+
<xs:enumeration value="503.01"/>
|
|
519
|
+
<xs:enumeration value="504"/>
|
|
520
|
+
<xs:enumeration value="504.01"/>
|
|
521
|
+
<xs:enumeration value="504.02"/>
|
|
522
|
+
<xs:enumeration value="504.03"/>
|
|
523
|
+
<xs:enumeration value="504.04"/>
|
|
524
|
+
<xs:enumeration value="504.05"/>
|
|
525
|
+
<xs:enumeration value="504.06"/>
|
|
526
|
+
<xs:enumeration value="504.07"/>
|
|
527
|
+
<xs:enumeration value="504.08"/>
|
|
528
|
+
<xs:enumeration value="504.09"/>
|
|
529
|
+
<xs:enumeration value="504.10"/>
|
|
530
|
+
<xs:enumeration value="504.11"/>
|
|
531
|
+
<xs:enumeration value="504.12"/>
|
|
532
|
+
<xs:enumeration value="504.13"/>
|
|
533
|
+
<xs:enumeration value="504.14"/>
|
|
534
|
+
<xs:enumeration value="504.15"/>
|
|
535
|
+
<xs:enumeration value="504.16"/>
|
|
536
|
+
<xs:enumeration value="504.17"/>
|
|
537
|
+
<xs:enumeration value="504.18"/>
|
|
538
|
+
<xs:enumeration value="504.19"/>
|
|
539
|
+
<xs:enumeration value="504.20"/>
|
|
540
|
+
<xs:enumeration value="504.21"/>
|
|
541
|
+
<xs:enumeration value="504.22"/>
|
|
542
|
+
<xs:enumeration value="504.23"/>
|
|
543
|
+
<xs:enumeration value="504.24"/>
|
|
544
|
+
<xs:enumeration value="504.25"/>
|
|
545
|
+
<xs:enumeration value="505"/>
|
|
546
|
+
<xs:enumeration value="505.01"/>
|
|
547
|
+
<xs:enumeration value="505.02"/>
|
|
548
|
+
<xs:enumeration value="600"/>
|
|
549
|
+
<xs:enumeration value="601"/>
|
|
550
|
+
<xs:enumeration value="601.01"/>
|
|
551
|
+
<xs:enumeration value="601.02"/>
|
|
552
|
+
<xs:enumeration value="601.03"/>
|
|
553
|
+
<xs:enumeration value="601.04"/>
|
|
554
|
+
<xs:enumeration value="601.05"/>
|
|
555
|
+
<xs:enumeration value="601.06"/>
|
|
556
|
+
<xs:enumeration value="601.07"/>
|
|
557
|
+
<xs:enumeration value="601.08"/>
|
|
558
|
+
<xs:enumeration value="601.09"/>
|
|
559
|
+
<xs:enumeration value="601.10"/>
|
|
560
|
+
<xs:enumeration value="601.11"/>
|
|
561
|
+
<xs:enumeration value="601.12"/>
|
|
562
|
+
<xs:enumeration value="601.13"/>
|
|
563
|
+
<xs:enumeration value="601.14"/>
|
|
564
|
+
<xs:enumeration value="601.15"/>
|
|
565
|
+
<xs:enumeration value="601.16"/>
|
|
566
|
+
<xs:enumeration value="601.17"/>
|
|
567
|
+
<xs:enumeration value="601.18"/>
|
|
568
|
+
<xs:enumeration value="601.19"/>
|
|
569
|
+
<xs:enumeration value="601.20"/>
|
|
570
|
+
<xs:enumeration value="601.21"/>
|
|
571
|
+
<xs:enumeration value="601.22"/>
|
|
572
|
+
<xs:enumeration value="601.23"/>
|
|
573
|
+
<xs:enumeration value="601.24"/>
|
|
574
|
+
<xs:enumeration value="601.25"/>
|
|
575
|
+
<xs:enumeration value="601.26"/>
|
|
576
|
+
<xs:enumeration value="601.27"/>
|
|
577
|
+
<xs:enumeration value="601.28"/>
|
|
578
|
+
<xs:enumeration value="601.29"/>
|
|
579
|
+
<xs:enumeration value="601.30"/>
|
|
580
|
+
<xs:enumeration value="601.31"/>
|
|
581
|
+
<xs:enumeration value="601.32"/>
|
|
582
|
+
<xs:enumeration value="601.33"/>
|
|
583
|
+
<xs:enumeration value="601.34"/>
|
|
584
|
+
<xs:enumeration value="601.35"/>
|
|
585
|
+
<xs:enumeration value="601.36"/>
|
|
586
|
+
<xs:enumeration value="601.37"/>
|
|
587
|
+
<xs:enumeration value="601.38"/>
|
|
588
|
+
<xs:enumeration value="601.39"/>
|
|
589
|
+
<xs:enumeration value="601.40"/>
|
|
590
|
+
<xs:enumeration value="601.41"/>
|
|
591
|
+
<xs:enumeration value="601.42"/>
|
|
592
|
+
<xs:enumeration value="601.43"/>
|
|
593
|
+
<xs:enumeration value="601.44"/>
|
|
594
|
+
<xs:enumeration value="601.45"/>
|
|
595
|
+
<xs:enumeration value="601.46"/>
|
|
596
|
+
<xs:enumeration value="601.47"/>
|
|
597
|
+
<xs:enumeration value="601.48"/>
|
|
598
|
+
<xs:enumeration value="601.49"/>
|
|
599
|
+
<xs:enumeration value="601.50"/>
|
|
600
|
+
<xs:enumeration value="601.51"/>
|
|
601
|
+
<xs:enumeration value="601.52"/>
|
|
602
|
+
<xs:enumeration value="601.53"/>
|
|
603
|
+
<xs:enumeration value="601.54"/>
|
|
604
|
+
<xs:enumeration value="601.55"/>
|
|
605
|
+
<xs:enumeration value="601.56"/>
|
|
606
|
+
<xs:enumeration value="601.57"/>
|
|
607
|
+
<xs:enumeration value="601.58"/>
|
|
608
|
+
<xs:enumeration value="601.59"/>
|
|
609
|
+
<xs:enumeration value="601.60"/>
|
|
610
|
+
<xs:enumeration value="601.61"/>
|
|
611
|
+
<xs:enumeration value="601.62"/>
|
|
612
|
+
<xs:enumeration value="601.63"/>
|
|
613
|
+
<xs:enumeration value="601.64"/>
|
|
614
|
+
<xs:enumeration value="601.65"/>
|
|
615
|
+
<xs:enumeration value="601.66"/>
|
|
616
|
+
<xs:enumeration value="601.67"/>
|
|
617
|
+
<xs:enumeration value="601.68"/>
|
|
618
|
+
<xs:enumeration value="601.69"/>
|
|
619
|
+
<xs:enumeration value="601.70"/>
|
|
620
|
+
<xs:enumeration value="601.71"/>
|
|
621
|
+
<xs:enumeration value="601.72"/>
|
|
622
|
+
<xs:enumeration value="601.73"/>
|
|
623
|
+
<xs:enumeration value="601.74"/>
|
|
624
|
+
<xs:enumeration value="601.75"/>
|
|
625
|
+
<xs:enumeration value="601.76"/>
|
|
626
|
+
<xs:enumeration value="601.77"/>
|
|
627
|
+
<xs:enumeration value="601.78"/>
|
|
628
|
+
<xs:enumeration value="601.79"/>
|
|
629
|
+
<xs:enumeration value="601.80"/>
|
|
630
|
+
<xs:enumeration value="601.81"/>
|
|
631
|
+
<xs:enumeration value="601.82"/>
|
|
632
|
+
<xs:enumeration value="601.83"/>
|
|
633
|
+
<xs:enumeration value="601.84"/>
|
|
634
|
+
<xs:enumeration value="602"/>
|
|
635
|
+
<xs:enumeration value="602.01"/>
|
|
636
|
+
<xs:enumeration value="602.02"/>
|
|
637
|
+
<xs:enumeration value="602.03"/>
|
|
638
|
+
<xs:enumeration value="602.04"/>
|
|
639
|
+
<xs:enumeration value="602.05"/>
|
|
640
|
+
<xs:enumeration value="602.06"/>
|
|
641
|
+
<xs:enumeration value="602.07"/>
|
|
642
|
+
<xs:enumeration value="602.08"/>
|
|
643
|
+
<xs:enumeration value="602.09"/>
|
|
644
|
+
<xs:enumeration value="602.10"/>
|
|
645
|
+
<xs:enumeration value="602.11"/>
|
|
646
|
+
<xs:enumeration value="602.12"/>
|
|
647
|
+
<xs:enumeration value="602.13"/>
|
|
648
|
+
<xs:enumeration value="602.14"/>
|
|
649
|
+
<xs:enumeration value="602.15"/>
|
|
650
|
+
<xs:enumeration value="602.16"/>
|
|
651
|
+
<xs:enumeration value="602.17"/>
|
|
652
|
+
<xs:enumeration value="602.18"/>
|
|
653
|
+
<xs:enumeration value="602.19"/>
|
|
654
|
+
<xs:enumeration value="602.20"/>
|
|
655
|
+
<xs:enumeration value="602.21"/>
|
|
656
|
+
<xs:enumeration value="602.22"/>
|
|
657
|
+
<xs:enumeration value="602.23"/>
|
|
658
|
+
<xs:enumeration value="602.24"/>
|
|
659
|
+
<xs:enumeration value="602.25"/>
|
|
660
|
+
<xs:enumeration value="602.26"/>
|
|
661
|
+
<xs:enumeration value="602.27"/>
|
|
662
|
+
<xs:enumeration value="602.28"/>
|
|
663
|
+
<xs:enumeration value="602.29"/>
|
|
664
|
+
<xs:enumeration value="602.30"/>
|
|
665
|
+
<xs:enumeration value="602.31"/>
|
|
666
|
+
<xs:enumeration value="602.32"/>
|
|
667
|
+
<xs:enumeration value="602.33"/>
|
|
668
|
+
<xs:enumeration value="602.34"/>
|
|
669
|
+
<xs:enumeration value="602.35"/>
|
|
670
|
+
<xs:enumeration value="602.36"/>
|
|
671
|
+
<xs:enumeration value="602.37"/>
|
|
672
|
+
<xs:enumeration value="602.38"/>
|
|
673
|
+
<xs:enumeration value="602.39"/>
|
|
674
|
+
<xs:enumeration value="602.40"/>
|
|
675
|
+
<xs:enumeration value="602.41"/>
|
|
676
|
+
<xs:enumeration value="602.42"/>
|
|
677
|
+
<xs:enumeration value="602.43"/>
|
|
678
|
+
<xs:enumeration value="602.44"/>
|
|
679
|
+
<xs:enumeration value="602.45"/>
|
|
680
|
+
<xs:enumeration value="602.46"/>
|
|
681
|
+
<xs:enumeration value="602.47"/>
|
|
682
|
+
<xs:enumeration value="602.48"/>
|
|
683
|
+
<xs:enumeration value="602.49"/>
|
|
684
|
+
<xs:enumeration value="602.50"/>
|
|
685
|
+
<xs:enumeration value="602.51"/>
|
|
686
|
+
<xs:enumeration value="602.52"/>
|
|
687
|
+
<xs:enumeration value="602.53"/>
|
|
688
|
+
<xs:enumeration value="602.54"/>
|
|
689
|
+
<xs:enumeration value="602.55"/>
|
|
690
|
+
<xs:enumeration value="602.56"/>
|
|
691
|
+
<xs:enumeration value="602.57"/>
|
|
692
|
+
<xs:enumeration value="602.58"/>
|
|
693
|
+
<xs:enumeration value="602.59"/>
|
|
694
|
+
<xs:enumeration value="602.60"/>
|
|
695
|
+
<xs:enumeration value="602.61"/>
|
|
696
|
+
<xs:enumeration value="602.62"/>
|
|
697
|
+
<xs:enumeration value="602.63"/>
|
|
698
|
+
<xs:enumeration value="602.64"/>
|
|
699
|
+
<xs:enumeration value="602.65"/>
|
|
700
|
+
<xs:enumeration value="602.66"/>
|
|
701
|
+
<xs:enumeration value="602.67"/>
|
|
702
|
+
<xs:enumeration value="602.68"/>
|
|
703
|
+
<xs:enumeration value="602.69"/>
|
|
704
|
+
<xs:enumeration value="602.70"/>
|
|
705
|
+
<xs:enumeration value="602.71"/>
|
|
706
|
+
<xs:enumeration value="602.72"/>
|
|
707
|
+
<xs:enumeration value="602.73"/>
|
|
708
|
+
<xs:enumeration value="602.74"/>
|
|
709
|
+
<xs:enumeration value="602.75"/>
|
|
710
|
+
<xs:enumeration value="602.76"/>
|
|
711
|
+
<xs:enumeration value="602.77"/>
|
|
712
|
+
<xs:enumeration value="602.78"/>
|
|
713
|
+
<xs:enumeration value="602.79"/>
|
|
714
|
+
<xs:enumeration value="602.80"/>
|
|
715
|
+
<xs:enumeration value="602.81"/>
|
|
716
|
+
<xs:enumeration value="602.82"/>
|
|
717
|
+
<xs:enumeration value="602.83"/>
|
|
718
|
+
<xs:enumeration value="602.84"/>
|
|
719
|
+
<xs:enumeration value="603"/>
|
|
720
|
+
<xs:enumeration value="603.01"/>
|
|
721
|
+
<xs:enumeration value="603.02"/>
|
|
722
|
+
<xs:enumeration value="603.03"/>
|
|
723
|
+
<xs:enumeration value="603.04"/>
|
|
724
|
+
<xs:enumeration value="603.05"/>
|
|
725
|
+
<xs:enumeration value="603.06"/>
|
|
726
|
+
<xs:enumeration value="603.07"/>
|
|
727
|
+
<xs:enumeration value="603.08"/>
|
|
728
|
+
<xs:enumeration value="603.09"/>
|
|
729
|
+
<xs:enumeration value="603.10"/>
|
|
730
|
+
<xs:enumeration value="603.11"/>
|
|
731
|
+
<xs:enumeration value="603.12"/>
|
|
732
|
+
<xs:enumeration value="603.13"/>
|
|
733
|
+
<xs:enumeration value="603.14"/>
|
|
734
|
+
<xs:enumeration value="603.15"/>
|
|
735
|
+
<xs:enumeration value="603.16"/>
|
|
736
|
+
<xs:enumeration value="603.17"/>
|
|
737
|
+
<xs:enumeration value="603.18"/>
|
|
738
|
+
<xs:enumeration value="603.19"/>
|
|
739
|
+
<xs:enumeration value="603.20"/>
|
|
740
|
+
<xs:enumeration value="603.21"/>
|
|
741
|
+
<xs:enumeration value="603.22"/>
|
|
742
|
+
<xs:enumeration value="603.23"/>
|
|
743
|
+
<xs:enumeration value="603.24"/>
|
|
744
|
+
<xs:enumeration value="603.25"/>
|
|
745
|
+
<xs:enumeration value="603.26"/>
|
|
746
|
+
<xs:enumeration value="603.27"/>
|
|
747
|
+
<xs:enumeration value="603.28"/>
|
|
748
|
+
<xs:enumeration value="603.29"/>
|
|
749
|
+
<xs:enumeration value="603.30"/>
|
|
750
|
+
<xs:enumeration value="603.31"/>
|
|
751
|
+
<xs:enumeration value="603.32"/>
|
|
752
|
+
<xs:enumeration value="603.33"/>
|
|
753
|
+
<xs:enumeration value="603.34"/>
|
|
754
|
+
<xs:enumeration value="603.35"/>
|
|
755
|
+
<xs:enumeration value="603.36"/>
|
|
756
|
+
<xs:enumeration value="603.37"/>
|
|
757
|
+
<xs:enumeration value="603.38"/>
|
|
758
|
+
<xs:enumeration value="603.39"/>
|
|
759
|
+
<xs:enumeration value="603.40"/>
|
|
760
|
+
<xs:enumeration value="603.41"/>
|
|
761
|
+
<xs:enumeration value="603.42"/>
|
|
762
|
+
<xs:enumeration value="603.43"/>
|
|
763
|
+
<xs:enumeration value="603.44"/>
|
|
764
|
+
<xs:enumeration value="603.45"/>
|
|
765
|
+
<xs:enumeration value="603.46"/>
|
|
766
|
+
<xs:enumeration value="603.47"/>
|
|
767
|
+
<xs:enumeration value="603.48"/>
|
|
768
|
+
<xs:enumeration value="603.49"/>
|
|
769
|
+
<xs:enumeration value="603.50"/>
|
|
770
|
+
<xs:enumeration value="603.51"/>
|
|
771
|
+
<xs:enumeration value="603.52"/>
|
|
772
|
+
<xs:enumeration value="603.53"/>
|
|
773
|
+
<xs:enumeration value="603.54"/>
|
|
774
|
+
<xs:enumeration value="603.55"/>
|
|
775
|
+
<xs:enumeration value="603.56"/>
|
|
776
|
+
<xs:enumeration value="603.57"/>
|
|
777
|
+
<xs:enumeration value="603.58"/>
|
|
778
|
+
<xs:enumeration value="603.59"/>
|
|
779
|
+
<xs:enumeration value="603.60"/>
|
|
780
|
+
<xs:enumeration value="603.61"/>
|
|
781
|
+
<xs:enumeration value="603.62"/>
|
|
782
|
+
<xs:enumeration value="603.63"/>
|
|
783
|
+
<xs:enumeration value="603.64"/>
|
|
784
|
+
<xs:enumeration value="603.65"/>
|
|
785
|
+
<xs:enumeration value="603.66"/>
|
|
786
|
+
<xs:enumeration value="603.67"/>
|
|
787
|
+
<xs:enumeration value="603.68"/>
|
|
788
|
+
<xs:enumeration value="603.69"/>
|
|
789
|
+
<xs:enumeration value="603.70"/>
|
|
790
|
+
<xs:enumeration value="603.71"/>
|
|
791
|
+
<xs:enumeration value="603.72"/>
|
|
792
|
+
<xs:enumeration value="603.73"/>
|
|
793
|
+
<xs:enumeration value="603.74"/>
|
|
794
|
+
<xs:enumeration value="603.75"/>
|
|
795
|
+
<xs:enumeration value="603.76"/>
|
|
796
|
+
<xs:enumeration value="603.77"/>
|
|
797
|
+
<xs:enumeration value="603.78"/>
|
|
798
|
+
<xs:enumeration value="603.79"/>
|
|
799
|
+
<xs:enumeration value="603.80"/>
|
|
800
|
+
<xs:enumeration value="603.81"/>
|
|
801
|
+
<xs:enumeration value="603.82"/>
|
|
802
|
+
<xs:enumeration value="604"/>
|
|
803
|
+
<xs:enumeration value="604.01"/>
|
|
804
|
+
<xs:enumeration value="604.02"/>
|
|
805
|
+
<xs:enumeration value="604.03"/>
|
|
806
|
+
<xs:enumeration value="604.04"/>
|
|
807
|
+
<xs:enumeration value="604.05"/>
|
|
808
|
+
<xs:enumeration value="604.06"/>
|
|
809
|
+
<xs:enumeration value="604.07"/>
|
|
810
|
+
<xs:enumeration value="604.08"/>
|
|
811
|
+
<xs:enumeration value="604.09"/>
|
|
812
|
+
<xs:enumeration value="604.10"/>
|
|
813
|
+
<xs:enumeration value="604.11"/>
|
|
814
|
+
<xs:enumeration value="604.12"/>
|
|
815
|
+
<xs:enumeration value="604.13"/>
|
|
816
|
+
<xs:enumeration value="604.14"/>
|
|
817
|
+
<xs:enumeration value="604.15"/>
|
|
818
|
+
<xs:enumeration value="604.16"/>
|
|
819
|
+
<xs:enumeration value="604.17"/>
|
|
820
|
+
<xs:enumeration value="604.18"/>
|
|
821
|
+
<xs:enumeration value="604.19"/>
|
|
822
|
+
<xs:enumeration value="604.20"/>
|
|
823
|
+
<xs:enumeration value="604.21"/>
|
|
824
|
+
<xs:enumeration value="604.22"/>
|
|
825
|
+
<xs:enumeration value="604.23"/>
|
|
826
|
+
<xs:enumeration value="604.24"/>
|
|
827
|
+
<xs:enumeration value="604.25"/>
|
|
828
|
+
<xs:enumeration value="604.26"/>
|
|
829
|
+
<xs:enumeration value="604.27"/>
|
|
830
|
+
<xs:enumeration value="604.28"/>
|
|
831
|
+
<xs:enumeration value="604.29"/>
|
|
832
|
+
<xs:enumeration value="604.30"/>
|
|
833
|
+
<xs:enumeration value="604.31"/>
|
|
834
|
+
<xs:enumeration value="604.32"/>
|
|
835
|
+
<xs:enumeration value="604.33"/>
|
|
836
|
+
<xs:enumeration value="604.34"/>
|
|
837
|
+
<xs:enumeration value="604.35"/>
|
|
838
|
+
<xs:enumeration value="604.36"/>
|
|
839
|
+
<xs:enumeration value="604.37"/>
|
|
840
|
+
<xs:enumeration value="604.38"/>
|
|
841
|
+
<xs:enumeration value="604.39"/>
|
|
842
|
+
<xs:enumeration value="604.40"/>
|
|
843
|
+
<xs:enumeration value="604.41"/>
|
|
844
|
+
<xs:enumeration value="604.42"/>
|
|
845
|
+
<xs:enumeration value="604.43"/>
|
|
846
|
+
<xs:enumeration value="604.44"/>
|
|
847
|
+
<xs:enumeration value="604.45"/>
|
|
848
|
+
<xs:enumeration value="604.46"/>
|
|
849
|
+
<xs:enumeration value="604.47"/>
|
|
850
|
+
<xs:enumeration value="604.48"/>
|
|
851
|
+
<xs:enumeration value="604.49"/>
|
|
852
|
+
<xs:enumeration value="604.50"/>
|
|
853
|
+
<xs:enumeration value="604.51"/>
|
|
854
|
+
<xs:enumeration value="604.52"/>
|
|
855
|
+
<xs:enumeration value="604.53"/>
|
|
856
|
+
<xs:enumeration value="604.54"/>
|
|
857
|
+
<xs:enumeration value="604.55"/>
|
|
858
|
+
<xs:enumeration value="604.56"/>
|
|
859
|
+
<xs:enumeration value="604.57"/>
|
|
860
|
+
<xs:enumeration value="604.58"/>
|
|
861
|
+
<xs:enumeration value="604.59"/>
|
|
862
|
+
<xs:enumeration value="604.60"/>
|
|
863
|
+
<xs:enumeration value="604.61"/>
|
|
864
|
+
<xs:enumeration value="604.62"/>
|
|
865
|
+
<xs:enumeration value="604.63"/>
|
|
866
|
+
<xs:enumeration value="604.64"/>
|
|
867
|
+
<xs:enumeration value="604.65"/>
|
|
868
|
+
<xs:enumeration value="604.66"/>
|
|
869
|
+
<xs:enumeration value="604.67"/>
|
|
870
|
+
<xs:enumeration value="604.68"/>
|
|
871
|
+
<xs:enumeration value="604.69"/>
|
|
872
|
+
<xs:enumeration value="604.70"/>
|
|
873
|
+
<xs:enumeration value="604.71"/>
|
|
874
|
+
<xs:enumeration value="604.72"/>
|
|
875
|
+
<xs:enumeration value="604.73"/>
|
|
876
|
+
<xs:enumeration value="604.74"/>
|
|
877
|
+
<xs:enumeration value="604.75"/>
|
|
878
|
+
<xs:enumeration value="604.76"/>
|
|
879
|
+
<xs:enumeration value="604.77"/>
|
|
880
|
+
<xs:enumeration value="604.78"/>
|
|
881
|
+
<xs:enumeration value="604.79"/>
|
|
882
|
+
<xs:enumeration value="604.80"/>
|
|
883
|
+
<xs:enumeration value="604.81"/>
|
|
884
|
+
<xs:enumeration value="604.82"/>
|
|
885
|
+
<xs:enumeration value="605"/>
|
|
886
|
+
<xs:enumeration value="605.01"/>
|
|
887
|
+
<xs:enumeration value="605.02"/>
|
|
888
|
+
<xs:enumeration value="605.03"/>
|
|
889
|
+
<xs:enumeration value="605.04"/>
|
|
890
|
+
<xs:enumeration value="605.05"/>
|
|
891
|
+
<xs:enumeration value="605.06"/>
|
|
892
|
+
<xs:enumeration value="605.07"/>
|
|
893
|
+
<xs:enumeration value="605.08"/>
|
|
894
|
+
<xs:enumeration value="605.09"/>
|
|
895
|
+
<xs:enumeration value="605.10"/>
|
|
896
|
+
<xs:enumeration value="605.11"/>
|
|
897
|
+
<xs:enumeration value="605.12"/>
|
|
898
|
+
<xs:enumeration value="605.13"/>
|
|
899
|
+
<xs:enumeration value="605.14"/>
|
|
900
|
+
<xs:enumeration value="605.15"/>
|
|
901
|
+
<xs:enumeration value="605.16"/>
|
|
902
|
+
<xs:enumeration value="605.17"/>
|
|
903
|
+
<xs:enumeration value="605.18"/>
|
|
904
|
+
<xs:enumeration value="605.19"/>
|
|
905
|
+
<xs:enumeration value="605.20"/>
|
|
906
|
+
<xs:enumeration value="605.21"/>
|
|
907
|
+
<xs:enumeration value="605.22"/>
|
|
908
|
+
<xs:enumeration value="605.23"/>
|
|
909
|
+
<xs:enumeration value="605.24"/>
|
|
910
|
+
<xs:enumeration value="605.25"/>
|
|
911
|
+
<xs:enumeration value="605.26"/>
|
|
912
|
+
<xs:enumeration value="605.27"/>
|
|
913
|
+
<xs:enumeration value="605.28"/>
|
|
914
|
+
<xs:enumeration value="605.29"/>
|
|
915
|
+
<xs:enumeration value="605.30"/>
|
|
916
|
+
<xs:enumeration value="605.31"/>
|
|
917
|
+
<xs:enumeration value="606"/>
|
|
918
|
+
<xs:enumeration value="606.01"/>
|
|
919
|
+
<xs:enumeration value="607"/>
|
|
920
|
+
<xs:enumeration value="607.01"/>
|
|
921
|
+
<xs:enumeration value="608"/>
|
|
922
|
+
<xs:enumeration value="608.01"/>
|
|
923
|
+
<xs:enumeration value="609"/>
|
|
924
|
+
<xs:enumeration value="609.01"/>
|
|
925
|
+
<xs:enumeration value="610"/>
|
|
926
|
+
<xs:enumeration value="610.01"/>
|
|
927
|
+
<xs:enumeration value="611"/>
|
|
928
|
+
<xs:enumeration value="611.01"/>
|
|
929
|
+
<xs:enumeration value="611.02"/>
|
|
930
|
+
<xs:enumeration value="612"/>
|
|
931
|
+
<xs:enumeration value="612.01"/>
|
|
932
|
+
<xs:enumeration value="613"/>
|
|
933
|
+
<xs:enumeration value="613.01"/>
|
|
934
|
+
<xs:enumeration value="613.02"/>
|
|
935
|
+
<xs:enumeration value="613.03"/>
|
|
936
|
+
<xs:enumeration value="613.04"/>
|
|
937
|
+
<xs:enumeration value="613.05"/>
|
|
938
|
+
<xs:enumeration value="613.06"/>
|
|
939
|
+
<xs:enumeration value="613.07"/>
|
|
940
|
+
<xs:enumeration value="613.08"/>
|
|
941
|
+
<xs:enumeration value="613.09"/>
|
|
942
|
+
<xs:enumeration value="613.10"/>
|
|
943
|
+
<xs:enumeration value="613.11"/>
|
|
944
|
+
<xs:enumeration value="613.12"/>
|
|
945
|
+
<xs:enumeration value="613.13"/>
|
|
946
|
+
<xs:enumeration value="613.14"/>
|
|
947
|
+
<xs:enumeration value="613.15"/>
|
|
948
|
+
<xs:enumeration value="613.16"/>
|
|
949
|
+
<xs:enumeration value="613.17"/>
|
|
950
|
+
<xs:enumeration value="613.18"/>
|
|
951
|
+
<xs:enumeration value="614"/>
|
|
952
|
+
<xs:enumeration value="614.01"/>
|
|
953
|
+
<xs:enumeration value="614.02"/>
|
|
954
|
+
<xs:enumeration value="614.03"/>
|
|
955
|
+
<xs:enumeration value="614.04"/>
|
|
956
|
+
<xs:enumeration value="614.05"/>
|
|
957
|
+
<xs:enumeration value="614.06"/>
|
|
958
|
+
<xs:enumeration value="614.07"/>
|
|
959
|
+
<xs:enumeration value="614.08"/>
|
|
960
|
+
<xs:enumeration value="614.09"/>
|
|
961
|
+
<xs:enumeration value="614.10"/>
|
|
962
|
+
<xs:enumeration value="700"/>
|
|
963
|
+
<xs:enumeration value="701"/>
|
|
964
|
+
<xs:enumeration value="701.01"/>
|
|
965
|
+
<xs:enumeration value="701.02"/>
|
|
966
|
+
<xs:enumeration value="701.03"/>
|
|
967
|
+
<xs:enumeration value="701.04"/>
|
|
968
|
+
<xs:enumeration value="701.05"/>
|
|
969
|
+
<xs:enumeration value="701.06"/>
|
|
970
|
+
<xs:enumeration value="701.07"/>
|
|
971
|
+
<xs:enumeration value="701.08"/>
|
|
972
|
+
<xs:enumeration value="701.09"/>
|
|
973
|
+
<xs:enumeration value="701.10"/>
|
|
974
|
+
<xs:enumeration value="701.11"/>
|
|
975
|
+
<xs:enumeration value="702"/>
|
|
976
|
+
<xs:enumeration value="702.01"/>
|
|
977
|
+
<xs:enumeration value="702.02"/>
|
|
978
|
+
<xs:enumeration value="702.03"/>
|
|
979
|
+
<xs:enumeration value="702.04"/>
|
|
980
|
+
<xs:enumeration value="702.05"/>
|
|
981
|
+
<xs:enumeration value="702.06"/>
|
|
982
|
+
<xs:enumeration value="702.07"/>
|
|
983
|
+
<xs:enumeration value="702.08"/>
|
|
984
|
+
<xs:enumeration value="702.09"/>
|
|
985
|
+
<xs:enumeration value="702.10"/>
|
|
986
|
+
<xs:enumeration value="703"/>
|
|
987
|
+
<xs:enumeration value="703.01"/>
|
|
988
|
+
<xs:enumeration value="703.02"/>
|
|
989
|
+
<xs:enumeration value="703.03"/>
|
|
990
|
+
<xs:enumeration value="703.04"/>
|
|
991
|
+
<xs:enumeration value="703.05"/>
|
|
992
|
+
<xs:enumeration value="703.06"/>
|
|
993
|
+
<xs:enumeration value="703.07"/>
|
|
994
|
+
<xs:enumeration value="703.08"/>
|
|
995
|
+
<xs:enumeration value="703.09"/>
|
|
996
|
+
<xs:enumeration value="703.10"/>
|
|
997
|
+
<xs:enumeration value="703.11"/>
|
|
998
|
+
<xs:enumeration value="703.12"/>
|
|
999
|
+
<xs:enumeration value="703.13"/>
|
|
1000
|
+
<xs:enumeration value="703.14"/>
|
|
1001
|
+
<xs:enumeration value="703.15"/>
|
|
1002
|
+
<xs:enumeration value="703.16"/>
|
|
1003
|
+
<xs:enumeration value="703.17"/>
|
|
1004
|
+
<xs:enumeration value="703.18"/>
|
|
1005
|
+
<xs:enumeration value="703.19"/>
|
|
1006
|
+
<xs:enumeration value="703.20"/>
|
|
1007
|
+
<xs:enumeration value="703.21"/>
|
|
1008
|
+
<xs:enumeration value="704"/>
|
|
1009
|
+
<xs:enumeration value="704.01"/>
|
|
1010
|
+
<xs:enumeration value="704.02"/>
|
|
1011
|
+
<xs:enumeration value="704.03"/>
|
|
1012
|
+
<xs:enumeration value="704.04"/>
|
|
1013
|
+
<xs:enumeration value="704.05"/>
|
|
1014
|
+
<xs:enumeration value="704.06"/>
|
|
1015
|
+
<xs:enumeration value="704.07"/>
|
|
1016
|
+
<xs:enumeration value="704.08"/>
|
|
1017
|
+
<xs:enumeration value="704.09"/>
|
|
1018
|
+
<xs:enumeration value="704.10"/>
|
|
1019
|
+
<xs:enumeration value="704.11"/>
|
|
1020
|
+
<xs:enumeration value="704.12"/>
|
|
1021
|
+
<xs:enumeration value="704.13"/>
|
|
1022
|
+
<xs:enumeration value="704.14"/>
|
|
1023
|
+
<xs:enumeration value="704.15"/>
|
|
1024
|
+
<xs:enumeration value="704.16"/>
|
|
1025
|
+
<xs:enumeration value="704.17"/>
|
|
1026
|
+
<xs:enumeration value="704.18"/>
|
|
1027
|
+
<xs:enumeration value="704.19"/>
|
|
1028
|
+
<xs:enumeration value="704.20"/>
|
|
1029
|
+
<xs:enumeration value="704.21"/>
|
|
1030
|
+
<xs:enumeration value="704.22"/>
|
|
1031
|
+
<xs:enumeration value="704.23"/>
|
|
1032
|
+
<xs:enumeration value="800"/>
|
|
1033
|
+
<xs:enumeration value="801"/>
|
|
1034
|
+
<xs:enumeration value="801.01"/>
|
|
1035
|
+
<xs:enumeration value="801.02"/>
|
|
1036
|
+
<xs:enumeration value="802"/>
|
|
1037
|
+
<xs:enumeration value="802.01"/>
|
|
1038
|
+
<xs:enumeration value="802.02"/>
|
|
1039
|
+
<xs:enumeration value="803"/>
|
|
1040
|
+
<xs:enumeration value="803.01"/>
|
|
1041
|
+
<xs:enumeration value="803.02"/>
|
|
1042
|
+
<xs:enumeration value="804"/>
|
|
1043
|
+
<xs:enumeration value="804.01"/>
|
|
1044
|
+
<xs:enumeration value="804.02"/>
|
|
1045
|
+
<xs:enumeration value="805"/>
|
|
1046
|
+
<xs:enumeration value="805.01"/>
|
|
1047
|
+
<xs:enumeration value="805.02"/>
|
|
1048
|
+
<xs:enumeration value="806"/>
|
|
1049
|
+
<xs:enumeration value="806.01"/>
|
|
1050
|
+
<xs:enumeration value="806.02"/>
|
|
1051
|
+
<xs:enumeration value="807"/>
|
|
1052
|
+
<xs:enumeration value="807.01"/>
|
|
1053
|
+
<xs:enumeration value="807.02"/>
|
|
1054
|
+
<xs:enumeration value="808"/>
|
|
1055
|
+
<xs:enumeration value="808.01"/>
|
|
1056
|
+
<xs:enumeration value="808.02"/>
|
|
1057
|
+
<xs:enumeration value="809"/>
|
|
1058
|
+
<xs:enumeration value="809.01"/>
|
|
1059
|
+
<xs:enumeration value="809.02"/>
|
|
1060
|
+
<xs:enumeration value="810"/>
|
|
1061
|
+
<xs:enumeration value="810.01"/>
|
|
1062
|
+
<xs:enumeration value="810.02"/>
|
|
1063
|
+
<xs:enumeration value="811"/>
|
|
1064
|
+
<xs:enumeration value="811.01"/>
|
|
1065
|
+
<xs:enumeration value="811.02"/>
|
|
1066
|
+
<xs:enumeration value="812"/>
|
|
1067
|
+
<xs:enumeration value="812.01"/>
|
|
1068
|
+
<xs:enumeration value="812.02"/>
|
|
1069
|
+
<xs:enumeration value="813"/>
|
|
1070
|
+
<xs:enumeration value="813.01"/>
|
|
1071
|
+
<xs:enumeration value="813.02"/>
|
|
1072
|
+
<xs:enumeration value="814"/>
|
|
1073
|
+
<xs:enumeration value="814.01"/>
|
|
1074
|
+
<xs:enumeration value="814.02"/>
|
|
1075
|
+
<xs:enumeration value="815"/>
|
|
1076
|
+
<xs:enumeration value="815.01"/>
|
|
1077
|
+
<xs:enumeration value="815.02"/>
|
|
1078
|
+
<xs:enumeration value="816"/>
|
|
1079
|
+
<xs:enumeration value="816.01"/>
|
|
1080
|
+
<xs:enumeration value="816.02"/>
|
|
1081
|
+
<xs:enumeration value="899"/>
|
|
1082
|
+
<xs:enumeration value="899.01"/>
|
|
1083
|
+
<xs:enumeration value="899.02"/>
|
|
1084
|
+
</xs:restriction>
|
|
1085
|
+
</xs:simpleType>
|
|
1086
|
+
<xs:simpleType name="c_Moneda">
|
|
1087
|
+
<xs:annotation>
|
|
1088
|
+
<xs:documentation>Catálogo de Monedas</xs:documentation>
|
|
1089
|
+
</xs:annotation>
|
|
1090
|
+
<xs:restriction base="xs:string">
|
|
1091
|
+
<xs:pattern value="[A-Z]{3}"/>
|
|
1092
|
+
<xs:enumeration value="AED"/>
|
|
1093
|
+
<xs:enumeration value="AFN"/>
|
|
1094
|
+
<xs:enumeration value="ALL"/>
|
|
1095
|
+
<xs:enumeration value="AMD"/>
|
|
1096
|
+
<xs:enumeration value="ANG"/>
|
|
1097
|
+
<xs:enumeration value="AOA"/>
|
|
1098
|
+
<xs:enumeration value="ARS"/>
|
|
1099
|
+
<xs:enumeration value="AUD"/>
|
|
1100
|
+
<xs:enumeration value="AWG"/>
|
|
1101
|
+
<xs:enumeration value="AZN"/>
|
|
1102
|
+
<xs:enumeration value="BAM"/>
|
|
1103
|
+
<xs:enumeration value="BBD"/>
|
|
1104
|
+
<xs:enumeration value="BDT"/>
|
|
1105
|
+
<xs:enumeration value="BGN"/>
|
|
1106
|
+
<xs:enumeration value="BHD"/>
|
|
1107
|
+
<xs:enumeration value="BIF"/>
|
|
1108
|
+
<xs:enumeration value="BMD"/>
|
|
1109
|
+
<xs:enumeration value="BND"/>
|
|
1110
|
+
<xs:enumeration value="BOB"/>
|
|
1111
|
+
<xs:enumeration value="BOV"/>
|
|
1112
|
+
<xs:enumeration value="BRL"/>
|
|
1113
|
+
<xs:enumeration value="BSD"/>
|
|
1114
|
+
<xs:enumeration value="BTN"/>
|
|
1115
|
+
<xs:enumeration value="BWP"/>
|
|
1116
|
+
<xs:enumeration value="BYR"/>
|
|
1117
|
+
<xs:enumeration value="BZD"/>
|
|
1118
|
+
<xs:enumeration value="CAD"/>
|
|
1119
|
+
<xs:enumeration value="CDF"/>
|
|
1120
|
+
<xs:enumeration value="CHF"/>
|
|
1121
|
+
<xs:enumeration value="CLF"/>
|
|
1122
|
+
<xs:enumeration value="CLP"/>
|
|
1123
|
+
<xs:enumeration value="CNY"/>
|
|
1124
|
+
<xs:enumeration value="COP"/>
|
|
1125
|
+
<xs:enumeration value="COU"/>
|
|
1126
|
+
<xs:enumeration value="CRC"/>
|
|
1127
|
+
<xs:enumeration value="CSD"/>
|
|
1128
|
+
<xs:enumeration value="CUP"/>
|
|
1129
|
+
<xs:enumeration value="CUC"/>
|
|
1130
|
+
<xs:enumeration value="CVE"/>
|
|
1131
|
+
<xs:enumeration value="CZK"/>
|
|
1132
|
+
<xs:enumeration value="DJF"/>
|
|
1133
|
+
<xs:enumeration value="DKK"/>
|
|
1134
|
+
<xs:enumeration value="DOP"/>
|
|
1135
|
+
<xs:enumeration value="DZD"/>
|
|
1136
|
+
<xs:enumeration value="EGP"/>
|
|
1137
|
+
<xs:enumeration value="ERN"/>
|
|
1138
|
+
<xs:enumeration value="ETB"/>
|
|
1139
|
+
<xs:enumeration value="EUR"/>
|
|
1140
|
+
<xs:enumeration value="FJD"/>
|
|
1141
|
+
<xs:enumeration value="FKP"/>
|
|
1142
|
+
<xs:enumeration value="GBP"/>
|
|
1143
|
+
<xs:enumeration value="GEL"/>
|
|
1144
|
+
<xs:enumeration value="GHS"/>
|
|
1145
|
+
<xs:enumeration value="GIP"/>
|
|
1146
|
+
<xs:enumeration value="GMD"/>
|
|
1147
|
+
<xs:enumeration value="GNF"/>
|
|
1148
|
+
<xs:enumeration value="GTQ"/>
|
|
1149
|
+
<xs:enumeration value="GYD"/>
|
|
1150
|
+
<xs:enumeration value="HKD"/>
|
|
1151
|
+
<xs:enumeration value="HNL"/>
|
|
1152
|
+
<xs:enumeration value="HRK"/>
|
|
1153
|
+
<xs:enumeration value="HTG"/>
|
|
1154
|
+
<xs:enumeration value="HUF"/>
|
|
1155
|
+
<xs:enumeration value="IDR"/>
|
|
1156
|
+
<xs:enumeration value="ILS"/>
|
|
1157
|
+
<xs:enumeration value="INR"/>
|
|
1158
|
+
<xs:enumeration value="IQD"/>
|
|
1159
|
+
<xs:enumeration value="IRR"/>
|
|
1160
|
+
<xs:enumeration value="ISK"/>
|
|
1161
|
+
<xs:enumeration value="JMD"/>
|
|
1162
|
+
<xs:enumeration value="JOD"/>
|
|
1163
|
+
<xs:enumeration value="JPY"/>
|
|
1164
|
+
<xs:enumeration value="KES"/>
|
|
1165
|
+
<xs:enumeration value="KGS"/>
|
|
1166
|
+
<xs:enumeration value="KHR"/>
|
|
1167
|
+
<xs:enumeration value="KMF"/>
|
|
1168
|
+
<xs:enumeration value="KPW"/>
|
|
1169
|
+
<xs:enumeration value="KRW"/>
|
|
1170
|
+
<xs:enumeration value="KWD"/>
|
|
1171
|
+
<xs:enumeration value="KYD"/>
|
|
1172
|
+
<xs:enumeration value="KZT"/>
|
|
1173
|
+
<xs:enumeration value="LAK"/>
|
|
1174
|
+
<xs:enumeration value="LBP"/>
|
|
1175
|
+
<xs:enumeration value="LKR"/>
|
|
1176
|
+
<xs:enumeration value="LRD"/>
|
|
1177
|
+
<xs:enumeration value="LSL"/>
|
|
1178
|
+
<xs:enumeration value="LTL"/>
|
|
1179
|
+
<xs:enumeration value="LVL"/>
|
|
1180
|
+
<xs:enumeration value="LYD"/>
|
|
1181
|
+
<xs:enumeration value="MAD"/>
|
|
1182
|
+
<xs:enumeration value="MDL"/>
|
|
1183
|
+
<xs:enumeration value="MGA"/>
|
|
1184
|
+
<xs:enumeration value="MKD"/>
|
|
1185
|
+
<xs:enumeration value="MMK"/>
|
|
1186
|
+
<xs:enumeration value="MNT"/>
|
|
1187
|
+
<xs:enumeration value="MOP"/>
|
|
1188
|
+
<xs:enumeration value="MRO"/>
|
|
1189
|
+
<xs:enumeration value="MUR"/>
|
|
1190
|
+
<xs:enumeration value="MVR"/>
|
|
1191
|
+
<xs:enumeration value="MWK"/>
|
|
1192
|
+
<xs:enumeration value="MXN"/>
|
|
1193
|
+
<xs:enumeration value="MXV"/>
|
|
1194
|
+
<xs:enumeration value="MYR"/>
|
|
1195
|
+
<xs:enumeration value="MZN"/>
|
|
1196
|
+
<xs:enumeration value="NAD"/>
|
|
1197
|
+
<xs:enumeration value="NGN"/>
|
|
1198
|
+
<xs:enumeration value="NIO"/>
|
|
1199
|
+
<xs:enumeration value="NOK"/>
|
|
1200
|
+
<xs:enumeration value="NPR"/>
|
|
1201
|
+
<xs:enumeration value="NZD"/>
|
|
1202
|
+
<xs:enumeration value="OMR"/>
|
|
1203
|
+
<xs:enumeration value="PAB"/>
|
|
1204
|
+
<xs:enumeration value="PEN"/>
|
|
1205
|
+
<xs:enumeration value="PGK"/>
|
|
1206
|
+
<xs:enumeration value="PHP"/>
|
|
1207
|
+
<xs:enumeration value="PKR"/>
|
|
1208
|
+
<xs:enumeration value="PLN"/>
|
|
1209
|
+
<xs:enumeration value="PYG"/>
|
|
1210
|
+
<xs:enumeration value="QAR"/>
|
|
1211
|
+
<xs:enumeration value="RON"/>
|
|
1212
|
+
<xs:enumeration value="RUB"/>
|
|
1213
|
+
<xs:enumeration value="RWF"/>
|
|
1214
|
+
<xs:enumeration value="SAR"/>
|
|
1215
|
+
<xs:enumeration value="SBD"/>
|
|
1216
|
+
<xs:enumeration value="SCR"/>
|
|
1217
|
+
<xs:enumeration value="SDG"/>
|
|
1218
|
+
<xs:enumeration value="SEK"/>
|
|
1219
|
+
<xs:enumeration value="SGD"/>
|
|
1220
|
+
<xs:enumeration value="SHP"/>
|
|
1221
|
+
<xs:enumeration value="SLL"/>
|
|
1222
|
+
<xs:enumeration value="SOS"/>
|
|
1223
|
+
<xs:enumeration value="SRD"/>
|
|
1224
|
+
<xs:enumeration value="STD"/>
|
|
1225
|
+
<xs:enumeration value="SYP"/>
|
|
1226
|
+
<xs:enumeration value="SZL"/>
|
|
1227
|
+
<xs:enumeration value="THB"/>
|
|
1228
|
+
<xs:enumeration value="TJS"/>
|
|
1229
|
+
<xs:enumeration value="TMT"/>
|
|
1230
|
+
<xs:enumeration value="TND"/>
|
|
1231
|
+
<xs:enumeration value="TOP"/>
|
|
1232
|
+
<xs:enumeration value="TRY"/>
|
|
1233
|
+
<xs:enumeration value="TTD"/>
|
|
1234
|
+
<xs:enumeration value="TWD"/>
|
|
1235
|
+
<xs:enumeration value="TZS"/>
|
|
1236
|
+
<xs:enumeration value="UAH"/>
|
|
1237
|
+
<xs:enumeration value="UGX"/>
|
|
1238
|
+
<xs:enumeration value="USD"/>
|
|
1239
|
+
<xs:enumeration value="USN"/>
|
|
1240
|
+
<xs:enumeration value="USS"/>
|
|
1241
|
+
<xs:enumeration value="UYU"/>
|
|
1242
|
+
<xs:enumeration value="UZS"/>
|
|
1243
|
+
<xs:enumeration value="VEF"/>
|
|
1244
|
+
<xs:enumeration value="VND"/>
|
|
1245
|
+
<xs:enumeration value="VUV"/>
|
|
1246
|
+
<xs:enumeration value="WST"/>
|
|
1247
|
+
<xs:enumeration value="XAF"/>
|
|
1248
|
+
<xs:enumeration value="XAG"/>
|
|
1249
|
+
<xs:enumeration value="XAU"/>
|
|
1250
|
+
<xs:enumeration value="XBA"/>
|
|
1251
|
+
<xs:enumeration value="XBB"/>
|
|
1252
|
+
<xs:enumeration value="XBC"/>
|
|
1253
|
+
<xs:enumeration value="XBD"/>
|
|
1254
|
+
<xs:enumeration value="XCD"/>
|
|
1255
|
+
<xs:enumeration value="XDR"/>
|
|
1256
|
+
<xs:enumeration value="XFO"/>
|
|
1257
|
+
<xs:enumeration value="XFU"/>
|
|
1258
|
+
<xs:enumeration value="XOF"/>
|
|
1259
|
+
<xs:enumeration value="XPD"/>
|
|
1260
|
+
<xs:enumeration value="XPF"/>
|
|
1261
|
+
<xs:enumeration value="XPT"/>
|
|
1262
|
+
<xs:enumeration value="XTS"/>
|
|
1263
|
+
<xs:enumeration value="XXX"/>
|
|
1264
|
+
<xs:enumeration value="YER"/>
|
|
1265
|
+
<xs:enumeration value="ZAR"/>
|
|
1266
|
+
<xs:enumeration value="ZMW"/>
|
|
1267
|
+
<xs:enumeration value="ZWL"/>
|
|
1268
|
+
</xs:restriction>
|
|
1269
|
+
</xs:simpleType>
|
|
1270
|
+
<xs:simpleType name="c_Banco">
|
|
1271
|
+
<xs:annotation>
|
|
1272
|
+
<xs:documentation>Catálogo de Bancos</xs:documentation>
|
|
1273
|
+
</xs:annotation>
|
|
1274
|
+
<xs:restriction base="xs:string">
|
|
1275
|
+
<xs:pattern value="[0-9]{3}"/>
|
|
1276
|
+
<xs:enumeration value="002"/>
|
|
1277
|
+
<xs:enumeration value="006"/>
|
|
1278
|
+
<xs:enumeration value="009"/>
|
|
1279
|
+
<xs:enumeration value="012"/>
|
|
1280
|
+
<xs:enumeration value="014"/>
|
|
1281
|
+
<xs:enumeration value="019"/>
|
|
1282
|
+
<xs:enumeration value="021"/>
|
|
1283
|
+
<xs:enumeration value="030"/>
|
|
1284
|
+
<xs:enumeration value="032"/>
|
|
1285
|
+
<xs:enumeration value="036"/>
|
|
1286
|
+
<xs:enumeration value="037"/>
|
|
1287
|
+
<xs:enumeration value="042"/>
|
|
1288
|
+
<xs:enumeration value="044"/>
|
|
1289
|
+
<xs:enumeration value="058"/>
|
|
1290
|
+
<xs:enumeration value="059"/>
|
|
1291
|
+
<xs:enumeration value="060"/>
|
|
1292
|
+
<xs:enumeration value="062"/>
|
|
1293
|
+
<xs:enumeration value="072"/>
|
|
1294
|
+
<xs:enumeration value="102"/>
|
|
1295
|
+
<xs:enumeration value="103"/>
|
|
1296
|
+
<xs:enumeration value="106"/>
|
|
1297
|
+
<xs:enumeration value="108"/>
|
|
1298
|
+
<xs:enumeration value="110"/>
|
|
1299
|
+
<xs:enumeration value="112"/>
|
|
1300
|
+
<xs:enumeration value="113"/>
|
|
1301
|
+
<xs:enumeration value="116"/>
|
|
1302
|
+
<xs:enumeration value="124"/>
|
|
1303
|
+
<xs:enumeration value="126"/>
|
|
1304
|
+
<xs:enumeration value="127"/>
|
|
1305
|
+
<xs:enumeration value="128"/>
|
|
1306
|
+
<xs:enumeration value="129"/>
|
|
1307
|
+
<xs:enumeration value="130"/>
|
|
1308
|
+
<xs:enumeration value="131"/>
|
|
1309
|
+
<xs:enumeration value="132"/>
|
|
1310
|
+
<xs:enumeration value="133"/>
|
|
1311
|
+
<xs:enumeration value="134"/>
|
|
1312
|
+
<xs:enumeration value="135"/>
|
|
1313
|
+
<xs:enumeration value="136"/>
|
|
1314
|
+
<xs:enumeration value="137"/>
|
|
1315
|
+
<xs:enumeration value="138"/>
|
|
1316
|
+
<xs:enumeration value="139"/>
|
|
1317
|
+
<xs:enumeration value="140"/>
|
|
1318
|
+
<xs:enumeration value="141"/>
|
|
1319
|
+
<xs:enumeration value="143"/>
|
|
1320
|
+
<xs:enumeration value="145"/>
|
|
1321
|
+
<xs:enumeration value="166"/>
|
|
1322
|
+
<xs:enumeration value="168"/>
|
|
1323
|
+
<xs:enumeration value="600"/>
|
|
1324
|
+
<xs:enumeration value="601"/>
|
|
1325
|
+
<xs:enumeration value="602"/>
|
|
1326
|
+
<xs:enumeration value="605"/>
|
|
1327
|
+
<xs:enumeration value="606"/>
|
|
1328
|
+
<xs:enumeration value="607"/>
|
|
1329
|
+
<xs:enumeration value="608"/>
|
|
1330
|
+
<xs:enumeration value="610"/>
|
|
1331
|
+
<xs:enumeration value="614"/>
|
|
1332
|
+
<xs:enumeration value="615"/>
|
|
1333
|
+
<xs:enumeration value="616"/>
|
|
1334
|
+
<xs:enumeration value="617"/>
|
|
1335
|
+
<xs:enumeration value="618"/>
|
|
1336
|
+
<xs:enumeration value="619"/>
|
|
1337
|
+
<xs:enumeration value="620"/>
|
|
1338
|
+
<xs:enumeration value="621"/>
|
|
1339
|
+
<xs:enumeration value="622"/>
|
|
1340
|
+
<xs:enumeration value="623"/>
|
|
1341
|
+
<xs:enumeration value="626"/>
|
|
1342
|
+
<xs:enumeration value="627"/>
|
|
1343
|
+
<xs:enumeration value="628"/>
|
|
1344
|
+
<xs:enumeration value="629"/>
|
|
1345
|
+
<xs:enumeration value="630"/>
|
|
1346
|
+
<xs:enumeration value="631"/>
|
|
1347
|
+
<xs:enumeration value="632"/>
|
|
1348
|
+
<xs:enumeration value="633"/>
|
|
1349
|
+
<xs:enumeration value="634"/>
|
|
1350
|
+
<xs:enumeration value="636"/>
|
|
1351
|
+
<xs:enumeration value="637"/>
|
|
1352
|
+
<xs:enumeration value="638"/>
|
|
1353
|
+
<xs:enumeration value="640"/>
|
|
1354
|
+
<xs:enumeration value="642"/>
|
|
1355
|
+
<xs:enumeration value="646"/>
|
|
1356
|
+
<xs:enumeration value="647"/>
|
|
1357
|
+
<xs:enumeration value="648"/>
|
|
1358
|
+
<xs:enumeration value="649"/>
|
|
1359
|
+
<xs:enumeration value="651"/>
|
|
1360
|
+
<xs:enumeration value="652"/>
|
|
1361
|
+
<xs:enumeration value="653"/>
|
|
1362
|
+
<xs:enumeration value="655"/>
|
|
1363
|
+
<xs:enumeration value="656"/>
|
|
1364
|
+
<xs:enumeration value="659"/>
|
|
1365
|
+
<xs:enumeration value="901"/>
|
|
1366
|
+
<xs:enumeration value="902"/>
|
|
1367
|
+
<xs:enumeration value="670"/>
|
|
1368
|
+
<xs:enumeration value="999"/>
|
|
1369
|
+
</xs:restriction>
|
|
1370
|
+
</xs:simpleType>
|
|
1371
|
+
<xs:simpleType name="c_MetPagos">
|
|
1372
|
+
<xs:annotation>
|
|
1373
|
+
<xs:documentation>Catálgo de Metodos de Pago</xs:documentation>
|
|
1374
|
+
</xs:annotation>
|
|
1375
|
+
<xs:restriction base="xs:string">
|
|
1376
|
+
<xs:pattern value="[0-9]{2}"/>
|
|
1377
|
+
<xs:enumeration value="01"/>
|
|
1378
|
+
<xs:enumeration value="02"/>
|
|
1379
|
+
<xs:enumeration value="03"/>
|
|
1380
|
+
<xs:enumeration value="04"/>
|
|
1381
|
+
<xs:enumeration value="05"/>
|
|
1382
|
+
<xs:enumeration value="06"/>
|
|
1383
|
+
<xs:enumeration value="07"/>
|
|
1384
|
+
<xs:enumeration value="08"/>
|
|
1385
|
+
<xs:enumeration value="09"/>
|
|
1386
|
+
<xs:enumeration value="10"/>
|
|
1387
|
+
<xs:enumeration value="11"/>
|
|
1388
|
+
<xs:enumeration value="12"/>
|
|
1389
|
+
<xs:enumeration value="13"/>
|
|
1390
|
+
<xs:enumeration value="14"/>
|
|
1391
|
+
<xs:enumeration value="15"/>
|
|
1392
|
+
<xs:enumeration value="16"/>
|
|
1393
|
+
<xs:enumeration value="17"/>
|
|
1394
|
+
<xs:enumeration value="98"/>
|
|
1395
|
+
<xs:enumeration value="99"/>
|
|
1396
|
+
</xs:restriction>
|
|
1397
|
+
</xs:simpleType>
|
|
1398
|
+
</xs:schema>
|