diff --git a/README.md b/README.md
index 4564bc09a..634ca7413 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Transformation engine and validator for statistics.
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Mentioned in Awesome Official Statistics ](https://awesome.re/mentioned-badge.svg)](http://www.awesomeofficialstatistics.org)
-Trevas is a Java engine for the Validation and Transformation Language (VTL), an [SDMX standard](https://sdmx.org/?page_id=5096) that allows the formal definition of algorithms to validate statistical data and calculate derived data. VTL is user oriented and provides a technology-neutral and standard view of statistical processes at the business level. Trevas supports the latest VTL version (v2.0, July 2020).
+Trevas is a Java engine for the Validation and Transformation Language (VTL), an [SDMX standard](https://sdmx.org/?page_id=5096) that allows the formal definition of algorithms to validate statistical data and calculate derived data. VTL is user oriented and provides a technology-neutral and standard view of statistical processes at the business level. Trevas supports the latest VTL version (v2.1, July 2024).
For actual execution, VTL expressions need to be translated to the target runtime environment. Trevas provides this step for the Java platform, by using the VTL formal grammar and the [Antlr](https://www.antlr.org/) tool. For a given execution, Trevas receives the VTL expression and the data bindings that associate variable names in the expression to actual data sets. The execution results can then be retrieved from the bindings for further treatments.
@@ -32,6 +32,12 @@ Open JDK 8+ is required.
## References
+
+
+
+
+Trevas is listed among the [SDMX](https://sdmx.org/?page_id=4500) tools.
+
@@ -42,4 +48,4 @@ Trevas is part of the [sdmx.io](https://www.sdmx.io/) ecosystem.
-Trevas is referencing by [_Awesome official statistics software_](https://github.com/SNStatComp/awesome-official-statistics-software)
+Trevas is referenced by [_Awesome official statistics software_](https://github.com/SNStatComp/awesome-official-statistics-software)
diff --git a/docs/blog/2024-10-07-trevas-provenance.mdx b/docs/blog/2024-10-07-trevas-provenance.mdx
new file mode 100644
index 000000000..ed6a6771e
--- /dev/null
+++ b/docs/blog/2024-10-07-trevas-provenance.mdx
@@ -0,0 +1,239 @@
+---
+slug: /trevas-provenance
+title: Trevas - Provenance
+authors: [nicolas]
+tags: [Trevas, provenance, SDTH]
+---
+
+import useBaseUrl from '@docusaurus/useBaseUrl';
+import Link from '@theme/Link';
+
+### News
+
+Trevas 1.6.0 introduces the VTL Prov module.
+
+This module enables to produce lineage metadata from Trevas, based on RDF ontologies: `PROV-O` and `SDTH`.
+
+#### SDTH model overview
+
+```mermaid
+classDiagram
+
+ class Program["sdth:Program"] {
+ rdfs:label
+ }
+ class ProgramStep["sdth:ProgramStep"] {
+ rdfs:label
+ sdth:hasSourceCode
+ sdth:hasSDTL
+ }
+ class VariableInstance["sdth:VariableInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+ class DataframeInstance["sdth:DataframeInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+
+class FileInstance["sdth:FileInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+
+
+ ProgramStep <-- Program : sdthhasProgramStep
+ ProgramStep <-- ProgramStep : sdth_hasProgramStep
+
+ ProgramStep --> VariableInstance : sdth_usesVariable
+ ProgramStep --> VariableInstance : sdth_assignsVariable
+ ProgramStep --> DataframeInstance : sdth_consumesDataframe
+ ProgramStep --> DataframeInstance : sdth_producesDataframe
+
+ ProgramStep --> FileInstance : sdth_loadsFile
+ ProgramStep --> FileInstance : sdth_savesFile
+
+
+ DataframeInstance --> VariableInstance : sdth_hasVariableInstance
+ FileInstance --> VariableInstance : sdth_hasVariableInstance
+
+
+ DataframeInstance --> DataframeInstance : sdth_derivedFrom
+ DataframeInstance --> DataframeInstance : sdth_elaborationOf
+
+ FileInstance --> FileInstance : sdth_derivedFrom
+ FileInstance --> FileInstance : sdth_elaborationOf
+ VariableInstance --> VariableInstance : sdth_derivedFrom
+ VariableInstance --> VariableInstance : sdth_elaborationOf
+```
+
+#### Adopted model
+
+The `vtl-prov` module, version 1.6.0, uses the following partial model:
+
+```mermaid
+classDiagram
+ class Agent {
+ }
+ class Program {
+ rdfs:label
+ }
+ class ProgramStep {
+ rdfs:label
+ }
+ class VariableInstance {
+ rdfs:label
+ sdth:hasName
+ }
+ class DataframeInstance {
+ rdfs:label
+ sdth:hasName
+ }
+
+ Agent <|-- Program
+ ProgramStep <-- Program : sdth_hasProgramStep
+ ProgramStep --> VariableInstance : sdth_usesVariable
+ ProgramStep --> VariableInstance : sdth_assignsVariable
+ ProgramStep --> DataframeInstance : sdth_consumesDataframe
+ ProgramStep --> DataframeInstance : sdth_producesDataframe
+ DataframeInstance --> VariableInstance : sdth_hasVariableInstance
+ DataframeInstance --> DataframeInstance : sdth_wasDerivedFrom
+ VariableInstance --> VariableInstance : sdth_wasDerivedFrom
+```
+
+Improvements will come in next weeks.
+
+#### Tools available
+
+Provenance Trevas tools are documented .
+
+#### Example
+
+##### Business use case
+
+Two sources datasets are transformed to produce transient datasets and a final permanent one.
+
+```mermaid
+flowchart TD
+ OP1{add +}
+ OP2{multiply *}
+ OP3{filter}
+ OP4{create variable}
+ SC3([3])
+
+ ds_1 --> OP1
+ ds_2 --> OP1
+ OP1 --> ds_sum
+ SC3 --> OP2
+ ds_sum --> OP2
+ OP2 --> ds_mul
+ ds_mul --> OP3
+ OP3 --> OP4
+ OP4 --> ds_res
+```
+
+### Inputs
+
+`ds1` & `ds2` metadata:
+
+| id | var1 | var2 |
+| :--------: | :-----: | :-----: |
+| STRING | INTEGER | NUMBER |
+| IDENTIFIER | MEASURE | MEASURE |
+
+### VTL script
+
+```vtl
+ds_sum := ds1 + ds2;
+ds_mul := ds_sum * 3;
+ds_res <- ds_mul[filter mod(var1, 2) = 0][calc var_sum := var1 + var2];
+```
+
+### RDF model target
+
+```ttl
+PREFIX rdfs:
+PREFIX prov:
+PREFIX sdth:
+
+# --- Program and steps
+ a sdth:Program ;
+ a prov:Agent ; # Agent? Or an activity
+ rdfs:label "My program 1"@en, "Mon programme 1"@fr ;
+ sdth:hasProgramStep ,
+ ,
+ .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 1"@en, "Étape 1"@fr ;
+ sdth:hasSourceCode "ds_sum := ds1 + ds2;" ;
+ sdth:consumesDataframe ,
+ ;
+ sdth:producesDataframe .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 2"@en, "Étape 2"@fr ;
+ sdth:hasSourceCode "ds_mul := ds_sum * 3;" ;
+ sdth:consumesDataframe ;
+ sdth:producesDataframe .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 3"@en, "Étape 3"@fr ;
+ sdth:hasSourceCode "ds_res <- ds_mul[filter mod(var1, 2) = 0][calc var_sum := var1 + var2];" ;
+ sdth:consumesDataframe ;
+ sdth:producesDataframe ;
+ sdth:usesVariable ,
+ ;
+ sdth:assignsVariable .
+
+# --- Variables
+# i think here it's not instances but names we refer to...
+ a sdth:VariableInstance ;
+ rdfs:label "id1" .
+ a sdth:VariableInstance ;
+ rdfs:label "var1" .
+ a sdth:VariableInstance ;
+ rdfs:label "var2" .
+ a sdth:VariableInstance ;
+ rdfs:label "var_sum" .
+
+# --- Data frames
+ a sdth:DataframeInstance ;
+ rdfs:label "ds1" ;
+ sdth:hasName "ds1" ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds2" ;
+ sdth:hasName "ds2" ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_sum" ;
+ sdth:hasName "ds_sum" ;
+ sdth:wasDerivedFrom ,
+ ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_mul" ;
+ sdth:hasName "ds_mul" ;
+ sdth:wasDerivedFrom ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_res" ;
+ sdth:wasDerivedFrom ;
+ sdth:hasVariableInstance ,
+ ,
+ ,
+ .
+```
diff --git a/docs/blog/2024-10-09-trevas-vtl-21.mdx b/docs/blog/2024-10-09-trevas-vtl-21.mdx
new file mode 100644
index 000000000..5b3fe6ccc
--- /dev/null
+++ b/docs/blog/2024-10-09-trevas-vtl-21.mdx
@@ -0,0 +1,28 @@
+---
+slug: /trevas-vtl-21
+title: Trevas - VTL 2.1
+authors: [nicolas]
+tags: [Trevas, 'VTL 2.1']
+---
+
+import useBaseUrl from '@docusaurus/useBaseUrl';
+import Link from '@theme/Link';
+
+Trevas 1.7.0 upgrade to version 2.1 of VTL.
+
+This version introduces two new operators:
+
+- `random`
+- `case`
+
+`random` produces a decimal number between 0 and 1.
+
+`case` allows for clearer multi conditional branching, for example:
+
+`ds2 := ds1[ calc c := case when r < 0.2 then "Low" when r > 0.8 then "High" else "Medium" ]`
+
+Both operators are already available in Trevas!
+
+The new grammar also provides time operators and includes corrections, without any breaking changes compared to the 2.0 version.
+
+See the section for more details.
diff --git a/docs/docs/developer-guide/basic-mode/data-sources/jdbc.mdx b/docs/docs/developer-guide/basic-mode/data-sources/jdbc.mdx
index a2640d6e8..a4e80930f 100644
--- a/docs/docs/developer-guide/basic-mode/data-sources/jdbc.mdx
+++ b/docs/docs/developer-guide/basic-mode/data-sources/jdbc.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jdbc
- 1.5.0
+ 1.7.0
```
diff --git a/docs/docs/developer-guide/basic-mode/data-sources/json.mdx b/docs/docs/developer-guide/basic-mode/data-sources/json.mdx
index 3b223f074..03875bb70 100644
--- a/docs/docs/developer-guide/basic-mode/data-sources/json.mdx
+++ b/docs/docs/developer-guide/basic-mode/data-sources/json.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jackson
- 1.5.0
+ 1.7.0
```
diff --git a/docs/docs/developer-guide/index-developer-guide.mdx b/docs/docs/developer-guide/index-developer-guide.mdx
index 7e37a6e96..5528002f1 100644
--- a/docs/docs/developer-guide/index-developer-guide.mdx
+++ b/docs/docs/developer-guide/index-developer-guide.mdx
@@ -15,7 +15,7 @@ import Card from '@theme/Card';
fr.insee.trevas
vtl-engine
- 1.5.0
+ 1.7.0
```
@@ -64,3 +64,11 @@ PersistentDataset result = (PersistentDataset) engine.getBindings(ScriptContext.
+
+### Provenance
+
+
diff --git a/docs/docs/developer-guide/provenance.mdx b/docs/docs/developer-guide/provenance.mdx
new file mode 100644
index 000000000..37f20c87b
--- /dev/null
+++ b/docs/docs/developer-guide/provenance.mdx
@@ -0,0 +1,65 @@
+---
+id: provenance
+title: Provenance
+sidebar_label: Provenance
+slug: /developer-guide/provenance
+custom_edit_url: null
+---
+
+### Import Trevas Provenance module
+
+```xml
+
+ fr.insee.trevas
+ vtl-spark
+ 1.7.0
+
+```
+
+### ProvenanceListener
+
+`vtl-prov` module expose the `ProvenanceListener` static class.
+
+This class give access to the `run` function with the following signature:
+
+```java
+run(String script, String programId, String programeName)
+```
+
+### Program
+
+`run` function returns a `Program` object, containing all provenance information of a script.
+
+```java
+Program program = ProvenanceListener.run(script, "program-id", "program-name");
+```
+
+### RDF
+
+`vtl-prov` embeds `jena` package and expose `RDFUtils` static class.
+
+#### Build RDF model
+
+`RDFUtils` `buildModel` method enables to build easily a RDF model of `Program`:
+
+```java
+Model model = RDFUtils.buildModel(program);
+```
+
+#### RDF serialization
+
+`RDFUtils` `buildModel` enables to obtain easily a RDF serialization of `Model`:
+
+```java
+String jsonLD = RDFUtils.serialize(model, "JSON-LD");
+String ttl = RDFUtils.serialize(model, "TTL");
+...
+```
+
+#### Load in triple store
+
+`RDFUrils` `loadModelWithCredentials` enables to push easily RDF model in a triple store:
+
+```java
+RDFUtils.loadModelWithCredentials(model, sparqlEndpoint, sparqlEndpointUser, sparlqEndpointPassword);
+```
diff --git a/docs/docs/developer-guide/spark-mode/index-spark-mode.mdx b/docs/docs/developer-guide/spark-mode/index-spark-mode.mdx
index bb96060a2..910ba4b59 100644
--- a/docs/docs/developer-guide/spark-mode/index-spark-mode.mdx
+++ b/docs/docs/developer-guide/spark-mode/index-spark-mode.mdx
@@ -16,7 +16,7 @@ The `SparkDataset` data sets can represent statistical tables in a Java applicat
fr.insee.trevas
vtl-spark
- 1.5.0
+ 1.7.0
```
diff --git a/docs/docs/introduction/modules/index-modules.mdx b/docs/docs/introduction/modules/index-modules.mdx
index 2f42a3702..eaa2cfd19 100644
--- a/docs/docs/introduction/modules/index-modules.mdx
+++ b/docs/docs/introduction/modules/index-modules.mdx
@@ -71,5 +71,12 @@ import Card from '@theme/Card';
page={useBaseUrl('/modules/sdmx')}
/>
+
+
+
diff --git a/docs/docs/introduction/modules/prov.mdx b/docs/docs/introduction/modules/prov.mdx
new file mode 100644
index 000000000..32a80e851
--- /dev/null
+++ b/docs/docs/introduction/modules/prov.mdx
@@ -0,0 +1,11 @@
+---
+id: prov
+title: VTL Provenance
+sidebar_label: VTL Provenance
+slug: /modules/prov
+custom_edit_url: null
+---
+
+[![Maven - Vtl Prov](https://maven-badges.herokuapp.com/maven-central/fr.insee.trevas/vtl-prov/badge.svg)](https://maven-badges.herokuapp.com/maven-central/fr.insee.trevas/vtl-prov)
+
+Tools for producing lineage metadata.
diff --git a/docs/docs/introduction/releases/1.x.x.mdx b/docs/docs/introduction/releases/1.x.x.mdx
index a8edaa93b..4786b02f8 100644
--- a/docs/docs/introduction/releases/1.x.x.mdx
+++ b/docs/docs/introduction/releases/1.x.x.mdx
@@ -6,6 +6,18 @@ slug: /releases/1.x.x
custom_edit_url: null
---
+## Version 1.7.0 - 10/09/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.7.0))
+
+- Upgrade to version 2.1 of VTL
+
+## Version 1.6.0 - 10/07/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.6.0))
+
+- Add provenance module
+
## Version 1.5.0 - 06/28/24
(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.5.0))
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index cdf07ea22..34fe2660e 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -33,6 +33,10 @@ module.exports = {
},
},
},
+ markdown: {
+ mermaid: true,
+ },
+ themes: ['@docusaurus/theme-mermaid'],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
diff --git a/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-07-trevas-provenance.mdx b/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-07-trevas-provenance.mdx
new file mode 100644
index 000000000..f262877e9
--- /dev/null
+++ b/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-07-trevas-provenance.mdx
@@ -0,0 +1,239 @@
+---
+slug: /trevas-provenance
+title: Trevas - Provenance
+authors: [nicolas]
+tags: [Trevas, provenance, SDTH]
+---
+
+import useBaseUrl from '@docusaurus/useBaseUrl';
+import Link from '@theme/Link';
+
+### Nouveautés
+
+Trevas 1.6.0 introduit le module VTL Prov.
+
+Ce module permet de produire des métadonnées de lineage à partir de Trevas, basées sur les ontologies RDF : `PROV-O` et `SDTH`.
+
+#### Aperçu du modèle SDTH
+
+```mermaid
+classDiagram
+
+ class Program["sdth:Program"] {
+ rdfs:label
+ }
+ class ProgramStep["sdth:ProgramStep"] {
+ rdfs:label
+ sdth:hasSourceCode
+ sdth:hasSDTL
+ }
+ class VariableInstance["sdth:VariableInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+ class DataframeInstance["sdth:DataframeInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+
+class FileInstance["sdth:FileInstance"] {
+ rdfs:label
+ sdth:hasName
+ }
+
+
+ ProgramStep <-- Program : sdthhasProgramStep
+ ProgramStep <-- ProgramStep : sdth_hasProgramStep
+
+ ProgramStep --> VariableInstance : sdth_usesVariable
+ ProgramStep --> VariableInstance : sdth_assignsVariable
+ ProgramStep --> DataframeInstance : sdth_consumesDataframe
+ ProgramStep --> DataframeInstance : sdth_producesDataframe
+
+ ProgramStep --> FileInstance : sdth_loadsFile
+ ProgramStep --> FileInstance : sdth_savesFile
+
+
+ DataframeInstance --> VariableInstance : sdth_hasVariableInstance
+ FileInstance --> VariableInstance : sdth_hasVariableInstance
+
+
+ DataframeInstance --> DataframeInstance : sdth_derivedFrom
+ DataframeInstance --> DataframeInstance : sdth_elaborationOf
+
+ FileInstance --> FileInstance : sdth_derivedFrom
+ FileInstance --> FileInstance : sdth_elaborationOf
+ VariableInstance --> VariableInstance : sdth_derivedFrom
+ VariableInstance --> VariableInstance : sdth_elaborationOf
+```
+
+#### Modèle adopté
+
+Le module `vtl-prov`, version 1.6.0, utilise le modèle partiel suivant :
+
+```mermaid
+classDiagram
+ class Agent {
+ }
+ class Program {
+ rdfs:label
+ }
+ class ProgramStep {
+ rdfs:label
+ }
+ class VariableInstance {
+ rdfs:label
+ sdth:hasName
+ }
+ class DataframeInstance {
+ rdfs:label
+ sdth:hasName
+ }
+
+ Agent <|-- Program
+ ProgramStep <-- Program : sdth_hasProgramStep
+ ProgramStep --> VariableInstance : sdth_usesVariable
+ ProgramStep --> VariableInstance : sdth_assignsVariable
+ ProgramStep --> DataframeInstance : sdth_consumesDataframe
+ ProgramStep --> DataframeInstance : sdth_producesDataframe
+ DataframeInstance --> VariableInstance : sdth_hasVariableInstance
+ DataframeInstance --> DataframeInstance : sdth_wasDerivedFrom
+ VariableInstance --> VariableInstance : sdth_wasDerivedFrom
+```
+
+Des améliorations arriveront dans les prochaines semaines.
+
+#### Outils disponibles
+
+Les outils de provenance Trevas sont documentés .
+
+#### Exemple
+
+##### Cas d'utilisation métier
+
+Deux jeux de données sources sont transformés pour produire des jeux de données transitoires et un jeu de données final permanent.
+
+```mermaid
+flowchart TD
+ OP1{add +}
+ OP2{multiply *}
+ OP3{filter}
+ OP4{create variable}
+ SC3([3])
+
+ ds_1 --> OP1
+ ds_2 --> OP1
+ OP1 --> ds_sum
+ SC3 --> OP2
+ ds_sum --> OP2
+ OP2 --> ds_mul
+ ds_mul --> OP3
+ OP3 --> OP4
+ OP4 --> ds_res
+```
+
+### Entrées
+
+`ds1` & `ds2` métadonnées:
+
+| id | var1 | var2 |
+| :--------: | :-----: | :-----: |
+| STRING | INTEGER | NUMBER |
+| IDENTIFIER | MEASURE | MEASURE |
+
+### Script VTL
+
+```vtl
+ds_sum := ds1 + ds2;
+ds_mul := ds_sum * 3;
+ds_res <- ds_mul[filter mod(var1, 2) = 0][calc var_sum := var1 + var2];
+```
+
+### Modèle RDF cible
+
+```ttl
+PREFIX rdfs:
+PREFIX prov:
+PREFIX sdth:
+
+# --- Program and steps
+ a sdth:Program ;
+ a prov:Agent ; # Agent? Or an activity
+ rdfs:label "My program 1"@en, "Mon programme 1"@fr ;
+ sdth:hasProgramStep ,
+ ,
+ .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 1"@en, "Étape 1"@fr ;
+ sdth:hasSourceCode "ds_sum := ds1 + ds2;" ;
+ sdth:consumesDataframe ,
+ ;
+ sdth:producesDataframe .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 2"@en, "Étape 2"@fr ;
+ sdth:hasSourceCode "ds_mul := ds_sum * 3;" ;
+ sdth:consumesDataframe ;
+ sdth:producesDataframe .
+
+ a sdth:ProgramStep ;
+ rdfs:label "Program step 3"@en, "Étape 3"@fr ;
+ sdth:hasSourceCode "ds_res <- ds_mul[filter mod(var1, 2) = 0][calc var_sum := var1 + var2];" ;
+ sdth:consumesDataframe ;
+ sdth:producesDataframe ;
+ sdth:usesVariable ,
+ ;
+ sdth:assignsVariable .
+
+# --- Variables
+# i think here it's not instances but names we refer to...
+ a sdth:VariableInstance ;
+ rdfs:label "id1" .
+ a sdth:VariableInstance ;
+ rdfs:label "var1" .
+ a sdth:VariableInstance ;
+ rdfs:label "var2" .
+ a sdth:VariableInstance ;
+ rdfs:label "var_sum" .
+
+# --- Data frames
+ a sdth:DataframeInstance ;
+ rdfs:label "ds1" ;
+ sdth:hasName "ds1" ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds2" ;
+ sdth:hasName "ds2" ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_sum" ;
+ sdth:hasName "ds_sum" ;
+ sdth:wasDerivedFrom ,
+ ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_mul" ;
+ sdth:hasName "ds_mul" ;
+ sdth:wasDerivedFrom ;
+ sdth:hasVariableInstance ,
+ ,
+ .
+
+ a sdth:DataframeInstance ;
+ rdfs:label "ds_res" ;
+ sdth:wasDerivedFrom ;
+ sdth:hasVariableInstance ,
+ ,
+ ,
+ .
+```
diff --git a/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-09-trevas-vtl-21.mdx b/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-09-trevas-vtl-21.mdx
new file mode 100644
index 000000000..39422a6b8
--- /dev/null
+++ b/docs/i18n/fr/docusaurus-plugin-content-blog/2024-10-09-trevas-vtl-21.mdx
@@ -0,0 +1,28 @@
+---
+slug: /trevas-vtl-21
+title: Trevas - VTL 2.1
+authors: [nicolas]
+tags: [Trevas, 'VTL 2.1']
+---
+
+import useBaseUrl from '@docusaurus/useBaseUrl';
+import Link from '@theme/Link';
+
+Trevas 1.7.0 met à niveau VTL en version 2.1.
+
+Cette version introduit deux nouveaux opérateurs :
+
+- `random`
+- `case`
+
+`random` produit un nombre décimal entre 0 et 1.
+
+`case` permet de définir des déclarations multiconditionnelles plus claires, par exemple:
+
+`ds2 := ds1[ calc c := case when r < 0.2 then "Low" when r > 0.8 then "High" else "Medium" ]`
+
+Les deux opérateurs sont déjà disponibles dans Trevas !
+
+La nouvelle grammaire fournit également des opérateurs temporels et inclut des corrections, sans aucun changement radical par rapport à la version 2.0.
+
+Voir la section pour plus de détails.
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
index a911db8a6..7d742fa96 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jdbc
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
index e43350ec7..3f54328d5 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jackson
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
index 93d153c3e..4c0c1de54 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
@@ -15,7 +15,7 @@ import Card from '@theme/Card';
fr.insee.trevas
vtl-engine
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
index 0e6228bd4..5e9994a3d 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
@@ -16,7 +16,7 @@ Les datasets `SparkDataset` permettent de représenter les tables statistiques d
fr.insee.trevas
vtl-spark
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
index 3da9ba477..c3ebfa6af 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
@@ -71,5 +71,12 @@ import Card from '@theme/Card';
page={useBaseUrl('/modules/sdmx')}
/>
+
+
+
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx
new file mode 100644
index 000000000..e69de29bb
diff --git a/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx b/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
index d7d9515e5..edccea210 100644
--- a/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
+++ b/docs/i18n/fr/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
@@ -6,6 +6,18 @@ slug: /releases/1.x.x
custom_edit_url: null
---
+## Version 1.7.0 - 09/10/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.7.0))
+
+- Montée de version de la version VTL en 2.1
+
+## Version 1.6.0 - 07/10/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.6.0))
+
+- Ajout d'un module de provenance
+
## Version 1.5.0 - 28/06/24
(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.5.0))
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
index e3dfcbbdc..91b8137a9 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jdbc
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
index 5797c3fde..0ed6806fb 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jackson
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
index 4ba218506..fe167b26d 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
@@ -15,7 +15,7 @@ import Card from '@theme/Card';
fr.insee.trevas
vtl-engine
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
index c68973a67..9cb8375b1 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
@@ -16,7 +16,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-spark
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
index e2fed2892..9efe54548 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
@@ -71,5 +71,12 @@ import Card from '@theme/Card';
page={useBaseUrl('/modules/sdmx')}
/>
+
+
+
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx
new file mode 100644
index 000000000..e69de29bb
diff --git a/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx b/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
index 1c43e13b5..4fc5f731e 100644
--- a/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
+++ b/docs/i18n/no/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
@@ -6,6 +6,18 @@ slug: /releases/1.x.x
custom_edit_url: null
---
+## Versjon 1.7.0 - 10/09/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.7.0))
+
+- Oppgrader til versjon 2.1 av VTL
+
+## Versjon 1.6.0 - 10/07/24
+
+(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.6.0))
+
+- Legg til herkomstmodul
+
## Versjon 1.5.0 - 06/28/24
(See technical release on [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.5.0))
diff --git a/docs/i18n/zh-CN/code.json b/docs/i18n/zh-CN/code.json
index b91f320bb..e36c6f6de 100644
--- a/docs/i18n/zh-CN/code.json
+++ b/docs/i18n/zh-CN/code.json
@@ -1,381 +1,381 @@
{
- "Page not found": {
- "message": "未找到该网页",
- "description": "404 message"
- },
- "Back to homepage": {
- "message": "返回首页",
- "description": "404 Back to homepage"
- },
- "Trevas": {
- "message": "Trevas",
- "description": "Box title Trevas"
- },
- "Getting started with Trevas Java VTL engine": {
- "message": "开始使用 Trevas Java VTL 引擎",
- "description": "Box description Trevas"
- },
- "See more": {
- "message": "查看更多",
- "description": "See more"
- },
- "Engine coverage": {
- "message": "VTL语言覆盖率",
- "description": "Box title coverage"
- },
- "Check the current coverage of VTL in Trevas engine": {
- "message": "检查当前VTL语言在Trevas引擎中的覆盖率",
- "description": "Box description coverage"
- },
- "VTL user guide": {
- "message": "VTL 用户指南",
- "description": "Box title VTL"
- },
- "Discover examples of VTL scripts": {
- "message": " 查看VTL脚本示例",
- "description": "Box description VTL"
- },
- "Client apps": {
- "message": "客户端应用",
- "description": "Box title client apps"
- },
- "Discover applications that embed Trevas": {
- "message": "查看哪些应用在使用Trevas",
- "description": "Box description client apps"
- },
- "Search": {
- "message": "搜索",
- "description": "Search placeholder"
- },
- "Loading...": {
- "message": "加载中...",
- "description": "Loading placeholder"
- },
- "theme.ErrorPageContent.title": {
- "message": "页面已崩溃。",
- "description": "The title of the fallback page when the page crashed"
- },
- "theme.ErrorPageContent.tryAgain": {
- "message": "重试",
- "description": "The label of the button to try again rendering when the React error boundary captures an error"
- },
- "theme.NotFound.title": {
- "message": "找不到页面",
- "description": "The title of the 404 page"
- },
- "theme.NotFound.p1": {
- "message": "我们找不到您要找的页面。",
- "description": "The first paragraph of the 404 page"
- },
- "theme.NotFound.p2": {
- "message": "请联系原始链接来源网站的所有者,并告知他们链接已损坏。",
- "description": "The 2nd paragraph of the 404 page"
- },
- "theme.admonition.note": {
- "message": "备注",
- "description": "The default label used for the Note admonition (:::note)"
- },
- "theme.admonition.tip": {
- "message": "提示",
- "description": "The default label used for the Tip admonition (:::tip)"
- },
- "theme.admonition.danger": {
- "message": "危险",
- "description": "The default label used for the Danger admonition (:::danger)"
- },
- "theme.admonition.info": {
- "message": "信息",
- "description": "The default label used for the Info admonition (:::info)"
- },
- "theme.admonition.caution": {
- "message": "警告",
- "description": "The default label used for the Caution admonition (:::caution)"
- },
- "theme.BackToTopButton.buttonAriaLabel": {
- "message": "回到顶部",
- "description": "The ARIA label for the back to top button"
- },
- "theme.blog.archive.title": {
- "message": "历史博文",
- "description": "The page & hero title of the blog archive page"
- },
- "theme.blog.archive.description": {
- "message": "历史博文",
- "description": "The page & hero description of the blog archive page"
- },
- "theme.blog.paginator.navAriaLabel": {
- "message": "博文列表分页导航",
- "description": "The ARIA label for the blog pagination"
- },
- "theme.blog.paginator.newerEntries": {
- "message": "较新的博文",
- "description": "The label used to navigate to the newer blog posts page (previous page)"
- },
- "theme.blog.paginator.olderEntries": {
- "message": "较旧的博文",
- "description": "The label used to navigate to the older blog posts page (next page)"
- },
- "theme.blog.post.paginator.navAriaLabel": {
- "message": "博文分页导航",
- "description": "The ARIA label for the blog posts pagination"
- },
- "theme.blog.post.paginator.newerPost": {
- "message": "较新一篇",
- "description": "The blog post button label to navigate to the newer/previous post"
- },
- "theme.blog.post.paginator.olderPost": {
- "message": "较旧一篇",
- "description": "The blog post button label to navigate to the older/next post"
- },
- "theme.blog.post.plurals": {
- "message": "{count} 篇博文",
- "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
- },
- "theme.blog.tagTitle": {
- "message": "{nPosts} 含有标签「{tagName}」",
- "description": "The title of the page for a blog tag"
- },
- "theme.tags.tagsPageLink": {
- "message": "查看所有标签",
- "description": "The label of the link targeting the tag list page"
- },
- "theme.colorToggle.ariaLabel": {
- "message": "切换浅色/暗黑模式(当前为{mode})",
- "description": "The ARIA label for the navbar color mode toggle"
- },
- "theme.colorToggle.ariaLabel.mode.dark": {
- "message": "暗黑模式",
- "description": "The name for the dark color mode"
- },
- "theme.colorToggle.ariaLabel.mode.light": {
- "message": "浅色模式",
- "description": "The name for the light color mode"
- },
- "theme.docs.breadcrumbs.home": {
- "message": "主页面",
- "description": "The ARIA label for the home page in the breadcrumbs"
- },
- "theme.docs.breadcrumbs.navAriaLabel": {
- "message": "页面路径",
- "description": "The ARIA label for the breadcrumbs"
- },
- "theme.docs.DocCard.categoryDescription": {
- "message": "{count} 个项目",
- "description": "The default description for a category card in the generated index about how many items this category includes"
- },
- "theme.docs.paginator.navAriaLabel": {
- "message": "文档分页导航",
- "description": "The ARIA label for the docs pagination"
- },
- "theme.docs.paginator.previous": {
- "message": "上一页",
- "description": "The label used to navigate to the previous doc"
- },
- "theme.docs.paginator.next": {
- "message": "下一页",
- "description": "The label used to navigate to the next doc"
- },
- "theme.docs.tagDocListPageTitle.nDocsTagged": {
- "message": "{count} 篇文档带有标签",
- "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
- },
- "theme.docs.tagDocListPageTitle": {
- "message": "{nDocsTagged}「{tagName}」",
- "description": "The title of the page for a docs tag"
- },
- "theme.docs.versionBadge.label": {
- "message": "版本:{versionLabel}"
- },
- "theme.docs.versions.unreleasedVersionLabel": {
- "message": "此为 {siteTitle} {versionLabel} 版尚未发行的文档。",
- "description": "The label used to tell the user that he's browsing an unreleased doc version"
- },
- "theme.docs.versions.unmaintainedVersionLabel": {
- "message": "此为 {siteTitle} {versionLabel} 版的文档,现已不再积极维护。",
- "description": "The label used to tell the user that he's browsing an unmaintained doc version"
- },
- "theme.docs.versions.latestVersionSuggestionLabel": {
- "message": "最新的文档请参阅 {latestVersionLink} ({versionLabel})。",
- "description": "The label used to tell the user to check the latest version"
- },
- "theme.docs.versions.latestVersionLinkLabel": {
- "message": "最新版本",
- "description": "The label used for the latest version suggestion link label"
- },
- "theme.common.editThisPage": {
- "message": "编辑此页",
- "description": "The link label to edit the current page"
- },
- "theme.common.headingLinkTitle": {
- "message": "标题的直接链接",
- "description": "Title for link to heading"
- },
- "theme.lastUpdated.atDate": {
- "message": "于 {date} ",
- "description": "The words used to describe on which date a page has been last updated"
- },
- "theme.lastUpdated.byUser": {
- "message": "由 {user} ",
- "description": "The words used to describe by who the page has been last updated"
- },
- "theme.lastUpdated.lastUpdatedAtBy": {
- "message": "最后{byUser}{atDate}更新",
- "description": "The sentence used to display when a page has been last updated, and by who"
- },
- "theme.navbar.mobileVersionsDropdown.label": {
- "message": "选择版本",
- "description": "The label for the navbar versions dropdown on mobile view"
- },
- "theme.tags.tagsListLabel": {
- "message": "标签:",
- "description": "The label alongside a tag list"
- },
- "theme.AnnouncementBar.closeButtonAriaLabel": {
- "message": "关闭",
- "description": "The ARIA label for close button of announcement bar"
- },
- "theme.blog.sidebar.navAriaLabel": {
- "message": "最近博文导航",
- "description": "The ARIA label for recent posts in the blog sidebar"
- },
- "theme.CodeBlock.copied": {
- "message": "复制成功",
- "description": "The copied button label on code blocks"
- },
- "theme.CodeBlock.copyButtonAriaLabel": {
- "message": "复制代码到剪贴板",
- "description": "The ARIA label for copy code blocks button"
- },
- "theme.CodeBlock.copy": {
- "message": "复制",
- "description": "The copy button label on code blocks"
- },
- "theme.CodeBlock.wordWrapToggle": {
- "message": "切换自动换行",
- "description": "The title attribute for toggle word wrapping button of code block lines"
- },
- "theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": {
- "message": "打开/收起侧边栏菜单「{label}」",
- "description": "The ARIA label to toggle the collapsible sidebar category"
- },
- "theme.navbar.mobileLanguageDropdown.label": {
- "message": "选择语言",
- "description": "The label for the mobile language switcher dropdown"
- },
- "theme.TOCCollapsible.toggleButtonLabel": {
- "message": "本页总览",
- "description": "The label used by the button on the collapsible TOC component"
- },
- "theme.blog.post.readMore": {
- "message": "阅读更多",
- "description": "The label used in blog post item excerpts to link to full blog posts"
- },
- "theme.blog.post.readMoreLabel": {
- "message": "阅读 {title} 的全文",
- "description": "The ARIA label for the link to full blog posts from excerpts"
- },
- "theme.blog.post.readingTime.plurals": {
- "message": "阅读需 {readingTime} 分钟",
- "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
- },
- "theme.docs.sidebar.collapseButtonTitle": {
- "message": "收起侧边栏",
- "description": "The title attribute for collapse button of doc sidebar"
- },
- "theme.docs.sidebar.collapseButtonAriaLabel": {
- "message": "收起侧边栏",
- "description": "The title attribute for collapse button of doc sidebar"
- },
- "theme.docs.sidebar.closeSidebarButtonAriaLabel": {
- "message": "Close navigation bar",
- "description": "The ARIA label for close button of mobile sidebar"
- },
- "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": {
- "message": "← 回到主菜单",
- "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"
- },
- "theme.docs.sidebar.toggleSidebarButtonAriaLabel": {
- "message": "Toggle navigation bar",
- "description": "The ARIA label for hamburger menu button of mobile navigation"
- },
- "theme.docs.sidebar.expandButtonTitle": {
- "message": "展开侧边栏",
- "description": "The ARIA label and title attribute for expand button of doc sidebar"
- },
- "theme.docs.sidebar.expandButtonAriaLabel": {
- "message": "展开侧边栏",
- "description": "The ARIA label and title attribute for expand button of doc sidebar"
- },
- "theme.common.skipToMainContent": {
- "message": "跳到主要内容",
- "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation"
- },
- "theme.tags.tagsPageTitle": {
- "message": "标签",
- "description": "The title of the tag list page"
- },
- "Sponsors": {
- "message": "赞助商",
- "description": "Sponsors title"
- },
- "theme.NavBar.navAriaLabel": {
- "message": "Main",
- "description": "The ARIA label for the main navigation"
- },
- "theme.docs.sidebar.navAriaLabel": {
- "message": "Docs sidebar",
- "description": "The ARIA label for the sidebar navigation"
- },
- "Trevas releases": {
- "message": "Trevas 发布",
- "description": "Release title VTL"
- },
- "Explore the Trevas Maven releases": {
- "message": "探索 Trevas Maven 版本",
- "description": "Release description VTL"
- },
- "theme.docs.DocCard.categoryDescription.plurals": {
- "message": "{count} 个项目",
- "description": "The default description for a category card in the generated index about how many items this category includes"
- },
- "theme.admonition.warning": {
- "message": "注意",
- "description": "The default label used for the Warning admonition (:::warning)"
- },
- "theme.DocSidebarItem.expandCategoryAriaLabel": {
- "message": "展开侧边栏分类 '{label}'",
- "description": "The ARIA label to expand the sidebar category"
- },
- "theme.DocSidebarItem.collapseCategoryAriaLabel": {
- "message": "折叠侧边栏分类 '{label}'",
- "description": "The ARIA label to collapse the sidebar category"
- },
- "theme.blog.author.pageTitle": {
- "message": "{authorName} - {nPosts}",
- "description": "The title of the page for a blog author"
- },
- "theme.blog.authorsList.pageTitle": {
- "message": "Authors",
- "description": "The title of the authors page"
- },
- "theme.blog.authorsList.viewAll": {
- "message": "View All Authors",
- "description": "The label of the link targeting the blog authors page"
- },
- "theme.contentVisibility.unlistedBanner.title": {
- "message": "未列出页",
- "description": "The unlisted content banner title"
- },
- "theme.contentVisibility.unlistedBanner.message": {
- "message": "此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。",
- "description": "The unlisted content banner message"
- },
- "theme.contentVisibility.draftBanner.title": {
- "message": "Draft page",
- "description": "The draft content banner title"
- },
- "theme.contentVisibility.draftBanner.message": {
- "message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
- "description": "The draft content banner message"
- }
+ "Page not found": {
+ "message": "未找到该网页",
+ "description": "404 message"
+ },
+ "Back to homepage": {
+ "message": "返回首页",
+ "description": "404 Back to homepage"
+ },
+ "Trevas": {
+ "message": "Trevas",
+ "description": "Box title Trevas"
+ },
+ "Getting started with Trevas Java VTL engine": {
+ "message": "开始使用 Trevas Java VTL 引擎",
+ "description": "Box description Trevas"
+ },
+ "See more": {
+ "message": "查看更多",
+ "description": "See more"
+ },
+ "Engine coverage": {
+ "message": "VTL语言覆盖率",
+ "description": "Box title coverage"
+ },
+ "Check the current coverage of VTL in Trevas engine": {
+ "message": "检查当前VTL语言在Trevas引擎中的覆盖率",
+ "description": "Box description coverage"
+ },
+ "VTL user guide": {
+ "message": "VTL 用户指南",
+ "description": "Box title VTL"
+ },
+ "Discover examples of VTL scripts": {
+ "message": " 查看VTL脚本示例",
+ "description": "Box description VTL"
+ },
+ "Client apps": {
+ "message": "客户端应用",
+ "description": "Box title client apps"
+ },
+ "Discover applications that embed Trevas": {
+ "message": "查看哪些应用在使用Trevas",
+ "description": "Box description client apps"
+ },
+ "Search": {
+ "message": "搜索",
+ "description": "Search placeholder"
+ },
+ "Loading...": {
+ "message": "加载中...",
+ "description": "Loading placeholder"
+ },
+ "theme.ErrorPageContent.title": {
+ "message": "页面已崩溃。",
+ "description": "The title of the fallback page when the page crashed"
+ },
+ "theme.ErrorPageContent.tryAgain": {
+ "message": "重试",
+ "description": "The label of the button to try again rendering when the React error boundary captures an error"
+ },
+ "theme.NotFound.title": {
+ "message": "找不到页面",
+ "description": "The title of the 404 page"
+ },
+ "theme.NotFound.p1": {
+ "message": "我们找不到您要找的页面。",
+ "description": "The first paragraph of the 404 page"
+ },
+ "theme.NotFound.p2": {
+ "message": "请联系原始链接来源网站的所有者,并告知他们链接已损坏。",
+ "description": "The 2nd paragraph of the 404 page"
+ },
+ "theme.admonition.note": {
+ "message": "备注",
+ "description": "The default label used for the Note admonition (:::note)"
+ },
+ "theme.admonition.tip": {
+ "message": "提示",
+ "description": "The default label used for the Tip admonition (:::tip)"
+ },
+ "theme.admonition.danger": {
+ "message": "危险",
+ "description": "The default label used for the Danger admonition (:::danger)"
+ },
+ "theme.admonition.info": {
+ "message": "信息",
+ "description": "The default label used for the Info admonition (:::info)"
+ },
+ "theme.admonition.caution": {
+ "message": "警告",
+ "description": "The default label used for the Caution admonition (:::caution)"
+ },
+ "theme.BackToTopButton.buttonAriaLabel": {
+ "message": "回到顶部",
+ "description": "The ARIA label for the back to top button"
+ },
+ "theme.blog.archive.title": {
+ "message": "历史博文",
+ "description": "The page & hero title of the blog archive page"
+ },
+ "theme.blog.archive.description": {
+ "message": "历史博文",
+ "description": "The page & hero description of the blog archive page"
+ },
+ "theme.blog.paginator.navAriaLabel": {
+ "message": "博文列表分页导航",
+ "description": "The ARIA label for the blog pagination"
+ },
+ "theme.blog.paginator.newerEntries": {
+ "message": "较新的博文",
+ "description": "The label used to navigate to the newer blog posts page (previous page)"
+ },
+ "theme.blog.paginator.olderEntries": {
+ "message": "较旧的博文",
+ "description": "The label used to navigate to the older blog posts page (next page)"
+ },
+ "theme.blog.post.paginator.navAriaLabel": {
+ "message": "博文分页导航",
+ "description": "The ARIA label for the blog posts pagination"
+ },
+ "theme.blog.post.paginator.newerPost": {
+ "message": "较新一篇",
+ "description": "The blog post button label to navigate to the newer/previous post"
+ },
+ "theme.blog.post.paginator.olderPost": {
+ "message": "较旧一篇",
+ "description": "The blog post button label to navigate to the older/next post"
+ },
+ "theme.blog.post.plurals": {
+ "message": "{count} 篇博文",
+ "description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
+ },
+ "theme.blog.tagTitle": {
+ "message": "{nPosts} 含有标签「{tagName}」",
+ "description": "The title of the page for a blog tag"
+ },
+ "theme.tags.tagsPageLink": {
+ "message": "查看所有标签",
+ "description": "The label of the link targeting the tag list page"
+ },
+ "theme.colorToggle.ariaLabel": {
+ "message": "切换浅色/暗黑模式(当前为{mode})",
+ "description": "The ARIA label for the navbar color mode toggle"
+ },
+ "theme.colorToggle.ariaLabel.mode.dark": {
+ "message": "暗黑模式",
+ "description": "The name for the dark color mode"
+ },
+ "theme.colorToggle.ariaLabel.mode.light": {
+ "message": "浅色模式",
+ "description": "The name for the light color mode"
+ },
+ "theme.docs.breadcrumbs.home": {
+ "message": "主页面",
+ "description": "The ARIA label for the home page in the breadcrumbs"
+ },
+ "theme.docs.breadcrumbs.navAriaLabel": {
+ "message": "页面路径",
+ "description": "The ARIA label for the breadcrumbs"
+ },
+ "theme.docs.DocCard.categoryDescription": {
+ "message": "{count} 个项目",
+ "description": "The default description for a category card in the generated index about how many items this category includes"
+ },
+ "theme.docs.paginator.navAriaLabel": {
+ "message": "文档分页导航",
+ "description": "The ARIA label for the docs pagination"
+ },
+ "theme.docs.paginator.previous": {
+ "message": "上一页",
+ "description": "The label used to navigate to the previous doc"
+ },
+ "theme.docs.paginator.next": {
+ "message": "下一页",
+ "description": "The label used to navigate to the next doc"
+ },
+ "theme.docs.tagDocListPageTitle.nDocsTagged": {
+ "message": "{count} 篇文档带有标签",
+ "description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
+ },
+ "theme.docs.tagDocListPageTitle": {
+ "message": "{nDocsTagged}「{tagName}」",
+ "description": "The title of the page for a docs tag"
+ },
+ "theme.docs.versionBadge.label": {
+ "message": "版本:{versionLabel}"
+ },
+ "theme.docs.versions.unreleasedVersionLabel": {
+ "message": "此为 {siteTitle} {versionLabel} 版尚未发行的文档。",
+ "description": "The label used to tell the user that he's browsing an unreleased doc version"
+ },
+ "theme.docs.versions.unmaintainedVersionLabel": {
+ "message": "此为 {siteTitle} {versionLabel} 版的文档,现已不再积极维护。",
+ "description": "The label used to tell the user that he's browsing an unmaintained doc version"
+ },
+ "theme.docs.versions.latestVersionSuggestionLabel": {
+ "message": "最新的文档请参阅 {latestVersionLink} ({versionLabel})。",
+ "description": "The label used to tell the user to check the latest version"
+ },
+ "theme.docs.versions.latestVersionLinkLabel": {
+ "message": "最新版本",
+ "description": "The label used for the latest version suggestion link label"
+ },
+ "theme.common.editThisPage": {
+ "message": "编辑此页",
+ "description": "The link label to edit the current page"
+ },
+ "theme.common.headingLinkTitle": {
+ "message": "标题的直接链接",
+ "description": "Title for link to heading"
+ },
+ "theme.lastUpdated.atDate": {
+ "message": "于 {date} ",
+ "description": "The words used to describe on which date a page has been last updated"
+ },
+ "theme.lastUpdated.byUser": {
+ "message": "由 {user} ",
+ "description": "The words used to describe by who the page has been last updated"
+ },
+ "theme.lastUpdated.lastUpdatedAtBy": {
+ "message": "最后{byUser}{atDate}更新",
+ "description": "The sentence used to display when a page has been last updated, and by who"
+ },
+ "theme.navbar.mobileVersionsDropdown.label": {
+ "message": "选择版本",
+ "description": "The label for the navbar versions dropdown on mobile view"
+ },
+ "theme.tags.tagsListLabel": {
+ "message": "标签:",
+ "description": "The label alongside a tag list"
+ },
+ "theme.AnnouncementBar.closeButtonAriaLabel": {
+ "message": "关闭",
+ "description": "The ARIA label for close button of announcement bar"
+ },
+ "theme.blog.sidebar.navAriaLabel": {
+ "message": "最近博文导航",
+ "description": "The ARIA label for recent posts in the blog sidebar"
+ },
+ "theme.CodeBlock.copied": {
+ "message": "复制成功",
+ "description": "The copied button label on code blocks"
+ },
+ "theme.CodeBlock.copyButtonAriaLabel": {
+ "message": "复制代码到剪贴板",
+ "description": "The ARIA label for copy code blocks button"
+ },
+ "theme.CodeBlock.copy": {
+ "message": "复制",
+ "description": "The copy button label on code blocks"
+ },
+ "theme.CodeBlock.wordWrapToggle": {
+ "message": "切换自动换行",
+ "description": "The title attribute for toggle word wrapping button of code block lines"
+ },
+ "theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": {
+ "message": "打开/收起侧边栏菜单「{label}」",
+ "description": "The ARIA label to toggle the collapsible sidebar category"
+ },
+ "theme.navbar.mobileLanguageDropdown.label": {
+ "message": "选择语言",
+ "description": "The label for the mobile language switcher dropdown"
+ },
+ "theme.TOCCollapsible.toggleButtonLabel": {
+ "message": "本页总览",
+ "description": "The label used by the button on the collapsible TOC component"
+ },
+ "theme.blog.post.readMore": {
+ "message": "阅读更多",
+ "description": "The label used in blog post item excerpts to link to full blog posts"
+ },
+ "theme.blog.post.readMoreLabel": {
+ "message": "阅读 {title} 的全文",
+ "description": "The ARIA label for the link to full blog posts from excerpts"
+ },
+ "theme.blog.post.readingTime.plurals": {
+ "message": "阅读需 {readingTime} 分钟",
+ "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
+ },
+ "theme.docs.sidebar.collapseButtonTitle": {
+ "message": "收起侧边栏",
+ "description": "The title attribute for collapse button of doc sidebar"
+ },
+ "theme.docs.sidebar.collapseButtonAriaLabel": {
+ "message": "收起侧边栏",
+ "description": "The title attribute for collapse button of doc sidebar"
+ },
+ "theme.docs.sidebar.closeSidebarButtonAriaLabel": {
+ "message": "Close navigation bar",
+ "description": "The ARIA label for close button of mobile sidebar"
+ },
+ "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": {
+ "message": "← 回到主菜单",
+ "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"
+ },
+ "theme.docs.sidebar.toggleSidebarButtonAriaLabel": {
+ "message": "Toggle navigation bar",
+ "description": "The ARIA label for hamburger menu button of mobile navigation"
+ },
+ "theme.docs.sidebar.expandButtonTitle": {
+ "message": "展开侧边栏",
+ "description": "The ARIA label and title attribute for expand button of doc sidebar"
+ },
+ "theme.docs.sidebar.expandButtonAriaLabel": {
+ "message": "展开侧边栏",
+ "description": "The ARIA label and title attribute for expand button of doc sidebar"
+ },
+ "theme.common.skipToMainContent": {
+ "message": "跳到主要内容",
+ "description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation"
+ },
+ "theme.tags.tagsPageTitle": {
+ "message": "标签",
+ "description": "The title of the tag list page"
+ },
+ "Sponsors": {
+ "message": "赞助商",
+ "description": "Sponsors title"
+ },
+ "theme.NavBar.navAriaLabel": {
+ "message": "Main",
+ "description": "The ARIA label for the main navigation"
+ },
+ "theme.docs.sidebar.navAriaLabel": {
+ "message": "Docs sidebar",
+ "description": "The ARIA label for the sidebar navigation"
+ },
+ "Trevas releases": {
+ "message": "Trevas 发布",
+ "description": "Release title VTL"
+ },
+ "Explore the Trevas Maven releases": {
+ "message": "探索 Trevas Maven 版本",
+ "description": "Release description VTL"
+ },
+ "theme.docs.DocCard.categoryDescription.plurals": {
+ "message": "{count} 个项目",
+ "description": "The default description for a category card in the generated index about how many items this category includes"
+ },
+ "theme.admonition.warning": {
+ "message": "注意",
+ "description": "The default label used for the Warning admonition (:::warning)"
+ },
+ "theme.DocSidebarItem.expandCategoryAriaLabel": {
+ "message": "展开侧边栏分类 '{label}'",
+ "description": "The ARIA label to expand the sidebar category"
+ },
+ "theme.DocSidebarItem.collapseCategoryAriaLabel": {
+ "message": "折叠侧边栏分类 '{label}'",
+ "description": "The ARIA label to collapse the sidebar category"
+ },
+ "theme.blog.author.pageTitle": {
+ "message": "{authorName} - {nPosts}",
+ "description": "The title of the page for a blog author"
+ },
+ "theme.blog.authorsList.pageTitle": {
+ "message": "Authors",
+ "description": "The title of the authors page"
+ },
+ "theme.blog.authorsList.viewAll": {
+ "message": "View All Authors",
+ "description": "The label of the link targeting the blog authors page"
+ },
+ "theme.contentVisibility.unlistedBanner.title": {
+ "message": "未列出页",
+ "description": "The unlisted content banner title"
+ },
+ "theme.contentVisibility.unlistedBanner.message": {
+ "message": "此页面未列出。搜索引擎不会对其索引,只有拥有直接链接的用户才能访问。",
+ "description": "The unlisted content banner message"
+ },
+ "theme.contentVisibility.draftBanner.title": {
+ "message": "Draft page",
+ "description": "The draft content banner title"
+ },
+ "theme.contentVisibility.draftBanner.message": {
+ "message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
+ "description": "The draft content banner message"
+ }
}
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-blog/options.json b/docs/i18n/zh-CN/docusaurus-plugin-content-blog/options.json
index c60995ec8..6140abeb7 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-blog/options.json
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-blog/options.json
@@ -1,14 +1,14 @@
{
- "title": {
- "message": "博客",
- "description": "The title for the blog used in SEO"
- },
- "description": {
- "message": "博客",
- "description": "The description for the blog used in SEO"
- },
- "sidebar.title": {
- "message": "最近的帖子",
- "description": "The label for the left sidebar"
- }
+ "title": {
+ "message": "博客",
+ "description": "The title for the blog used in SEO"
+ },
+ "description": {
+ "message": "博客",
+ "description": "The description for the blog used in SEO"
+ },
+ "sidebar.title": {
+ "message": "最近的帖子",
+ "description": "The label for the left sidebar"
+ }
}
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current.json b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current.json
index 4cd2bb08f..db1cacddc 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current.json
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current.json
@@ -1,66 +1,66 @@
{
- "version.label": {
- "message": "下一个",
- "description": "The label for version current"
- },
- "sidebar.docs.category.Introduction": {
- "message": "介绍",
- "description": "The label for category Introduction in sidebar docs"
- },
- "sidebar.docs.category.Modules": {
- "message": "模块",
- "description": "The label for category Modules in sidebar docs"
- },
- "sidebar.docs.category.User guide": {
- "message": "用户指南",
- "description": "The label for category User guide in sidebar docs"
- },
- "sidebar.docs.category.VTL playground": {
- "message": "VTL游乐园",
- "description": "The label for category VTL playground in sidebar docs"
- },
- "sidebar.docs.category.Learn VTL": {
- "message": "学习VTL",
- "description": "The label for category Learn VTL in sidebar docs"
- },
- "sidebar.docs.category.Sas vs VTL": {
- "message": "Sas 对决 VTL",
- "description": "The label for category Sas vs VTL in sidebar docs"
- },
- "sidebar.docs.category.Client apps": {
- "message": "客户端应用",
- "description": "The label for category Client apps in sidebar docs"
- },
- "sidebar.docs.category.Coverage": {
- "message": "覆盖范围",
- "description": "The label for category Coverage in sidebar docs"
- },
- "sidebar.docs.category.Developer guide": {
- "message": "开发者指南",
- "description": "The label for category Developer guide in sidebar docs"
- },
- "sidebar.docs.category.Basic mode": {
- "message": "基本模式",
- "description": "The label for category Basic mode in sidebar docs"
- },
- "sidebar.docs.category.Data sources": {
- "message": "数据源",
- "description": "The label for category Data sources in sidebar docs"
- },
- "sidebar.docs.category.Spark mode": {
- "message": "Spark 模式",
- "description": "The label for category Spark mode in sidebar docs"
- },
- "sidebar.docs.category.Administrator guide": {
- "message": "管理员指南",
- "description": "The label for category Administrator guide in sidebar docs"
- },
- "sidebar.docs.link.Home": {
- "message": "主页",
- "description": "The label for link Home in sidebar docs, linking to /"
- },
- "sidebar.docs.category.Releases": {
- "message": "发布",
- "description": "The label for category Releases in sidebar docs"
- }
+ "version.label": {
+ "message": "下一个",
+ "description": "The label for version current"
+ },
+ "sidebar.docs.category.Introduction": {
+ "message": "介绍",
+ "description": "The label for category Introduction in sidebar docs"
+ },
+ "sidebar.docs.category.Modules": {
+ "message": "模块",
+ "description": "The label for category Modules in sidebar docs"
+ },
+ "sidebar.docs.category.User guide": {
+ "message": "用户指南",
+ "description": "The label for category User guide in sidebar docs"
+ },
+ "sidebar.docs.category.VTL playground": {
+ "message": "VTL游乐园",
+ "description": "The label for category VTL playground in sidebar docs"
+ },
+ "sidebar.docs.category.Learn VTL": {
+ "message": "学习VTL",
+ "description": "The label for category Learn VTL in sidebar docs"
+ },
+ "sidebar.docs.category.Sas vs VTL": {
+ "message": "Sas 对决 VTL",
+ "description": "The label for category Sas vs VTL in sidebar docs"
+ },
+ "sidebar.docs.category.Client apps": {
+ "message": "客户端应用",
+ "description": "The label for category Client apps in sidebar docs"
+ },
+ "sidebar.docs.category.Coverage": {
+ "message": "覆盖范围",
+ "description": "The label for category Coverage in sidebar docs"
+ },
+ "sidebar.docs.category.Developer guide": {
+ "message": "开发者指南",
+ "description": "The label for category Developer guide in sidebar docs"
+ },
+ "sidebar.docs.category.Basic mode": {
+ "message": "基本模式",
+ "description": "The label for category Basic mode in sidebar docs"
+ },
+ "sidebar.docs.category.Data sources": {
+ "message": "数据源",
+ "description": "The label for category Data sources in sidebar docs"
+ },
+ "sidebar.docs.category.Spark mode": {
+ "message": "Spark 模式",
+ "description": "The label for category Spark mode in sidebar docs"
+ },
+ "sidebar.docs.category.Administrator guide": {
+ "message": "管理员指南",
+ "description": "The label for category Administrator guide in sidebar docs"
+ },
+ "sidebar.docs.link.Home": {
+ "message": "主页",
+ "description": "The label for link Home in sidebar docs, linking to /"
+ },
+ "sidebar.docs.category.Releases": {
+ "message": "发布",
+ "description": "The label for category Releases in sidebar docs"
+ }
}
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
index 963ae5dc5..c36581443 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/jdbc.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jdbc
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
index ee6312424..cf9e08754 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/basic-mode/data-sources/json.mdx
@@ -12,7 +12,7 @@ custom_edit_url: null
fr.insee.trevas
vtl-jackson
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
index 53c74bcb9..05c2edff4 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/index-developer-guide.mdx
@@ -15,7 +15,7 @@ import Card from '@theme/Card';
fr.insee.trevas
vtl-engine
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
index 06869b152..92562911e 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/developer-guide/spark-mode/index-spark-mode.mdx
@@ -16,7 +16,7 @@ Les datasets `SparkDataset` permettent de représenter les tables statistiques d
fr.insee.trevas
vtl-spark
- 1.5.0
+ 1.7.0
```
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
index bdf9147c4..31a13514a 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/index-modules.mdx
@@ -71,5 +71,12 @@ import Card from '@theme/Card';
page={useBaseUrl('/modules/sdmx')}
/>
+
+
+
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/modules/prov.mdx
new file mode 100644
index 000000000..e69de29bb
diff --git a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
index 32e3ceaad..169301903 100644
--- a/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
+++ b/docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction/releases/1.x.x.mdx
@@ -7,6 +7,18 @@ custom_edit_url: null
pagination_prev: null
---
+## 版本 1.7.0 - 10/09/24
+
+(请参阅技术发布 [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.7.0))
+
+- 升级至VTL 2.1版本
+
+## 版本 1.6.0 - 10/07/24
+
+(请参阅技术发布 [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.6.0))
+
+- 添加出处模块
+
## 版本 1.5.0 - 06/28/24
(请参阅技术发布 [Github](https://github.com/InseeFr/Trevas/releases/tag/v1.5.0))
diff --git a/docs/i18n/zh-CN/docusaurus-theme-classic/footer.json b/docs/i18n/zh-CN/docusaurus-theme-classic/footer.json
index 932e65148..d5da9daa7 100644
--- a/docs/i18n/zh-CN/docusaurus-theme-classic/footer.json
+++ b/docs/i18n/zh-CN/docusaurus-theme-classic/footer.json
@@ -1,6 +1,6 @@
{
- "copyright": {
- "message": " ",
- "description": "The footer copyright"
- }
+ "copyright": {
+ "message": " ",
+ "description": "The footer copyright"
+ }
}
diff --git a/docs/i18n/zh-CN/docusaurus-theme-classic/navbar.json b/docs/i18n/zh-CN/docusaurus-theme-classic/navbar.json
index f0f78e176..c768a9e5b 100644
--- a/docs/i18n/zh-CN/docusaurus-theme-classic/navbar.json
+++ b/docs/i18n/zh-CN/docusaurus-theme-classic/navbar.json
@@ -1,14 +1,14 @@
{
- "item.label.Documentation": {
- "message": "文档",
- "description": "Navbar item with label Documentation"
- },
- "logo.alt": {
- "message": "Trevas logo",
- "description": "The alt text of navbar logo"
- },
- "item.label.Blog": {
- "message": "Blog",
- "description": "Navbar item with label Blog"
- }
+ "item.label.Documentation": {
+ "message": "文档",
+ "description": "Navbar item with label Documentation"
+ },
+ "logo.alt": {
+ "message": "Trevas logo",
+ "description": "The alt text of navbar logo"
+ },
+ "item.label.Blog": {
+ "message": "Blog",
+ "description": "Navbar item with label Blog"
+ }
}
diff --git a/docs/package.json b/docs/package.json
index 531e788c1..eccd35e6a 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -54,15 +54,16 @@
"react-player": "^2.16.0",
"react-scroll": "^1.8.8",
"react-slick": "^0.30.2",
- "sass": "^1.79.4",
+ "sass": "^1.77.8",
"typed.js": "^2.0.12"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.5.2",
+ "@docusaurus/theme-mermaid": "^3.5.2",
"@tsconfig/docusaurus": "^2.0.3",
"@types/react-slick": "^0.23.13",
- "@typescript-eslint/eslint-plugin": "^8.8.0",
- "@typescript-eslint/parser": "^8.8.0",
+ "@typescript-eslint/eslint-plugin": "^8.8.1",
+ "@typescript-eslint/parser": "^8.8.1",
"docusaurus-node-polyfills": "^1.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
@@ -71,7 +72,7 @@
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"prettier-linter-helpers": "^1.0.0",
- "typescript": "^5.6.2"
+ "typescript": "^5.6.3"
},
"browserslist": {
"production": [
diff --git a/docs/sidebars.js b/docs/sidebars.js
index fb61af251..a27181355 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -23,6 +23,7 @@ module.exports = {
'introduction/modules/jackson',
'introduction/modules/csv',
'introduction/modules/sdmx',
+ 'introduction/modules/prov',
],
},
{
@@ -135,6 +136,7 @@ module.exports = {
},
],
},
+ 'developer-guide/provenance',
],
},
{
diff --git a/docs/src/css/components/_hero.scss b/docs/src/css/components/_hero.scss
index 233c302c3..b4809bdca 100644
--- a/docs/src/css/components/_hero.scss
+++ b/docs/src/css/components/_hero.scss
@@ -32,7 +32,7 @@
align-items: center;
.col {
- margin-top: 20px;
+ margin-top: 10px;
margin-bottom: 20px;
@include tablet-mobile {
&:first-child {
@@ -87,10 +87,11 @@
img {
text-align: center;
- height: 200px;
+ height: 150px;
}
.boxes {
+ margin-top: 20px;
display: flex;
@include mobile {
flex-direction: column;
diff --git a/docs/src/theme/Hero/index.tsx b/docs/src/theme/Hero/index.tsx
index d15cb168a..af8baf058 100644
--- a/docs/src/theme/Hero/index.tsx
+++ b/docs/src/theme/Hero/index.tsx
@@ -100,7 +100,8 @@ function Hero() {
See more
-
+
+
diff --git a/docs/static/img/sdmx-logo.svg b/docs/static/img/sdmx-logo.svg
new file mode 100644
index 000000000..596a34ea2
--- /dev/null
+++ b/docs/static/img/sdmx-logo.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/yarn.lock b/docs/yarn.lock
index d3716cf1e..1b4781105 100644
--- a/docs/yarn.lock
+++ b/docs/yarn.lock
@@ -1200,6 +1200,11 @@
"@babel/helper-validator-identifier" "^7.25.7"
to-fast-properties "^2.0.0"
+"@braintree/sanitize-url@^6.0.1":
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz#923ca57e173c6b232bbbb07347b1be982f03e783"
+ integrity sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==
+
"@colors/colors@1.5.0":
version "1.5.0"
resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
@@ -1547,6 +1552,19 @@
tslib "^2.6.0"
utility-types "^3.10.0"
+"@docusaurus/theme-mermaid@^3.5.2":
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/@docusaurus/theme-mermaid/-/theme-mermaid-3.5.2.tgz#7d64289e6f2493b9fc0d5f2e8f66da4c9d884db8"
+ integrity sha512-7vWCnIe/KoyTN1Dc55FIyqO5hJ3YaV08Mr63Zej0L0mX1iGzt+qKSmeVUAJ9/aOalUhF0typV0RmNUSy5FAmCg==
+ dependencies:
+ "@docusaurus/core" "3.5.2"
+ "@docusaurus/module-type-aliases" "3.5.2"
+ "@docusaurus/theme-common" "3.5.2"
+ "@docusaurus/types" "3.5.2"
+ "@docusaurus/utils-validation" "3.5.2"
+ mermaid "^10.4.0"
+ tslib "^2.6.0"
+
"@docusaurus/theme-search-algolia@3.5.2":
version "3.5.2"
resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.5.2.tgz#466c83ca7e8017d95ae6889ccddc5ef8bf6b61c6"
@@ -1791,14 +1809,6 @@
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
-"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
- version "0.3.25"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
- integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
- dependencies:
- "@jridgewell/resolve-uri" "^3.1.0"
- "@jridgewell/sourcemap-codec" "^1.4.14"
-
"@leichtgewicht/ip-codec@^2.0.1":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1"
@@ -2131,6 +2141,23 @@
dependencies:
"@types/node" "*"
+"@types/d3-scale-chromatic@^3.0.0":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz#fc0db9c10e789c351f4c42d96f31f2e4df8f5644"
+ integrity sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==
+
+"@types/d3-scale@^4.0.3":
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.8.tgz#d409b5f9dcf63074464bf8ddfb8ee5a1f95945bb"
+ integrity sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==
+ dependencies:
+ "@types/d3-time" "*"
+
+"@types/d3-time@*":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.3.tgz#3c186bbd9d12b9d84253b6be6487ca56b54f88be"
+ integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==
+
"@types/debug@^4.0.0":
version "4.1.12"
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917"
@@ -2265,6 +2292,13 @@
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
+"@types/mdast@^3.0.0":
+ version "3.0.15"
+ resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5"
+ integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==
+ dependencies:
+ "@types/unist" "^2"
+
"@types/mdast@^4.0.0", "@types/mdast@^4.0.2":
version "4.0.4"
resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6"
@@ -2449,62 +2483,62 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@^8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.8.0.tgz#b2b02a5447cdc885950eb256b3b8a97b92031bd3"
- integrity sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==
+"@typescript-eslint/eslint-plugin@^8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.8.1.tgz#9364b756d4d78bcbdf6fd3e9345e6924c68ad371"
+ integrity sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==
dependencies:
"@eslint-community/regexpp" "^4.10.0"
- "@typescript-eslint/scope-manager" "8.8.0"
- "@typescript-eslint/type-utils" "8.8.0"
- "@typescript-eslint/utils" "8.8.0"
- "@typescript-eslint/visitor-keys" "8.8.0"
+ "@typescript-eslint/scope-manager" "8.8.1"
+ "@typescript-eslint/type-utils" "8.8.1"
+ "@typescript-eslint/utils" "8.8.1"
+ "@typescript-eslint/visitor-keys" "8.8.1"
graphemer "^1.4.0"
ignore "^5.3.1"
natural-compare "^1.4.0"
ts-api-utils "^1.3.0"
-"@typescript-eslint/parser@^8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.8.0.tgz#ee4397c70230c4eee030456924c0fba480072f5e"
- integrity sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==
+"@typescript-eslint/parser@^8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.8.1.tgz#5952ba2a83bd52024b872f3fdc8ed2d3636073b8"
+ integrity sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==
dependencies:
- "@typescript-eslint/scope-manager" "8.8.0"
- "@typescript-eslint/types" "8.8.0"
- "@typescript-eslint/typescript-estree" "8.8.0"
- "@typescript-eslint/visitor-keys" "8.8.0"
+ "@typescript-eslint/scope-manager" "8.8.1"
+ "@typescript-eslint/types" "8.8.1"
+ "@typescript-eslint/typescript-estree" "8.8.1"
+ "@typescript-eslint/visitor-keys" "8.8.1"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.8.0.tgz#30b23a6ae5708bd7882e40675ef2f1b2beac741f"
- integrity sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==
+"@typescript-eslint/scope-manager@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.8.1.tgz#b4bea1c0785aaebfe3c4ab059edaea1c4977e7ff"
+ integrity sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==
dependencies:
- "@typescript-eslint/types" "8.8.0"
- "@typescript-eslint/visitor-keys" "8.8.0"
+ "@typescript-eslint/types" "8.8.1"
+ "@typescript-eslint/visitor-keys" "8.8.1"
-"@typescript-eslint/type-utils@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.8.0.tgz#a0ca1c8a90d94b101176a169d7a0958187408d33"
- integrity sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==
+"@typescript-eslint/type-utils@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.8.1.tgz#31f59ec46e93a02b409fb4d406a368a59fad306e"
+ integrity sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==
dependencies:
- "@typescript-eslint/typescript-estree" "8.8.0"
- "@typescript-eslint/utils" "8.8.0"
+ "@typescript-eslint/typescript-estree" "8.8.1"
+ "@typescript-eslint/utils" "8.8.1"
debug "^4.3.4"
ts-api-utils "^1.3.0"
-"@typescript-eslint/types@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.8.0.tgz#08ea5df6c01984d456056434641491fbf7a1bf43"
- integrity sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==
+"@typescript-eslint/types@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.8.1.tgz#ebe85e0fa4a8e32a24a56adadf060103bef13bd1"
+ integrity sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==
-"@typescript-eslint/typescript-estree@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.8.0.tgz#072eaab97fdb63513fabfe1cf271812affe779e3"
- integrity sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==
+"@typescript-eslint/typescript-estree@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.8.1.tgz#34649f4e28d32ee49152193bc7dedc0e78e5d1ec"
+ integrity sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==
dependencies:
- "@typescript-eslint/types" "8.8.0"
- "@typescript-eslint/visitor-keys" "8.8.0"
+ "@typescript-eslint/types" "8.8.1"
+ "@typescript-eslint/visitor-keys" "8.8.1"
debug "^4.3.4"
fast-glob "^3.3.2"
is-glob "^4.0.3"
@@ -2512,22 +2546,22 @@
semver "^7.6.0"
ts-api-utils "^1.3.0"
-"@typescript-eslint/utils@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.8.0.tgz#bd8607e3a68c461b69169c7a5824637dc9e8b3f1"
- integrity sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==
+"@typescript-eslint/utils@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.8.1.tgz#9e29480fbfa264c26946253daa72181f9f053c9d"
+ integrity sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
- "@typescript-eslint/scope-manager" "8.8.0"
- "@typescript-eslint/types" "8.8.0"
- "@typescript-eslint/typescript-estree" "8.8.0"
+ "@typescript-eslint/scope-manager" "8.8.1"
+ "@typescript-eslint/types" "8.8.1"
+ "@typescript-eslint/typescript-estree" "8.8.1"
-"@typescript-eslint/visitor-keys@8.8.0":
- version "8.8.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.8.0.tgz#f93965abd38c82a1a1f5574290a50d02daf1cd2e"
- integrity sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==
+"@typescript-eslint/visitor-keys@8.8.1":
+ version "8.8.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.8.1.tgz#0fb1280f381149fc345dfde29f7542ff4e587fc5"
+ integrity sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==
dependencies:
- "@typescript-eslint/types" "8.8.0"
+ "@typescript-eslint/types" "8.8.1"
eslint-visitor-keys "^3.4.3"
"@ungap/structured-clone@^1.0.0":
@@ -3227,7 +3261,7 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0:
+browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.23.0, browserslist@^4.23.3, browserslist@^4.24.0:
version "4.24.0"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4"
integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==
@@ -3573,6 +3607,11 @@ comma-separated-tokens@^2.0.0:
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee"
integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
+commander@7, commander@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
+ integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
+
commander@^10.0.0:
version "10.0.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
@@ -3588,11 +3627,6 @@ commander@^5.1.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
-commander@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
- integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
-
commander@^8.3.0:
version "8.3.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
@@ -3743,6 +3777,13 @@ core-util-is@~1.0.0:
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
+cose-base@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-1.0.3.tgz#650334b41b869578a543358b80cda7e0abe0a60a"
+ integrity sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==
+ dependencies:
+ layout-base "^1.0.0"
+
cosmiconfig@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
@@ -3986,6 +4027,297 @@ csstype@^3.0.2:
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
+cytoscape-cose-bilkent@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz#762fa121df9930ffeb51a495d87917c570ac209b"
+ integrity sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==
+ dependencies:
+ cose-base "^1.0.0"
+
+cytoscape@^3.28.1:
+ version "3.30.2"
+ resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.30.2.tgz#94149707fb6547a55e3b44f03ffe232706212161"
+ integrity sha512-oICxQsjW8uSaRmn4UK/jkczKOqTrVqt5/1WL0POiJUT2EKNc9STM4hYFHv917yu55aTBMFNRzymlJhVAiWPCxw==
+
+"d3-array@1 - 2":
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81"
+ integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==
+ dependencies:
+ internmap "^1.0.0"
+
+"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5"
+ integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==
+ dependencies:
+ internmap "1 - 2"
+
+d3-axis@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322"
+ integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==
+
+d3-brush@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c"
+ integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-drag "2 - 3"
+ d3-interpolate "1 - 3"
+ d3-selection "3"
+ d3-transition "3"
+
+d3-chord@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966"
+ integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==
+ dependencies:
+ d3-path "1 - 3"
+
+"d3-color@1 - 3", d3-color@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2"
+ integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==
+
+d3-contour@4:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc"
+ integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==
+ dependencies:
+ d3-array "^3.2.0"
+
+d3-delaunay@6:
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b"
+ integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==
+ dependencies:
+ delaunator "5"
+
+"d3-dispatch@1 - 3", d3-dispatch@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e"
+ integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==
+
+"d3-drag@2 - 3", d3-drag@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba"
+ integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-selection "3"
+
+"d3-dsv@1 - 3", d3-dsv@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73"
+ integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==
+ dependencies:
+ commander "7"
+ iconv-lite "0.6"
+ rw "1"
+
+"d3-ease@1 - 3", d3-ease@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4"
+ integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==
+
+d3-fetch@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22"
+ integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==
+ dependencies:
+ d3-dsv "1 - 3"
+
+d3-force@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4"
+ integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-quadtree "1 - 3"
+ d3-timer "1 - 3"
+
+"d3-format@1 - 3", d3-format@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641"
+ integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==
+
+d3-geo@3:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.1.tgz#6027cf51246f9b2ebd64f99e01dc7c3364033a4d"
+ integrity sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==
+ dependencies:
+ d3-array "2.5.0 - 3"
+
+d3-hierarchy@3:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6"
+ integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==
+
+"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d"
+ integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==
+ dependencies:
+ d3-color "1 - 3"
+
+d3-path@1:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf"
+ integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==
+
+"d3-path@1 - 3", d3-path@3, d3-path@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526"
+ integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==
+
+d3-polygon@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398"
+ integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==
+
+"d3-quadtree@1 - 3", d3-quadtree@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f"
+ integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==
+
+d3-random@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4"
+ integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==
+
+d3-sankey@^0.12.3:
+ version "0.12.3"
+ resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d"
+ integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==
+ dependencies:
+ d3-array "1 - 2"
+ d3-shape "^1.2.0"
+
+d3-scale-chromatic@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#34c39da298b23c20e02f1a4b239bd0f22e7f1314"
+ integrity sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==
+ dependencies:
+ d3-color "1 - 3"
+ d3-interpolate "1 - 3"
+
+d3-scale@4:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396"
+ integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==
+ dependencies:
+ d3-array "2.10.0 - 3"
+ d3-format "1 - 3"
+ d3-interpolate "1.2.0 - 3"
+ d3-time "2.1.1 - 3"
+ d3-time-format "2 - 4"
+
+"d3-selection@2 - 3", d3-selection@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31"
+ integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==
+
+d3-shape@3:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5"
+ integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==
+ dependencies:
+ d3-path "^3.1.0"
+
+d3-shape@^1.2.0:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7"
+ integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==
+ dependencies:
+ d3-path "1"
+
+"d3-time-format@2 - 4", d3-time-format@4:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a"
+ integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==
+ dependencies:
+ d3-time "1 - 3"
+
+"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7"
+ integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==
+ dependencies:
+ d3-array "2 - 3"
+
+"d3-timer@1 - 3", d3-timer@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0"
+ integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==
+
+"d3-transition@2 - 3", d3-transition@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f"
+ integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==
+ dependencies:
+ d3-color "1 - 3"
+ d3-dispatch "1 - 3"
+ d3-ease "1 - 3"
+ d3-interpolate "1 - 3"
+ d3-timer "1 - 3"
+
+d3-zoom@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3"
+ integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-drag "2 - 3"
+ d3-interpolate "1 - 3"
+ d3-selection "2 - 3"
+ d3-transition "2 - 3"
+
+d3@^7.4.0, d3@^7.8.2:
+ version "7.9.0"
+ resolved "https://registry.yarnpkg.com/d3/-/d3-7.9.0.tgz#579e7acb3d749caf8860bd1741ae8d371070cd5d"
+ integrity sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==
+ dependencies:
+ d3-array "3"
+ d3-axis "3"
+ d3-brush "3"
+ d3-chord "3"
+ d3-color "3"
+ d3-contour "4"
+ d3-delaunay "6"
+ d3-dispatch "3"
+ d3-drag "3"
+ d3-dsv "3"
+ d3-ease "3"
+ d3-fetch "3"
+ d3-force "3"
+ d3-format "3"
+ d3-geo "3"
+ d3-hierarchy "3"
+ d3-interpolate "3"
+ d3-path "3"
+ d3-polygon "3"
+ d3-quadtree "3"
+ d3-random "3"
+ d3-scale "4"
+ d3-scale-chromatic "3"
+ d3-selection "3"
+ d3-shape "3"
+ d3-time "3"
+ d3-time-format "4"
+ d3-timer "3"
+ d3-transition "3"
+ d3-zoom "3"
+
+dagre-d3-es@7.0.10:
+ version "7.0.10"
+ resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc"
+ integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==
+ dependencies:
+ d3 "^7.8.2"
+ lodash-es "^4.17.21"
+
data-view-buffer@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2"
@@ -4013,6 +4345,11 @@ data-view-byte-offset@^1.0.0:
es-errors "^1.3.0"
is-data-view "^1.0.1"
+dayjs@^1.11.7:
+ version "1.11.13"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c"
+ integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==
+
debounce@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
@@ -4117,6 +4454,13 @@ del@^6.1.1:
rimraf "^3.0.2"
slash "^3.0.0"
+delaunator@5:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.1.tgz#39032b08053923e924d6094fe2cde1a99cc51278"
+ integrity sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==
+ dependencies:
+ robust-predicates "^3.0.2"
+
depd@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
@@ -4173,6 +4517,11 @@ devlop@^1.0.0, devlop@^1.1.0:
dependencies:
dequal "^2.0.0"
+diff@^5.0.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
+ integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
+
diffie-hellman@^5.0.0:
version "5.0.3"
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
@@ -4293,6 +4642,11 @@ domhandler@^5.0.2, domhandler@^5.0.3:
dependencies:
domelementtype "^2.3.0"
+"dompurify@^3.0.5 <3.1.7":
+ version "3.1.6"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.6.tgz#43c714a94c6a7b8801850f82e756685300a027e2"
+ integrity sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==
+
domutils@^2.5.2, domutils@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
@@ -4346,6 +4700,16 @@ electron-to-chromium@^1.5.28:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.32.tgz#4a05ee78e29e240aabaf73a67ce9fe73f52e1bc7"
integrity sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==
+electron-to-chromium@^1.5.4:
+ version "1.5.33"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.33.tgz#8f64698661240e70fdbc4b032e6085e391f05e09"
+ integrity sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==
+
+elkjs@^0.9.0:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.9.3.tgz#16711f8ceb09f1b12b99e971b138a8384a529161"
+ integrity sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==
+
elliptic@^6.5.3, elliptic@^6.5.5:
version "6.5.7"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.7.tgz#8ec4da2cb2939926a1b9a73619d768207e647c8b"
@@ -5844,6 +6208,13 @@ iconv-lite@0.4.24:
dependencies:
safer-buffer ">= 2.1.2 < 3"
+iconv-lite@0.6:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
icss-utils@^5.0.0, icss-utils@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
@@ -5956,6 +6327,16 @@ internal-slot@^1.0.7:
hasown "^2.0.0"
side-channel "^1.0.4"
+"internmap@1 - 2":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
+ integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
+
+internmap@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95"
+ integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==
+
interpret@^1.0.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
@@ -6428,6 +6809,13 @@ jsonfile@^6.0.1:
optionalDependencies:
graceful-fs "^4.1.6"
+katex@^0.16.9:
+ version "0.16.11"
+ resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.11.tgz#4bc84d5584f996abece5f01c6ad11304276a33f5"
+ integrity sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==
+ dependencies:
+ commander "^8.3.0"
+
keyv@^4.5.3, keyv@^4.5.4:
version "4.5.4"
resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
@@ -6435,6 +6823,11 @@ keyv@^4.5.3, keyv@^4.5.4:
dependencies:
json-buffer "3.0.1"
+khroma@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.1.0.tgz#45f2ce94ce231a437cf5b63c2e886e6eb42bbbb1"
+ integrity sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==
+
kind-of@^6.0.0, kind-of@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
@@ -6445,6 +6838,11 @@ kleur@^3.0.3:
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+kleur@^4.0.3:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
+ integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
+
klona@^2.0.4:
version "2.0.6"
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
@@ -6465,6 +6863,11 @@ launch-editor@^2.6.0:
picocolors "^1.0.0"
shell-quote "^1.8.1"
+layout-base@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-1.0.2.tgz#1291e296883c322a9dd4c5dd82063721b53e26e2"
+ integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==
+
leven@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -6534,6 +6937,11 @@ locate-path@^7.1.0:
dependencies:
p-locate "^6.0.0"
+lodash-es@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
+ integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
+
lodash.debounce@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
@@ -6653,6 +7061,24 @@ mdast-util-find-and-replace@^3.0.0, mdast-util-find-and-replace@^3.0.1:
unist-util-is "^6.0.0"
unist-util-visit-parents "^6.0.0"
+mdast-util-from-markdown@^1.3.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0"
+ integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ decode-named-character-reference "^1.0.0"
+ mdast-util-to-string "^3.1.0"
+ micromark "^3.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-decode-string "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ unist-util-stringify-position "^3.0.0"
+ uvu "^0.5.0"
+
mdast-util-from-markdown@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz#32a6e8f512b416e1f51eb817fc64bd867ebcd9cc"
@@ -6838,6 +7264,13 @@ mdast-util-to-markdown@^2.0.0:
unist-util-visit "^5.0.0"
zwitch "^2.0.0"
+mdast-util-to-string@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789"
+ integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+
mdast-util-to-string@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814"
@@ -6887,11 +7320,59 @@ merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+mermaid@^10.4.0:
+ version "10.9.2"
+ resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.9.2.tgz#108fe98060e6fba6bc826e5b454674aa2d32b817"
+ integrity sha512-UkZyMSuIYcI1Q0H+2pv/5CiY84sOwQ2XlKoDZMl9Y/MtrLEtxQtyA6LWGkMxnZxj0dJqI+7nw51bYjNnrbdFsQ==
+ dependencies:
+ "@braintree/sanitize-url" "^6.0.1"
+ "@types/d3-scale" "^4.0.3"
+ "@types/d3-scale-chromatic" "^3.0.0"
+ cytoscape "^3.28.1"
+ cytoscape-cose-bilkent "^4.1.0"
+ d3 "^7.4.0"
+ d3-sankey "^0.12.3"
+ dagre-d3-es "7.0.10"
+ dayjs "^1.11.7"
+ dompurify "^3.0.5 <3.1.7"
+ elkjs "^0.9.0"
+ katex "^0.16.9"
+ khroma "^2.0.0"
+ lodash-es "^4.17.21"
+ mdast-util-from-markdown "^1.3.0"
+ non-layered-tidy-tree-layout "^2.0.2"
+ stylis "^4.1.3"
+ ts-dedent "^2.2.0"
+ uuid "^9.0.0"
+ web-worker "^1.2.0"
+
methods@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
+micromark-core-commonmark@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8"
+ integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ micromark-factory-destination "^1.0.0"
+ micromark-factory-label "^1.0.0"
+ micromark-factory-space "^1.0.0"
+ micromark-factory-title "^1.0.0"
+ micromark-factory-whitespace "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-chunked "^1.0.0"
+ micromark-util-classify-character "^1.0.0"
+ micromark-util-html-tag-name "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-resolve-all "^1.0.0"
+ micromark-util-subtokenize "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.1"
+ uvu "^0.5.0"
+
micromark-core-commonmark@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz#9a45510557d068605c6e9a80f282b2bb8581e43d"
@@ -7083,6 +7564,15 @@ micromark-extension-mdxjs@^3.0.0:
micromark-util-combine-extensions "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-factory-destination@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f"
+ integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
micromark-factory-destination@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz#857c94debd2c873cba34e0445ab26b74f6a6ec07"
@@ -7092,6 +7582,16 @@ micromark-factory-destination@^2.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-factory-label@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68"
+ integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
micromark-factory-label@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz#17c5c2e66ce39ad6f4fc4cbf40d972f9096f726a"
@@ -7133,6 +7633,16 @@ micromark-factory-space@^2.0.0:
micromark-util-character "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-factory-title@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1"
+ integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
micromark-factory-title@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz#726140fc77892af524705d689e1cf06c8a83ea95"
@@ -7143,6 +7653,16 @@ micromark-factory-title@^2.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-factory-whitespace@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705"
+ integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
micromark-factory-whitespace@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz#9e92eb0f5468083381f923d9653632b3cfb5f763"
@@ -7169,6 +7689,13 @@ micromark-util-character@^2.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-util-chunked@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b"
+ integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
micromark-util-chunked@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz#e51f4db85fb203a79dbfef23fd41b2f03dc2ef89"
@@ -7176,6 +7703,15 @@ micromark-util-chunked@^2.0.0:
dependencies:
micromark-util-symbol "^2.0.0"
+micromark-util-classify-character@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d"
+ integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
micromark-util-classify-character@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz#8c7537c20d0750b12df31f86e976d1d951165f34"
@@ -7185,6 +7721,14 @@ micromark-util-classify-character@^2.0.0:
micromark-util-symbol "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-util-combine-extensions@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84"
+ integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==
+ dependencies:
+ micromark-util-chunked "^1.0.0"
+ micromark-util-types "^1.0.0"
+
micromark-util-combine-extensions@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz#75d6ab65c58b7403616db8d6b31315013bfb7ee5"
@@ -7193,6 +7737,13 @@ micromark-util-combine-extensions@^2.0.0:
micromark-util-chunked "^2.0.0"
micromark-util-types "^2.0.0"
+micromark-util-decode-numeric-character-reference@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6"
+ integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
micromark-util-decode-numeric-character-reference@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz#2698bbb38f2a9ba6310e359f99fcb2b35a0d2bd5"
@@ -7200,6 +7751,16 @@ micromark-util-decode-numeric-character-reference@^2.0.0:
dependencies:
micromark-util-symbol "^2.0.0"
+micromark-util-decode-string@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c"
+ integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+
micromark-util-decode-string@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz#7dfa3a63c45aecaa17824e656bcdb01f9737154a"
@@ -7210,6 +7771,11 @@ micromark-util-decode-string@^2.0.0:
micromark-util-decode-numeric-character-reference "^2.0.0"
micromark-util-symbol "^2.0.0"
+micromark-util-encode@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5"
+ integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==
+
micromark-util-encode@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz#0921ac7953dc3f1fd281e3d1932decfdb9382ab1"
@@ -7229,11 +7795,23 @@ micromark-util-events-to-acorn@^2.0.0:
micromark-util-types "^2.0.0"
vfile-message "^4.0.0"
+micromark-util-html-tag-name@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588"
+ integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==
+
micromark-util-html-tag-name@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz#ae34b01cbe063363847670284c6255bb12138ec4"
integrity sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==
+micromark-util-normalize-identifier@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7"
+ integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
micromark-util-normalize-identifier@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz#91f9a4e65fe66cc80c53b35b0254ad67aa431d8b"
@@ -7241,6 +7819,13 @@ micromark-util-normalize-identifier@^2.0.0:
dependencies:
micromark-util-symbol "^2.0.0"
+micromark-util-resolve-all@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188"
+ integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==
+ dependencies:
+ micromark-util-types "^1.0.0"
+
micromark-util-resolve-all@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz#189656e7e1a53d0c86a38a652b284a252389f364"
@@ -7248,6 +7833,15 @@ micromark-util-resolve-all@^2.0.0:
dependencies:
micromark-util-types "^2.0.0"
+micromark-util-sanitize-uri@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d"
+ integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-encode "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+
micromark-util-sanitize-uri@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz#ec8fbf0258e9e6d8f13d9e4770f9be64342673de"
@@ -7257,6 +7851,16 @@ micromark-util-sanitize-uri@^2.0.0:
micromark-util-encode "^2.0.0"
micromark-util-symbol "^2.0.0"
+micromark-util-subtokenize@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1"
+ integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==
+ dependencies:
+ micromark-util-chunked "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
micromark-util-subtokenize@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz#76129c49ac65da6e479c09d0ec4b5f29ec6eace5"
@@ -7277,7 +7881,7 @@ micromark-util-symbol@^2.0.0:
resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz#12225c8f95edf8b17254e47080ce0862d5db8044"
integrity sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==
-micromark-util-types@^1.0.0:
+micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283"
integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==
@@ -7287,6 +7891,29 @@ micromark-util-types@^2.0.0:
resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz#63b4b7ffeb35d3ecf50d1ca20e68fc7caa36d95e"
integrity sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==
+micromark@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9"
+ integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==
+ dependencies:
+ "@types/debug" "^4.0.0"
+ debug "^4.0.0"
+ decode-named-character-reference "^1.0.0"
+ micromark-core-commonmark "^1.0.1"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-chunked "^1.0.0"
+ micromark-util-combine-extensions "^1.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-encode "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-resolve-all "^1.0.0"
+ micromark-util-sanitize-uri "^1.0.0"
+ micromark-util-subtokenize "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.1"
+ uvu "^0.5.0"
+
micromark@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.0.tgz#84746a249ebd904d9658cfabc1e8e5f32cbc6249"
@@ -7422,6 +8049,11 @@ monaco-editor@^0.52.0:
resolved "https://registry.yarnpkg.com/monaco-editor/-/monaco-editor-0.52.0.tgz#d47c02b191eae208d68878d679b3ee7456031be7"
integrity sha512-OeWhNpABLCeTqubfqLMXGsqf6OmPU6pHM85kF3dhy6kq5hnhuVS1p3VrEW/XhWHc71P2tHyS5JFySD8mgs1crw==
+mri@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
+ integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
+
mrmime@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.0.tgz#151082a6e06e59a9a39b46b3e14d5cfe92b3abb4"
@@ -7523,6 +8155,11 @@ node-releases@^2.0.18:
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
+non-layered-tidy-tree-layout@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz#57d35d13c356643fc296a55fb11ac15e74da7804"
+ integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==
+
nopt@1.0.10:
version "1.0.10"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
@@ -7945,7 +8582,7 @@ periscopic@^3.0.0:
estree-walker "^3.0.0"
is-reference "^3.0.0"
-picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0:
+picocolors@^1.0.0, picocolors@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
@@ -8950,6 +9587,11 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
hash-base "^3.0.0"
inherits "^2.0.1"
+robust-predicates@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771"
+ integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
+
rtl-detect@^1.0.4:
version "1.1.2"
resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.1.2.tgz#ca7f0330af5c6bb626c15675c642ba85ad6273c6"
@@ -8972,6 +9614,18 @@ run-parallel@^1.1.9:
dependencies:
queue-microtask "^1.2.2"
+rw@1:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+ integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
+
+sade@^1.7.3:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
+ integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
+ dependencies:
+ mri "^1.1.0"
+
safe-array-concat@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb"
@@ -9001,7 +9655,7 @@ safe-regex-test@^1.0.3:
es-errors "^1.3.0"
is-regex "^1.1.4"
-"safer-buffer@>= 2.1.2 < 3":
+"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@@ -9017,7 +9671,7 @@ sass-loader@^10.1.1:
schema-utils "^3.0.0"
semver "^7.3.2"
-sass@^1.79.4:
+sass@^1.77.8:
version "1.79.4"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.4.tgz#f9c45af35fbeb53d2c386850ec842098d9935267"
integrity sha512-K0QDSNPXgyqO4GZq2HO5Q70TLxTH6cIT59RdoCHMivrC8rqzaTw5ab9prjz9KUN1El4FLXrBXJhik61JR4HcGg==
@@ -9575,6 +10229,11 @@ stylehacks@^6.1.1:
browserslist "^4.23.0"
postcss-selector-parser "^6.0.16"
+stylis@^4.1.3:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.4.tgz#ca5c6c4a35c4784e4e93a2a24dc4e9fa075250a4"
+ integrity sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==
+
supports-color@^5.3.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
@@ -9648,7 +10307,7 @@ terser-webpack-plugin@^5.3.10, terser-webpack-plugin@^5.3.9:
serialize-javascript "^6.0.1"
terser "^5.26.0"
-terser@^5.10.0, terser@^5.15.1, terser@^5.26.0:
+terser@^5.10.0, terser@^5.15.1:
version "5.34.1"
resolved "https://registry.yarnpkg.com/terser/-/terser-5.34.1.tgz#af40386bdbe54af0d063e0670afd55c3105abeb6"
integrity sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==
@@ -9745,6 +10404,11 @@ ts-api-utils@^1.3.0:
resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1"
integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==
+ts-dedent@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5"
+ integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==
+
tsconfig-paths@^3.15.0:
version "3.15.0"
resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
@@ -9846,10 +10510,10 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"
-typescript@^5.6.2:
- version "5.6.2"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
- integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==
+typescript@^5.6.3:
+ version "5.6.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.3.tgz#5f3449e31c9d94febb17de03cc081dd56d81db5b"
+ integrity sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==
unbox-primitive@^1.0.2:
version "1.0.2"
@@ -9966,6 +10630,13 @@ unist-util-stringify-position@^2.0.0:
dependencies:
"@types/unist" "^2.0.2"
+unist-util-stringify-position@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d"
+ integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+
unist-util-stringify-position@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2"
@@ -10105,6 +10776,21 @@ uuid@^8.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+uuid@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
+ integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
+
+uvu@^0.5.0:
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df"
+ integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==
+ dependencies:
+ dequal "^2.0.0"
+ diff "^5.0.0"
+ kleur "^4.0.3"
+ sade "^1.7.3"
+
value-equal@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c"
@@ -10192,6 +10878,11 @@ web-namespaces@^2.0.0:
resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692"
integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==
+web-worker@^1.2.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.3.0.tgz#e5f2df5c7fe356755a5fb8f8410d4312627e6776"
+ integrity sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==
+
webpack-bundle-analyzer@^4.9.0:
version "4.10.2"
resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz#633af2862c213730be3dbdf40456db171b60d5bd"
diff --git a/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.interp b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.interp
new file mode 100644
index 000000000..471e14af2
--- /dev/null
+++ b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.interp
@@ -0,0 +1,772 @@
+token literal names:
+null
+'('
+')'
+'['
+']'
+'{'
+'}'
+'='
+'<'
+'>'
+'>='
+'<>'
+'<='
+'+'
+'-'
+'*'
+'/'
+','
+'->'
+':'
+':='
+'#'
+'eval'
+'if'
+'case'
+'then'
+'else'
+'using'
+'with'
+'current_date'
+'datediff'
+'dateadd'
+'getyear'
+'getmonth'
+'dayofmonth'
+'dayofyear'
+'daytoyear'
+'daytomonth'
+'yeartoday'
+'monthtoday'
+'on'
+'drop'
+'keep'
+'calc'
+'attrcalc'
+'rename'
+'as'
+'and'
+'or'
+'xor'
+'not'
+'between'
+'in'
+'not_in'
+'null'
+'isnull'
+'ex'
+'union'
+'diff'
+'symdiff'
+'intersect'
+'random'
+'keys'
+'intyear'
+'intmonth'
+'intday'
+'check'
+'exists_in'
+'to'
+'return'
+'imbalance'
+'errorcode'
+'all'
+'aggr'
+'errorlevel'
+'order'
+'by'
+'rank'
+'asc'
+'desc'
+'min'
+'max'
+'first'
+'last'
+'indexof'
+'abs'
+'key'
+'ln'
+'log'
+'trunc'
+'round'
+'power'
+'mod'
+'length'
+'||'
+'trim'
+'upper'
+'lower'
+'substr'
+'sum'
+'avg'
+'median'
+'count'
+'identifier'
+'measure'
+'attribute'
+'filter'
+'merge'
+'exp'
+'componentRole'
+'viral'
+'match_characters'
+'type'
+'nvl'
+'hierarchy'
+'_'
+'invalid'
+'levenshtein'
+'valuedomain'
+'variable'
+'data'
+'structure'
+'dataset'
+'operator'
+'define'
+'<-'
+'datapoint'
+'hierarchical'
+'ruleset'
+'rule'
+'end'
+'alterDataset'
+'ltrim'
+'rtrim'
+'instr'
+'replace'
+'ceil'
+'floor'
+'sqrt'
+'any'
+'setdiff'
+'stddev_pop'
+'stddev_samp'
+'var_pop'
+'var_samp'
+'group'
+'except'
+'having'
+'first_value'
+'last_value'
+'lag'
+'lead'
+'ratio_to_report'
+'over'
+'preceding'
+'following'
+'unbounded'
+'partition'
+'rows'
+'range'
+'current'
+'valid'
+'fill_time_series'
+'flow_to_stock'
+'stock_to_flow'
+'timeshift'
+'measures'
+'no_measures'
+'condition'
+'boolean'
+'date'
+'time_period'
+'number'
+'string'
+'time'
+'integer'
+'float'
+'list'
+'record'
+'restrict'
+'yyyy'
+'mm'
+'dd'
+'maxLength'
+'regexp'
+'is'
+'when'
+'from'
+'aggregates'
+'points'
+'point'
+'total'
+'partial'
+'always'
+'inner_join'
+'left_join'
+'cross_join'
+'full_join'
+'maps_from'
+'maps_to'
+'map_to'
+'map_from'
+'returns'
+'pivot'
+'customPivot'
+'unpivot'
+'sub'
+'apply'
+'conditioned'
+'period_indicator'
+'single'
+'duration'
+'time_agg'
+'unit'
+'Value'
+'valuedomains'
+'variables'
+'input'
+'output'
+'cast'
+'rule_priority'
+'dataset_priority'
+'default'
+'check_datapoint'
+'check_hierarchy'
+'computed'
+'non_null'
+'non_zero'
+'partial_null'
+'partial_zero'
+'always_null'
+'always_zero'
+'components'
+'all_measures'
+'scalar'
+'component'
+'datapoint_on_valuedomains'
+'datapoint_on_variables'
+'hierarchical_on_valuedomains'
+'hierarchical_on_variables'
+'set'
+'language'
+null
+null
+null
+null
+null
+null
+null
+';'
+null
+null
+
+token symbolic names:
+null
+LPAREN
+RPAREN
+QLPAREN
+QRPAREN
+GLPAREN
+GRPAREN
+EQ
+LT
+MT
+ME
+NEQ
+LE
+PLUS
+MINUS
+MUL
+DIV
+COMMA
+POINTER
+COLON
+ASSIGN
+MEMBERSHIP
+EVAL
+IF
+CASE
+THEN
+ELSE
+USING
+WITH
+CURRENT_DATE
+DATEDIFF
+DATEADD
+GETYEAR
+GETMONTH
+DAYOFMONTH
+DAYOFYEAR
+DAYTOYEAR
+DAYTOMONTH
+YEARTODAY
+MONTHTODAY
+ON
+DROP
+KEEP
+CALC
+ATTRCALC
+RENAME
+AS
+AND
+OR
+XOR
+NOT
+BETWEEN
+IN
+NOT_IN
+NULL_CONSTANT
+ISNULL
+EX
+UNION
+DIFF
+SYMDIFF
+INTERSECT
+RANDOM
+KEYS
+INTYEAR
+INTMONTH
+INTDAY
+CHECK
+EXISTS_IN
+TO
+RETURN
+IMBALANCE
+ERRORCODE
+ALL
+AGGREGATE
+ERRORLEVEL
+ORDER
+BY
+RANK
+ASC
+DESC
+MIN
+MAX
+FIRST
+LAST
+INDEXOF
+ABS
+KEY
+LN
+LOG
+TRUNC
+ROUND
+POWER
+MOD
+LEN
+CONCAT
+TRIM
+UCASE
+LCASE
+SUBSTR
+SUM
+AVG
+MEDIAN
+COUNT
+DIMENSION
+MEASURE
+ATTRIBUTE
+FILTER
+MERGE
+EXP
+ROLE
+VIRAL
+CHARSET_MATCH
+TYPE
+NVL
+HIERARCHY
+OPTIONAL
+INVALID
+LEVENSHTEIN
+VALUE_DOMAIN
+VARIABLE
+DATA
+STRUCTURE
+DATASET
+OPERATOR
+DEFINE
+PUT_SYMBOL
+DATAPOINT
+HIERARCHICAL
+RULESET
+RULE
+END
+ALTER_DATASET
+LTRIM
+RTRIM
+INSTR
+REPLACE
+CEIL
+FLOOR
+SQRT
+ANY
+SETDIFF
+STDDEV_POP
+STDDEV_SAMP
+VAR_POP
+VAR_SAMP
+GROUP
+EXCEPT
+HAVING
+FIRST_VALUE
+LAST_VALUE
+LAG
+LEAD
+RATIO_TO_REPORT
+OVER
+PRECEDING
+FOLLOWING
+UNBOUNDED
+PARTITION
+ROWS
+RANGE
+CURRENT
+VALID
+FILL_TIME_SERIES
+FLOW_TO_STOCK
+STOCK_TO_FLOW
+TIMESHIFT
+MEASURES
+NO_MEASURES
+CONDITION
+BOOLEAN
+DATE
+TIME_PERIOD
+NUMBER
+STRING
+TIME
+INTEGER
+FLOAT
+LIST
+RECORD
+RESTRICT
+YYYY
+MM
+DD
+MAX_LENGTH
+REGEXP
+IS
+WHEN
+FROM
+AGGREGATES
+POINTS
+POINT
+TOTAL
+PARTIAL
+ALWAYS
+INNER_JOIN
+LEFT_JOIN
+CROSS_JOIN
+FULL_JOIN
+MAPS_FROM
+MAPS_TO
+MAP_TO
+MAP_FROM
+RETURNS
+PIVOT
+CUSTOMPIVOT
+UNPIVOT
+SUBSPACE
+APPLY
+CONDITIONED
+PERIOD_INDICATOR
+SINGLE
+DURATION
+TIME_AGG
+UNIT
+VALUE
+VALUEDOMAINS
+VARIABLES
+INPUT
+OUTPUT
+CAST
+RULE_PRIORITY
+DATASET_PRIORITY
+DEFAULT
+CHECK_DATAPOINT
+CHECK_HIERARCHY
+COMPUTED
+NON_NULL
+NON_ZERO
+PARTIAL_NULL
+PARTIAL_ZERO
+ALWAYS_NULL
+ALWAYS_ZERO
+COMPONENTS
+ALL_MEASURES
+SCALAR
+COMPONENT
+DATAPOINT_ON_VD
+DATAPOINT_ON_VAR
+HIERARCHICAL_ON_VD
+HIERARCHICAL_ON_VAR
+SET
+LANGUAGE
+INTEGER_CONSTANT
+NUMBER_CONSTANT
+BOOLEAN_CONSTANT
+STRING_CONSTANT
+IDENTIFIER
+TIME_UNIT
+WS
+EOL
+ML_COMMENT
+SL_COMMENT
+
+rule names:
+LPAREN
+RPAREN
+QLPAREN
+QRPAREN
+GLPAREN
+GRPAREN
+EQ
+LT
+MT
+ME
+NEQ
+LE
+PLUS
+MINUS
+MUL
+DIV
+COMMA
+POINTER
+COLON
+ASSIGN
+MEMBERSHIP
+EVAL
+IF
+CASE
+THEN
+ELSE
+USING
+WITH
+CURRENT_DATE
+DATEDIFF
+DATEADD
+GETYEAR
+GETMONTH
+DAYOFMONTH
+DAYOFYEAR
+DAYTOYEAR
+DAYTOMONTH
+YEARTODAY
+MONTHTODAY
+ON
+DROP
+KEEP
+CALC
+ATTRCALC
+RENAME
+AS
+AND
+OR
+XOR
+NOT
+BETWEEN
+IN
+NOT_IN
+NULL_CONSTANT
+ISNULL
+EX
+UNION
+DIFF
+SYMDIFF
+INTERSECT
+RANDOM
+KEYS
+INTYEAR
+INTMONTH
+INTDAY
+CHECK
+EXISTS_IN
+TO
+RETURN
+IMBALANCE
+ERRORCODE
+ALL
+AGGREGATE
+ERRORLEVEL
+ORDER
+BY
+RANK
+ASC
+DESC
+MIN
+MAX
+FIRST
+LAST
+INDEXOF
+ABS
+KEY
+LN
+LOG
+TRUNC
+ROUND
+POWER
+MOD
+LEN
+CONCAT
+TRIM
+UCASE
+LCASE
+SUBSTR
+SUM
+AVG
+MEDIAN
+COUNT
+DIMENSION
+MEASURE
+ATTRIBUTE
+FILTER
+MERGE
+EXP
+ROLE
+VIRAL
+CHARSET_MATCH
+TYPE
+NVL
+HIERARCHY
+OPTIONAL
+INVALID
+LEVENSHTEIN
+VALUE_DOMAIN
+VARIABLE
+DATA
+STRUCTURE
+DATASET
+OPERATOR
+DEFINE
+PUT_SYMBOL
+DATAPOINT
+HIERARCHICAL
+RULESET
+RULE
+END
+ALTER_DATASET
+LTRIM
+RTRIM
+INSTR
+REPLACE
+CEIL
+FLOOR
+SQRT
+ANY
+SETDIFF
+STDDEV_POP
+STDDEV_SAMP
+VAR_POP
+VAR_SAMP
+GROUP
+EXCEPT
+HAVING
+FIRST_VALUE
+LAST_VALUE
+LAG
+LEAD
+RATIO_TO_REPORT
+OVER
+PRECEDING
+FOLLOWING
+UNBOUNDED
+PARTITION
+ROWS
+RANGE
+CURRENT
+VALID
+FILL_TIME_SERIES
+FLOW_TO_STOCK
+STOCK_TO_FLOW
+TIMESHIFT
+MEASURES
+NO_MEASURES
+CONDITION
+BOOLEAN
+DATE
+TIME_PERIOD
+NUMBER
+STRING
+TIME
+INTEGER
+FLOAT
+LIST
+RECORD
+RESTRICT
+YYYY
+MM
+DD
+MAX_LENGTH
+REGEXP
+IS
+WHEN
+FROM
+AGGREGATES
+POINTS
+POINT
+TOTAL
+PARTIAL
+ALWAYS
+INNER_JOIN
+LEFT_JOIN
+CROSS_JOIN
+FULL_JOIN
+MAPS_FROM
+MAPS_TO
+MAP_TO
+MAP_FROM
+RETURNS
+PIVOT
+CUSTOMPIVOT
+UNPIVOT
+SUBSPACE
+APPLY
+CONDITIONED
+PERIOD_INDICATOR
+SINGLE
+DURATION
+TIME_AGG
+UNIT
+VALUE
+VALUEDOMAINS
+VARIABLES
+INPUT
+OUTPUT
+CAST
+RULE_PRIORITY
+DATASET_PRIORITY
+DEFAULT
+CHECK_DATAPOINT
+CHECK_HIERARCHY
+COMPUTED
+NON_NULL
+NON_ZERO
+PARTIAL_NULL
+PARTIAL_ZERO
+ALWAYS_NULL
+ALWAYS_ZERO
+COMPONENTS
+ALL_MEASURES
+SCALAR
+COMPONENT
+DATAPOINT_ON_VD
+DATAPOINT_ON_VAR
+HIERARCHICAL_ON_VD
+HIERARCHICAL_ON_VAR
+SET
+LANGUAGE
+LETTER
+DIGITS0_9
+INTEGER_CONSTANT
+NUMBER_CONSTANT
+BOOLEAN_CONSTANT
+STRING_CONSTANT
+IDENTIFIER
+TIME_UNIT
+WS
+EOL
+ML_COMMENT
+SL_COMMENT
+
+channel names:
+DEFAULT_TOKEN_CHANNEL
+HIDDEN
+
+mode names:
+DEFAULT_MODE
+
+atn:
+[4, 0, 251, 2412, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 243, 3, 243, 2317, 8, 243, 1, 243, 4, 243, 2320, 8, 243, 11, 243, 12, 243, 2321, 1, 244, 1, 244, 1, 244, 5, 244, 2327, 8, 244, 10, 244, 12, 244, 2330, 9, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 2341, 8, 245, 1, 246, 1, 246, 5, 246, 2345, 8, 246, 10, 246, 12, 246, 2348, 9, 246, 1, 246, 1, 246, 1, 247, 1, 247, 5, 247, 2354, 8, 247, 10, 247, 12, 247, 2357, 9, 247, 1, 247, 1, 247, 4, 247, 2361, 8, 247, 11, 247, 12, 247, 2362, 1, 247, 1, 247, 5, 247, 2367, 8, 247, 10, 247, 12, 247, 2370, 9, 247, 1, 247, 3, 247, 2373, 8, 247, 1, 248, 1, 248, 1, 249, 4, 249, 2378, 8, 249, 11, 249, 12, 249, 2379, 1, 249, 1, 249, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 2390, 8, 251, 10, 251, 12, 251, 2393, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 2404, 8, 252, 10, 252, 12, 252, 2407, 9, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 2368, 2391, 2405, 0, 253, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 0, 485, 0, 487, 242, 489, 243, 491, 244, 493, 245, 495, 246, 497, 247, 499, 248, 501, 249, 503, 250, 505, 251, 1, 0, 5, 2, 0, 65, 90, 97, 122, 1, 0, 34, 34, 5, 0, 46, 46, 48, 57, 65, 90, 95, 95, 97, 122, 6, 0, 65, 65, 68, 68, 77, 77, 81, 81, 83, 84, 87, 87, 3, 0, 9, 10, 12, 13, 32, 32, 2422, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 1, 507, 1, 0, 0, 0, 3, 509, 1, 0, 0, 0, 5, 511, 1, 0, 0, 0, 7, 513, 1, 0, 0, 0, 9, 515, 1, 0, 0, 0, 11, 517, 1, 0, 0, 0, 13, 519, 1, 0, 0, 0, 15, 521, 1, 0, 0, 0, 17, 523, 1, 0, 0, 0, 19, 525, 1, 0, 0, 0, 21, 528, 1, 0, 0, 0, 23, 531, 1, 0, 0, 0, 25, 534, 1, 0, 0, 0, 27, 536, 1, 0, 0, 0, 29, 538, 1, 0, 0, 0, 31, 540, 1, 0, 0, 0, 33, 542, 1, 0, 0, 0, 35, 544, 1, 0, 0, 0, 37, 547, 1, 0, 0, 0, 39, 549, 1, 0, 0, 0, 41, 552, 1, 0, 0, 0, 43, 554, 1, 0, 0, 0, 45, 559, 1, 0, 0, 0, 47, 562, 1, 0, 0, 0, 49, 567, 1, 0, 0, 0, 51, 572, 1, 0, 0, 0, 53, 577, 1, 0, 0, 0, 55, 583, 1, 0, 0, 0, 57, 588, 1, 0, 0, 0, 59, 601, 1, 0, 0, 0, 61, 610, 1, 0, 0, 0, 63, 618, 1, 0, 0, 0, 65, 626, 1, 0, 0, 0, 67, 635, 1, 0, 0, 0, 69, 646, 1, 0, 0, 0, 71, 656, 1, 0, 0, 0, 73, 666, 1, 0, 0, 0, 75, 677, 1, 0, 0, 0, 77, 687, 1, 0, 0, 0, 79, 698, 1, 0, 0, 0, 81, 701, 1, 0, 0, 0, 83, 706, 1, 0, 0, 0, 85, 711, 1, 0, 0, 0, 87, 716, 1, 0, 0, 0, 89, 725, 1, 0, 0, 0, 91, 732, 1, 0, 0, 0, 93, 735, 1, 0, 0, 0, 95, 739, 1, 0, 0, 0, 97, 742, 1, 0, 0, 0, 99, 746, 1, 0, 0, 0, 101, 750, 1, 0, 0, 0, 103, 758, 1, 0, 0, 0, 105, 761, 1, 0, 0, 0, 107, 768, 1, 0, 0, 0, 109, 773, 1, 0, 0, 0, 111, 780, 1, 0, 0, 0, 113, 783, 1, 0, 0, 0, 115, 789, 1, 0, 0, 0, 117, 794, 1, 0, 0, 0, 119, 802, 1, 0, 0, 0, 121, 812, 1, 0, 0, 0, 123, 819, 1, 0, 0, 0, 125, 824, 1, 0, 0, 0, 127, 832, 1, 0, 0, 0, 129, 841, 1, 0, 0, 0, 131, 848, 1, 0, 0, 0, 133, 854, 1, 0, 0, 0, 135, 864, 1, 0, 0, 0, 137, 867, 1, 0, 0, 0, 139, 874, 1, 0, 0, 0, 141, 884, 1, 0, 0, 0, 143, 894, 1, 0, 0, 0, 145, 898, 1, 0, 0, 0, 147, 903, 1, 0, 0, 0, 149, 914, 1, 0, 0, 0, 151, 920, 1, 0, 0, 0, 153, 923, 1, 0, 0, 0, 155, 928, 1, 0, 0, 0, 157, 932, 1, 0, 0, 0, 159, 937, 1, 0, 0, 0, 161, 941, 1, 0, 0, 0, 163, 945, 1, 0, 0, 0, 165, 951, 1, 0, 0, 0, 167, 956, 1, 0, 0, 0, 169, 964, 1, 0, 0, 0, 171, 968, 1, 0, 0, 0, 173, 972, 1, 0, 0, 0, 175, 975, 1, 0, 0, 0, 177, 979, 1, 0, 0, 0, 179, 985, 1, 0, 0, 0, 181, 991, 1, 0, 0, 0, 183, 997, 1, 0, 0, 0, 185, 1001, 1, 0, 0, 0, 187, 1008, 1, 0, 0, 0, 189, 1011, 1, 0, 0, 0, 191, 1016, 1, 0, 0, 0, 193, 1022, 1, 0, 0, 0, 195, 1028, 1, 0, 0, 0, 197, 1035, 1, 0, 0, 0, 199, 1039, 1, 0, 0, 0, 201, 1043, 1, 0, 0, 0, 203, 1050, 1, 0, 0, 0, 205, 1056, 1, 0, 0, 0, 207, 1067, 1, 0, 0, 0, 209, 1075, 1, 0, 0, 0, 211, 1085, 1, 0, 0, 0, 213, 1092, 1, 0, 0, 0, 215, 1098, 1, 0, 0, 0, 217, 1102, 1, 0, 0, 0, 219, 1116, 1, 0, 0, 0, 221, 1122, 1, 0, 0, 0, 223, 1139, 1, 0, 0, 0, 225, 1144, 1, 0, 0, 0, 227, 1148, 1, 0, 0, 0, 229, 1158, 1, 0, 0, 0, 231, 1160, 1, 0, 0, 0, 233, 1168, 1, 0, 0, 0, 235, 1180, 1, 0, 0, 0, 237, 1192, 1, 0, 0, 0, 239, 1201, 1, 0, 0, 0, 241, 1206, 1, 0, 0, 0, 243, 1216, 1, 0, 0, 0, 245, 1224, 1, 0, 0, 0, 247, 1233, 1, 0, 0, 0, 249, 1240, 1, 0, 0, 0, 251, 1243, 1, 0, 0, 0, 253, 1253, 1, 0, 0, 0, 255, 1266, 1, 0, 0, 0, 257, 1274, 1, 0, 0, 0, 259, 1279, 1, 0, 0, 0, 261, 1283, 1, 0, 0, 0, 263, 1296, 1, 0, 0, 0, 265, 1302, 1, 0, 0, 0, 267, 1308, 1, 0, 0, 0, 269, 1314, 1, 0, 0, 0, 271, 1322, 1, 0, 0, 0, 273, 1327, 1, 0, 0, 0, 275, 1333, 1, 0, 0, 0, 277, 1338, 1, 0, 0, 0, 279, 1342, 1, 0, 0, 0, 281, 1350, 1, 0, 0, 0, 283, 1361, 1, 0, 0, 0, 285, 1373, 1, 0, 0, 0, 287, 1381, 1, 0, 0, 0, 289, 1390, 1, 0, 0, 0, 291, 1396, 1, 0, 0, 0, 293, 1403, 1, 0, 0, 0, 295, 1410, 1, 0, 0, 0, 297, 1422, 1, 0, 0, 0, 299, 1433, 1, 0, 0, 0, 301, 1437, 1, 0, 0, 0, 303, 1442, 1, 0, 0, 0, 305, 1458, 1, 0, 0, 0, 307, 1463, 1, 0, 0, 0, 309, 1473, 1, 0, 0, 0, 311, 1483, 1, 0, 0, 0, 313, 1493, 1, 0, 0, 0, 315, 1503, 1, 0, 0, 0, 317, 1508, 1, 0, 0, 0, 319, 1514, 1, 0, 0, 0, 321, 1522, 1, 0, 0, 0, 323, 1528, 1, 0, 0, 0, 325, 1545, 1, 0, 0, 0, 327, 1559, 1, 0, 0, 0, 329, 1573, 1, 0, 0, 0, 331, 1583, 1, 0, 0, 0, 333, 1592, 1, 0, 0, 0, 335, 1604, 1, 0, 0, 0, 337, 1614, 1, 0, 0, 0, 339, 1622, 1, 0, 0, 0, 341, 1627, 1, 0, 0, 0, 343, 1639, 1, 0, 0, 0, 345, 1646, 1, 0, 0, 0, 347, 1653, 1, 0, 0, 0, 349, 1658, 1, 0, 0, 0, 351, 1666, 1, 0, 0, 0, 353, 1672, 1, 0, 0, 0, 355, 1677, 1, 0, 0, 0, 357, 1684, 1, 0, 0, 0, 359, 1693, 1, 0, 0, 0, 361, 1698, 1, 0, 0, 0, 363, 1701, 1, 0, 0, 0, 365, 1704, 1, 0, 0, 0, 367, 1714, 1, 0, 0, 0, 369, 1721, 1, 0, 0, 0, 371, 1724, 1, 0, 0, 0, 373, 1729, 1, 0, 0, 0, 375, 1734, 1, 0, 0, 0, 377, 1745, 1, 0, 0, 0, 379, 1752, 1, 0, 0, 0, 381, 1758, 1, 0, 0, 0, 383, 1764, 1, 0, 0, 0, 385, 1772, 1, 0, 0, 0, 387, 1779, 1, 0, 0, 0, 389, 1790, 1, 0, 0, 0, 391, 1800, 1, 0, 0, 0, 393, 1811, 1, 0, 0, 0, 395, 1821, 1, 0, 0, 0, 397, 1831, 1, 0, 0, 0, 399, 1839, 1, 0, 0, 0, 401, 1846, 1, 0, 0, 0, 403, 1855, 1, 0, 0, 0, 405, 1863, 1, 0, 0, 0, 407, 1869, 1, 0, 0, 0, 409, 1881, 1, 0, 0, 0, 411, 1889, 1, 0, 0, 0, 413, 1893, 1, 0, 0, 0, 415, 1899, 1, 0, 0, 0, 417, 1911, 1, 0, 0, 0, 419, 1928, 1, 0, 0, 0, 421, 1935, 1, 0, 0, 0, 423, 1944, 1, 0, 0, 0, 425, 1953, 1, 0, 0, 0, 427, 1958, 1, 0, 0, 0, 429, 1964, 1, 0, 0, 0, 431, 1977, 1, 0, 0, 0, 433, 1987, 1, 0, 0, 0, 435, 1993, 1, 0, 0, 0, 437, 2000, 1, 0, 0, 0, 439, 2005, 1, 0, 0, 0, 441, 2019, 1, 0, 0, 0, 443, 2036, 1, 0, 0, 0, 445, 2044, 1, 0, 0, 0, 447, 2060, 1, 0, 0, 0, 449, 2076, 1, 0, 0, 0, 451, 2085, 1, 0, 0, 0, 453, 2094, 1, 0, 0, 0, 455, 2103, 1, 0, 0, 0, 457, 2116, 1, 0, 0, 0, 459, 2129, 1, 0, 0, 0, 461, 2141, 1, 0, 0, 0, 463, 2153, 1, 0, 0, 0, 465, 2164, 1, 0, 0, 0, 467, 2177, 1, 0, 0, 0, 469, 2184, 1, 0, 0, 0, 471, 2194, 1, 0, 0, 0, 473, 2220, 1, 0, 0, 0, 475, 2243, 1, 0, 0, 0, 477, 2272, 1, 0, 0, 0, 479, 2298, 1, 0, 0, 0, 481, 2302, 1, 0, 0, 0, 483, 2311, 1, 0, 0, 0, 485, 2313, 1, 0, 0, 0, 487, 2316, 1, 0, 0, 0, 489, 2323, 1, 0, 0, 0, 491, 2340, 1, 0, 0, 0, 493, 2342, 1, 0, 0, 0, 495, 2372, 1, 0, 0, 0, 497, 2374, 1, 0, 0, 0, 499, 2377, 1, 0, 0, 0, 501, 2383, 1, 0, 0, 0, 503, 2385, 1, 0, 0, 0, 505, 2399, 1, 0, 0, 0, 507, 508, 5, 40, 0, 0, 508, 2, 1, 0, 0, 0, 509, 510, 5, 41, 0, 0, 510, 4, 1, 0, 0, 0, 511, 512, 5, 91, 0, 0, 512, 6, 1, 0, 0, 0, 513, 514, 5, 93, 0, 0, 514, 8, 1, 0, 0, 0, 515, 516, 5, 123, 0, 0, 516, 10, 1, 0, 0, 0, 517, 518, 5, 125, 0, 0, 518, 12, 1, 0, 0, 0, 519, 520, 5, 61, 0, 0, 520, 14, 1, 0, 0, 0, 521, 522, 5, 60, 0, 0, 522, 16, 1, 0, 0, 0, 523, 524, 5, 62, 0, 0, 524, 18, 1, 0, 0, 0, 525, 526, 5, 62, 0, 0, 526, 527, 5, 61, 0, 0, 527, 20, 1, 0, 0, 0, 528, 529, 5, 60, 0, 0, 529, 530, 5, 62, 0, 0, 530, 22, 1, 0, 0, 0, 531, 532, 5, 60, 0, 0, 532, 533, 5, 61, 0, 0, 533, 24, 1, 0, 0, 0, 534, 535, 5, 43, 0, 0, 535, 26, 1, 0, 0, 0, 536, 537, 5, 45, 0, 0, 537, 28, 1, 0, 0, 0, 538, 539, 5, 42, 0, 0, 539, 30, 1, 0, 0, 0, 540, 541, 5, 47, 0, 0, 541, 32, 1, 0, 0, 0, 542, 543, 5, 44, 0, 0, 543, 34, 1, 0, 0, 0, 544, 545, 5, 45, 0, 0, 545, 546, 5, 62, 0, 0, 546, 36, 1, 0, 0, 0, 547, 548, 5, 58, 0, 0, 548, 38, 1, 0, 0, 0, 549, 550, 5, 58, 0, 0, 550, 551, 5, 61, 0, 0, 551, 40, 1, 0, 0, 0, 552, 553, 5, 35, 0, 0, 553, 42, 1, 0, 0, 0, 554, 555, 5, 101, 0, 0, 555, 556, 5, 118, 0, 0, 556, 557, 5, 97, 0, 0, 557, 558, 5, 108, 0, 0, 558, 44, 1, 0, 0, 0, 559, 560, 5, 105, 0, 0, 560, 561, 5, 102, 0, 0, 561, 46, 1, 0, 0, 0, 562, 563, 5, 99, 0, 0, 563, 564, 5, 97, 0, 0, 564, 565, 5, 115, 0, 0, 565, 566, 5, 101, 0, 0, 566, 48, 1, 0, 0, 0, 567, 568, 5, 116, 0, 0, 568, 569, 5, 104, 0, 0, 569, 570, 5, 101, 0, 0, 570, 571, 5, 110, 0, 0, 571, 50, 1, 0, 0, 0, 572, 573, 5, 101, 0, 0, 573, 574, 5, 108, 0, 0, 574, 575, 5, 115, 0, 0, 575, 576, 5, 101, 0, 0, 576, 52, 1, 0, 0, 0, 577, 578, 5, 117, 0, 0, 578, 579, 5, 115, 0, 0, 579, 580, 5, 105, 0, 0, 580, 581, 5, 110, 0, 0, 581, 582, 5, 103, 0, 0, 582, 54, 1, 0, 0, 0, 583, 584, 5, 119, 0, 0, 584, 585, 5, 105, 0, 0, 585, 586, 5, 116, 0, 0, 586, 587, 5, 104, 0, 0, 587, 56, 1, 0, 0, 0, 588, 589, 5, 99, 0, 0, 589, 590, 5, 117, 0, 0, 590, 591, 5, 114, 0, 0, 591, 592, 5, 114, 0, 0, 592, 593, 5, 101, 0, 0, 593, 594, 5, 110, 0, 0, 594, 595, 5, 116, 0, 0, 595, 596, 5, 95, 0, 0, 596, 597, 5, 100, 0, 0, 597, 598, 5, 97, 0, 0, 598, 599, 5, 116, 0, 0, 599, 600, 5, 101, 0, 0, 600, 58, 1, 0, 0, 0, 601, 602, 5, 100, 0, 0, 602, 603, 5, 97, 0, 0, 603, 604, 5, 116, 0, 0, 604, 605, 5, 101, 0, 0, 605, 606, 5, 100, 0, 0, 606, 607, 5, 105, 0, 0, 607, 608, 5, 102, 0, 0, 608, 609, 5, 102, 0, 0, 609, 60, 1, 0, 0, 0, 610, 611, 5, 100, 0, 0, 611, 612, 5, 97, 0, 0, 612, 613, 5, 116, 0, 0, 613, 614, 5, 101, 0, 0, 614, 615, 5, 97, 0, 0, 615, 616, 5, 100, 0, 0, 616, 617, 5, 100, 0, 0, 617, 62, 1, 0, 0, 0, 618, 619, 5, 103, 0, 0, 619, 620, 5, 101, 0, 0, 620, 621, 5, 116, 0, 0, 621, 622, 5, 121, 0, 0, 622, 623, 5, 101, 0, 0, 623, 624, 5, 97, 0, 0, 624, 625, 5, 114, 0, 0, 625, 64, 1, 0, 0, 0, 626, 627, 5, 103, 0, 0, 627, 628, 5, 101, 0, 0, 628, 629, 5, 116, 0, 0, 629, 630, 5, 109, 0, 0, 630, 631, 5, 111, 0, 0, 631, 632, 5, 110, 0, 0, 632, 633, 5, 116, 0, 0, 633, 634, 5, 104, 0, 0, 634, 66, 1, 0, 0, 0, 635, 636, 5, 100, 0, 0, 636, 637, 5, 97, 0, 0, 637, 638, 5, 121, 0, 0, 638, 639, 5, 111, 0, 0, 639, 640, 5, 102, 0, 0, 640, 641, 5, 109, 0, 0, 641, 642, 5, 111, 0, 0, 642, 643, 5, 110, 0, 0, 643, 644, 5, 116, 0, 0, 644, 645, 5, 104, 0, 0, 645, 68, 1, 0, 0, 0, 646, 647, 5, 100, 0, 0, 647, 648, 5, 97, 0, 0, 648, 649, 5, 121, 0, 0, 649, 650, 5, 111, 0, 0, 650, 651, 5, 102, 0, 0, 651, 652, 5, 121, 0, 0, 652, 653, 5, 101, 0, 0, 653, 654, 5, 97, 0, 0, 654, 655, 5, 114, 0, 0, 655, 70, 1, 0, 0, 0, 656, 657, 5, 100, 0, 0, 657, 658, 5, 97, 0, 0, 658, 659, 5, 121, 0, 0, 659, 660, 5, 116, 0, 0, 660, 661, 5, 111, 0, 0, 661, 662, 5, 121, 0, 0, 662, 663, 5, 101, 0, 0, 663, 664, 5, 97, 0, 0, 664, 665, 5, 114, 0, 0, 665, 72, 1, 0, 0, 0, 666, 667, 5, 100, 0, 0, 667, 668, 5, 97, 0, 0, 668, 669, 5, 121, 0, 0, 669, 670, 5, 116, 0, 0, 670, 671, 5, 111, 0, 0, 671, 672, 5, 109, 0, 0, 672, 673, 5, 111, 0, 0, 673, 674, 5, 110, 0, 0, 674, 675, 5, 116, 0, 0, 675, 676, 5, 104, 0, 0, 676, 74, 1, 0, 0, 0, 677, 678, 5, 121, 0, 0, 678, 679, 5, 101, 0, 0, 679, 680, 5, 97, 0, 0, 680, 681, 5, 114, 0, 0, 681, 682, 5, 116, 0, 0, 682, 683, 5, 111, 0, 0, 683, 684, 5, 100, 0, 0, 684, 685, 5, 97, 0, 0, 685, 686, 5, 121, 0, 0, 686, 76, 1, 0, 0, 0, 687, 688, 5, 109, 0, 0, 688, 689, 5, 111, 0, 0, 689, 690, 5, 110, 0, 0, 690, 691, 5, 116, 0, 0, 691, 692, 5, 104, 0, 0, 692, 693, 5, 116, 0, 0, 693, 694, 5, 111, 0, 0, 694, 695, 5, 100, 0, 0, 695, 696, 5, 97, 0, 0, 696, 697, 5, 121, 0, 0, 697, 78, 1, 0, 0, 0, 698, 699, 5, 111, 0, 0, 699, 700, 5, 110, 0, 0, 700, 80, 1, 0, 0, 0, 701, 702, 5, 100, 0, 0, 702, 703, 5, 114, 0, 0, 703, 704, 5, 111, 0, 0, 704, 705, 5, 112, 0, 0, 705, 82, 1, 0, 0, 0, 706, 707, 5, 107, 0, 0, 707, 708, 5, 101, 0, 0, 708, 709, 5, 101, 0, 0, 709, 710, 5, 112, 0, 0, 710, 84, 1, 0, 0, 0, 711, 712, 5, 99, 0, 0, 712, 713, 5, 97, 0, 0, 713, 714, 5, 108, 0, 0, 714, 715, 5, 99, 0, 0, 715, 86, 1, 0, 0, 0, 716, 717, 5, 97, 0, 0, 717, 718, 5, 116, 0, 0, 718, 719, 5, 116, 0, 0, 719, 720, 5, 114, 0, 0, 720, 721, 5, 99, 0, 0, 721, 722, 5, 97, 0, 0, 722, 723, 5, 108, 0, 0, 723, 724, 5, 99, 0, 0, 724, 88, 1, 0, 0, 0, 725, 726, 5, 114, 0, 0, 726, 727, 5, 101, 0, 0, 727, 728, 5, 110, 0, 0, 728, 729, 5, 97, 0, 0, 729, 730, 5, 109, 0, 0, 730, 731, 5, 101, 0, 0, 731, 90, 1, 0, 0, 0, 732, 733, 5, 97, 0, 0, 733, 734, 5, 115, 0, 0, 734, 92, 1, 0, 0, 0, 735, 736, 5, 97, 0, 0, 736, 737, 5, 110, 0, 0, 737, 738, 5, 100, 0, 0, 738, 94, 1, 0, 0, 0, 739, 740, 5, 111, 0, 0, 740, 741, 5, 114, 0, 0, 741, 96, 1, 0, 0, 0, 742, 743, 5, 120, 0, 0, 743, 744, 5, 111, 0, 0, 744, 745, 5, 114, 0, 0, 745, 98, 1, 0, 0, 0, 746, 747, 5, 110, 0, 0, 747, 748, 5, 111, 0, 0, 748, 749, 5, 116, 0, 0, 749, 100, 1, 0, 0, 0, 750, 751, 5, 98, 0, 0, 751, 752, 5, 101, 0, 0, 752, 753, 5, 116, 0, 0, 753, 754, 5, 119, 0, 0, 754, 755, 5, 101, 0, 0, 755, 756, 5, 101, 0, 0, 756, 757, 5, 110, 0, 0, 757, 102, 1, 0, 0, 0, 758, 759, 5, 105, 0, 0, 759, 760, 5, 110, 0, 0, 760, 104, 1, 0, 0, 0, 761, 762, 5, 110, 0, 0, 762, 763, 5, 111, 0, 0, 763, 764, 5, 116, 0, 0, 764, 765, 5, 95, 0, 0, 765, 766, 5, 105, 0, 0, 766, 767, 5, 110, 0, 0, 767, 106, 1, 0, 0, 0, 768, 769, 5, 110, 0, 0, 769, 770, 5, 117, 0, 0, 770, 771, 5, 108, 0, 0, 771, 772, 5, 108, 0, 0, 772, 108, 1, 0, 0, 0, 773, 774, 5, 105, 0, 0, 774, 775, 5, 115, 0, 0, 775, 776, 5, 110, 0, 0, 776, 777, 5, 117, 0, 0, 777, 778, 5, 108, 0, 0, 778, 779, 5, 108, 0, 0, 779, 110, 1, 0, 0, 0, 780, 781, 5, 101, 0, 0, 781, 782, 5, 120, 0, 0, 782, 112, 1, 0, 0, 0, 783, 784, 5, 117, 0, 0, 784, 785, 5, 110, 0, 0, 785, 786, 5, 105, 0, 0, 786, 787, 5, 111, 0, 0, 787, 788, 5, 110, 0, 0, 788, 114, 1, 0, 0, 0, 789, 790, 5, 100, 0, 0, 790, 791, 5, 105, 0, 0, 791, 792, 5, 102, 0, 0, 792, 793, 5, 102, 0, 0, 793, 116, 1, 0, 0, 0, 794, 795, 5, 115, 0, 0, 795, 796, 5, 121, 0, 0, 796, 797, 5, 109, 0, 0, 797, 798, 5, 100, 0, 0, 798, 799, 5, 105, 0, 0, 799, 800, 5, 102, 0, 0, 800, 801, 5, 102, 0, 0, 801, 118, 1, 0, 0, 0, 802, 803, 5, 105, 0, 0, 803, 804, 5, 110, 0, 0, 804, 805, 5, 116, 0, 0, 805, 806, 5, 101, 0, 0, 806, 807, 5, 114, 0, 0, 807, 808, 5, 115, 0, 0, 808, 809, 5, 101, 0, 0, 809, 810, 5, 99, 0, 0, 810, 811, 5, 116, 0, 0, 811, 120, 1, 0, 0, 0, 812, 813, 5, 114, 0, 0, 813, 814, 5, 97, 0, 0, 814, 815, 5, 110, 0, 0, 815, 816, 5, 100, 0, 0, 816, 817, 5, 111, 0, 0, 817, 818, 5, 109, 0, 0, 818, 122, 1, 0, 0, 0, 819, 820, 5, 107, 0, 0, 820, 821, 5, 101, 0, 0, 821, 822, 5, 121, 0, 0, 822, 823, 5, 115, 0, 0, 823, 124, 1, 0, 0, 0, 824, 825, 5, 105, 0, 0, 825, 826, 5, 110, 0, 0, 826, 827, 5, 116, 0, 0, 827, 828, 5, 121, 0, 0, 828, 829, 5, 101, 0, 0, 829, 830, 5, 97, 0, 0, 830, 831, 5, 114, 0, 0, 831, 126, 1, 0, 0, 0, 832, 833, 5, 105, 0, 0, 833, 834, 5, 110, 0, 0, 834, 835, 5, 116, 0, 0, 835, 836, 5, 109, 0, 0, 836, 837, 5, 111, 0, 0, 837, 838, 5, 110, 0, 0, 838, 839, 5, 116, 0, 0, 839, 840, 5, 104, 0, 0, 840, 128, 1, 0, 0, 0, 841, 842, 5, 105, 0, 0, 842, 843, 5, 110, 0, 0, 843, 844, 5, 116, 0, 0, 844, 845, 5, 100, 0, 0, 845, 846, 5, 97, 0, 0, 846, 847, 5, 121, 0, 0, 847, 130, 1, 0, 0, 0, 848, 849, 5, 99, 0, 0, 849, 850, 5, 104, 0, 0, 850, 851, 5, 101, 0, 0, 851, 852, 5, 99, 0, 0, 852, 853, 5, 107, 0, 0, 853, 132, 1, 0, 0, 0, 854, 855, 5, 101, 0, 0, 855, 856, 5, 120, 0, 0, 856, 857, 5, 105, 0, 0, 857, 858, 5, 115, 0, 0, 858, 859, 5, 116, 0, 0, 859, 860, 5, 115, 0, 0, 860, 861, 5, 95, 0, 0, 861, 862, 5, 105, 0, 0, 862, 863, 5, 110, 0, 0, 863, 134, 1, 0, 0, 0, 864, 865, 5, 116, 0, 0, 865, 866, 5, 111, 0, 0, 866, 136, 1, 0, 0, 0, 867, 868, 5, 114, 0, 0, 868, 869, 5, 101, 0, 0, 869, 870, 5, 116, 0, 0, 870, 871, 5, 117, 0, 0, 871, 872, 5, 114, 0, 0, 872, 873, 5, 110, 0, 0, 873, 138, 1, 0, 0, 0, 874, 875, 5, 105, 0, 0, 875, 876, 5, 109, 0, 0, 876, 877, 5, 98, 0, 0, 877, 878, 5, 97, 0, 0, 878, 879, 5, 108, 0, 0, 879, 880, 5, 97, 0, 0, 880, 881, 5, 110, 0, 0, 881, 882, 5, 99, 0, 0, 882, 883, 5, 101, 0, 0, 883, 140, 1, 0, 0, 0, 884, 885, 5, 101, 0, 0, 885, 886, 5, 114, 0, 0, 886, 887, 5, 114, 0, 0, 887, 888, 5, 111, 0, 0, 888, 889, 5, 114, 0, 0, 889, 890, 5, 99, 0, 0, 890, 891, 5, 111, 0, 0, 891, 892, 5, 100, 0, 0, 892, 893, 5, 101, 0, 0, 893, 142, 1, 0, 0, 0, 894, 895, 5, 97, 0, 0, 895, 896, 5, 108, 0, 0, 896, 897, 5, 108, 0, 0, 897, 144, 1, 0, 0, 0, 898, 899, 5, 97, 0, 0, 899, 900, 5, 103, 0, 0, 900, 901, 5, 103, 0, 0, 901, 902, 5, 114, 0, 0, 902, 146, 1, 0, 0, 0, 903, 904, 5, 101, 0, 0, 904, 905, 5, 114, 0, 0, 905, 906, 5, 114, 0, 0, 906, 907, 5, 111, 0, 0, 907, 908, 5, 114, 0, 0, 908, 909, 5, 108, 0, 0, 909, 910, 5, 101, 0, 0, 910, 911, 5, 118, 0, 0, 911, 912, 5, 101, 0, 0, 912, 913, 5, 108, 0, 0, 913, 148, 1, 0, 0, 0, 914, 915, 5, 111, 0, 0, 915, 916, 5, 114, 0, 0, 916, 917, 5, 100, 0, 0, 917, 918, 5, 101, 0, 0, 918, 919, 5, 114, 0, 0, 919, 150, 1, 0, 0, 0, 920, 921, 5, 98, 0, 0, 921, 922, 5, 121, 0, 0, 922, 152, 1, 0, 0, 0, 923, 924, 5, 114, 0, 0, 924, 925, 5, 97, 0, 0, 925, 926, 5, 110, 0, 0, 926, 927, 5, 107, 0, 0, 927, 154, 1, 0, 0, 0, 928, 929, 5, 97, 0, 0, 929, 930, 5, 115, 0, 0, 930, 931, 5, 99, 0, 0, 931, 156, 1, 0, 0, 0, 932, 933, 5, 100, 0, 0, 933, 934, 5, 101, 0, 0, 934, 935, 5, 115, 0, 0, 935, 936, 5, 99, 0, 0, 936, 158, 1, 0, 0, 0, 937, 938, 5, 109, 0, 0, 938, 939, 5, 105, 0, 0, 939, 940, 5, 110, 0, 0, 940, 160, 1, 0, 0, 0, 941, 942, 5, 109, 0, 0, 942, 943, 5, 97, 0, 0, 943, 944, 5, 120, 0, 0, 944, 162, 1, 0, 0, 0, 945, 946, 5, 102, 0, 0, 946, 947, 5, 105, 0, 0, 947, 948, 5, 114, 0, 0, 948, 949, 5, 115, 0, 0, 949, 950, 5, 116, 0, 0, 950, 164, 1, 0, 0, 0, 951, 952, 5, 108, 0, 0, 952, 953, 5, 97, 0, 0, 953, 954, 5, 115, 0, 0, 954, 955, 5, 116, 0, 0, 955, 166, 1, 0, 0, 0, 956, 957, 5, 105, 0, 0, 957, 958, 5, 110, 0, 0, 958, 959, 5, 100, 0, 0, 959, 960, 5, 101, 0, 0, 960, 961, 5, 120, 0, 0, 961, 962, 5, 111, 0, 0, 962, 963, 5, 102, 0, 0, 963, 168, 1, 0, 0, 0, 964, 965, 5, 97, 0, 0, 965, 966, 5, 98, 0, 0, 966, 967, 5, 115, 0, 0, 967, 170, 1, 0, 0, 0, 968, 969, 5, 107, 0, 0, 969, 970, 5, 101, 0, 0, 970, 971, 5, 121, 0, 0, 971, 172, 1, 0, 0, 0, 972, 973, 5, 108, 0, 0, 973, 974, 5, 110, 0, 0, 974, 174, 1, 0, 0, 0, 975, 976, 5, 108, 0, 0, 976, 977, 5, 111, 0, 0, 977, 978, 5, 103, 0, 0, 978, 176, 1, 0, 0, 0, 979, 980, 5, 116, 0, 0, 980, 981, 5, 114, 0, 0, 981, 982, 5, 117, 0, 0, 982, 983, 5, 110, 0, 0, 983, 984, 5, 99, 0, 0, 984, 178, 1, 0, 0, 0, 985, 986, 5, 114, 0, 0, 986, 987, 5, 111, 0, 0, 987, 988, 5, 117, 0, 0, 988, 989, 5, 110, 0, 0, 989, 990, 5, 100, 0, 0, 990, 180, 1, 0, 0, 0, 991, 992, 5, 112, 0, 0, 992, 993, 5, 111, 0, 0, 993, 994, 5, 119, 0, 0, 994, 995, 5, 101, 0, 0, 995, 996, 5, 114, 0, 0, 996, 182, 1, 0, 0, 0, 997, 998, 5, 109, 0, 0, 998, 999, 5, 111, 0, 0, 999, 1000, 5, 100, 0, 0, 1000, 184, 1, 0, 0, 0, 1001, 1002, 5, 108, 0, 0, 1002, 1003, 5, 101, 0, 0, 1003, 1004, 5, 110, 0, 0, 1004, 1005, 5, 103, 0, 0, 1005, 1006, 5, 116, 0, 0, 1006, 1007, 5, 104, 0, 0, 1007, 186, 1, 0, 0, 0, 1008, 1009, 5, 124, 0, 0, 1009, 1010, 5, 124, 0, 0, 1010, 188, 1, 0, 0, 0, 1011, 1012, 5, 116, 0, 0, 1012, 1013, 5, 114, 0, 0, 1013, 1014, 5, 105, 0, 0, 1014, 1015, 5, 109, 0, 0, 1015, 190, 1, 0, 0, 0, 1016, 1017, 5, 117, 0, 0, 1017, 1018, 5, 112, 0, 0, 1018, 1019, 5, 112, 0, 0, 1019, 1020, 5, 101, 0, 0, 1020, 1021, 5, 114, 0, 0, 1021, 192, 1, 0, 0, 0, 1022, 1023, 5, 108, 0, 0, 1023, 1024, 5, 111, 0, 0, 1024, 1025, 5, 119, 0, 0, 1025, 1026, 5, 101, 0, 0, 1026, 1027, 5, 114, 0, 0, 1027, 194, 1, 0, 0, 0, 1028, 1029, 5, 115, 0, 0, 1029, 1030, 5, 117, 0, 0, 1030, 1031, 5, 98, 0, 0, 1031, 1032, 5, 115, 0, 0, 1032, 1033, 5, 116, 0, 0, 1033, 1034, 5, 114, 0, 0, 1034, 196, 1, 0, 0, 0, 1035, 1036, 5, 115, 0, 0, 1036, 1037, 5, 117, 0, 0, 1037, 1038, 5, 109, 0, 0, 1038, 198, 1, 0, 0, 0, 1039, 1040, 5, 97, 0, 0, 1040, 1041, 5, 118, 0, 0, 1041, 1042, 5, 103, 0, 0, 1042, 200, 1, 0, 0, 0, 1043, 1044, 5, 109, 0, 0, 1044, 1045, 5, 101, 0, 0, 1045, 1046, 5, 100, 0, 0, 1046, 1047, 5, 105, 0, 0, 1047, 1048, 5, 97, 0, 0, 1048, 1049, 5, 110, 0, 0, 1049, 202, 1, 0, 0, 0, 1050, 1051, 5, 99, 0, 0, 1051, 1052, 5, 111, 0, 0, 1052, 1053, 5, 117, 0, 0, 1053, 1054, 5, 110, 0, 0, 1054, 1055, 5, 116, 0, 0, 1055, 204, 1, 0, 0, 0, 1056, 1057, 5, 105, 0, 0, 1057, 1058, 5, 100, 0, 0, 1058, 1059, 5, 101, 0, 0, 1059, 1060, 5, 110, 0, 0, 1060, 1061, 5, 116, 0, 0, 1061, 1062, 5, 105, 0, 0, 1062, 1063, 5, 102, 0, 0, 1063, 1064, 5, 105, 0, 0, 1064, 1065, 5, 101, 0, 0, 1065, 1066, 5, 114, 0, 0, 1066, 206, 1, 0, 0, 0, 1067, 1068, 5, 109, 0, 0, 1068, 1069, 5, 101, 0, 0, 1069, 1070, 5, 97, 0, 0, 1070, 1071, 5, 115, 0, 0, 1071, 1072, 5, 117, 0, 0, 1072, 1073, 5, 114, 0, 0, 1073, 1074, 5, 101, 0, 0, 1074, 208, 1, 0, 0, 0, 1075, 1076, 5, 97, 0, 0, 1076, 1077, 5, 116, 0, 0, 1077, 1078, 5, 116, 0, 0, 1078, 1079, 5, 114, 0, 0, 1079, 1080, 5, 105, 0, 0, 1080, 1081, 5, 98, 0, 0, 1081, 1082, 5, 117, 0, 0, 1082, 1083, 5, 116, 0, 0, 1083, 1084, 5, 101, 0, 0, 1084, 210, 1, 0, 0, 0, 1085, 1086, 5, 102, 0, 0, 1086, 1087, 5, 105, 0, 0, 1087, 1088, 5, 108, 0, 0, 1088, 1089, 5, 116, 0, 0, 1089, 1090, 5, 101, 0, 0, 1090, 1091, 5, 114, 0, 0, 1091, 212, 1, 0, 0, 0, 1092, 1093, 5, 109, 0, 0, 1093, 1094, 5, 101, 0, 0, 1094, 1095, 5, 114, 0, 0, 1095, 1096, 5, 103, 0, 0, 1096, 1097, 5, 101, 0, 0, 1097, 214, 1, 0, 0, 0, 1098, 1099, 5, 101, 0, 0, 1099, 1100, 5, 120, 0, 0, 1100, 1101, 5, 112, 0, 0, 1101, 216, 1, 0, 0, 0, 1102, 1103, 5, 99, 0, 0, 1103, 1104, 5, 111, 0, 0, 1104, 1105, 5, 109, 0, 0, 1105, 1106, 5, 112, 0, 0, 1106, 1107, 5, 111, 0, 0, 1107, 1108, 5, 110, 0, 0, 1108, 1109, 5, 101, 0, 0, 1109, 1110, 5, 110, 0, 0, 1110, 1111, 5, 116, 0, 0, 1111, 1112, 5, 82, 0, 0, 1112, 1113, 5, 111, 0, 0, 1113, 1114, 5, 108, 0, 0, 1114, 1115, 5, 101, 0, 0, 1115, 218, 1, 0, 0, 0, 1116, 1117, 5, 118, 0, 0, 1117, 1118, 5, 105, 0, 0, 1118, 1119, 5, 114, 0, 0, 1119, 1120, 5, 97, 0, 0, 1120, 1121, 5, 108, 0, 0, 1121, 220, 1, 0, 0, 0, 1122, 1123, 5, 109, 0, 0, 1123, 1124, 5, 97, 0, 0, 1124, 1125, 5, 116, 0, 0, 1125, 1126, 5, 99, 0, 0, 1126, 1127, 5, 104, 0, 0, 1127, 1128, 5, 95, 0, 0, 1128, 1129, 5, 99, 0, 0, 1129, 1130, 5, 104, 0, 0, 1130, 1131, 5, 97, 0, 0, 1131, 1132, 5, 114, 0, 0, 1132, 1133, 5, 97, 0, 0, 1133, 1134, 5, 99, 0, 0, 1134, 1135, 5, 116, 0, 0, 1135, 1136, 5, 101, 0, 0, 1136, 1137, 5, 114, 0, 0, 1137, 1138, 5, 115, 0, 0, 1138, 222, 1, 0, 0, 0, 1139, 1140, 5, 116, 0, 0, 1140, 1141, 5, 121, 0, 0, 1141, 1142, 5, 112, 0, 0, 1142, 1143, 5, 101, 0, 0, 1143, 224, 1, 0, 0, 0, 1144, 1145, 5, 110, 0, 0, 1145, 1146, 5, 118, 0, 0, 1146, 1147, 5, 108, 0, 0, 1147, 226, 1, 0, 0, 0, 1148, 1149, 5, 104, 0, 0, 1149, 1150, 5, 105, 0, 0, 1150, 1151, 5, 101, 0, 0, 1151, 1152, 5, 114, 0, 0, 1152, 1153, 5, 97, 0, 0, 1153, 1154, 5, 114, 0, 0, 1154, 1155, 5, 99, 0, 0, 1155, 1156, 5, 104, 0, 0, 1156, 1157, 5, 121, 0, 0, 1157, 228, 1, 0, 0, 0, 1158, 1159, 5, 95, 0, 0, 1159, 230, 1, 0, 0, 0, 1160, 1161, 5, 105, 0, 0, 1161, 1162, 5, 110, 0, 0, 1162, 1163, 5, 118, 0, 0, 1163, 1164, 5, 97, 0, 0, 1164, 1165, 5, 108, 0, 0, 1165, 1166, 5, 105, 0, 0, 1166, 1167, 5, 100, 0, 0, 1167, 232, 1, 0, 0, 0, 1168, 1169, 5, 108, 0, 0, 1169, 1170, 5, 101, 0, 0, 1170, 1171, 5, 118, 0, 0, 1171, 1172, 5, 101, 0, 0, 1172, 1173, 5, 110, 0, 0, 1173, 1174, 5, 115, 0, 0, 1174, 1175, 5, 104, 0, 0, 1175, 1176, 5, 116, 0, 0, 1176, 1177, 5, 101, 0, 0, 1177, 1178, 5, 105, 0, 0, 1178, 1179, 5, 110, 0, 0, 1179, 234, 1, 0, 0, 0, 1180, 1181, 5, 118, 0, 0, 1181, 1182, 5, 97, 0, 0, 1182, 1183, 5, 108, 0, 0, 1183, 1184, 5, 117, 0, 0, 1184, 1185, 5, 101, 0, 0, 1185, 1186, 5, 100, 0, 0, 1186, 1187, 5, 111, 0, 0, 1187, 1188, 5, 109, 0, 0, 1188, 1189, 5, 97, 0, 0, 1189, 1190, 5, 105, 0, 0, 1190, 1191, 5, 110, 0, 0, 1191, 236, 1, 0, 0, 0, 1192, 1193, 5, 118, 0, 0, 1193, 1194, 5, 97, 0, 0, 1194, 1195, 5, 114, 0, 0, 1195, 1196, 5, 105, 0, 0, 1196, 1197, 5, 97, 0, 0, 1197, 1198, 5, 98, 0, 0, 1198, 1199, 5, 108, 0, 0, 1199, 1200, 5, 101, 0, 0, 1200, 238, 1, 0, 0, 0, 1201, 1202, 5, 100, 0, 0, 1202, 1203, 5, 97, 0, 0, 1203, 1204, 5, 116, 0, 0, 1204, 1205, 5, 97, 0, 0, 1205, 240, 1, 0, 0, 0, 1206, 1207, 5, 115, 0, 0, 1207, 1208, 5, 116, 0, 0, 1208, 1209, 5, 114, 0, 0, 1209, 1210, 5, 117, 0, 0, 1210, 1211, 5, 99, 0, 0, 1211, 1212, 5, 116, 0, 0, 1212, 1213, 5, 117, 0, 0, 1213, 1214, 5, 114, 0, 0, 1214, 1215, 5, 101, 0, 0, 1215, 242, 1, 0, 0, 0, 1216, 1217, 5, 100, 0, 0, 1217, 1218, 5, 97, 0, 0, 1218, 1219, 5, 116, 0, 0, 1219, 1220, 5, 97, 0, 0, 1220, 1221, 5, 115, 0, 0, 1221, 1222, 5, 101, 0, 0, 1222, 1223, 5, 116, 0, 0, 1223, 244, 1, 0, 0, 0, 1224, 1225, 5, 111, 0, 0, 1225, 1226, 5, 112, 0, 0, 1226, 1227, 5, 101, 0, 0, 1227, 1228, 5, 114, 0, 0, 1228, 1229, 5, 97, 0, 0, 1229, 1230, 5, 116, 0, 0, 1230, 1231, 5, 111, 0, 0, 1231, 1232, 5, 114, 0, 0, 1232, 246, 1, 0, 0, 0, 1233, 1234, 5, 100, 0, 0, 1234, 1235, 5, 101, 0, 0, 1235, 1236, 5, 102, 0, 0, 1236, 1237, 5, 105, 0, 0, 1237, 1238, 5, 110, 0, 0, 1238, 1239, 5, 101, 0, 0, 1239, 248, 1, 0, 0, 0, 1240, 1241, 5, 60, 0, 0, 1241, 1242, 5, 45, 0, 0, 1242, 250, 1, 0, 0, 0, 1243, 1244, 5, 100, 0, 0, 1244, 1245, 5, 97, 0, 0, 1245, 1246, 5, 116, 0, 0, 1246, 1247, 5, 97, 0, 0, 1247, 1248, 5, 112, 0, 0, 1248, 1249, 5, 111, 0, 0, 1249, 1250, 5, 105, 0, 0, 1250, 1251, 5, 110, 0, 0, 1251, 1252, 5, 116, 0, 0, 1252, 252, 1, 0, 0, 0, 1253, 1254, 5, 104, 0, 0, 1254, 1255, 5, 105, 0, 0, 1255, 1256, 5, 101, 0, 0, 1256, 1257, 5, 114, 0, 0, 1257, 1258, 5, 97, 0, 0, 1258, 1259, 5, 114, 0, 0, 1259, 1260, 5, 99, 0, 0, 1260, 1261, 5, 104, 0, 0, 1261, 1262, 5, 105, 0, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1264, 5, 97, 0, 0, 1264, 1265, 5, 108, 0, 0, 1265, 254, 1, 0, 0, 0, 1266, 1267, 5, 114, 0, 0, 1267, 1268, 5, 117, 0, 0, 1268, 1269, 5, 108, 0, 0, 1269, 1270, 5, 101, 0, 0, 1270, 1271, 5, 115, 0, 0, 1271, 1272, 5, 101, 0, 0, 1272, 1273, 5, 116, 0, 0, 1273, 256, 1, 0, 0, 0, 1274, 1275, 5, 114, 0, 0, 1275, 1276, 5, 117, 0, 0, 1276, 1277, 5, 108, 0, 0, 1277, 1278, 5, 101, 0, 0, 1278, 258, 1, 0, 0, 0, 1279, 1280, 5, 101, 0, 0, 1280, 1281, 5, 110, 0, 0, 1281, 1282, 5, 100, 0, 0, 1282, 260, 1, 0, 0, 0, 1283, 1284, 5, 97, 0, 0, 1284, 1285, 5, 108, 0, 0, 1285, 1286, 5, 116, 0, 0, 1286, 1287, 5, 101, 0, 0, 1287, 1288, 5, 114, 0, 0, 1288, 1289, 5, 68, 0, 0, 1289, 1290, 5, 97, 0, 0, 1290, 1291, 5, 116, 0, 0, 1291, 1292, 5, 97, 0, 0, 1292, 1293, 5, 115, 0, 0, 1293, 1294, 5, 101, 0, 0, 1294, 1295, 5, 116, 0, 0, 1295, 262, 1, 0, 0, 0, 1296, 1297, 5, 108, 0, 0, 1297, 1298, 5, 116, 0, 0, 1298, 1299, 5, 114, 0, 0, 1299, 1300, 5, 105, 0, 0, 1300, 1301, 5, 109, 0, 0, 1301, 264, 1, 0, 0, 0, 1302, 1303, 5, 114, 0, 0, 1303, 1304, 5, 116, 0, 0, 1304, 1305, 5, 114, 0, 0, 1305, 1306, 5, 105, 0, 0, 1306, 1307, 5, 109, 0, 0, 1307, 266, 1, 0, 0, 0, 1308, 1309, 5, 105, 0, 0, 1309, 1310, 5, 110, 0, 0, 1310, 1311, 5, 115, 0, 0, 1311, 1312, 5, 116, 0, 0, 1312, 1313, 5, 114, 0, 0, 1313, 268, 1, 0, 0, 0, 1314, 1315, 5, 114, 0, 0, 1315, 1316, 5, 101, 0, 0, 1316, 1317, 5, 112, 0, 0, 1317, 1318, 5, 108, 0, 0, 1318, 1319, 5, 97, 0, 0, 1319, 1320, 5, 99, 0, 0, 1320, 1321, 5, 101, 0, 0, 1321, 270, 1, 0, 0, 0, 1322, 1323, 5, 99, 0, 0, 1323, 1324, 5, 101, 0, 0, 1324, 1325, 5, 105, 0, 0, 1325, 1326, 5, 108, 0, 0, 1326, 272, 1, 0, 0, 0, 1327, 1328, 5, 102, 0, 0, 1328, 1329, 5, 108, 0, 0, 1329, 1330, 5, 111, 0, 0, 1330, 1331, 5, 111, 0, 0, 1331, 1332, 5, 114, 0, 0, 1332, 274, 1, 0, 0, 0, 1333, 1334, 5, 115, 0, 0, 1334, 1335, 5, 113, 0, 0, 1335, 1336, 5, 114, 0, 0, 1336, 1337, 5, 116, 0, 0, 1337, 276, 1, 0, 0, 0, 1338, 1339, 5, 97, 0, 0, 1339, 1340, 5, 110, 0, 0, 1340, 1341, 5, 121, 0, 0, 1341, 278, 1, 0, 0, 0, 1342, 1343, 5, 115, 0, 0, 1343, 1344, 5, 101, 0, 0, 1344, 1345, 5, 116, 0, 0, 1345, 1346, 5, 100, 0, 0, 1346, 1347, 5, 105, 0, 0, 1347, 1348, 5, 102, 0, 0, 1348, 1349, 5, 102, 0, 0, 1349, 280, 1, 0, 0, 0, 1350, 1351, 5, 115, 0, 0, 1351, 1352, 5, 116, 0, 0, 1352, 1353, 5, 100, 0, 0, 1353, 1354, 5, 100, 0, 0, 1354, 1355, 5, 101, 0, 0, 1355, 1356, 5, 118, 0, 0, 1356, 1357, 5, 95, 0, 0, 1357, 1358, 5, 112, 0, 0, 1358, 1359, 5, 111, 0, 0, 1359, 1360, 5, 112, 0, 0, 1360, 282, 1, 0, 0, 0, 1361, 1362, 5, 115, 0, 0, 1362, 1363, 5, 116, 0, 0, 1363, 1364, 5, 100, 0, 0, 1364, 1365, 5, 100, 0, 0, 1365, 1366, 5, 101, 0, 0, 1366, 1367, 5, 118, 0, 0, 1367, 1368, 5, 95, 0, 0, 1368, 1369, 5, 115, 0, 0, 1369, 1370, 5, 97, 0, 0, 1370, 1371, 5, 109, 0, 0, 1371, 1372, 5, 112, 0, 0, 1372, 284, 1, 0, 0, 0, 1373, 1374, 5, 118, 0, 0, 1374, 1375, 5, 97, 0, 0, 1375, 1376, 5, 114, 0, 0, 1376, 1377, 5, 95, 0, 0, 1377, 1378, 5, 112, 0, 0, 1378, 1379, 5, 111, 0, 0, 1379, 1380, 5, 112, 0, 0, 1380, 286, 1, 0, 0, 0, 1381, 1382, 5, 118, 0, 0, 1382, 1383, 5, 97, 0, 0, 1383, 1384, 5, 114, 0, 0, 1384, 1385, 5, 95, 0, 0, 1385, 1386, 5, 115, 0, 0, 1386, 1387, 5, 97, 0, 0, 1387, 1388, 5, 109, 0, 0, 1388, 1389, 5, 112, 0, 0, 1389, 288, 1, 0, 0, 0, 1390, 1391, 5, 103, 0, 0, 1391, 1392, 5, 114, 0, 0, 1392, 1393, 5, 111, 0, 0, 1393, 1394, 5, 117, 0, 0, 1394, 1395, 5, 112, 0, 0, 1395, 290, 1, 0, 0, 0, 1396, 1397, 5, 101, 0, 0, 1397, 1398, 5, 120, 0, 0, 1398, 1399, 5, 99, 0, 0, 1399, 1400, 5, 101, 0, 0, 1400, 1401, 5, 112, 0, 0, 1401, 1402, 5, 116, 0, 0, 1402, 292, 1, 0, 0, 0, 1403, 1404, 5, 104, 0, 0, 1404, 1405, 5, 97, 0, 0, 1405, 1406, 5, 118, 0, 0, 1406, 1407, 5, 105, 0, 0, 1407, 1408, 5, 110, 0, 0, 1408, 1409, 5, 103, 0, 0, 1409, 294, 1, 0, 0, 0, 1410, 1411, 5, 102, 0, 0, 1411, 1412, 5, 105, 0, 0, 1412, 1413, 5, 114, 0, 0, 1413, 1414, 5, 115, 0, 0, 1414, 1415, 5, 116, 0, 0, 1415, 1416, 5, 95, 0, 0, 1416, 1417, 5, 118, 0, 0, 1417, 1418, 5, 97, 0, 0, 1418, 1419, 5, 108, 0, 0, 1419, 1420, 5, 117, 0, 0, 1420, 1421, 5, 101, 0, 0, 1421, 296, 1, 0, 0, 0, 1422, 1423, 5, 108, 0, 0, 1423, 1424, 5, 97, 0, 0, 1424, 1425, 5, 115, 0, 0, 1425, 1426, 5, 116, 0, 0, 1426, 1427, 5, 95, 0, 0, 1427, 1428, 5, 118, 0, 0, 1428, 1429, 5, 97, 0, 0, 1429, 1430, 5, 108, 0, 0, 1430, 1431, 5, 117, 0, 0, 1431, 1432, 5, 101, 0, 0, 1432, 298, 1, 0, 0, 0, 1433, 1434, 5, 108, 0, 0, 1434, 1435, 5, 97, 0, 0, 1435, 1436, 5, 103, 0, 0, 1436, 300, 1, 0, 0, 0, 1437, 1438, 5, 108, 0, 0, 1438, 1439, 5, 101, 0, 0, 1439, 1440, 5, 97, 0, 0, 1440, 1441, 5, 100, 0, 0, 1441, 302, 1, 0, 0, 0, 1442, 1443, 5, 114, 0, 0, 1443, 1444, 5, 97, 0, 0, 1444, 1445, 5, 116, 0, 0, 1445, 1446, 5, 105, 0, 0, 1446, 1447, 5, 111, 0, 0, 1447, 1448, 5, 95, 0, 0, 1448, 1449, 5, 116, 0, 0, 1449, 1450, 5, 111, 0, 0, 1450, 1451, 5, 95, 0, 0, 1451, 1452, 5, 114, 0, 0, 1452, 1453, 5, 101, 0, 0, 1453, 1454, 5, 112, 0, 0, 1454, 1455, 5, 111, 0, 0, 1455, 1456, 5, 114, 0, 0, 1456, 1457, 5, 116, 0, 0, 1457, 304, 1, 0, 0, 0, 1458, 1459, 5, 111, 0, 0, 1459, 1460, 5, 118, 0, 0, 1460, 1461, 5, 101, 0, 0, 1461, 1462, 5, 114, 0, 0, 1462, 306, 1, 0, 0, 0, 1463, 1464, 5, 112, 0, 0, 1464, 1465, 5, 114, 0, 0, 1465, 1466, 5, 101, 0, 0, 1466, 1467, 5, 99, 0, 0, 1467, 1468, 5, 101, 0, 0, 1468, 1469, 5, 100, 0, 0, 1469, 1470, 5, 105, 0, 0, 1470, 1471, 5, 110, 0, 0, 1471, 1472, 5, 103, 0, 0, 1472, 308, 1, 0, 0, 0, 1473, 1474, 5, 102, 0, 0, 1474, 1475, 5, 111, 0, 0, 1475, 1476, 5, 108, 0, 0, 1476, 1477, 5, 108, 0, 0, 1477, 1478, 5, 111, 0, 0, 1478, 1479, 5, 119, 0, 0, 1479, 1480, 5, 105, 0, 0, 1480, 1481, 5, 110, 0, 0, 1481, 1482, 5, 103, 0, 0, 1482, 310, 1, 0, 0, 0, 1483, 1484, 5, 117, 0, 0, 1484, 1485, 5, 110, 0, 0, 1485, 1486, 5, 98, 0, 0, 1486, 1487, 5, 111, 0, 0, 1487, 1488, 5, 117, 0, 0, 1488, 1489, 5, 110, 0, 0, 1489, 1490, 5, 100, 0, 0, 1490, 1491, 5, 101, 0, 0, 1491, 1492, 5, 100, 0, 0, 1492, 312, 1, 0, 0, 0, 1493, 1494, 5, 112, 0, 0, 1494, 1495, 5, 97, 0, 0, 1495, 1496, 5, 114, 0, 0, 1496, 1497, 5, 116, 0, 0, 1497, 1498, 5, 105, 0, 0, 1498, 1499, 5, 116, 0, 0, 1499, 1500, 5, 105, 0, 0, 1500, 1501, 5, 111, 0, 0, 1501, 1502, 5, 110, 0, 0, 1502, 314, 1, 0, 0, 0, 1503, 1504, 5, 114, 0, 0, 1504, 1505, 5, 111, 0, 0, 1505, 1506, 5, 119, 0, 0, 1506, 1507, 5, 115, 0, 0, 1507, 316, 1, 0, 0, 0, 1508, 1509, 5, 114, 0, 0, 1509, 1510, 5, 97, 0, 0, 1510, 1511, 5, 110, 0, 0, 1511, 1512, 5, 103, 0, 0, 1512, 1513, 5, 101, 0, 0, 1513, 318, 1, 0, 0, 0, 1514, 1515, 5, 99, 0, 0, 1515, 1516, 5, 117, 0, 0, 1516, 1517, 5, 114, 0, 0, 1517, 1518, 5, 114, 0, 0, 1518, 1519, 5, 101, 0, 0, 1519, 1520, 5, 110, 0, 0, 1520, 1521, 5, 116, 0, 0, 1521, 320, 1, 0, 0, 0, 1522, 1523, 5, 118, 0, 0, 1523, 1524, 5, 97, 0, 0, 1524, 1525, 5, 108, 0, 0, 1525, 1526, 5, 105, 0, 0, 1526, 1527, 5, 100, 0, 0, 1527, 322, 1, 0, 0, 0, 1528, 1529, 5, 102, 0, 0, 1529, 1530, 5, 105, 0, 0, 1530, 1531, 5, 108, 0, 0, 1531, 1532, 5, 108, 0, 0, 1532, 1533, 5, 95, 0, 0, 1533, 1534, 5, 116, 0, 0, 1534, 1535, 5, 105, 0, 0, 1535, 1536, 5, 109, 0, 0, 1536, 1537, 5, 101, 0, 0, 1537, 1538, 5, 95, 0, 0, 1538, 1539, 5, 115, 0, 0, 1539, 1540, 5, 101, 0, 0, 1540, 1541, 5, 114, 0, 0, 1541, 1542, 5, 105, 0, 0, 1542, 1543, 5, 101, 0, 0, 1543, 1544, 5, 115, 0, 0, 1544, 324, 1, 0, 0, 0, 1545, 1546, 5, 102, 0, 0, 1546, 1547, 5, 108, 0, 0, 1547, 1548, 5, 111, 0, 0, 1548, 1549, 5, 119, 0, 0, 1549, 1550, 5, 95, 0, 0, 1550, 1551, 5, 116, 0, 0, 1551, 1552, 5, 111, 0, 0, 1552, 1553, 5, 95, 0, 0, 1553, 1554, 5, 115, 0, 0, 1554, 1555, 5, 116, 0, 0, 1555, 1556, 5, 111, 0, 0, 1556, 1557, 5, 99, 0, 0, 1557, 1558, 5, 107, 0, 0, 1558, 326, 1, 0, 0, 0, 1559, 1560, 5, 115, 0, 0, 1560, 1561, 5, 116, 0, 0, 1561, 1562, 5, 111, 0, 0, 1562, 1563, 5, 99, 0, 0, 1563, 1564, 5, 107, 0, 0, 1564, 1565, 5, 95, 0, 0, 1565, 1566, 5, 116, 0, 0, 1566, 1567, 5, 111, 0, 0, 1567, 1568, 5, 95, 0, 0, 1568, 1569, 5, 102, 0, 0, 1569, 1570, 5, 108, 0, 0, 1570, 1571, 5, 111, 0, 0, 1571, 1572, 5, 119, 0, 0, 1572, 328, 1, 0, 0, 0, 1573, 1574, 5, 116, 0, 0, 1574, 1575, 5, 105, 0, 0, 1575, 1576, 5, 109, 0, 0, 1576, 1577, 5, 101, 0, 0, 1577, 1578, 5, 115, 0, 0, 1578, 1579, 5, 104, 0, 0, 1579, 1580, 5, 105, 0, 0, 1580, 1581, 5, 102, 0, 0, 1581, 1582, 5, 116, 0, 0, 1582, 330, 1, 0, 0, 0, 1583, 1584, 5, 109, 0, 0, 1584, 1585, 5, 101, 0, 0, 1585, 1586, 5, 97, 0, 0, 1586, 1587, 5, 115, 0, 0, 1587, 1588, 5, 117, 0, 0, 1588, 1589, 5, 114, 0, 0, 1589, 1590, 5, 101, 0, 0, 1590, 1591, 5, 115, 0, 0, 1591, 332, 1, 0, 0, 0, 1592, 1593, 5, 110, 0, 0, 1593, 1594, 5, 111, 0, 0, 1594, 1595, 5, 95, 0, 0, 1595, 1596, 5, 109, 0, 0, 1596, 1597, 5, 101, 0, 0, 1597, 1598, 5, 97, 0, 0, 1598, 1599, 5, 115, 0, 0, 1599, 1600, 5, 117, 0, 0, 1600, 1601, 5, 114, 0, 0, 1601, 1602, 5, 101, 0, 0, 1602, 1603, 5, 115, 0, 0, 1603, 334, 1, 0, 0, 0, 1604, 1605, 5, 99, 0, 0, 1605, 1606, 5, 111, 0, 0, 1606, 1607, 5, 110, 0, 0, 1607, 1608, 5, 100, 0, 0, 1608, 1609, 5, 105, 0, 0, 1609, 1610, 5, 116, 0, 0, 1610, 1611, 5, 105, 0, 0, 1611, 1612, 5, 111, 0, 0, 1612, 1613, 5, 110, 0, 0, 1613, 336, 1, 0, 0, 0, 1614, 1615, 5, 98, 0, 0, 1615, 1616, 5, 111, 0, 0, 1616, 1617, 5, 111, 0, 0, 1617, 1618, 5, 108, 0, 0, 1618, 1619, 5, 101, 0, 0, 1619, 1620, 5, 97, 0, 0, 1620, 1621, 5, 110, 0, 0, 1621, 338, 1, 0, 0, 0, 1622, 1623, 5, 100, 0, 0, 1623, 1624, 5, 97, 0, 0, 1624, 1625, 5, 116, 0, 0, 1625, 1626, 5, 101, 0, 0, 1626, 340, 1, 0, 0, 0, 1627, 1628, 5, 116, 0, 0, 1628, 1629, 5, 105, 0, 0, 1629, 1630, 5, 109, 0, 0, 1630, 1631, 5, 101, 0, 0, 1631, 1632, 5, 95, 0, 0, 1632, 1633, 5, 112, 0, 0, 1633, 1634, 5, 101, 0, 0, 1634, 1635, 5, 114, 0, 0, 1635, 1636, 5, 105, 0, 0, 1636, 1637, 5, 111, 0, 0, 1637, 1638, 5, 100, 0, 0, 1638, 342, 1, 0, 0, 0, 1639, 1640, 5, 110, 0, 0, 1640, 1641, 5, 117, 0, 0, 1641, 1642, 5, 109, 0, 0, 1642, 1643, 5, 98, 0, 0, 1643, 1644, 5, 101, 0, 0, 1644, 1645, 5, 114, 0, 0, 1645, 344, 1, 0, 0, 0, 1646, 1647, 5, 115, 0, 0, 1647, 1648, 5, 116, 0, 0, 1648, 1649, 5, 114, 0, 0, 1649, 1650, 5, 105, 0, 0, 1650, 1651, 5, 110, 0, 0, 1651, 1652, 5, 103, 0, 0, 1652, 346, 1, 0, 0, 0, 1653, 1654, 5, 116, 0, 0, 1654, 1655, 5, 105, 0, 0, 1655, 1656, 5, 109, 0, 0, 1656, 1657, 5, 101, 0, 0, 1657, 348, 1, 0, 0, 0, 1658, 1659, 5, 105, 0, 0, 1659, 1660, 5, 110, 0, 0, 1660, 1661, 5, 116, 0, 0, 1661, 1662, 5, 101, 0, 0, 1662, 1663, 5, 103, 0, 0, 1663, 1664, 5, 101, 0, 0, 1664, 1665, 5, 114, 0, 0, 1665, 350, 1, 0, 0, 0, 1666, 1667, 5, 102, 0, 0, 1667, 1668, 5, 108, 0, 0, 1668, 1669, 5, 111, 0, 0, 1669, 1670, 5, 97, 0, 0, 1670, 1671, 5, 116, 0, 0, 1671, 352, 1, 0, 0, 0, 1672, 1673, 5, 108, 0, 0, 1673, 1674, 5, 105, 0, 0, 1674, 1675, 5, 115, 0, 0, 1675, 1676, 5, 116, 0, 0, 1676, 354, 1, 0, 0, 0, 1677, 1678, 5, 114, 0, 0, 1678, 1679, 5, 101, 0, 0, 1679, 1680, 5, 99, 0, 0, 1680, 1681, 5, 111, 0, 0, 1681, 1682, 5, 114, 0, 0, 1682, 1683, 5, 100, 0, 0, 1683, 356, 1, 0, 0, 0, 1684, 1685, 5, 114, 0, 0, 1685, 1686, 5, 101, 0, 0, 1686, 1687, 5, 115, 0, 0, 1687, 1688, 5, 116, 0, 0, 1688, 1689, 5, 114, 0, 0, 1689, 1690, 5, 105, 0, 0, 1690, 1691, 5, 99, 0, 0, 1691, 1692, 5, 116, 0, 0, 1692, 358, 1, 0, 0, 0, 1693, 1694, 5, 121, 0, 0, 1694, 1695, 5, 121, 0, 0, 1695, 1696, 5, 121, 0, 0, 1696, 1697, 5, 121, 0, 0, 1697, 360, 1, 0, 0, 0, 1698, 1699, 5, 109, 0, 0, 1699, 1700, 5, 109, 0, 0, 1700, 362, 1, 0, 0, 0, 1701, 1702, 5, 100, 0, 0, 1702, 1703, 5, 100, 0, 0, 1703, 364, 1, 0, 0, 0, 1704, 1705, 5, 109, 0, 0, 1705, 1706, 5, 97, 0, 0, 1706, 1707, 5, 120, 0, 0, 1707, 1708, 5, 76, 0, 0, 1708, 1709, 5, 101, 0, 0, 1709, 1710, 5, 110, 0, 0, 1710, 1711, 5, 103, 0, 0, 1711, 1712, 5, 116, 0, 0, 1712, 1713, 5, 104, 0, 0, 1713, 366, 1, 0, 0, 0, 1714, 1715, 5, 114, 0, 0, 1715, 1716, 5, 101, 0, 0, 1716, 1717, 5, 103, 0, 0, 1717, 1718, 5, 101, 0, 0, 1718, 1719, 5, 120, 0, 0, 1719, 1720, 5, 112, 0, 0, 1720, 368, 1, 0, 0, 0, 1721, 1722, 5, 105, 0, 0, 1722, 1723, 5, 115, 0, 0, 1723, 370, 1, 0, 0, 0, 1724, 1725, 5, 119, 0, 0, 1725, 1726, 5, 104, 0, 0, 1726, 1727, 5, 101, 0, 0, 1727, 1728, 5, 110, 0, 0, 1728, 372, 1, 0, 0, 0, 1729, 1730, 5, 102, 0, 0, 1730, 1731, 5, 114, 0, 0, 1731, 1732, 5, 111, 0, 0, 1732, 1733, 5, 109, 0, 0, 1733, 374, 1, 0, 0, 0, 1734, 1735, 5, 97, 0, 0, 1735, 1736, 5, 103, 0, 0, 1736, 1737, 5, 103, 0, 0, 1737, 1738, 5, 114, 0, 0, 1738, 1739, 5, 101, 0, 0, 1739, 1740, 5, 103, 0, 0, 1740, 1741, 5, 97, 0, 0, 1741, 1742, 5, 116, 0, 0, 1742, 1743, 5, 101, 0, 0, 1743, 1744, 5, 115, 0, 0, 1744, 376, 1, 0, 0, 0, 1745, 1746, 5, 112, 0, 0, 1746, 1747, 5, 111, 0, 0, 1747, 1748, 5, 105, 0, 0, 1748, 1749, 5, 110, 0, 0, 1749, 1750, 5, 116, 0, 0, 1750, 1751, 5, 115, 0, 0, 1751, 378, 1, 0, 0, 0, 1752, 1753, 5, 112, 0, 0, 1753, 1754, 5, 111, 0, 0, 1754, 1755, 5, 105, 0, 0, 1755, 1756, 5, 110, 0, 0, 1756, 1757, 5, 116, 0, 0, 1757, 380, 1, 0, 0, 0, 1758, 1759, 5, 116, 0, 0, 1759, 1760, 5, 111, 0, 0, 1760, 1761, 5, 116, 0, 0, 1761, 1762, 5, 97, 0, 0, 1762, 1763, 5, 108, 0, 0, 1763, 382, 1, 0, 0, 0, 1764, 1765, 5, 112, 0, 0, 1765, 1766, 5, 97, 0, 0, 1766, 1767, 5, 114, 0, 0, 1767, 1768, 5, 116, 0, 0, 1768, 1769, 5, 105, 0, 0, 1769, 1770, 5, 97, 0, 0, 1770, 1771, 5, 108, 0, 0, 1771, 384, 1, 0, 0, 0, 1772, 1773, 5, 97, 0, 0, 1773, 1774, 5, 108, 0, 0, 1774, 1775, 5, 119, 0, 0, 1775, 1776, 5, 97, 0, 0, 1776, 1777, 5, 121, 0, 0, 1777, 1778, 5, 115, 0, 0, 1778, 386, 1, 0, 0, 0, 1779, 1780, 5, 105, 0, 0, 1780, 1781, 5, 110, 0, 0, 1781, 1782, 5, 110, 0, 0, 1782, 1783, 5, 101, 0, 0, 1783, 1784, 5, 114, 0, 0, 1784, 1785, 5, 95, 0, 0, 1785, 1786, 5, 106, 0, 0, 1786, 1787, 5, 111, 0, 0, 1787, 1788, 5, 105, 0, 0, 1788, 1789, 5, 110, 0, 0, 1789, 388, 1, 0, 0, 0, 1790, 1791, 5, 108, 0, 0, 1791, 1792, 5, 101, 0, 0, 1792, 1793, 5, 102, 0, 0, 1793, 1794, 5, 116, 0, 0, 1794, 1795, 5, 95, 0, 0, 1795, 1796, 5, 106, 0, 0, 1796, 1797, 5, 111, 0, 0, 1797, 1798, 5, 105, 0, 0, 1798, 1799, 5, 110, 0, 0, 1799, 390, 1, 0, 0, 0, 1800, 1801, 5, 99, 0, 0, 1801, 1802, 5, 114, 0, 0, 1802, 1803, 5, 111, 0, 0, 1803, 1804, 5, 115, 0, 0, 1804, 1805, 5, 115, 0, 0, 1805, 1806, 5, 95, 0, 0, 1806, 1807, 5, 106, 0, 0, 1807, 1808, 5, 111, 0, 0, 1808, 1809, 5, 105, 0, 0, 1809, 1810, 5, 110, 0, 0, 1810, 392, 1, 0, 0, 0, 1811, 1812, 5, 102, 0, 0, 1812, 1813, 5, 117, 0, 0, 1813, 1814, 5, 108, 0, 0, 1814, 1815, 5, 108, 0, 0, 1815, 1816, 5, 95, 0, 0, 1816, 1817, 5, 106, 0, 0, 1817, 1818, 5, 111, 0, 0, 1818, 1819, 5, 105, 0, 0, 1819, 1820, 5, 110, 0, 0, 1820, 394, 1, 0, 0, 0, 1821, 1822, 5, 109, 0, 0, 1822, 1823, 5, 97, 0, 0, 1823, 1824, 5, 112, 0, 0, 1824, 1825, 5, 115, 0, 0, 1825, 1826, 5, 95, 0, 0, 1826, 1827, 5, 102, 0, 0, 1827, 1828, 5, 114, 0, 0, 1828, 1829, 5, 111, 0, 0, 1829, 1830, 5, 109, 0, 0, 1830, 396, 1, 0, 0, 0, 1831, 1832, 5, 109, 0, 0, 1832, 1833, 5, 97, 0, 0, 1833, 1834, 5, 112, 0, 0, 1834, 1835, 5, 115, 0, 0, 1835, 1836, 5, 95, 0, 0, 1836, 1837, 5, 116, 0, 0, 1837, 1838, 5, 111, 0, 0, 1838, 398, 1, 0, 0, 0, 1839, 1840, 5, 109, 0, 0, 1840, 1841, 5, 97, 0, 0, 1841, 1842, 5, 112, 0, 0, 1842, 1843, 5, 95, 0, 0, 1843, 1844, 5, 116, 0, 0, 1844, 1845, 5, 111, 0, 0, 1845, 400, 1, 0, 0, 0, 1846, 1847, 5, 109, 0, 0, 1847, 1848, 5, 97, 0, 0, 1848, 1849, 5, 112, 0, 0, 1849, 1850, 5, 95, 0, 0, 1850, 1851, 5, 102, 0, 0, 1851, 1852, 5, 114, 0, 0, 1852, 1853, 5, 111, 0, 0, 1853, 1854, 5, 109, 0, 0, 1854, 402, 1, 0, 0, 0, 1855, 1856, 5, 114, 0, 0, 1856, 1857, 5, 101, 0, 0, 1857, 1858, 5, 116, 0, 0, 1858, 1859, 5, 117, 0, 0, 1859, 1860, 5, 114, 0, 0, 1860, 1861, 5, 110, 0, 0, 1861, 1862, 5, 115, 0, 0, 1862, 404, 1, 0, 0, 0, 1863, 1864, 5, 112, 0, 0, 1864, 1865, 5, 105, 0, 0, 1865, 1866, 5, 118, 0, 0, 1866, 1867, 5, 111, 0, 0, 1867, 1868, 5, 116, 0, 0, 1868, 406, 1, 0, 0, 0, 1869, 1870, 5, 99, 0, 0, 1870, 1871, 5, 117, 0, 0, 1871, 1872, 5, 115, 0, 0, 1872, 1873, 5, 116, 0, 0, 1873, 1874, 5, 111, 0, 0, 1874, 1875, 5, 109, 0, 0, 1875, 1876, 5, 80, 0, 0, 1876, 1877, 5, 105, 0, 0, 1877, 1878, 5, 118, 0, 0, 1878, 1879, 5, 111, 0, 0, 1879, 1880, 5, 116, 0, 0, 1880, 408, 1, 0, 0, 0, 1881, 1882, 5, 117, 0, 0, 1882, 1883, 5, 110, 0, 0, 1883, 1884, 5, 112, 0, 0, 1884, 1885, 5, 105, 0, 0, 1885, 1886, 5, 118, 0, 0, 1886, 1887, 5, 111, 0, 0, 1887, 1888, 5, 116, 0, 0, 1888, 410, 1, 0, 0, 0, 1889, 1890, 5, 115, 0, 0, 1890, 1891, 5, 117, 0, 0, 1891, 1892, 5, 98, 0, 0, 1892, 412, 1, 0, 0, 0, 1893, 1894, 5, 97, 0, 0, 1894, 1895, 5, 112, 0, 0, 1895, 1896, 5, 112, 0, 0, 1896, 1897, 5, 108, 0, 0, 1897, 1898, 5, 121, 0, 0, 1898, 414, 1, 0, 0, 0, 1899, 1900, 5, 99, 0, 0, 1900, 1901, 5, 111, 0, 0, 1901, 1902, 5, 110, 0, 0, 1902, 1903, 5, 100, 0, 0, 1903, 1904, 5, 105, 0, 0, 1904, 1905, 5, 116, 0, 0, 1905, 1906, 5, 105, 0, 0, 1906, 1907, 5, 111, 0, 0, 1907, 1908, 5, 110, 0, 0, 1908, 1909, 5, 101, 0, 0, 1909, 1910, 5, 100, 0, 0, 1910, 416, 1, 0, 0, 0, 1911, 1912, 5, 112, 0, 0, 1912, 1913, 5, 101, 0, 0, 1913, 1914, 5, 114, 0, 0, 1914, 1915, 5, 105, 0, 0, 1915, 1916, 5, 111, 0, 0, 1916, 1917, 5, 100, 0, 0, 1917, 1918, 5, 95, 0, 0, 1918, 1919, 5, 105, 0, 0, 1919, 1920, 5, 110, 0, 0, 1920, 1921, 5, 100, 0, 0, 1921, 1922, 5, 105, 0, 0, 1922, 1923, 5, 99, 0, 0, 1923, 1924, 5, 97, 0, 0, 1924, 1925, 5, 116, 0, 0, 1925, 1926, 5, 111, 0, 0, 1926, 1927, 5, 114, 0, 0, 1927, 418, 1, 0, 0, 0, 1928, 1929, 5, 115, 0, 0, 1929, 1930, 5, 105, 0, 0, 1930, 1931, 5, 110, 0, 0, 1931, 1932, 5, 103, 0, 0, 1932, 1933, 5, 108, 0, 0, 1933, 1934, 5, 101, 0, 0, 1934, 420, 1, 0, 0, 0, 1935, 1936, 5, 100, 0, 0, 1936, 1937, 5, 117, 0, 0, 1937, 1938, 5, 114, 0, 0, 1938, 1939, 5, 97, 0, 0, 1939, 1940, 5, 116, 0, 0, 1940, 1941, 5, 105, 0, 0, 1941, 1942, 5, 111, 0, 0, 1942, 1943, 5, 110, 0, 0, 1943, 422, 1, 0, 0, 0, 1944, 1945, 5, 116, 0, 0, 1945, 1946, 5, 105, 0, 0, 1946, 1947, 5, 109, 0, 0, 1947, 1948, 5, 101, 0, 0, 1948, 1949, 5, 95, 0, 0, 1949, 1950, 5, 97, 0, 0, 1950, 1951, 5, 103, 0, 0, 1951, 1952, 5, 103, 0, 0, 1952, 424, 1, 0, 0, 0, 1953, 1954, 5, 117, 0, 0, 1954, 1955, 5, 110, 0, 0, 1955, 1956, 5, 105, 0, 0, 1956, 1957, 5, 116, 0, 0, 1957, 426, 1, 0, 0, 0, 1958, 1959, 5, 86, 0, 0, 1959, 1960, 5, 97, 0, 0, 1960, 1961, 5, 108, 0, 0, 1961, 1962, 5, 117, 0, 0, 1962, 1963, 5, 101, 0, 0, 1963, 428, 1, 0, 0, 0, 1964, 1965, 5, 118, 0, 0, 1965, 1966, 5, 97, 0, 0, 1966, 1967, 5, 108, 0, 0, 1967, 1968, 5, 117, 0, 0, 1968, 1969, 5, 101, 0, 0, 1969, 1970, 5, 100, 0, 0, 1970, 1971, 5, 111, 0, 0, 1971, 1972, 5, 109, 0, 0, 1972, 1973, 5, 97, 0, 0, 1973, 1974, 5, 105, 0, 0, 1974, 1975, 5, 110, 0, 0, 1975, 1976, 5, 115, 0, 0, 1976, 430, 1, 0, 0, 0, 1977, 1978, 5, 118, 0, 0, 1978, 1979, 5, 97, 0, 0, 1979, 1980, 5, 114, 0, 0, 1980, 1981, 5, 105, 0, 0, 1981, 1982, 5, 97, 0, 0, 1982, 1983, 5, 98, 0, 0, 1983, 1984, 5, 108, 0, 0, 1984, 1985, 5, 101, 0, 0, 1985, 1986, 5, 115, 0, 0, 1986, 432, 1, 0, 0, 0, 1987, 1988, 5, 105, 0, 0, 1988, 1989, 5, 110, 0, 0, 1989, 1990, 5, 112, 0, 0, 1990, 1991, 5, 117, 0, 0, 1991, 1992, 5, 116, 0, 0, 1992, 434, 1, 0, 0, 0, 1993, 1994, 5, 111, 0, 0, 1994, 1995, 5, 117, 0, 0, 1995, 1996, 5, 116, 0, 0, 1996, 1997, 5, 112, 0, 0, 1997, 1998, 5, 117, 0, 0, 1998, 1999, 5, 116, 0, 0, 1999, 436, 1, 0, 0, 0, 2000, 2001, 5, 99, 0, 0, 2001, 2002, 5, 97, 0, 0, 2002, 2003, 5, 115, 0, 0, 2003, 2004, 5, 116, 0, 0, 2004, 438, 1, 0, 0, 0, 2005, 2006, 5, 114, 0, 0, 2006, 2007, 5, 117, 0, 0, 2007, 2008, 5, 108, 0, 0, 2008, 2009, 5, 101, 0, 0, 2009, 2010, 5, 95, 0, 0, 2010, 2011, 5, 112, 0, 0, 2011, 2012, 5, 114, 0, 0, 2012, 2013, 5, 105, 0, 0, 2013, 2014, 5, 111, 0, 0, 2014, 2015, 5, 114, 0, 0, 2015, 2016, 5, 105, 0, 0, 2016, 2017, 5, 116, 0, 0, 2017, 2018, 5, 121, 0, 0, 2018, 440, 1, 0, 0, 0, 2019, 2020, 5, 100, 0, 0, 2020, 2021, 5, 97, 0, 0, 2021, 2022, 5, 116, 0, 0, 2022, 2023, 5, 97, 0, 0, 2023, 2024, 5, 115, 0, 0, 2024, 2025, 5, 101, 0, 0, 2025, 2026, 5, 116, 0, 0, 2026, 2027, 5, 95, 0, 0, 2027, 2028, 5, 112, 0, 0, 2028, 2029, 5, 114, 0, 0, 2029, 2030, 5, 105, 0, 0, 2030, 2031, 5, 111, 0, 0, 2031, 2032, 5, 114, 0, 0, 2032, 2033, 5, 105, 0, 0, 2033, 2034, 5, 116, 0, 0, 2034, 2035, 5, 121, 0, 0, 2035, 442, 1, 0, 0, 0, 2036, 2037, 5, 100, 0, 0, 2037, 2038, 5, 101, 0, 0, 2038, 2039, 5, 102, 0, 0, 2039, 2040, 5, 97, 0, 0, 2040, 2041, 5, 117, 0, 0, 2041, 2042, 5, 108, 0, 0, 2042, 2043, 5, 116, 0, 0, 2043, 444, 1, 0, 0, 0, 2044, 2045, 5, 99, 0, 0, 2045, 2046, 5, 104, 0, 0, 2046, 2047, 5, 101, 0, 0, 2047, 2048, 5, 99, 0, 0, 2048, 2049, 5, 107, 0, 0, 2049, 2050, 5, 95, 0, 0, 2050, 2051, 5, 100, 0, 0, 2051, 2052, 5, 97, 0, 0, 2052, 2053, 5, 116, 0, 0, 2053, 2054, 5, 97, 0, 0, 2054, 2055, 5, 112, 0, 0, 2055, 2056, 5, 111, 0, 0, 2056, 2057, 5, 105, 0, 0, 2057, 2058, 5, 110, 0, 0, 2058, 2059, 5, 116, 0, 0, 2059, 446, 1, 0, 0, 0, 2060, 2061, 5, 99, 0, 0, 2061, 2062, 5, 104, 0, 0, 2062, 2063, 5, 101, 0, 0, 2063, 2064, 5, 99, 0, 0, 2064, 2065, 5, 107, 0, 0, 2065, 2066, 5, 95, 0, 0, 2066, 2067, 5, 104, 0, 0, 2067, 2068, 5, 105, 0, 0, 2068, 2069, 5, 101, 0, 0, 2069, 2070, 5, 114, 0, 0, 2070, 2071, 5, 97, 0, 0, 2071, 2072, 5, 114, 0, 0, 2072, 2073, 5, 99, 0, 0, 2073, 2074, 5, 104, 0, 0, 2074, 2075, 5, 121, 0, 0, 2075, 448, 1, 0, 0, 0, 2076, 2077, 5, 99, 0, 0, 2077, 2078, 5, 111, 0, 0, 2078, 2079, 5, 109, 0, 0, 2079, 2080, 5, 112, 0, 0, 2080, 2081, 5, 117, 0, 0, 2081, 2082, 5, 116, 0, 0, 2082, 2083, 5, 101, 0, 0, 2083, 2084, 5, 100, 0, 0, 2084, 450, 1, 0, 0, 0, 2085, 2086, 5, 110, 0, 0, 2086, 2087, 5, 111, 0, 0, 2087, 2088, 5, 110, 0, 0, 2088, 2089, 5, 95, 0, 0, 2089, 2090, 5, 110, 0, 0, 2090, 2091, 5, 117, 0, 0, 2091, 2092, 5, 108, 0, 0, 2092, 2093, 5, 108, 0, 0, 2093, 452, 1, 0, 0, 0, 2094, 2095, 5, 110, 0, 0, 2095, 2096, 5, 111, 0, 0, 2096, 2097, 5, 110, 0, 0, 2097, 2098, 5, 95, 0, 0, 2098, 2099, 5, 122, 0, 0, 2099, 2100, 5, 101, 0, 0, 2100, 2101, 5, 114, 0, 0, 2101, 2102, 5, 111, 0, 0, 2102, 454, 1, 0, 0, 0, 2103, 2104, 5, 112, 0, 0, 2104, 2105, 5, 97, 0, 0, 2105, 2106, 5, 114, 0, 0, 2106, 2107, 5, 116, 0, 0, 2107, 2108, 5, 105, 0, 0, 2108, 2109, 5, 97, 0, 0, 2109, 2110, 5, 108, 0, 0, 2110, 2111, 5, 95, 0, 0, 2111, 2112, 5, 110, 0, 0, 2112, 2113, 5, 117, 0, 0, 2113, 2114, 5, 108, 0, 0, 2114, 2115, 5, 108, 0, 0, 2115, 456, 1, 0, 0, 0, 2116, 2117, 5, 112, 0, 0, 2117, 2118, 5, 97, 0, 0, 2118, 2119, 5, 114, 0, 0, 2119, 2120, 5, 116, 0, 0, 2120, 2121, 5, 105, 0, 0, 2121, 2122, 5, 97, 0, 0, 2122, 2123, 5, 108, 0, 0, 2123, 2124, 5, 95, 0, 0, 2124, 2125, 5, 122, 0, 0, 2125, 2126, 5, 101, 0, 0, 2126, 2127, 5, 114, 0, 0, 2127, 2128, 5, 111, 0, 0, 2128, 458, 1, 0, 0, 0, 2129, 2130, 5, 97, 0, 0, 2130, 2131, 5, 108, 0, 0, 2131, 2132, 5, 119, 0, 0, 2132, 2133, 5, 97, 0, 0, 2133, 2134, 5, 121, 0, 0, 2134, 2135, 5, 115, 0, 0, 2135, 2136, 5, 95, 0, 0, 2136, 2137, 5, 110, 0, 0, 2137, 2138, 5, 117, 0, 0, 2138, 2139, 5, 108, 0, 0, 2139, 2140, 5, 108, 0, 0, 2140, 460, 1, 0, 0, 0, 2141, 2142, 5, 97, 0, 0, 2142, 2143, 5, 108, 0, 0, 2143, 2144, 5, 119, 0, 0, 2144, 2145, 5, 97, 0, 0, 2145, 2146, 5, 121, 0, 0, 2146, 2147, 5, 115, 0, 0, 2147, 2148, 5, 95, 0, 0, 2148, 2149, 5, 122, 0, 0, 2149, 2150, 5, 101, 0, 0, 2150, 2151, 5, 114, 0, 0, 2151, 2152, 5, 111, 0, 0, 2152, 462, 1, 0, 0, 0, 2153, 2154, 5, 99, 0, 0, 2154, 2155, 5, 111, 0, 0, 2155, 2156, 5, 109, 0, 0, 2156, 2157, 5, 112, 0, 0, 2157, 2158, 5, 111, 0, 0, 2158, 2159, 5, 110, 0, 0, 2159, 2160, 5, 101, 0, 0, 2160, 2161, 5, 110, 0, 0, 2161, 2162, 5, 116, 0, 0, 2162, 2163, 5, 115, 0, 0, 2163, 464, 1, 0, 0, 0, 2164, 2165, 5, 97, 0, 0, 2165, 2166, 5, 108, 0, 0, 2166, 2167, 5, 108, 0, 0, 2167, 2168, 5, 95, 0, 0, 2168, 2169, 5, 109, 0, 0, 2169, 2170, 5, 101, 0, 0, 2170, 2171, 5, 97, 0, 0, 2171, 2172, 5, 115, 0, 0, 2172, 2173, 5, 117, 0, 0, 2173, 2174, 5, 114, 0, 0, 2174, 2175, 5, 101, 0, 0, 2175, 2176, 5, 115, 0, 0, 2176, 466, 1, 0, 0, 0, 2177, 2178, 5, 115, 0, 0, 2178, 2179, 5, 99, 0, 0, 2179, 2180, 5, 97, 0, 0, 2180, 2181, 5, 108, 0, 0, 2181, 2182, 5, 97, 0, 0, 2182, 2183, 5, 114, 0, 0, 2183, 468, 1, 0, 0, 0, 2184, 2185, 5, 99, 0, 0, 2185, 2186, 5, 111, 0, 0, 2186, 2187, 5, 109, 0, 0, 2187, 2188, 5, 112, 0, 0, 2188, 2189, 5, 111, 0, 0, 2189, 2190, 5, 110, 0, 0, 2190, 2191, 5, 101, 0, 0, 2191, 2192, 5, 110, 0, 0, 2192, 2193, 5, 116, 0, 0, 2193, 470, 1, 0, 0, 0, 2194, 2195, 5, 100, 0, 0, 2195, 2196, 5, 97, 0, 0, 2196, 2197, 5, 116, 0, 0, 2197, 2198, 5, 97, 0, 0, 2198, 2199, 5, 112, 0, 0, 2199, 2200, 5, 111, 0, 0, 2200, 2201, 5, 105, 0, 0, 2201, 2202, 5, 110, 0, 0, 2202, 2203, 5, 116, 0, 0, 2203, 2204, 5, 95, 0, 0, 2204, 2205, 5, 111, 0, 0, 2205, 2206, 5, 110, 0, 0, 2206, 2207, 5, 95, 0, 0, 2207, 2208, 5, 118, 0, 0, 2208, 2209, 5, 97, 0, 0, 2209, 2210, 5, 108, 0, 0, 2210, 2211, 5, 117, 0, 0, 2211, 2212, 5, 101, 0, 0, 2212, 2213, 5, 100, 0, 0, 2213, 2214, 5, 111, 0, 0, 2214, 2215, 5, 109, 0, 0, 2215, 2216, 5, 97, 0, 0, 2216, 2217, 5, 105, 0, 0, 2217, 2218, 5, 110, 0, 0, 2218, 2219, 5, 115, 0, 0, 2219, 472, 1, 0, 0, 0, 2220, 2221, 5, 100, 0, 0, 2221, 2222, 5, 97, 0, 0, 2222, 2223, 5, 116, 0, 0, 2223, 2224, 5, 97, 0, 0, 2224, 2225, 5, 112, 0, 0, 2225, 2226, 5, 111, 0, 0, 2226, 2227, 5, 105, 0, 0, 2227, 2228, 5, 110, 0, 0, 2228, 2229, 5, 116, 0, 0, 2229, 2230, 5, 95, 0, 0, 2230, 2231, 5, 111, 0, 0, 2231, 2232, 5, 110, 0, 0, 2232, 2233, 5, 95, 0, 0, 2233, 2234, 5, 118, 0, 0, 2234, 2235, 5, 97, 0, 0, 2235, 2236, 5, 114, 0, 0, 2236, 2237, 5, 105, 0, 0, 2237, 2238, 5, 97, 0, 0, 2238, 2239, 5, 98, 0, 0, 2239, 2240, 5, 108, 0, 0, 2240, 2241, 5, 101, 0, 0, 2241, 2242, 5, 115, 0, 0, 2242, 474, 1, 0, 0, 0, 2243, 2244, 5, 104, 0, 0, 2244, 2245, 5, 105, 0, 0, 2245, 2246, 5, 101, 0, 0, 2246, 2247, 5, 114, 0, 0, 2247, 2248, 5, 97, 0, 0, 2248, 2249, 5, 114, 0, 0, 2249, 2250, 5, 99, 0, 0, 2250, 2251, 5, 104, 0, 0, 2251, 2252, 5, 105, 0, 0, 2252, 2253, 5, 99, 0, 0, 2253, 2254, 5, 97, 0, 0, 2254, 2255, 5, 108, 0, 0, 2255, 2256, 5, 95, 0, 0, 2256, 2257, 5, 111, 0, 0, 2257, 2258, 5, 110, 0, 0, 2258, 2259, 5, 95, 0, 0, 2259, 2260, 5, 118, 0, 0, 2260, 2261, 5, 97, 0, 0, 2261, 2262, 5, 108, 0, 0, 2262, 2263, 5, 117, 0, 0, 2263, 2264, 5, 101, 0, 0, 2264, 2265, 5, 100, 0, 0, 2265, 2266, 5, 111, 0, 0, 2266, 2267, 5, 109, 0, 0, 2267, 2268, 5, 97, 0, 0, 2268, 2269, 5, 105, 0, 0, 2269, 2270, 5, 110, 0, 0, 2270, 2271, 5, 115, 0, 0, 2271, 476, 1, 0, 0, 0, 2272, 2273, 5, 104, 0, 0, 2273, 2274, 5, 105, 0, 0, 2274, 2275, 5, 101, 0, 0, 2275, 2276, 5, 114, 0, 0, 2276, 2277, 5, 97, 0, 0, 2277, 2278, 5, 114, 0, 0, 2278, 2279, 5, 99, 0, 0, 2279, 2280, 5, 104, 0, 0, 2280, 2281, 5, 105, 0, 0, 2281, 2282, 5, 99, 0, 0, 2282, 2283, 5, 97, 0, 0, 2283, 2284, 5, 108, 0, 0, 2284, 2285, 5, 95, 0, 0, 2285, 2286, 5, 111, 0, 0, 2286, 2287, 5, 110, 0, 0, 2287, 2288, 5, 95, 0, 0, 2288, 2289, 5, 118, 0, 0, 2289, 2290, 5, 97, 0, 0, 2290, 2291, 5, 114, 0, 0, 2291, 2292, 5, 105, 0, 0, 2292, 2293, 5, 97, 0, 0, 2293, 2294, 5, 98, 0, 0, 2294, 2295, 5, 108, 0, 0, 2295, 2296, 5, 101, 0, 0, 2296, 2297, 5, 115, 0, 0, 2297, 478, 1, 0, 0, 0, 2298, 2299, 5, 115, 0, 0, 2299, 2300, 5, 101, 0, 0, 2300, 2301, 5, 116, 0, 0, 2301, 480, 1, 0, 0, 0, 2302, 2303, 5, 108, 0, 0, 2303, 2304, 5, 97, 0, 0, 2304, 2305, 5, 110, 0, 0, 2305, 2306, 5, 103, 0, 0, 2306, 2307, 5, 117, 0, 0, 2307, 2308, 5, 97, 0, 0, 2308, 2309, 5, 103, 0, 0, 2309, 2310, 5, 101, 0, 0, 2310, 482, 1, 0, 0, 0, 2311, 2312, 7, 0, 0, 0, 2312, 484, 1, 0, 0, 0, 2313, 2314, 2, 48, 57, 0, 2314, 486, 1, 0, 0, 0, 2315, 2317, 3, 27, 13, 0, 2316, 2315, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2320, 3, 485, 242, 0, 2319, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 488, 1, 0, 0, 0, 2323, 2324, 3, 487, 243, 0, 2324, 2328, 5, 46, 0, 0, 2325, 2327, 3, 487, 243, 0, 2326, 2325, 1, 0, 0, 0, 2327, 2330, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 490, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2331, 2332, 5, 116, 0, 0, 2332, 2333, 5, 114, 0, 0, 2333, 2334, 5, 117, 0, 0, 2334, 2341, 5, 101, 0, 0, 2335, 2336, 5, 102, 0, 0, 2336, 2337, 5, 97, 0, 0, 2337, 2338, 5, 108, 0, 0, 2338, 2339, 5, 115, 0, 0, 2339, 2341, 5, 101, 0, 0, 2340, 2331, 1, 0, 0, 0, 2340, 2335, 1, 0, 0, 0, 2341, 492, 1, 0, 0, 0, 2342, 2346, 5, 34, 0, 0, 2343, 2345, 8, 1, 0, 0, 2344, 2343, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2350, 5, 34, 0, 0, 2350, 494, 1, 0, 0, 0, 2351, 2355, 3, 483, 241, 0, 2352, 2354, 7, 2, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2373, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2360, 3, 485, 242, 0, 2359, 2361, 7, 2, 0, 0, 2360, 2359, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2373, 1, 0, 0, 0, 2364, 2368, 5, 39, 0, 0, 2365, 2367, 9, 0, 0, 0, 2366, 2365, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2371, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2373, 5, 39, 0, 0, 2372, 2351, 1, 0, 0, 0, 2372, 2358, 1, 0, 0, 0, 2372, 2364, 1, 0, 0, 0, 2373, 496, 1, 0, 0, 0, 2374, 2375, 7, 3, 0, 0, 2375, 498, 1, 0, 0, 0, 2376, 2378, 7, 4, 0, 0, 2377, 2376, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2382, 6, 249, 0, 0, 2382, 500, 1, 0, 0, 0, 2383, 2384, 5, 59, 0, 0, 2384, 502, 1, 0, 0, 0, 2385, 2386, 5, 47, 0, 0, 2386, 2387, 5, 42, 0, 0, 2387, 2391, 1, 0, 0, 0, 2388, 2390, 9, 0, 0, 0, 2389, 2388, 1, 0, 0, 0, 2390, 2393, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2391, 2389, 1, 0, 0, 0, 2392, 2394, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2394, 2395, 5, 42, 0, 0, 2395, 2396, 5, 47, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 6, 251, 1, 0, 2398, 504, 1, 0, 0, 0, 2399, 2400, 5, 47, 0, 0, 2400, 2401, 5, 47, 0, 0, 2401, 2405, 1, 0, 0, 0, 2402, 2404, 9, 0, 0, 0, 2403, 2402, 1, 0, 0, 0, 2404, 2407, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2409, 5, 10, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 6, 252, 1, 0, 2411, 506, 1, 0, 0, 0, 13, 0, 2316, 2321, 2328, 2340, 2346, 2355, 2362, 2368, 2372, 2379, 2391, 2405, 2, 0, 1, 0, 0, 2, 0]
\ No newline at end of file
diff --git a/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.java b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.java
new file mode 100644
index 000000000..8e386a9f7
--- /dev/null
+++ b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.java
@@ -0,0 +1,1734 @@
+// Generated from /Users/nicolaval/MS/Projects/Trevas/vtl-parser/src/main/antlr4/fr/insee/vtl/parser/VtlTokens.g4 by ANTLR 4.13.1
+package fr.insee.vtl.parser;
+import org.antlr.v4.runtime.Lexer;
+import org.antlr.v4.runtime.CharStream;
+import org.antlr.v4.runtime.Token;
+import org.antlr.v4.runtime.TokenStream;
+import org.antlr.v4.runtime.*;
+import org.antlr.v4.runtime.atn.*;
+import org.antlr.v4.runtime.dfa.DFA;
+import org.antlr.v4.runtime.misc.*;
+
+@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
+public class VtlTokens extends Lexer {
+ static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); }
+
+ protected static final DFA[] _decisionToDFA;
+ protected static final PredictionContextCache _sharedContextCache =
+ new PredictionContextCache();
+ public static final int
+ LPAREN=1, RPAREN=2, QLPAREN=3, QRPAREN=4, GLPAREN=5, GRPAREN=6, EQ=7,
+ LT=8, MT=9, ME=10, NEQ=11, LE=12, PLUS=13, MINUS=14, MUL=15, DIV=16, COMMA=17,
+ POINTER=18, COLON=19, ASSIGN=20, MEMBERSHIP=21, EVAL=22, IF=23, CASE=24,
+ THEN=25, ELSE=26, USING=27, WITH=28, CURRENT_DATE=29, DATEDIFF=30, DATEADD=31,
+ GETYEAR=32, GETMONTH=33, DAYOFMONTH=34, DAYOFYEAR=35, DAYTOYEAR=36, DAYTOMONTH=37,
+ YEARTODAY=38, MONTHTODAY=39, ON=40, DROP=41, KEEP=42, CALC=43, ATTRCALC=44,
+ RENAME=45, AS=46, AND=47, OR=48, XOR=49, NOT=50, BETWEEN=51, IN=52, NOT_IN=53,
+ NULL_CONSTANT=54, ISNULL=55, EX=56, UNION=57, DIFF=58, SYMDIFF=59, INTERSECT=60,
+ RANDOM=61, KEYS=62, INTYEAR=63, INTMONTH=64, INTDAY=65, CHECK=66, EXISTS_IN=67,
+ TO=68, RETURN=69, IMBALANCE=70, ERRORCODE=71, ALL=72, AGGREGATE=73, ERRORLEVEL=74,
+ ORDER=75, BY=76, RANK=77, ASC=78, DESC=79, MIN=80, MAX=81, FIRST=82, LAST=83,
+ INDEXOF=84, ABS=85, KEY=86, LN=87, LOG=88, TRUNC=89, ROUND=90, POWER=91,
+ MOD=92, LEN=93, CONCAT=94, TRIM=95, UCASE=96, LCASE=97, SUBSTR=98, SUM=99,
+ AVG=100, MEDIAN=101, COUNT=102, DIMENSION=103, MEASURE=104, ATTRIBUTE=105,
+ FILTER=106, MERGE=107, EXP=108, ROLE=109, VIRAL=110, CHARSET_MATCH=111,
+ TYPE=112, NVL=113, HIERARCHY=114, OPTIONAL=115, INVALID=116, LEVENSHTEIN=117,
+ VALUE_DOMAIN=118, VARIABLE=119, DATA=120, STRUCTURE=121, DATASET=122,
+ OPERATOR=123, DEFINE=124, PUT_SYMBOL=125, DATAPOINT=126, HIERARCHICAL=127,
+ RULESET=128, RULE=129, END=130, ALTER_DATASET=131, LTRIM=132, RTRIM=133,
+ INSTR=134, REPLACE=135, CEIL=136, FLOOR=137, SQRT=138, ANY=139, SETDIFF=140,
+ STDDEV_POP=141, STDDEV_SAMP=142, VAR_POP=143, VAR_SAMP=144, GROUP=145,
+ EXCEPT=146, HAVING=147, FIRST_VALUE=148, LAST_VALUE=149, LAG=150, LEAD=151,
+ RATIO_TO_REPORT=152, OVER=153, PRECEDING=154, FOLLOWING=155, UNBOUNDED=156,
+ PARTITION=157, ROWS=158, RANGE=159, CURRENT=160, VALID=161, FILL_TIME_SERIES=162,
+ FLOW_TO_STOCK=163, STOCK_TO_FLOW=164, TIMESHIFT=165, MEASURES=166, NO_MEASURES=167,
+ CONDITION=168, BOOLEAN=169, DATE=170, TIME_PERIOD=171, NUMBER=172, STRING=173,
+ TIME=174, INTEGER=175, FLOAT=176, LIST=177, RECORD=178, RESTRICT=179,
+ YYYY=180, MM=181, DD=182, MAX_LENGTH=183, REGEXP=184, IS=185, WHEN=186,
+ FROM=187, AGGREGATES=188, POINTS=189, POINT=190, TOTAL=191, PARTIAL=192,
+ ALWAYS=193, INNER_JOIN=194, LEFT_JOIN=195, CROSS_JOIN=196, FULL_JOIN=197,
+ MAPS_FROM=198, MAPS_TO=199, MAP_TO=200, MAP_FROM=201, RETURNS=202, PIVOT=203,
+ CUSTOMPIVOT=204, UNPIVOT=205, SUBSPACE=206, APPLY=207, CONDITIONED=208,
+ PERIOD_INDICATOR=209, SINGLE=210, DURATION=211, TIME_AGG=212, UNIT=213,
+ VALUE=214, VALUEDOMAINS=215, VARIABLES=216, INPUT=217, OUTPUT=218, CAST=219,
+ RULE_PRIORITY=220, DATASET_PRIORITY=221, DEFAULT=222, CHECK_DATAPOINT=223,
+ CHECK_HIERARCHY=224, COMPUTED=225, NON_NULL=226, NON_ZERO=227, PARTIAL_NULL=228,
+ PARTIAL_ZERO=229, ALWAYS_NULL=230, ALWAYS_ZERO=231, COMPONENTS=232, ALL_MEASURES=233,
+ SCALAR=234, COMPONENT=235, DATAPOINT_ON_VD=236, DATAPOINT_ON_VAR=237,
+ HIERARCHICAL_ON_VD=238, HIERARCHICAL_ON_VAR=239, SET=240, LANGUAGE=241,
+ INTEGER_CONSTANT=242, NUMBER_CONSTANT=243, BOOLEAN_CONSTANT=244, STRING_CONSTANT=245,
+ IDENTIFIER=246, TIME_UNIT=247, WS=248, EOL=249, ML_COMMENT=250, SL_COMMENT=251;
+ public static String[] channelNames = {
+ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"
+ };
+
+ public static String[] modeNames = {
+ "DEFAULT_MODE"
+ };
+
+ private static String[] makeRuleNames() {
+ return new String[] {
+ "LPAREN", "RPAREN", "QLPAREN", "QRPAREN", "GLPAREN", "GRPAREN", "EQ",
+ "LT", "MT", "ME", "NEQ", "LE", "PLUS", "MINUS", "MUL", "DIV", "COMMA",
+ "POINTER", "COLON", "ASSIGN", "MEMBERSHIP", "EVAL", "IF", "CASE", "THEN",
+ "ELSE", "USING", "WITH", "CURRENT_DATE", "DATEDIFF", "DATEADD", "GETYEAR",
+ "GETMONTH", "DAYOFMONTH", "DAYOFYEAR", "DAYTOYEAR", "DAYTOMONTH", "YEARTODAY",
+ "MONTHTODAY", "ON", "DROP", "KEEP", "CALC", "ATTRCALC", "RENAME", "AS",
+ "AND", "OR", "XOR", "NOT", "BETWEEN", "IN", "NOT_IN", "NULL_CONSTANT",
+ "ISNULL", "EX", "UNION", "DIFF", "SYMDIFF", "INTERSECT", "RANDOM", "KEYS",
+ "INTYEAR", "INTMONTH", "INTDAY", "CHECK", "EXISTS_IN", "TO", "RETURN",
+ "IMBALANCE", "ERRORCODE", "ALL", "AGGREGATE", "ERRORLEVEL", "ORDER",
+ "BY", "RANK", "ASC", "DESC", "MIN", "MAX", "FIRST", "LAST", "INDEXOF",
+ "ABS", "KEY", "LN", "LOG", "TRUNC", "ROUND", "POWER", "MOD", "LEN", "CONCAT",
+ "TRIM", "UCASE", "LCASE", "SUBSTR", "SUM", "AVG", "MEDIAN", "COUNT",
+ "DIMENSION", "MEASURE", "ATTRIBUTE", "FILTER", "MERGE", "EXP", "ROLE",
+ "VIRAL", "CHARSET_MATCH", "TYPE", "NVL", "HIERARCHY", "OPTIONAL", "INVALID",
+ "LEVENSHTEIN", "VALUE_DOMAIN", "VARIABLE", "DATA", "STRUCTURE", "DATASET",
+ "OPERATOR", "DEFINE", "PUT_SYMBOL", "DATAPOINT", "HIERARCHICAL", "RULESET",
+ "RULE", "END", "ALTER_DATASET", "LTRIM", "RTRIM", "INSTR", "REPLACE",
+ "CEIL", "FLOOR", "SQRT", "ANY", "SETDIFF", "STDDEV_POP", "STDDEV_SAMP",
+ "VAR_POP", "VAR_SAMP", "GROUP", "EXCEPT", "HAVING", "FIRST_VALUE", "LAST_VALUE",
+ "LAG", "LEAD", "RATIO_TO_REPORT", "OVER", "PRECEDING", "FOLLOWING", "UNBOUNDED",
+ "PARTITION", "ROWS", "RANGE", "CURRENT", "VALID", "FILL_TIME_SERIES",
+ "FLOW_TO_STOCK", "STOCK_TO_FLOW", "TIMESHIFT", "MEASURES", "NO_MEASURES",
+ "CONDITION", "BOOLEAN", "DATE", "TIME_PERIOD", "NUMBER", "STRING", "TIME",
+ "INTEGER", "FLOAT", "LIST", "RECORD", "RESTRICT", "YYYY", "MM", "DD",
+ "MAX_LENGTH", "REGEXP", "IS", "WHEN", "FROM", "AGGREGATES", "POINTS",
+ "POINT", "TOTAL", "PARTIAL", "ALWAYS", "INNER_JOIN", "LEFT_JOIN", "CROSS_JOIN",
+ "FULL_JOIN", "MAPS_FROM", "MAPS_TO", "MAP_TO", "MAP_FROM", "RETURNS",
+ "PIVOT", "CUSTOMPIVOT", "UNPIVOT", "SUBSPACE", "APPLY", "CONDITIONED",
+ "PERIOD_INDICATOR", "SINGLE", "DURATION", "TIME_AGG", "UNIT", "VALUE",
+ "VALUEDOMAINS", "VARIABLES", "INPUT", "OUTPUT", "CAST", "RULE_PRIORITY",
+ "DATASET_PRIORITY", "DEFAULT", "CHECK_DATAPOINT", "CHECK_HIERARCHY",
+ "COMPUTED", "NON_NULL", "NON_ZERO", "PARTIAL_NULL", "PARTIAL_ZERO", "ALWAYS_NULL",
+ "ALWAYS_ZERO", "COMPONENTS", "ALL_MEASURES", "SCALAR", "COMPONENT", "DATAPOINT_ON_VD",
+ "DATAPOINT_ON_VAR", "HIERARCHICAL_ON_VD", "HIERARCHICAL_ON_VAR", "SET",
+ "LANGUAGE", "LETTER", "DIGITS0_9", "INTEGER_CONSTANT", "NUMBER_CONSTANT",
+ "BOOLEAN_CONSTANT", "STRING_CONSTANT", "IDENTIFIER", "TIME_UNIT", "WS",
+ "EOL", "ML_COMMENT", "SL_COMMENT"
+ };
+ }
+ public static final String[] ruleNames = makeRuleNames();
+
+ private static String[] makeLiteralNames() {
+ return new String[] {
+ null, "'('", "')'", "'['", "']'", "'{'", "'}'", "'='", "'<'", "'>'",
+ "'>='", "'<>'", "'<='", "'+'", "'-'", "'*'", "'/'", "','", "'->'", "':'",
+ "':='", "'#'", "'eval'", "'if'", "'case'", "'then'", "'else'", "'using'",
+ "'with'", "'current_date'", "'datediff'", "'dateadd'", "'getyear'", "'getmonth'",
+ "'dayofmonth'", "'dayofyear'", "'daytoyear'", "'daytomonth'", "'yeartoday'",
+ "'monthtoday'", "'on'", "'drop'", "'keep'", "'calc'", "'attrcalc'", "'rename'",
+ "'as'", "'and'", "'or'", "'xor'", "'not'", "'between'", "'in'", "'not_in'",
+ "'null'", "'isnull'", "'ex'", "'union'", "'diff'", "'symdiff'", "'intersect'",
+ "'random'", "'keys'", "'intyear'", "'intmonth'", "'intday'", "'check'",
+ "'exists_in'", "'to'", "'return'", "'imbalance'", "'errorcode'", "'all'",
+ "'aggr'", "'errorlevel'", "'order'", "'by'", "'rank'", "'asc'", "'desc'",
+ "'min'", "'max'", "'first'", "'last'", "'indexof'", "'abs'", "'key'",
+ "'ln'", "'log'", "'trunc'", "'round'", "'power'", "'mod'", "'length'",
+ "'||'", "'trim'", "'upper'", "'lower'", "'substr'", "'sum'", "'avg'",
+ "'median'", "'count'", "'identifier'", "'measure'", "'attribute'", "'filter'",
+ "'merge'", "'exp'", "'componentRole'", "'viral'", "'match_characters'",
+ "'type'", "'nvl'", "'hierarchy'", "'_'", "'invalid'", "'levenshtein'",
+ "'valuedomain'", "'variable'", "'data'", "'structure'", "'dataset'",
+ "'operator'", "'define'", "'<-'", "'datapoint'", "'hierarchical'", "'ruleset'",
+ "'rule'", "'end'", "'alterDataset'", "'ltrim'", "'rtrim'", "'instr'",
+ "'replace'", "'ceil'", "'floor'", "'sqrt'", "'any'", "'setdiff'", "'stddev_pop'",
+ "'stddev_samp'", "'var_pop'", "'var_samp'", "'group'", "'except'", "'having'",
+ "'first_value'", "'last_value'", "'lag'", "'lead'", "'ratio_to_report'",
+ "'over'", "'preceding'", "'following'", "'unbounded'", "'partition'",
+ "'rows'", "'range'", "'current'", "'valid'", "'fill_time_series'", "'flow_to_stock'",
+ "'stock_to_flow'", "'timeshift'", "'measures'", "'no_measures'", "'condition'",
+ "'boolean'", "'date'", "'time_period'", "'number'", "'string'", "'time'",
+ "'integer'", "'float'", "'list'", "'record'", "'restrict'", "'yyyy'",
+ "'mm'", "'dd'", "'maxLength'", "'regexp'", "'is'", "'when'", "'from'",
+ "'aggregates'", "'points'", "'point'", "'total'", "'partial'", "'always'",
+ "'inner_join'", "'left_join'", "'cross_join'", "'full_join'", "'maps_from'",
+ "'maps_to'", "'map_to'", "'map_from'", "'returns'", "'pivot'", "'customPivot'",
+ "'unpivot'", "'sub'", "'apply'", "'conditioned'", "'period_indicator'",
+ "'single'", "'duration'", "'time_agg'", "'unit'", "'Value'", "'valuedomains'",
+ "'variables'", "'input'", "'output'", "'cast'", "'rule_priority'", "'dataset_priority'",
+ "'default'", "'check_datapoint'", "'check_hierarchy'", "'computed'",
+ "'non_null'", "'non_zero'", "'partial_null'", "'partial_zero'", "'always_null'",
+ "'always_zero'", "'components'", "'all_measures'", "'scalar'", "'component'",
+ "'datapoint_on_valuedomains'", "'datapoint_on_variables'", "'hierarchical_on_valuedomains'",
+ "'hierarchical_on_variables'", "'set'", "'language'", null, null, null,
+ null, null, null, null, "';'"
+ };
+ }
+ private static final String[] _LITERAL_NAMES = makeLiteralNames();
+ private static String[] makeSymbolicNames() {
+ return new String[] {
+ null, "LPAREN", "RPAREN", "QLPAREN", "QRPAREN", "GLPAREN", "GRPAREN",
+ "EQ", "LT", "MT", "ME", "NEQ", "LE", "PLUS", "MINUS", "MUL", "DIV", "COMMA",
+ "POINTER", "COLON", "ASSIGN", "MEMBERSHIP", "EVAL", "IF", "CASE", "THEN",
+ "ELSE", "USING", "WITH", "CURRENT_DATE", "DATEDIFF", "DATEADD", "GETYEAR",
+ "GETMONTH", "DAYOFMONTH", "DAYOFYEAR", "DAYTOYEAR", "DAYTOMONTH", "YEARTODAY",
+ "MONTHTODAY", "ON", "DROP", "KEEP", "CALC", "ATTRCALC", "RENAME", "AS",
+ "AND", "OR", "XOR", "NOT", "BETWEEN", "IN", "NOT_IN", "NULL_CONSTANT",
+ "ISNULL", "EX", "UNION", "DIFF", "SYMDIFF", "INTERSECT", "RANDOM", "KEYS",
+ "INTYEAR", "INTMONTH", "INTDAY", "CHECK", "EXISTS_IN", "TO", "RETURN",
+ "IMBALANCE", "ERRORCODE", "ALL", "AGGREGATE", "ERRORLEVEL", "ORDER",
+ "BY", "RANK", "ASC", "DESC", "MIN", "MAX", "FIRST", "LAST", "INDEXOF",
+ "ABS", "KEY", "LN", "LOG", "TRUNC", "ROUND", "POWER", "MOD", "LEN", "CONCAT",
+ "TRIM", "UCASE", "LCASE", "SUBSTR", "SUM", "AVG", "MEDIAN", "COUNT",
+ "DIMENSION", "MEASURE", "ATTRIBUTE", "FILTER", "MERGE", "EXP", "ROLE",
+ "VIRAL", "CHARSET_MATCH", "TYPE", "NVL", "HIERARCHY", "OPTIONAL", "INVALID",
+ "LEVENSHTEIN", "VALUE_DOMAIN", "VARIABLE", "DATA", "STRUCTURE", "DATASET",
+ "OPERATOR", "DEFINE", "PUT_SYMBOL", "DATAPOINT", "HIERARCHICAL", "RULESET",
+ "RULE", "END", "ALTER_DATASET", "LTRIM", "RTRIM", "INSTR", "REPLACE",
+ "CEIL", "FLOOR", "SQRT", "ANY", "SETDIFF", "STDDEV_POP", "STDDEV_SAMP",
+ "VAR_POP", "VAR_SAMP", "GROUP", "EXCEPT", "HAVING", "FIRST_VALUE", "LAST_VALUE",
+ "LAG", "LEAD", "RATIO_TO_REPORT", "OVER", "PRECEDING", "FOLLOWING", "UNBOUNDED",
+ "PARTITION", "ROWS", "RANGE", "CURRENT", "VALID", "FILL_TIME_SERIES",
+ "FLOW_TO_STOCK", "STOCK_TO_FLOW", "TIMESHIFT", "MEASURES", "NO_MEASURES",
+ "CONDITION", "BOOLEAN", "DATE", "TIME_PERIOD", "NUMBER", "STRING", "TIME",
+ "INTEGER", "FLOAT", "LIST", "RECORD", "RESTRICT", "YYYY", "MM", "DD",
+ "MAX_LENGTH", "REGEXP", "IS", "WHEN", "FROM", "AGGREGATES", "POINTS",
+ "POINT", "TOTAL", "PARTIAL", "ALWAYS", "INNER_JOIN", "LEFT_JOIN", "CROSS_JOIN",
+ "FULL_JOIN", "MAPS_FROM", "MAPS_TO", "MAP_TO", "MAP_FROM", "RETURNS",
+ "PIVOT", "CUSTOMPIVOT", "UNPIVOT", "SUBSPACE", "APPLY", "CONDITIONED",
+ "PERIOD_INDICATOR", "SINGLE", "DURATION", "TIME_AGG", "UNIT", "VALUE",
+ "VALUEDOMAINS", "VARIABLES", "INPUT", "OUTPUT", "CAST", "RULE_PRIORITY",
+ "DATASET_PRIORITY", "DEFAULT", "CHECK_DATAPOINT", "CHECK_HIERARCHY",
+ "COMPUTED", "NON_NULL", "NON_ZERO", "PARTIAL_NULL", "PARTIAL_ZERO", "ALWAYS_NULL",
+ "ALWAYS_ZERO", "COMPONENTS", "ALL_MEASURES", "SCALAR", "COMPONENT", "DATAPOINT_ON_VD",
+ "DATAPOINT_ON_VAR", "HIERARCHICAL_ON_VD", "HIERARCHICAL_ON_VAR", "SET",
+ "LANGUAGE", "INTEGER_CONSTANT", "NUMBER_CONSTANT", "BOOLEAN_CONSTANT",
+ "STRING_CONSTANT", "IDENTIFIER", "TIME_UNIT", "WS", "EOL", "ML_COMMENT",
+ "SL_COMMENT"
+ };
+ }
+ private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
+ public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
+
+ /**
+ * @deprecated Use {@link #VOCABULARY} instead.
+ */
+ @Deprecated
+ public static final String[] tokenNames;
+ static {
+ tokenNames = new String[_SYMBOLIC_NAMES.length];
+ for (int i = 0; i < tokenNames.length; i++) {
+ tokenNames[i] = VOCABULARY.getLiteralName(i);
+ if (tokenNames[i] == null) {
+ tokenNames[i] = VOCABULARY.getSymbolicName(i);
+ }
+
+ if (tokenNames[i] == null) {
+ tokenNames[i] = "";
+ }
+ }
+ }
+
+ @Override
+ @Deprecated
+ public String[] getTokenNames() {
+ return tokenNames;
+ }
+
+ @Override
+
+ public Vocabulary getVocabulary() {
+ return VOCABULARY;
+ }
+
+
+ public VtlTokens(CharStream input) {
+ super(input);
+ _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
+ }
+
+ @Override
+ public String getGrammarFileName() { return "VtlTokens.g4"; }
+
+ @Override
+ public String[] getRuleNames() { return ruleNames; }
+
+ @Override
+ public String getSerializedATN() { return _serializedATN; }
+
+ @Override
+ public String[] getChannelNames() { return channelNames; }
+
+ @Override
+ public String[] getModeNames() { return modeNames; }
+
+ @Override
+ public ATN getATN() { return _ATN; }
+
+ public static final String _serializedATN =
+ "\u0004\u0000\u00fb\u096c\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002"+
+ "\u0001\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002"+
+ "\u0004\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002"+
+ "\u0007\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002"+
+ "\u000b\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e"+
+ "\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011"+
+ "\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014"+
+ "\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017"+
+ "\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a"+
+ "\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d"+
+ "\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!"+
+ "\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002"+
+ "&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002"+
+ "+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u0002"+
+ "0\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u0002"+
+ "5\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002"+
+ ":\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002"+
+ "?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002"+
+ "D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002"+
+ "I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002"+
+ "N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002"+
+ "S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002"+
+ "X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002"+
+ "]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002"+
+ "b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002"+
+ "g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002"+
+ "l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002"+
+ "q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002"+
+ "v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002"+
+ "{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f"+
+ "\u0002\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082"+
+ "\u0002\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085"+
+ "\u0002\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088"+
+ "\u0002\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b"+
+ "\u0002\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e"+
+ "\u0002\u008f\u0007\u008f\u0002\u0090\u0007\u0090\u0002\u0091\u0007\u0091"+
+ "\u0002\u0092\u0007\u0092\u0002\u0093\u0007\u0093\u0002\u0094\u0007\u0094"+
+ "\u0002\u0095\u0007\u0095\u0002\u0096\u0007\u0096\u0002\u0097\u0007\u0097"+
+ "\u0002\u0098\u0007\u0098\u0002\u0099\u0007\u0099\u0002\u009a\u0007\u009a"+
+ "\u0002\u009b\u0007\u009b\u0002\u009c\u0007\u009c\u0002\u009d\u0007\u009d"+
+ "\u0002\u009e\u0007\u009e\u0002\u009f\u0007\u009f\u0002\u00a0\u0007\u00a0"+
+ "\u0002\u00a1\u0007\u00a1\u0002\u00a2\u0007\u00a2\u0002\u00a3\u0007\u00a3"+
+ "\u0002\u00a4\u0007\u00a4\u0002\u00a5\u0007\u00a5\u0002\u00a6\u0007\u00a6"+
+ "\u0002\u00a7\u0007\u00a7\u0002\u00a8\u0007\u00a8\u0002\u00a9\u0007\u00a9"+
+ "\u0002\u00aa\u0007\u00aa\u0002\u00ab\u0007\u00ab\u0002\u00ac\u0007\u00ac"+
+ "\u0002\u00ad\u0007\u00ad\u0002\u00ae\u0007\u00ae\u0002\u00af\u0007\u00af"+
+ "\u0002\u00b0\u0007\u00b0\u0002\u00b1\u0007\u00b1\u0002\u00b2\u0007\u00b2"+
+ "\u0002\u00b3\u0007\u00b3\u0002\u00b4\u0007\u00b4\u0002\u00b5\u0007\u00b5"+
+ "\u0002\u00b6\u0007\u00b6\u0002\u00b7\u0007\u00b7\u0002\u00b8\u0007\u00b8"+
+ "\u0002\u00b9\u0007\u00b9\u0002\u00ba\u0007\u00ba\u0002\u00bb\u0007\u00bb"+
+ "\u0002\u00bc\u0007\u00bc\u0002\u00bd\u0007\u00bd\u0002\u00be\u0007\u00be"+
+ "\u0002\u00bf\u0007\u00bf\u0002\u00c0\u0007\u00c0\u0002\u00c1\u0007\u00c1"+
+ "\u0002\u00c2\u0007\u00c2\u0002\u00c3\u0007\u00c3\u0002\u00c4\u0007\u00c4"+
+ "\u0002\u00c5\u0007\u00c5\u0002\u00c6\u0007\u00c6\u0002\u00c7\u0007\u00c7"+
+ "\u0002\u00c8\u0007\u00c8\u0002\u00c9\u0007\u00c9\u0002\u00ca\u0007\u00ca"+
+ "\u0002\u00cb\u0007\u00cb\u0002\u00cc\u0007\u00cc\u0002\u00cd\u0007\u00cd"+
+ "\u0002\u00ce\u0007\u00ce\u0002\u00cf\u0007\u00cf\u0002\u00d0\u0007\u00d0"+
+ "\u0002\u00d1\u0007\u00d1\u0002\u00d2\u0007\u00d2\u0002\u00d3\u0007\u00d3"+
+ "\u0002\u00d4\u0007\u00d4\u0002\u00d5\u0007\u00d5\u0002\u00d6\u0007\u00d6"+
+ "\u0002\u00d7\u0007\u00d7\u0002\u00d8\u0007\u00d8\u0002\u00d9\u0007\u00d9"+
+ "\u0002\u00da\u0007\u00da\u0002\u00db\u0007\u00db\u0002\u00dc\u0007\u00dc"+
+ "\u0002\u00dd\u0007\u00dd\u0002\u00de\u0007\u00de\u0002\u00df\u0007\u00df"+
+ "\u0002\u00e0\u0007\u00e0\u0002\u00e1\u0007\u00e1\u0002\u00e2\u0007\u00e2"+
+ "\u0002\u00e3\u0007\u00e3\u0002\u00e4\u0007\u00e4\u0002\u00e5\u0007\u00e5"+
+ "\u0002\u00e6\u0007\u00e6\u0002\u00e7\u0007\u00e7\u0002\u00e8\u0007\u00e8"+
+ "\u0002\u00e9\u0007\u00e9\u0002\u00ea\u0007\u00ea\u0002\u00eb\u0007\u00eb"+
+ "\u0002\u00ec\u0007\u00ec\u0002\u00ed\u0007\u00ed\u0002\u00ee\u0007\u00ee"+
+ "\u0002\u00ef\u0007\u00ef\u0002\u00f0\u0007\u00f0\u0002\u00f1\u0007\u00f1"+
+ "\u0002\u00f2\u0007\u00f2\u0002\u00f3\u0007\u00f3\u0002\u00f4\u0007\u00f4"+
+ "\u0002\u00f5\u0007\u00f5\u0002\u00f6\u0007\u00f6\u0002\u00f7\u0007\u00f7"+
+ "\u0002\u00f8\u0007\u00f8\u0002\u00f9\u0007\u00f9\u0002\u00fa\u0007\u00fa"+
+ "\u0002\u00fb\u0007\u00fb\u0002\u00fc\u0007\u00fc\u0001\u0000\u0001\u0000"+
+ "\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003"+
+ "\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+
+ "\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001"+
+ "\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f"+
+ "\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001"+
+ "\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001"+
+ "\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001"+
+ "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001"+
+ "\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
+ "\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+
+ "\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001"+
+ "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001"+
+ "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
+ "\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+
+ "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+
+ " \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0001"+
+ "!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001"+
+ "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+
+ "\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001"+
+ "#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+
+ "$\u0001$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
+ "%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001"+
+ "&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001"+
+ "(\u0001)\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001"+
+ "*\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001"+
+ ",\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001"+
+ ".\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+
+ "0\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u0001"+
+ "2\u00012\u00012\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u0001"+
+ "4\u00014\u00014\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u0001"+
+ "6\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u0001"+
+ "8\u00018\u00018\u00018\u00019\u00019\u00019\u00019\u00019\u0001:\u0001"+
+ ":\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001"+
+ ";\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+
+ "<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001>\u0001"+
+ ">\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001"+
+ "?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001"+
+ "@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001"+
+ "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001"+
+ "C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001"+
+ "E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001"+
+ "F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001G\u0001"+
+ "G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001I\u0001I\u0001"+
+ "I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001"+
+ "J\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001L\u0001L\u0001"+
+ "L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0001N\u0001N\u0001N\u0001"+
+ "N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001P\u0001P\u0001P\u0001P\u0001"+
+ "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0001R\u0001"+
+ "R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001"+
+ "T\u0001T\u0001T\u0001U\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001"+
+ "W\u0001W\u0001W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
+ "Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+
+ "Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+
+ "\\\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001^\u0001"+
+ "^\u0001_\u0001_\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001"+
+ "`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001a\u0001a\u0001a\u0001"+
+ "b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001"+
+ "d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001e\u0001"+
+ "e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001"+
+ "f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001g\u0001g\u0001g\u0001g\u0001"+
+ "h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001"+
+ "i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001j\u0001j\u0001j\u0001"+
+ "j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+
+ "l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001"+
+ "l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001"+
+ "n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001n\u0001"+
+ "n\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001o\u0001o\u0001p\u0001"+
+ "p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001q\u0001q\u0001q\u0001"+
+ "q\u0001q\u0001q\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001s\u0001"+
+ "s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0001t\u0001"+
+ "t\u0001t\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001u\u0001"+
+ "u\u0001u\u0001u\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+
+ "v\u0001v\u0001v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001"+
+ "w\u0001x\u0001x\u0001x\u0001x\u0001x\u0001x\u0001x\u0001x\u0001x\u0001"+
+ "x\u0001y\u0001y\u0001y\u0001y\u0001y\u0001y\u0001y\u0001y\u0001z\u0001"+
+ "z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001z\u0001{\u0001{\u0001"+
+ "{\u0001{\u0001{\u0001{\u0001{\u0001|\u0001|\u0001|\u0001}\u0001}\u0001"+
+ "}\u0001}\u0001}\u0001}\u0001}\u0001}\u0001}\u0001}\u0001~\u0001~\u0001"+
+ "~\u0001~\u0001~\u0001~\u0001~\u0001~\u0001~\u0001~\u0001~\u0001~\u0001"+
+ "~\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u007f"+
+ "\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0080"+
+ "\u0001\u0080\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0082"+
+ "\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082"+
+ "\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082"+
+ "\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083"+
+ "\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084"+
+ "\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0085"+
+ "\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086"+
+ "\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087"+
+ "\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0088"+
+ "\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u0089"+
+ "\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b"+
+ "\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b"+
+ "\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+
+ "\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008d"+
+ "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d"+
+ "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e"+
+ "\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e"+
+ "\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f"+
+ "\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u0090\u0001\u0090"+
+ "\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0091\u0001\u0091"+
+ "\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0092"+
+ "\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092"+
+ "\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093"+
+ "\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093"+
+ "\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094"+
+ "\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0095"+
+ "\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0096\u0001\u0096\u0001\u0096"+
+ "\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+
+ "\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+
+ "\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+
+ "\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0099"+
+ "\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099"+
+ "\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u009a\u0001\u009a\u0001\u009a"+
+ "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a"+
+ "\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b"+
+ "\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009c"+
+ "\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c"+
+ "\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009d\u0001\u009d\u0001\u009d"+
+ "\u0001\u009d\u0001\u009d\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009e"+
+ "\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u009f"+
+ "\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u00a0\u0001\u00a0"+
+ "\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001\u00a1"+
+ "\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1"+
+ "\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1"+
+ "\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2"+
+ "\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2"+
+ "\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a3"+
+ "\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3"+
+ "\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3"+
+ "\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4"+
+ "\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a5"+
+ "\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5"+
+ "\u0001\u00a5\u0001\u00a5\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6"+
+ "\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6"+
+ "\u0001\u00a6\u0001\u00a6\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7"+
+ "\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7"+
+ "\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8"+
+ "\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9"+
+ "\u0001\u00a9\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa"+
+ "\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa"+
+ "\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab"+
+ "\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac"+
+ "\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0001\u00ad\u0001\u00ad"+
+ "\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae"+
+ "\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af"+
+ "\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00b0\u0001\u00b0"+
+ "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1"+
+ "\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2"+
+ "\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2"+
+ "\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3"+
+ "\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5"+
+ "\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6"+
+ "\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7"+
+ "\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8"+
+ "\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9"+
+ "\u0001\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba"+
+ "\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb"+
+ "\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc"+
+ "\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc"+
+ "\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd"+
+ "\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be"+
+ "\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf"+
+ "\u0001\u00bf\u0001\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0"+
+ "\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c1\u0001\u00c1\u0001\u00c1"+
+ "\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1"+
+ "\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+
+ "\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+
+ "\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3"+
+ "\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c4"+
+ "\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4"+
+ "\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001\u00c5\u0001\u00c5"+
+ "\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5"+
+ "\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c6"+
+ "\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7"+
+ "\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c8\u0001\u00c8"+
+ "\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8"+
+ "\u0001\u00c8\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001\u00c9"+
+ "\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca"+
+ "\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00cb\u0001\u00cb\u0001\u00cb"+
+ "\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb"+
+ "\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001\u00cc\u0001\u00cc"+
+ "\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cd"+
+ "\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00ce\u0001\u00ce\u0001\u00ce"+
+ "\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf"+
+ "\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf"+
+ "\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001\u00d0\u0001\u00d0"+
+ "\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0"+
+ "\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0"+
+ "\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1"+
+ "\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2"+
+ "\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2"+
+ "\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3"+
+ "\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001\u00d4"+
+ "\u0001\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5"+
+ "\u0001\u00d5\u0001\u00d5\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6"+
+ "\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6"+
+ "\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7\u0001\u00d7"+
+ "\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7"+
+ "\u0001\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8"+
+ "\u0001\u00d8\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9"+
+ "\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001\u00da\u0001\u00da"+
+ "\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db"+
+ "\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db"+
+ "\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00dc\u0001\u00dc\u0001\u00dc"+
+ "\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc"+
+ "\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc"+
+ "\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd"+
+ "\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00de\u0001\u00de"+
+ "\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de"+
+ "\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de"+
+ "\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df"+
+ "\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df"+
+ "\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df"+
+ "\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0"+
+ "\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1"+
+ "\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1"+
+ "\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2"+
+ "\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e3\u0001\u00e3\u0001\u00e3"+
+ "\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3"+
+ "\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e4\u0001\u00e4"+
+ "\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4"+
+ "\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5"+
+ "\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5"+
+ "\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6"+
+ "\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6"+
+ "\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7"+
+ "\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7"+
+ "\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8"+
+ "\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8"+
+ "\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e9"+
+ "\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9"+
+ "\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea"+
+ "\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00eb\u0001\u00eb"+
+ "\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb"+
+ "\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb"+
+ "\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb"+
+ "\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb"+
+ "\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec"+
+ "\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec"+
+ "\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec"+
+ "\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ed"+
+ "\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+
+ "\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+
+ "\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+
+ "\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+
+ "\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ee\u0001\u00ee"+
+ "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee"+
+ "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee"+
+ "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee"+
+ "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee"+
+ "\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00f0\u0001\u00f0"+
+ "\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0"+
+ "\u0001\u00f0\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001\u00f2\u0001\u00f3"+
+ "\u0003\u00f3\u090d\b\u00f3\u0001\u00f3\u0004\u00f3\u0910\b\u00f3\u000b"+
+ "\u00f3\f\u00f3\u0911\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0005\u00f4\u0917"+
+ "\b\u00f4\n\u00f4\f\u00f4\u091a\t\u00f4\u0001\u00f5\u0001\u00f5\u0001\u00f5"+
+ "\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5"+
+ "\u0003\u00f5\u0925\b\u00f5\u0001\u00f6\u0001\u00f6\u0005\u00f6\u0929\b"+
+ "\u00f6\n\u00f6\f\u00f6\u092c\t\u00f6\u0001\u00f6\u0001\u00f6\u0001\u00f7"+
+ "\u0001\u00f7\u0005\u00f7\u0932\b\u00f7\n\u00f7\f\u00f7\u0935\t\u00f7\u0001"+
+ "\u00f7\u0001\u00f7\u0004\u00f7\u0939\b\u00f7\u000b\u00f7\f\u00f7\u093a"+
+ "\u0001\u00f7\u0001\u00f7\u0005\u00f7\u093f\b\u00f7\n\u00f7\f\u00f7\u0942"+
+ "\t\u00f7\u0001\u00f7\u0003\u00f7\u0945\b\u00f7\u0001\u00f8\u0001\u00f8"+
+ "\u0001\u00f9\u0004\u00f9\u094a\b\u00f9\u000b\u00f9\f\u00f9\u094b\u0001"+
+ "\u00f9\u0001\u00f9\u0001\u00fa\u0001\u00fa\u0001\u00fb\u0001\u00fb\u0001"+
+ "\u00fb\u0001\u00fb\u0005\u00fb\u0956\b\u00fb\n\u00fb\f\u00fb\u0959\t\u00fb"+
+ "\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fc"+
+ "\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0005\u00fc\u0964\b\u00fc\n\u00fc"+
+ "\f\u00fc\u0967\t\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fc\u0001\u00fc"+
+ "\u0003\u0940\u0957\u0965\u0000\u00fd\u0001\u0001\u0003\u0002\u0005\u0003"+
+ "\u0007\u0004\t\u0005\u000b\u0006\r\u0007\u000f\b\u0011\t\u0013\n\u0015"+
+ "\u000b\u0017\f\u0019\r\u001b\u000e\u001d\u000f\u001f\u0010!\u0011#\u0012"+
+ "%\u0013\'\u0014)\u0015+\u0016-\u0017/\u00181\u00193\u001a5\u001b7\u001c"+
+ "9\u001d;\u001e=\u001f? A!C\"E#G$I%K&M\'O(Q)S*U+W,Y-[.]/_0a1c2e3g4i5k6"+
+ "m7o8q9s:u;w}?\u007f@\u0081A\u0083B\u0085C\u0087D\u0089E\u008bF\u008d"+
+ "G\u008fH\u0091I\u0093J\u0095K\u0097L\u0099M\u009bN\u009dO\u009fP\u00a1"+
+ "Q\u00a3R\u00a5S\u00a7T\u00a9U\u00abV\u00adW\u00afX\u00b1Y\u00b3Z\u00b5"+
+ "[\u00b7\\\u00b9]\u00bb^\u00bd_\u00bf`\u00c1a\u00c3b\u00c5c\u00c7d\u00c9"+
+ "e\u00cbf\u00cdg\u00cfh\u00d1i\u00d3j\u00d5k\u00d7l\u00d9m\u00dbn\u00dd"+
+ "o\u00dfp\u00e1q\u00e3r\u00e5s\u00e7t\u00e9u\u00ebv\u00edw\u00efx\u00f1"+
+ "y\u00f3z\u00f5{\u00f7|\u00f9}\u00fb~\u00fd\u007f\u00ff\u0080\u0101\u0081"+
+ "\u0103\u0082\u0105\u0083\u0107\u0084\u0109\u0085\u010b\u0086\u010d\u0087"+
+ "\u010f\u0088\u0111\u0089\u0113\u008a\u0115\u008b\u0117\u008c\u0119\u008d"+
+ "\u011b\u008e\u011d\u008f\u011f\u0090\u0121\u0091\u0123\u0092\u0125\u0093"+
+ "\u0127\u0094\u0129\u0095\u012b\u0096\u012d\u0097\u012f\u0098\u0131\u0099"+
+ "\u0133\u009a\u0135\u009b\u0137\u009c\u0139\u009d\u013b\u009e\u013d\u009f"+
+ "\u013f\u00a0\u0141\u00a1\u0143\u00a2\u0145\u00a3\u0147\u00a4\u0149\u00a5"+
+ "\u014b\u00a6\u014d\u00a7\u014f\u00a8\u0151\u00a9\u0153\u00aa\u0155\u00ab"+
+ "\u0157\u00ac\u0159\u00ad\u015b\u00ae\u015d\u00af\u015f\u00b0\u0161\u00b1"+
+ "\u0163\u00b2\u0165\u00b3\u0167\u00b4\u0169\u00b5\u016b\u00b6\u016d\u00b7"+
+ "\u016f\u00b8\u0171\u00b9\u0173\u00ba\u0175\u00bb\u0177\u00bc\u0179\u00bd"+
+ "\u017b\u00be\u017d\u00bf\u017f\u00c0\u0181\u00c1\u0183\u00c2\u0185\u00c3"+
+ "\u0187\u00c4\u0189\u00c5\u018b\u00c6\u018d\u00c7\u018f\u00c8\u0191\u00c9"+
+ "\u0193\u00ca\u0195\u00cb\u0197\u00cc\u0199\u00cd\u019b\u00ce\u019d\u00cf"+
+ "\u019f\u00d0\u01a1\u00d1\u01a3\u00d2\u01a5\u00d3\u01a7\u00d4\u01a9\u00d5"+
+ "\u01ab\u00d6\u01ad\u00d7\u01af\u00d8\u01b1\u00d9\u01b3\u00da\u01b5\u00db"+
+ "\u01b7\u00dc\u01b9\u00dd\u01bb\u00de\u01bd\u00df\u01bf\u00e0\u01c1\u00e1"+
+ "\u01c3\u00e2\u01c5\u00e3\u01c7\u00e4\u01c9\u00e5\u01cb\u00e6\u01cd\u00e7"+
+ "\u01cf\u00e8\u01d1\u00e9\u01d3\u00ea\u01d5\u00eb\u01d7\u00ec\u01d9\u00ed"+
+ "\u01db\u00ee\u01dd\u00ef\u01df\u00f0\u01e1\u00f1\u01e3\u0000\u01e5\u0000"+
+ "\u01e7\u00f2\u01e9\u00f3\u01eb\u00f4\u01ed\u00f5\u01ef\u00f6\u01f1\u00f7"+
+ "\u01f3\u00f8\u01f5\u00f9\u01f7\u00fa\u01f9\u00fb\u0001\u0000\u0005\u0002"+
+ "\u0000AZaz\u0001\u0000\"\"\u0005\u0000..09AZ__az\u0006\u0000AADDMMQQS"+
+ "TWW\u0003\u0000\t\n\f\r \u0976\u0000\u0001\u0001\u0000\u0000\u0000\u0000"+
+ "\u0003\u0001\u0000\u0000\u0000\u0000\u0005\u0001\u0000\u0000\u0000\u0000"+
+ "\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000\u000b"+
+ "\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f\u0001"+
+ "\u0000\u0000\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013\u0001"+
+ "\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017\u0001"+
+ "\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b\u0001"+
+ "\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f\u0001"+
+ "\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000\u0000"+
+ "\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000\u0000"+
+ "\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000-"+
+ "\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001\u0000"+
+ "\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000"+
+ "\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;"+
+ "\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000"+
+ "\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000"+
+ "\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I"+
+ "\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000"+
+ "\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000\u0000"+
+ "\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000W"+
+ "\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001\u0000"+
+ "\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000\u0000"+
+ "\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000e"+
+ "\u0001\u0000\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001\u0000"+
+ "\u0000\u0000\u0000k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000\u0000"+
+ "\u0000o\u0001\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000s"+
+ "\u0001\u0000\u0000\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001\u0000"+
+ "\u0000\u0000\u0000y\u0001\u0000\u0000\u0000\u0000{\u0001\u0000\u0000\u0000"+
+ "\u0000}\u0001\u0000\u0000\u0000\u0000\u007f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0081\u0001\u0000\u0000\u0000\u0000\u0083\u0001\u0000\u0000\u0000\u0000"+
+ "\u0085\u0001\u0000\u0000\u0000\u0000\u0087\u0001\u0000\u0000\u0000\u0000"+
+ "\u0089\u0001\u0000\u0000\u0000\u0000\u008b\u0001\u0000\u0000\u0000\u0000"+
+ "\u008d\u0001\u0000\u0000\u0000\u0000\u008f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0091\u0001\u0000\u0000\u0000\u0000\u0093\u0001\u0000\u0000\u0000\u0000"+
+ "\u0095\u0001\u0000\u0000\u0000\u0000\u0097\u0001\u0000\u0000\u0000\u0000"+
+ "\u0099\u0001\u0000\u0000\u0000\u0000\u009b\u0001\u0000\u0000\u0000\u0000"+
+ "\u009d\u0001\u0000\u0000\u0000\u0000\u009f\u0001\u0000\u0000\u0000\u0000"+
+ "\u00a1\u0001\u0000\u0000\u0000\u0000\u00a3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00a5\u0001\u0000\u0000\u0000\u0000\u00a7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00a9\u0001\u0000\u0000\u0000\u0000\u00ab\u0001\u0000\u0000\u0000\u0000"+
+ "\u00ad\u0001\u0000\u0000\u0000\u0000\u00af\u0001\u0000\u0000\u0000\u0000"+
+ "\u00b1\u0001\u0000\u0000\u0000\u0000\u00b3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00b5\u0001\u0000\u0000\u0000\u0000\u00b7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00b9\u0001\u0000\u0000\u0000\u0000\u00bb\u0001\u0000\u0000\u0000\u0000"+
+ "\u00bd\u0001\u0000\u0000\u0000\u0000\u00bf\u0001\u0000\u0000\u0000\u0000"+
+ "\u00c1\u0001\u0000\u0000\u0000\u0000\u00c3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00c5\u0001\u0000\u0000\u0000\u0000\u00c7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00c9\u0001\u0000\u0000\u0000\u0000\u00cb\u0001\u0000\u0000\u0000\u0000"+
+ "\u00cd\u0001\u0000\u0000\u0000\u0000\u00cf\u0001\u0000\u0000\u0000\u0000"+
+ "\u00d1\u0001\u0000\u0000\u0000\u0000\u00d3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00d5\u0001\u0000\u0000\u0000\u0000\u00d7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00d9\u0001\u0000\u0000\u0000\u0000\u00db\u0001\u0000\u0000\u0000\u0000"+
+ "\u00dd\u0001\u0000\u0000\u0000\u0000\u00df\u0001\u0000\u0000\u0000\u0000"+
+ "\u00e1\u0001\u0000\u0000\u0000\u0000\u00e3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00e5\u0001\u0000\u0000\u0000\u0000\u00e7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00e9\u0001\u0000\u0000\u0000\u0000\u00eb\u0001\u0000\u0000\u0000\u0000"+
+ "\u00ed\u0001\u0000\u0000\u0000\u0000\u00ef\u0001\u0000\u0000\u0000\u0000"+
+ "\u00f1\u0001\u0000\u0000\u0000\u0000\u00f3\u0001\u0000\u0000\u0000\u0000"+
+ "\u00f5\u0001\u0000\u0000\u0000\u0000\u00f7\u0001\u0000\u0000\u0000\u0000"+
+ "\u00f9\u0001\u0000\u0000\u0000\u0000\u00fb\u0001\u0000\u0000\u0000\u0000"+
+ "\u00fd\u0001\u0000\u0000\u0000\u0000\u00ff\u0001\u0000\u0000\u0000\u0000"+
+ "\u0101\u0001\u0000\u0000\u0000\u0000\u0103\u0001\u0000\u0000\u0000\u0000"+
+ "\u0105\u0001\u0000\u0000\u0000\u0000\u0107\u0001\u0000\u0000\u0000\u0000"+
+ "\u0109\u0001\u0000\u0000\u0000\u0000\u010b\u0001\u0000\u0000\u0000\u0000"+
+ "\u010d\u0001\u0000\u0000\u0000\u0000\u010f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0111\u0001\u0000\u0000\u0000\u0000\u0113\u0001\u0000\u0000\u0000\u0000"+
+ "\u0115\u0001\u0000\u0000\u0000\u0000\u0117\u0001\u0000\u0000\u0000\u0000"+
+ "\u0119\u0001\u0000\u0000\u0000\u0000\u011b\u0001\u0000\u0000\u0000\u0000"+
+ "\u011d\u0001\u0000\u0000\u0000\u0000\u011f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0121\u0001\u0000\u0000\u0000\u0000\u0123\u0001\u0000\u0000\u0000\u0000"+
+ "\u0125\u0001\u0000\u0000\u0000\u0000\u0127\u0001\u0000\u0000\u0000\u0000"+
+ "\u0129\u0001\u0000\u0000\u0000\u0000\u012b\u0001\u0000\u0000\u0000\u0000"+
+ "\u012d\u0001\u0000\u0000\u0000\u0000\u012f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0131\u0001\u0000\u0000\u0000\u0000\u0133\u0001\u0000\u0000\u0000\u0000"+
+ "\u0135\u0001\u0000\u0000\u0000\u0000\u0137\u0001\u0000\u0000\u0000\u0000"+
+ "\u0139\u0001\u0000\u0000\u0000\u0000\u013b\u0001\u0000\u0000\u0000\u0000"+
+ "\u013d\u0001\u0000\u0000\u0000\u0000\u013f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0141\u0001\u0000\u0000\u0000\u0000\u0143\u0001\u0000\u0000\u0000\u0000"+
+ "\u0145\u0001\u0000\u0000\u0000\u0000\u0147\u0001\u0000\u0000\u0000\u0000"+
+ "\u0149\u0001\u0000\u0000\u0000\u0000\u014b\u0001\u0000\u0000\u0000\u0000"+
+ "\u014d\u0001\u0000\u0000\u0000\u0000\u014f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0151\u0001\u0000\u0000\u0000\u0000\u0153\u0001\u0000\u0000\u0000\u0000"+
+ "\u0155\u0001\u0000\u0000\u0000\u0000\u0157\u0001\u0000\u0000\u0000\u0000"+
+ "\u0159\u0001\u0000\u0000\u0000\u0000\u015b\u0001\u0000\u0000\u0000\u0000"+
+ "\u015d\u0001\u0000\u0000\u0000\u0000\u015f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0161\u0001\u0000\u0000\u0000\u0000\u0163\u0001\u0000\u0000\u0000\u0000"+
+ "\u0165\u0001\u0000\u0000\u0000\u0000\u0167\u0001\u0000\u0000\u0000\u0000"+
+ "\u0169\u0001\u0000\u0000\u0000\u0000\u016b\u0001\u0000\u0000\u0000\u0000"+
+ "\u016d\u0001\u0000\u0000\u0000\u0000\u016f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0171\u0001\u0000\u0000\u0000\u0000\u0173\u0001\u0000\u0000\u0000\u0000"+
+ "\u0175\u0001\u0000\u0000\u0000\u0000\u0177\u0001\u0000\u0000\u0000\u0000"+
+ "\u0179\u0001\u0000\u0000\u0000\u0000\u017b\u0001\u0000\u0000\u0000\u0000"+
+ "\u017d\u0001\u0000\u0000\u0000\u0000\u017f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0181\u0001\u0000\u0000\u0000\u0000\u0183\u0001\u0000\u0000\u0000\u0000"+
+ "\u0185\u0001\u0000\u0000\u0000\u0000\u0187\u0001\u0000\u0000\u0000\u0000"+
+ "\u0189\u0001\u0000\u0000\u0000\u0000\u018b\u0001\u0000\u0000\u0000\u0000"+
+ "\u018d\u0001\u0000\u0000\u0000\u0000\u018f\u0001\u0000\u0000\u0000\u0000"+
+ "\u0191\u0001\u0000\u0000\u0000\u0000\u0193\u0001\u0000\u0000\u0000\u0000"+
+ "\u0195\u0001\u0000\u0000\u0000\u0000\u0197\u0001\u0000\u0000\u0000\u0000"+
+ "\u0199\u0001\u0000\u0000\u0000\u0000\u019b\u0001\u0000\u0000\u0000\u0000"+
+ "\u019d\u0001\u0000\u0000\u0000\u0000\u019f\u0001\u0000\u0000\u0000\u0000"+
+ "\u01a1\u0001\u0000\u0000\u0000\u0000\u01a3\u0001\u0000\u0000\u0000\u0000"+
+ "\u01a5\u0001\u0000\u0000\u0000\u0000\u01a7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01a9\u0001\u0000\u0000\u0000\u0000\u01ab\u0001\u0000\u0000\u0000\u0000"+
+ "\u01ad\u0001\u0000\u0000\u0000\u0000\u01af\u0001\u0000\u0000\u0000\u0000"+
+ "\u01b1\u0001\u0000\u0000\u0000\u0000\u01b3\u0001\u0000\u0000\u0000\u0000"+
+ "\u01b5\u0001\u0000\u0000\u0000\u0000\u01b7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01b9\u0001\u0000\u0000\u0000\u0000\u01bb\u0001\u0000\u0000\u0000\u0000"+
+ "\u01bd\u0001\u0000\u0000\u0000\u0000\u01bf\u0001\u0000\u0000\u0000\u0000"+
+ "\u01c1\u0001\u0000\u0000\u0000\u0000\u01c3\u0001\u0000\u0000\u0000\u0000"+
+ "\u01c5\u0001\u0000\u0000\u0000\u0000\u01c7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01c9\u0001\u0000\u0000\u0000\u0000\u01cb\u0001\u0000\u0000\u0000\u0000"+
+ "\u01cd\u0001\u0000\u0000\u0000\u0000\u01cf\u0001\u0000\u0000\u0000\u0000"+
+ "\u01d1\u0001\u0000\u0000\u0000\u0000\u01d3\u0001\u0000\u0000\u0000\u0000"+
+ "\u01d5\u0001\u0000\u0000\u0000\u0000\u01d7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01d9\u0001\u0000\u0000\u0000\u0000\u01db\u0001\u0000\u0000\u0000\u0000"+
+ "\u01dd\u0001\u0000\u0000\u0000\u0000\u01df\u0001\u0000\u0000\u0000\u0000"+
+ "\u01e1\u0001\u0000\u0000\u0000\u0000\u01e7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01e9\u0001\u0000\u0000\u0000\u0000\u01eb\u0001\u0000\u0000\u0000\u0000"+
+ "\u01ed\u0001\u0000\u0000\u0000\u0000\u01ef\u0001\u0000\u0000\u0000\u0000"+
+ "\u01f1\u0001\u0000\u0000\u0000\u0000\u01f3\u0001\u0000\u0000\u0000\u0000"+
+ "\u01f5\u0001\u0000\u0000\u0000\u0000\u01f7\u0001\u0000\u0000\u0000\u0000"+
+ "\u01f9\u0001\u0000\u0000\u0000\u0001\u01fb\u0001\u0000\u0000\u0000\u0003"+
+ "\u01fd\u0001\u0000\u0000\u0000\u0005\u01ff\u0001\u0000\u0000\u0000\u0007"+
+ "\u0201\u0001\u0000\u0000\u0000\t\u0203\u0001\u0000\u0000\u0000\u000b\u0205"+
+ "\u0001\u0000\u0000\u0000\r\u0207\u0001\u0000\u0000\u0000\u000f\u0209\u0001"+
+ "\u0000\u0000\u0000\u0011\u020b\u0001\u0000\u0000\u0000\u0013\u020d\u0001"+
+ "\u0000\u0000\u0000\u0015\u0210\u0001\u0000\u0000\u0000\u0017\u0213\u0001"+
+ "\u0000\u0000\u0000\u0019\u0216\u0001\u0000\u0000\u0000\u001b\u0218\u0001"+
+ "\u0000\u0000\u0000\u001d\u021a\u0001\u0000\u0000\u0000\u001f\u021c\u0001"+
+ "\u0000\u0000\u0000!\u021e\u0001\u0000\u0000\u0000#\u0220\u0001\u0000\u0000"+
+ "\u0000%\u0223\u0001\u0000\u0000\u0000\'\u0225\u0001\u0000\u0000\u0000"+
+ ")\u0228\u0001\u0000\u0000\u0000+\u022a\u0001\u0000\u0000\u0000-\u022f"+
+ "\u0001\u0000\u0000\u0000/\u0232\u0001\u0000\u0000\u00001\u0237\u0001\u0000"+
+ "\u0000\u00003\u023c\u0001\u0000\u0000\u00005\u0241\u0001\u0000\u0000\u0000"+
+ "7\u0247\u0001\u0000\u0000\u00009\u024c\u0001\u0000\u0000\u0000;\u0259"+
+ "\u0001\u0000\u0000\u0000=\u0262\u0001\u0000\u0000\u0000?\u026a\u0001\u0000"+
+ "\u0000\u0000A\u0272\u0001\u0000\u0000\u0000C\u027b\u0001\u0000\u0000\u0000"+
+ "E\u0286\u0001\u0000\u0000\u0000G\u0290\u0001\u0000\u0000\u0000I\u029a"+
+ "\u0001\u0000\u0000\u0000K\u02a5\u0001\u0000\u0000\u0000M\u02af\u0001\u0000"+
+ "\u0000\u0000O\u02ba\u0001\u0000\u0000\u0000Q\u02bd\u0001\u0000\u0000\u0000"+
+ "S\u02c2\u0001\u0000\u0000\u0000U\u02c7\u0001\u0000\u0000\u0000W\u02cc"+
+ "\u0001\u0000\u0000\u0000Y\u02d5\u0001\u0000\u0000\u0000[\u02dc\u0001\u0000"+
+ "\u0000\u0000]\u02df\u0001\u0000\u0000\u0000_\u02e3\u0001\u0000\u0000\u0000"+
+ "a\u02e6\u0001\u0000\u0000\u0000c\u02ea\u0001\u0000\u0000\u0000e\u02ee"+
+ "\u0001\u0000\u0000\u0000g\u02f6\u0001\u0000\u0000\u0000i\u02f9\u0001\u0000"+
+ "\u0000\u0000k\u0300\u0001\u0000\u0000\u0000m\u0305\u0001\u0000\u0000\u0000"+
+ "o\u030c\u0001\u0000\u0000\u0000q\u030f\u0001\u0000\u0000\u0000s\u0315"+
+ "\u0001\u0000\u0000\u0000u\u031a\u0001\u0000\u0000\u0000w\u0322\u0001\u0000"+
+ "\u0000\u0000y\u032c\u0001\u0000\u0000\u0000{\u0333\u0001\u0000\u0000\u0000"+
+ "}\u0338\u0001\u0000\u0000\u0000\u007f\u0340\u0001\u0000\u0000\u0000\u0081"+
+ "\u0349\u0001\u0000\u0000\u0000\u0083\u0350\u0001\u0000\u0000\u0000\u0085"+
+ "\u0356\u0001\u0000\u0000\u0000\u0087\u0360\u0001\u0000\u0000\u0000\u0089"+
+ "\u0363\u0001\u0000\u0000\u0000\u008b\u036a\u0001\u0000\u0000\u0000\u008d"+
+ "\u0374\u0001\u0000\u0000\u0000\u008f\u037e\u0001\u0000\u0000\u0000\u0091"+
+ "\u0382\u0001\u0000\u0000\u0000\u0093\u0387\u0001\u0000\u0000\u0000\u0095"+
+ "\u0392\u0001\u0000\u0000\u0000\u0097\u0398\u0001\u0000\u0000\u0000\u0099"+
+ "\u039b\u0001\u0000\u0000\u0000\u009b\u03a0\u0001\u0000\u0000\u0000\u009d"+
+ "\u03a4\u0001\u0000\u0000\u0000\u009f\u03a9\u0001\u0000\u0000\u0000\u00a1"+
+ "\u03ad\u0001\u0000\u0000\u0000\u00a3\u03b1\u0001\u0000\u0000\u0000\u00a5"+
+ "\u03b7\u0001\u0000\u0000\u0000\u00a7\u03bc\u0001\u0000\u0000\u0000\u00a9"+
+ "\u03c4\u0001\u0000\u0000\u0000\u00ab\u03c8\u0001\u0000\u0000\u0000\u00ad"+
+ "\u03cc\u0001\u0000\u0000\u0000\u00af\u03cf\u0001\u0000\u0000\u0000\u00b1"+
+ "\u03d3\u0001\u0000\u0000\u0000\u00b3\u03d9\u0001\u0000\u0000\u0000\u00b5"+
+ "\u03df\u0001\u0000\u0000\u0000\u00b7\u03e5\u0001\u0000\u0000\u0000\u00b9"+
+ "\u03e9\u0001\u0000\u0000\u0000\u00bb\u03f0\u0001\u0000\u0000\u0000\u00bd"+
+ "\u03f3\u0001\u0000\u0000\u0000\u00bf\u03f8\u0001\u0000\u0000\u0000\u00c1"+
+ "\u03fe\u0001\u0000\u0000\u0000\u00c3\u0404\u0001\u0000\u0000\u0000\u00c5"+
+ "\u040b\u0001\u0000\u0000\u0000\u00c7\u040f\u0001\u0000\u0000\u0000\u00c9"+
+ "\u0413\u0001\u0000\u0000\u0000\u00cb\u041a\u0001\u0000\u0000\u0000\u00cd"+
+ "\u0420\u0001\u0000\u0000\u0000\u00cf\u042b\u0001\u0000\u0000\u0000\u00d1"+
+ "\u0433\u0001\u0000\u0000\u0000\u00d3\u043d\u0001\u0000\u0000\u0000\u00d5"+
+ "\u0444\u0001\u0000\u0000\u0000\u00d7\u044a\u0001\u0000\u0000\u0000\u00d9"+
+ "\u044e\u0001\u0000\u0000\u0000\u00db\u045c\u0001\u0000\u0000\u0000\u00dd"+
+ "\u0462\u0001\u0000\u0000\u0000\u00df\u0473\u0001\u0000\u0000\u0000\u00e1"+
+ "\u0478\u0001\u0000\u0000\u0000\u00e3\u047c\u0001\u0000\u0000\u0000\u00e5"+
+ "\u0486\u0001\u0000\u0000\u0000\u00e7\u0488\u0001\u0000\u0000\u0000\u00e9"+
+ "\u0490\u0001\u0000\u0000\u0000\u00eb\u049c\u0001\u0000\u0000\u0000\u00ed"+
+ "\u04a8\u0001\u0000\u0000\u0000\u00ef\u04b1\u0001\u0000\u0000\u0000\u00f1"+
+ "\u04b6\u0001\u0000\u0000\u0000\u00f3\u04c0\u0001\u0000\u0000\u0000\u00f5"+
+ "\u04c8\u0001\u0000\u0000\u0000\u00f7\u04d1\u0001\u0000\u0000\u0000\u00f9"+
+ "\u04d8\u0001\u0000\u0000\u0000\u00fb\u04db\u0001\u0000\u0000\u0000\u00fd"+
+ "\u04e5\u0001\u0000\u0000\u0000\u00ff\u04f2\u0001\u0000\u0000\u0000\u0101"+
+ "\u04fa\u0001\u0000\u0000\u0000\u0103\u04ff\u0001\u0000\u0000\u0000\u0105"+
+ "\u0503\u0001\u0000\u0000\u0000\u0107\u0510\u0001\u0000\u0000\u0000\u0109"+
+ "\u0516\u0001\u0000\u0000\u0000\u010b\u051c\u0001\u0000\u0000\u0000\u010d"+
+ "\u0522\u0001\u0000\u0000\u0000\u010f\u052a\u0001\u0000\u0000\u0000\u0111"+
+ "\u052f\u0001\u0000\u0000\u0000\u0113\u0535\u0001\u0000\u0000\u0000\u0115"+
+ "\u053a\u0001\u0000\u0000\u0000\u0117\u053e\u0001\u0000\u0000\u0000\u0119"+
+ "\u0546\u0001\u0000\u0000\u0000\u011b\u0551\u0001\u0000\u0000\u0000\u011d"+
+ "\u055d\u0001\u0000\u0000\u0000\u011f\u0565\u0001\u0000\u0000\u0000\u0121"+
+ "\u056e\u0001\u0000\u0000\u0000\u0123\u0574\u0001\u0000\u0000\u0000\u0125"+
+ "\u057b\u0001\u0000\u0000\u0000\u0127\u0582\u0001\u0000\u0000\u0000\u0129"+
+ "\u058e\u0001\u0000\u0000\u0000\u012b\u0599\u0001\u0000\u0000\u0000\u012d"+
+ "\u059d\u0001\u0000\u0000\u0000\u012f\u05a2\u0001\u0000\u0000\u0000\u0131"+
+ "\u05b2\u0001\u0000\u0000\u0000\u0133\u05b7\u0001\u0000\u0000\u0000\u0135"+
+ "\u05c1\u0001\u0000\u0000\u0000\u0137\u05cb\u0001\u0000\u0000\u0000\u0139"+
+ "\u05d5\u0001\u0000\u0000\u0000\u013b\u05df\u0001\u0000\u0000\u0000\u013d"+
+ "\u05e4\u0001\u0000\u0000\u0000\u013f\u05ea\u0001\u0000\u0000\u0000\u0141"+
+ "\u05f2\u0001\u0000\u0000\u0000\u0143\u05f8\u0001\u0000\u0000\u0000\u0145"+
+ "\u0609\u0001\u0000\u0000\u0000\u0147\u0617\u0001\u0000\u0000\u0000\u0149"+
+ "\u0625\u0001\u0000\u0000\u0000\u014b\u062f\u0001\u0000\u0000\u0000\u014d"+
+ "\u0638\u0001\u0000\u0000\u0000\u014f\u0644\u0001\u0000\u0000\u0000\u0151"+
+ "\u064e\u0001\u0000\u0000\u0000\u0153\u0656\u0001\u0000\u0000\u0000\u0155"+
+ "\u065b\u0001\u0000\u0000\u0000\u0157\u0667\u0001\u0000\u0000\u0000\u0159"+
+ "\u066e\u0001\u0000\u0000\u0000\u015b\u0675\u0001\u0000\u0000\u0000\u015d"+
+ "\u067a\u0001\u0000\u0000\u0000\u015f\u0682\u0001\u0000\u0000\u0000\u0161"+
+ "\u0688\u0001\u0000\u0000\u0000\u0163\u068d\u0001\u0000\u0000\u0000\u0165"+
+ "\u0694\u0001\u0000\u0000\u0000\u0167\u069d\u0001\u0000\u0000\u0000\u0169"+
+ "\u06a2\u0001\u0000\u0000\u0000\u016b\u06a5\u0001\u0000\u0000\u0000\u016d"+
+ "\u06a8\u0001\u0000\u0000\u0000\u016f\u06b2\u0001\u0000\u0000\u0000\u0171"+
+ "\u06b9\u0001\u0000\u0000\u0000\u0173\u06bc\u0001\u0000\u0000\u0000\u0175"+
+ "\u06c1\u0001\u0000\u0000\u0000\u0177\u06c6\u0001\u0000\u0000\u0000\u0179"+
+ "\u06d1\u0001\u0000\u0000\u0000\u017b\u06d8\u0001\u0000\u0000\u0000\u017d"+
+ "\u06de\u0001\u0000\u0000\u0000\u017f\u06e4\u0001\u0000\u0000\u0000\u0181"+
+ "\u06ec\u0001\u0000\u0000\u0000\u0183\u06f3\u0001\u0000\u0000\u0000\u0185"+
+ "\u06fe\u0001\u0000\u0000\u0000\u0187\u0708\u0001\u0000\u0000\u0000\u0189"+
+ "\u0713\u0001\u0000\u0000\u0000\u018b\u071d\u0001\u0000\u0000\u0000\u018d"+
+ "\u0727\u0001\u0000\u0000\u0000\u018f\u072f\u0001\u0000\u0000\u0000\u0191"+
+ "\u0736\u0001\u0000\u0000\u0000\u0193\u073f\u0001\u0000\u0000\u0000\u0195"+
+ "\u0747\u0001\u0000\u0000\u0000\u0197\u074d\u0001\u0000\u0000\u0000\u0199"+
+ "\u0759\u0001\u0000\u0000\u0000\u019b\u0761\u0001\u0000\u0000\u0000\u019d"+
+ "\u0765\u0001\u0000\u0000\u0000\u019f\u076b\u0001\u0000\u0000\u0000\u01a1"+
+ "\u0777\u0001\u0000\u0000\u0000\u01a3\u0788\u0001\u0000\u0000\u0000\u01a5"+
+ "\u078f\u0001\u0000\u0000\u0000\u01a7\u0798\u0001\u0000\u0000\u0000\u01a9"+
+ "\u07a1\u0001\u0000\u0000\u0000\u01ab\u07a6\u0001\u0000\u0000\u0000\u01ad"+
+ "\u07ac\u0001\u0000\u0000\u0000\u01af\u07b9\u0001\u0000\u0000\u0000\u01b1"+
+ "\u07c3\u0001\u0000\u0000\u0000\u01b3\u07c9\u0001\u0000\u0000\u0000\u01b5"+
+ "\u07d0\u0001\u0000\u0000\u0000\u01b7\u07d5\u0001\u0000\u0000\u0000\u01b9"+
+ "\u07e3\u0001\u0000\u0000\u0000\u01bb\u07f4\u0001\u0000\u0000\u0000\u01bd"+
+ "\u07fc\u0001\u0000\u0000\u0000\u01bf\u080c\u0001\u0000\u0000\u0000\u01c1"+
+ "\u081c\u0001\u0000\u0000\u0000\u01c3\u0825\u0001\u0000\u0000\u0000\u01c5"+
+ "\u082e\u0001\u0000\u0000\u0000\u01c7\u0837\u0001\u0000\u0000\u0000\u01c9"+
+ "\u0844\u0001\u0000\u0000\u0000\u01cb\u0851\u0001\u0000\u0000\u0000\u01cd"+
+ "\u085d\u0001\u0000\u0000\u0000\u01cf\u0869\u0001\u0000\u0000\u0000\u01d1"+
+ "\u0874\u0001\u0000\u0000\u0000\u01d3\u0881\u0001\u0000\u0000\u0000\u01d5"+
+ "\u0888\u0001\u0000\u0000\u0000\u01d7\u0892\u0001\u0000\u0000\u0000\u01d9"+
+ "\u08ac\u0001\u0000\u0000\u0000\u01db\u08c3\u0001\u0000\u0000\u0000\u01dd"+
+ "\u08e0\u0001\u0000\u0000\u0000\u01df\u08fa\u0001\u0000\u0000\u0000\u01e1"+
+ "\u08fe\u0001\u0000\u0000\u0000\u01e3\u0907\u0001\u0000\u0000\u0000\u01e5"+
+ "\u0909\u0001\u0000\u0000\u0000\u01e7\u090c\u0001\u0000\u0000\u0000\u01e9"+
+ "\u0913\u0001\u0000\u0000\u0000\u01eb\u0924\u0001\u0000\u0000\u0000\u01ed"+
+ "\u0926\u0001\u0000\u0000\u0000\u01ef\u0944\u0001\u0000\u0000\u0000\u01f1"+
+ "\u0946\u0001\u0000\u0000\u0000\u01f3\u0949\u0001\u0000\u0000\u0000\u01f5"+
+ "\u094f\u0001\u0000\u0000\u0000\u01f7\u0951\u0001\u0000\u0000\u0000\u01f9"+
+ "\u095f\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005(\u0000\u0000\u01fc\u0002"+
+ "\u0001\u0000\u0000\u0000\u01fd\u01fe\u0005)\u0000\u0000\u01fe\u0004\u0001"+
+ "\u0000\u0000\u0000\u01ff\u0200\u0005[\u0000\u0000\u0200\u0006\u0001\u0000"+
+ "\u0000\u0000\u0201\u0202\u0005]\u0000\u0000\u0202\b\u0001\u0000\u0000"+
+ "\u0000\u0203\u0204\u0005{\u0000\u0000\u0204\n\u0001\u0000\u0000\u0000"+
+ "\u0205\u0206\u0005}\u0000\u0000\u0206\f\u0001\u0000\u0000\u0000\u0207"+
+ "\u0208\u0005=\u0000\u0000\u0208\u000e\u0001\u0000\u0000\u0000\u0209\u020a"+
+ "\u0005<\u0000\u0000\u020a\u0010\u0001\u0000\u0000\u0000\u020b\u020c\u0005"+
+ ">\u0000\u0000\u020c\u0012\u0001\u0000\u0000\u0000\u020d\u020e\u0005>\u0000"+
+ "\u0000\u020e\u020f\u0005=\u0000\u0000\u020f\u0014\u0001\u0000\u0000\u0000"+
+ "\u0210\u0211\u0005<\u0000\u0000\u0211\u0212\u0005>\u0000\u0000\u0212\u0016"+
+ "\u0001\u0000\u0000\u0000\u0213\u0214\u0005<\u0000\u0000\u0214\u0215\u0005"+
+ "=\u0000\u0000\u0215\u0018\u0001\u0000\u0000\u0000\u0216\u0217\u0005+\u0000"+
+ "\u0000\u0217\u001a\u0001\u0000\u0000\u0000\u0218\u0219\u0005-\u0000\u0000"+
+ "\u0219\u001c\u0001\u0000\u0000\u0000\u021a\u021b\u0005*\u0000\u0000\u021b"+
+ "\u001e\u0001\u0000\u0000\u0000\u021c\u021d\u0005/\u0000\u0000\u021d \u0001"+
+ "\u0000\u0000\u0000\u021e\u021f\u0005,\u0000\u0000\u021f\"\u0001\u0000"+
+ "\u0000\u0000\u0220\u0221\u0005-\u0000\u0000\u0221\u0222\u0005>\u0000\u0000"+
+ "\u0222$\u0001\u0000\u0000\u0000\u0223\u0224\u0005:\u0000\u0000\u0224&"+
+ "\u0001\u0000\u0000\u0000\u0225\u0226\u0005:\u0000\u0000\u0226\u0227\u0005"+
+ "=\u0000\u0000\u0227(\u0001\u0000\u0000\u0000\u0228\u0229\u0005#\u0000"+
+ "\u0000\u0229*\u0001\u0000\u0000\u0000\u022a\u022b\u0005e\u0000\u0000\u022b"+
+ "\u022c\u0005v\u0000\u0000\u022c\u022d\u0005a\u0000\u0000\u022d\u022e\u0005"+
+ "l\u0000\u0000\u022e,\u0001\u0000\u0000\u0000\u022f\u0230\u0005i\u0000"+
+ "\u0000\u0230\u0231\u0005f\u0000\u0000\u0231.\u0001\u0000\u0000\u0000\u0232"+
+ "\u0233\u0005c\u0000\u0000\u0233\u0234\u0005a\u0000\u0000\u0234\u0235\u0005"+
+ "s\u0000\u0000\u0235\u0236\u0005e\u0000\u0000\u02360\u0001\u0000\u0000"+
+ "\u0000\u0237\u0238\u0005t\u0000\u0000\u0238\u0239\u0005h\u0000\u0000\u0239"+
+ "\u023a\u0005e\u0000\u0000\u023a\u023b\u0005n\u0000\u0000\u023b2\u0001"+
+ "\u0000\u0000\u0000\u023c\u023d\u0005e\u0000\u0000\u023d\u023e\u0005l\u0000"+
+ "\u0000\u023e\u023f\u0005s\u0000\u0000\u023f\u0240\u0005e\u0000\u0000\u0240"+
+ "4\u0001\u0000\u0000\u0000\u0241\u0242\u0005u\u0000\u0000\u0242\u0243\u0005"+
+ "s\u0000\u0000\u0243\u0244\u0005i\u0000\u0000\u0244\u0245\u0005n\u0000"+
+ "\u0000\u0245\u0246\u0005g\u0000\u0000\u02466\u0001\u0000\u0000\u0000\u0247"+
+ "\u0248\u0005w\u0000\u0000\u0248\u0249\u0005i\u0000\u0000\u0249\u024a\u0005"+
+ "t\u0000\u0000\u024a\u024b\u0005h\u0000\u0000\u024b8\u0001\u0000\u0000"+
+ "\u0000\u024c\u024d\u0005c\u0000\u0000\u024d\u024e\u0005u\u0000\u0000\u024e"+
+ "\u024f\u0005r\u0000\u0000\u024f\u0250\u0005r\u0000\u0000\u0250\u0251\u0005"+
+ "e\u0000\u0000\u0251\u0252\u0005n\u0000\u0000\u0252\u0253\u0005t\u0000"+
+ "\u0000\u0253\u0254\u0005_\u0000\u0000\u0254\u0255\u0005d\u0000\u0000\u0255"+
+ "\u0256\u0005a\u0000\u0000\u0256\u0257\u0005t\u0000\u0000\u0257\u0258\u0005"+
+ "e\u0000\u0000\u0258:\u0001\u0000\u0000\u0000\u0259\u025a\u0005d\u0000"+
+ "\u0000\u025a\u025b\u0005a\u0000\u0000\u025b\u025c\u0005t\u0000\u0000\u025c"+
+ "\u025d\u0005e\u0000\u0000\u025d\u025e\u0005d\u0000\u0000\u025e\u025f\u0005"+
+ "i\u0000\u0000\u025f\u0260\u0005f\u0000\u0000\u0260\u0261\u0005f\u0000"+
+ "\u0000\u0261<\u0001\u0000\u0000\u0000\u0262\u0263\u0005d\u0000\u0000\u0263"+
+ "\u0264\u0005a\u0000\u0000\u0264\u0265\u0005t\u0000\u0000\u0265\u0266\u0005"+
+ "e\u0000\u0000\u0266\u0267\u0005a\u0000\u0000\u0267\u0268\u0005d\u0000"+
+ "\u0000\u0268\u0269\u0005d\u0000\u0000\u0269>\u0001\u0000\u0000\u0000\u026a"+
+ "\u026b\u0005g\u0000\u0000\u026b\u026c\u0005e\u0000\u0000\u026c\u026d\u0005"+
+ "t\u0000\u0000\u026d\u026e\u0005y\u0000\u0000\u026e\u026f\u0005e\u0000"+
+ "\u0000\u026f\u0270\u0005a\u0000\u0000\u0270\u0271\u0005r\u0000\u0000\u0271"+
+ "@\u0001\u0000\u0000\u0000\u0272\u0273\u0005g\u0000\u0000\u0273\u0274\u0005"+
+ "e\u0000\u0000\u0274\u0275\u0005t\u0000\u0000\u0275\u0276\u0005m\u0000"+
+ "\u0000\u0276\u0277\u0005o\u0000\u0000\u0277\u0278\u0005n\u0000\u0000\u0278"+
+ "\u0279\u0005t\u0000\u0000\u0279\u027a\u0005h\u0000\u0000\u027aB\u0001"+
+ "\u0000\u0000\u0000\u027b\u027c\u0005d\u0000\u0000\u027c\u027d\u0005a\u0000"+
+ "\u0000\u027d\u027e\u0005y\u0000\u0000\u027e\u027f\u0005o\u0000\u0000\u027f"+
+ "\u0280\u0005f\u0000\u0000\u0280\u0281\u0005m\u0000\u0000\u0281\u0282\u0005"+
+ "o\u0000\u0000\u0282\u0283\u0005n\u0000\u0000\u0283\u0284\u0005t\u0000"+
+ "\u0000\u0284\u0285\u0005h\u0000\u0000\u0285D\u0001\u0000\u0000\u0000\u0286"+
+ "\u0287\u0005d\u0000\u0000\u0287\u0288\u0005a\u0000\u0000\u0288\u0289\u0005"+
+ "y\u0000\u0000\u0289\u028a\u0005o\u0000\u0000\u028a\u028b\u0005f\u0000"+
+ "\u0000\u028b\u028c\u0005y\u0000\u0000\u028c\u028d\u0005e\u0000\u0000\u028d"+
+ "\u028e\u0005a\u0000\u0000\u028e\u028f\u0005r\u0000\u0000\u028fF\u0001"+
+ "\u0000\u0000\u0000\u0290\u0291\u0005d\u0000\u0000\u0291\u0292\u0005a\u0000"+
+ "\u0000\u0292\u0293\u0005y\u0000\u0000\u0293\u0294\u0005t\u0000\u0000\u0294"+
+ "\u0295\u0005o\u0000\u0000\u0295\u0296\u0005y\u0000\u0000\u0296\u0297\u0005"+
+ "e\u0000\u0000\u0297\u0298\u0005a\u0000\u0000\u0298\u0299\u0005r\u0000"+
+ "\u0000\u0299H\u0001\u0000\u0000\u0000\u029a\u029b\u0005d\u0000\u0000\u029b"+
+ "\u029c\u0005a\u0000\u0000\u029c\u029d\u0005y\u0000\u0000\u029d\u029e\u0005"+
+ "t\u0000\u0000\u029e\u029f\u0005o\u0000\u0000\u029f\u02a0\u0005m\u0000"+
+ "\u0000\u02a0\u02a1\u0005o\u0000\u0000\u02a1\u02a2\u0005n\u0000\u0000\u02a2"+
+ "\u02a3\u0005t\u0000\u0000\u02a3\u02a4\u0005h\u0000\u0000\u02a4J\u0001"+
+ "\u0000\u0000\u0000\u02a5\u02a6\u0005y\u0000\u0000\u02a6\u02a7\u0005e\u0000"+
+ "\u0000\u02a7\u02a8\u0005a\u0000\u0000\u02a8\u02a9\u0005r\u0000\u0000\u02a9"+
+ "\u02aa\u0005t\u0000\u0000\u02aa\u02ab\u0005o\u0000\u0000\u02ab\u02ac\u0005"+
+ "d\u0000\u0000\u02ac\u02ad\u0005a\u0000\u0000\u02ad\u02ae\u0005y\u0000"+
+ "\u0000\u02aeL\u0001\u0000\u0000\u0000\u02af\u02b0\u0005m\u0000\u0000\u02b0"+
+ "\u02b1\u0005o\u0000\u0000\u02b1\u02b2\u0005n\u0000\u0000\u02b2\u02b3\u0005"+
+ "t\u0000\u0000\u02b3\u02b4\u0005h\u0000\u0000\u02b4\u02b5\u0005t\u0000"+
+ "\u0000\u02b5\u02b6\u0005o\u0000\u0000\u02b6\u02b7\u0005d\u0000\u0000\u02b7"+
+ "\u02b8\u0005a\u0000\u0000\u02b8\u02b9\u0005y\u0000\u0000\u02b9N\u0001"+
+ "\u0000\u0000\u0000\u02ba\u02bb\u0005o\u0000\u0000\u02bb\u02bc\u0005n\u0000"+
+ "\u0000\u02bcP\u0001\u0000\u0000\u0000\u02bd\u02be\u0005d\u0000\u0000\u02be"+
+ "\u02bf\u0005r\u0000\u0000\u02bf\u02c0\u0005o\u0000\u0000\u02c0\u02c1\u0005"+
+ "p\u0000\u0000\u02c1R\u0001\u0000\u0000\u0000\u02c2\u02c3\u0005k\u0000"+
+ "\u0000\u02c3\u02c4\u0005e\u0000\u0000\u02c4\u02c5\u0005e\u0000\u0000\u02c5"+
+ "\u02c6\u0005p\u0000\u0000\u02c6T\u0001\u0000\u0000\u0000\u02c7\u02c8\u0005"+
+ "c\u0000\u0000\u02c8\u02c9\u0005a\u0000\u0000\u02c9\u02ca\u0005l\u0000"+
+ "\u0000\u02ca\u02cb\u0005c\u0000\u0000\u02cbV\u0001\u0000\u0000\u0000\u02cc"+
+ "\u02cd\u0005a\u0000\u0000\u02cd\u02ce\u0005t\u0000\u0000\u02ce\u02cf\u0005"+
+ "t\u0000\u0000\u02cf\u02d0\u0005r\u0000\u0000\u02d0\u02d1\u0005c\u0000"+
+ "\u0000\u02d1\u02d2\u0005a\u0000\u0000\u02d2\u02d3\u0005l\u0000\u0000\u02d3"+
+ "\u02d4\u0005c\u0000\u0000\u02d4X\u0001\u0000\u0000\u0000\u02d5\u02d6\u0005"+
+ "r\u0000\u0000\u02d6\u02d7\u0005e\u0000\u0000\u02d7\u02d8\u0005n\u0000"+
+ "\u0000\u02d8\u02d9\u0005a\u0000\u0000\u02d9\u02da\u0005m\u0000\u0000\u02da"+
+ "\u02db\u0005e\u0000\u0000\u02dbZ\u0001\u0000\u0000\u0000\u02dc\u02dd\u0005"+
+ "a\u0000\u0000\u02dd\u02de\u0005s\u0000\u0000\u02de\\\u0001\u0000\u0000"+
+ "\u0000\u02df\u02e0\u0005a\u0000\u0000\u02e0\u02e1\u0005n\u0000\u0000\u02e1"+
+ "\u02e2\u0005d\u0000\u0000\u02e2^\u0001\u0000\u0000\u0000\u02e3\u02e4\u0005"+
+ "o\u0000\u0000\u02e4\u02e5\u0005r\u0000\u0000\u02e5`\u0001\u0000\u0000"+
+ "\u0000\u02e6\u02e7\u0005x\u0000\u0000\u02e7\u02e8\u0005o\u0000\u0000\u02e8"+
+ "\u02e9\u0005r\u0000\u0000\u02e9b\u0001\u0000\u0000\u0000\u02ea\u02eb\u0005"+
+ "n\u0000\u0000\u02eb\u02ec\u0005o\u0000\u0000\u02ec\u02ed\u0005t\u0000"+
+ "\u0000\u02edd\u0001\u0000\u0000\u0000\u02ee\u02ef\u0005b\u0000\u0000\u02ef"+
+ "\u02f0\u0005e\u0000\u0000\u02f0\u02f1\u0005t\u0000\u0000\u02f1\u02f2\u0005"+
+ "w\u0000\u0000\u02f2\u02f3\u0005e\u0000\u0000\u02f3\u02f4\u0005e\u0000"+
+ "\u0000\u02f4\u02f5\u0005n\u0000\u0000\u02f5f\u0001\u0000\u0000\u0000\u02f6"+
+ "\u02f7\u0005i\u0000\u0000\u02f7\u02f8\u0005n\u0000\u0000\u02f8h\u0001"+
+ "\u0000\u0000\u0000\u02f9\u02fa\u0005n\u0000\u0000\u02fa\u02fb\u0005o\u0000"+
+ "\u0000\u02fb\u02fc\u0005t\u0000\u0000\u02fc\u02fd\u0005_\u0000\u0000\u02fd"+
+ "\u02fe\u0005i\u0000\u0000\u02fe\u02ff\u0005n\u0000\u0000\u02ffj\u0001"+
+ "\u0000\u0000\u0000\u0300\u0301\u0005n\u0000\u0000\u0301\u0302\u0005u\u0000"+
+ "\u0000\u0302\u0303\u0005l\u0000\u0000\u0303\u0304\u0005l\u0000\u0000\u0304"+
+ "l\u0001\u0000\u0000\u0000\u0305\u0306\u0005i\u0000\u0000\u0306\u0307\u0005"+
+ "s\u0000\u0000\u0307\u0308\u0005n\u0000\u0000\u0308\u0309\u0005u\u0000"+
+ "\u0000\u0309\u030a\u0005l\u0000\u0000\u030a\u030b\u0005l\u0000\u0000\u030b"+
+ "n\u0001\u0000\u0000\u0000\u030c\u030d\u0005e\u0000\u0000\u030d\u030e\u0005"+
+ "x\u0000\u0000\u030ep\u0001\u0000\u0000\u0000\u030f\u0310\u0005u\u0000"+
+ "\u0000\u0310\u0311\u0005n\u0000\u0000\u0311\u0312\u0005i\u0000\u0000\u0312"+
+ "\u0313\u0005o\u0000\u0000\u0313\u0314\u0005n\u0000\u0000\u0314r\u0001"+
+ "\u0000\u0000\u0000\u0315\u0316\u0005d\u0000\u0000\u0316\u0317\u0005i\u0000"+
+ "\u0000\u0317\u0318\u0005f\u0000\u0000\u0318\u0319\u0005f\u0000\u0000\u0319"+
+ "t\u0001\u0000\u0000\u0000\u031a\u031b\u0005s\u0000\u0000\u031b\u031c\u0005"+
+ "y\u0000\u0000\u031c\u031d\u0005m\u0000\u0000\u031d\u031e\u0005d\u0000"+
+ "\u0000\u031e\u031f\u0005i\u0000\u0000\u031f\u0320\u0005f\u0000\u0000\u0320"+
+ "\u0321\u0005f\u0000\u0000\u0321v\u0001\u0000\u0000\u0000\u0322\u0323\u0005"+
+ "i\u0000\u0000\u0323\u0324\u0005n\u0000\u0000\u0324\u0325\u0005t\u0000"+
+ "\u0000\u0325\u0326\u0005e\u0000\u0000\u0326\u0327\u0005r\u0000\u0000\u0327"+
+ "\u0328\u0005s\u0000\u0000\u0328\u0329\u0005e\u0000\u0000\u0329\u032a\u0005"+
+ "c\u0000\u0000\u032a\u032b\u0005t\u0000\u0000\u032bx\u0001\u0000\u0000"+
+ "\u0000\u032c\u032d\u0005r\u0000\u0000\u032d\u032e\u0005a\u0000\u0000\u032e"+
+ "\u032f\u0005n\u0000\u0000\u032f\u0330\u0005d\u0000\u0000\u0330\u0331\u0005"+
+ "o\u0000\u0000\u0331\u0332\u0005m\u0000\u0000\u0332z\u0001\u0000\u0000"+
+ "\u0000\u0333\u0334\u0005k\u0000\u0000\u0334\u0335\u0005e\u0000\u0000\u0335"+
+ "\u0336\u0005y\u0000\u0000\u0336\u0337\u0005s\u0000\u0000\u0337|\u0001"+
+ "\u0000\u0000\u0000\u0338\u0339\u0005i\u0000\u0000\u0339\u033a\u0005n\u0000"+
+ "\u0000\u033a\u033b\u0005t\u0000\u0000\u033b\u033c\u0005y\u0000\u0000\u033c"+
+ "\u033d\u0005e\u0000\u0000\u033d\u033e\u0005a\u0000\u0000\u033e\u033f\u0005"+
+ "r\u0000\u0000\u033f~\u0001\u0000\u0000\u0000\u0340\u0341\u0005i\u0000"+
+ "\u0000\u0341\u0342\u0005n\u0000\u0000\u0342\u0343\u0005t\u0000\u0000\u0343"+
+ "\u0344\u0005m\u0000\u0000\u0344\u0345\u0005o\u0000\u0000\u0345\u0346\u0005"+
+ "n\u0000\u0000\u0346\u0347\u0005t\u0000\u0000\u0347\u0348\u0005h\u0000"+
+ "\u0000\u0348\u0080\u0001\u0000\u0000\u0000\u0349\u034a\u0005i\u0000\u0000"+
+ "\u034a\u034b\u0005n\u0000\u0000\u034b\u034c\u0005t\u0000\u0000\u034c\u034d"+
+ "\u0005d\u0000\u0000\u034d\u034e\u0005a\u0000\u0000\u034e\u034f\u0005y"+
+ "\u0000\u0000\u034f\u0082\u0001\u0000\u0000\u0000\u0350\u0351\u0005c\u0000"+
+ "\u0000\u0351\u0352\u0005h\u0000\u0000\u0352\u0353\u0005e\u0000\u0000\u0353"+
+ "\u0354\u0005c\u0000\u0000\u0354\u0355\u0005k\u0000\u0000\u0355\u0084\u0001"+
+ "\u0000\u0000\u0000\u0356\u0357\u0005e\u0000\u0000\u0357\u0358\u0005x\u0000"+
+ "\u0000\u0358\u0359\u0005i\u0000\u0000\u0359\u035a\u0005s\u0000\u0000\u035a"+
+ "\u035b\u0005t\u0000\u0000\u035b\u035c\u0005s\u0000\u0000\u035c\u035d\u0005"+
+ "_\u0000\u0000\u035d\u035e\u0005i\u0000\u0000\u035e\u035f\u0005n\u0000"+
+ "\u0000\u035f\u0086\u0001\u0000\u0000\u0000\u0360\u0361\u0005t\u0000\u0000"+
+ "\u0361\u0362\u0005o\u0000\u0000\u0362\u0088\u0001\u0000\u0000\u0000\u0363"+
+ "\u0364\u0005r\u0000\u0000\u0364\u0365\u0005e\u0000\u0000\u0365\u0366\u0005"+
+ "t\u0000\u0000\u0366\u0367\u0005u\u0000\u0000\u0367\u0368\u0005r\u0000"+
+ "\u0000\u0368\u0369\u0005n\u0000\u0000\u0369\u008a\u0001\u0000\u0000\u0000"+
+ "\u036a\u036b\u0005i\u0000\u0000\u036b\u036c\u0005m\u0000\u0000\u036c\u036d"+
+ "\u0005b\u0000\u0000\u036d\u036e\u0005a\u0000\u0000\u036e\u036f\u0005l"+
+ "\u0000\u0000\u036f\u0370\u0005a\u0000\u0000\u0370\u0371\u0005n\u0000\u0000"+
+ "\u0371\u0372\u0005c\u0000\u0000\u0372\u0373\u0005e\u0000\u0000\u0373\u008c"+
+ "\u0001\u0000\u0000\u0000\u0374\u0375\u0005e\u0000\u0000\u0375\u0376\u0005"+
+ "r\u0000\u0000\u0376\u0377\u0005r\u0000\u0000\u0377\u0378\u0005o\u0000"+
+ "\u0000\u0378\u0379\u0005r\u0000\u0000\u0379\u037a\u0005c\u0000\u0000\u037a"+
+ "\u037b\u0005o\u0000\u0000\u037b\u037c\u0005d\u0000\u0000\u037c\u037d\u0005"+
+ "e\u0000\u0000\u037d\u008e\u0001\u0000\u0000\u0000\u037e\u037f\u0005a\u0000"+
+ "\u0000\u037f\u0380\u0005l\u0000\u0000\u0380\u0381\u0005l\u0000\u0000\u0381"+
+ "\u0090\u0001\u0000\u0000\u0000\u0382\u0383\u0005a\u0000\u0000\u0383\u0384"+
+ "\u0005g\u0000\u0000\u0384\u0385\u0005g\u0000\u0000\u0385\u0386\u0005r"+
+ "\u0000\u0000\u0386\u0092\u0001\u0000\u0000\u0000\u0387\u0388\u0005e\u0000"+
+ "\u0000\u0388\u0389\u0005r\u0000\u0000\u0389\u038a\u0005r\u0000\u0000\u038a"+
+ "\u038b\u0005o\u0000\u0000\u038b\u038c\u0005r\u0000\u0000\u038c\u038d\u0005"+
+ "l\u0000\u0000\u038d\u038e\u0005e\u0000\u0000\u038e\u038f\u0005v\u0000"+
+ "\u0000\u038f\u0390\u0005e\u0000\u0000\u0390\u0391\u0005l\u0000\u0000\u0391"+
+ "\u0094\u0001\u0000\u0000\u0000\u0392\u0393\u0005o\u0000\u0000\u0393\u0394"+
+ "\u0005r\u0000\u0000\u0394\u0395\u0005d\u0000\u0000\u0395\u0396\u0005e"+
+ "\u0000\u0000\u0396\u0397\u0005r\u0000\u0000\u0397\u0096\u0001\u0000\u0000"+
+ "\u0000\u0398\u0399\u0005b\u0000\u0000\u0399\u039a\u0005y\u0000\u0000\u039a"+
+ "\u0098\u0001\u0000\u0000\u0000\u039b\u039c\u0005r\u0000\u0000\u039c\u039d"+
+ "\u0005a\u0000\u0000\u039d\u039e\u0005n\u0000\u0000\u039e\u039f\u0005k"+
+ "\u0000\u0000\u039f\u009a\u0001\u0000\u0000\u0000\u03a0\u03a1\u0005a\u0000"+
+ "\u0000\u03a1\u03a2\u0005s\u0000\u0000\u03a2\u03a3\u0005c\u0000\u0000\u03a3"+
+ "\u009c\u0001\u0000\u0000\u0000\u03a4\u03a5\u0005d\u0000\u0000\u03a5\u03a6"+
+ "\u0005e\u0000\u0000\u03a6\u03a7\u0005s\u0000\u0000\u03a7\u03a8\u0005c"+
+ "\u0000\u0000\u03a8\u009e\u0001\u0000\u0000\u0000\u03a9\u03aa\u0005m\u0000"+
+ "\u0000\u03aa\u03ab\u0005i\u0000\u0000\u03ab\u03ac\u0005n\u0000\u0000\u03ac"+
+ "\u00a0\u0001\u0000\u0000\u0000\u03ad\u03ae\u0005m\u0000\u0000\u03ae\u03af"+
+ "\u0005a\u0000\u0000\u03af\u03b0\u0005x\u0000\u0000\u03b0\u00a2\u0001\u0000"+
+ "\u0000\u0000\u03b1\u03b2\u0005f\u0000\u0000\u03b2\u03b3\u0005i\u0000\u0000"+
+ "\u03b3\u03b4\u0005r\u0000\u0000\u03b4\u03b5\u0005s\u0000\u0000\u03b5\u03b6"+
+ "\u0005t\u0000\u0000\u03b6\u00a4\u0001\u0000\u0000\u0000\u03b7\u03b8\u0005"+
+ "l\u0000\u0000\u03b8\u03b9\u0005a\u0000\u0000\u03b9\u03ba\u0005s\u0000"+
+ "\u0000\u03ba\u03bb\u0005t\u0000\u0000\u03bb\u00a6\u0001\u0000\u0000\u0000"+
+ "\u03bc\u03bd\u0005i\u0000\u0000\u03bd\u03be\u0005n\u0000\u0000\u03be\u03bf"+
+ "\u0005d\u0000\u0000\u03bf\u03c0\u0005e\u0000\u0000\u03c0\u03c1\u0005x"+
+ "\u0000\u0000\u03c1\u03c2\u0005o\u0000\u0000\u03c2\u03c3\u0005f\u0000\u0000"+
+ "\u03c3\u00a8\u0001\u0000\u0000\u0000\u03c4\u03c5\u0005a\u0000\u0000\u03c5"+
+ "\u03c6\u0005b\u0000\u0000\u03c6\u03c7\u0005s\u0000\u0000\u03c7\u00aa\u0001"+
+ "\u0000\u0000\u0000\u03c8\u03c9\u0005k\u0000\u0000\u03c9\u03ca\u0005e\u0000"+
+ "\u0000\u03ca\u03cb\u0005y\u0000\u0000\u03cb\u00ac\u0001\u0000\u0000\u0000"+
+ "\u03cc\u03cd\u0005l\u0000\u0000\u03cd\u03ce\u0005n\u0000\u0000\u03ce\u00ae"+
+ "\u0001\u0000\u0000\u0000\u03cf\u03d0\u0005l\u0000\u0000\u03d0\u03d1\u0005"+
+ "o\u0000\u0000\u03d1\u03d2\u0005g\u0000\u0000\u03d2\u00b0\u0001\u0000\u0000"+
+ "\u0000\u03d3\u03d4\u0005t\u0000\u0000\u03d4\u03d5\u0005r\u0000\u0000\u03d5"+
+ "\u03d6\u0005u\u0000\u0000\u03d6\u03d7\u0005n\u0000\u0000\u03d7\u03d8\u0005"+
+ "c\u0000\u0000\u03d8\u00b2\u0001\u0000\u0000\u0000\u03d9\u03da\u0005r\u0000"+
+ "\u0000\u03da\u03db\u0005o\u0000\u0000\u03db\u03dc\u0005u\u0000\u0000\u03dc"+
+ "\u03dd\u0005n\u0000\u0000\u03dd\u03de\u0005d\u0000\u0000\u03de\u00b4\u0001"+
+ "\u0000\u0000\u0000\u03df\u03e0\u0005p\u0000\u0000\u03e0\u03e1\u0005o\u0000"+
+ "\u0000\u03e1\u03e2\u0005w\u0000\u0000\u03e2\u03e3\u0005e\u0000\u0000\u03e3"+
+ "\u03e4\u0005r\u0000\u0000\u03e4\u00b6\u0001\u0000\u0000\u0000\u03e5\u03e6"+
+ "\u0005m\u0000\u0000\u03e6\u03e7\u0005o\u0000\u0000\u03e7\u03e8\u0005d"+
+ "\u0000\u0000\u03e8\u00b8\u0001\u0000\u0000\u0000\u03e9\u03ea\u0005l\u0000"+
+ "\u0000\u03ea\u03eb\u0005e\u0000\u0000\u03eb\u03ec\u0005n\u0000\u0000\u03ec"+
+ "\u03ed\u0005g\u0000\u0000\u03ed\u03ee\u0005t\u0000\u0000\u03ee\u03ef\u0005"+
+ "h\u0000\u0000\u03ef\u00ba\u0001\u0000\u0000\u0000\u03f0\u03f1\u0005|\u0000"+
+ "\u0000\u03f1\u03f2\u0005|\u0000\u0000\u03f2\u00bc\u0001\u0000\u0000\u0000"+
+ "\u03f3\u03f4\u0005t\u0000\u0000\u03f4\u03f5\u0005r\u0000\u0000\u03f5\u03f6"+
+ "\u0005i\u0000\u0000\u03f6\u03f7\u0005m\u0000\u0000\u03f7\u00be\u0001\u0000"+
+ "\u0000\u0000\u03f8\u03f9\u0005u\u0000\u0000\u03f9\u03fa\u0005p\u0000\u0000"+
+ "\u03fa\u03fb\u0005p\u0000\u0000\u03fb\u03fc\u0005e\u0000\u0000\u03fc\u03fd"+
+ "\u0005r\u0000\u0000\u03fd\u00c0\u0001\u0000\u0000\u0000\u03fe\u03ff\u0005"+
+ "l\u0000\u0000\u03ff\u0400\u0005o\u0000\u0000\u0400\u0401\u0005w\u0000"+
+ "\u0000\u0401\u0402\u0005e\u0000\u0000\u0402\u0403\u0005r\u0000\u0000\u0403"+
+ "\u00c2\u0001\u0000\u0000\u0000\u0404\u0405\u0005s\u0000\u0000\u0405\u0406"+
+ "\u0005u\u0000\u0000\u0406\u0407\u0005b\u0000\u0000\u0407\u0408\u0005s"+
+ "\u0000\u0000\u0408\u0409\u0005t\u0000\u0000\u0409\u040a\u0005r\u0000\u0000"+
+ "\u040a\u00c4\u0001\u0000\u0000\u0000\u040b\u040c\u0005s\u0000\u0000\u040c"+
+ "\u040d\u0005u\u0000\u0000\u040d\u040e\u0005m\u0000\u0000\u040e\u00c6\u0001"+
+ "\u0000\u0000\u0000\u040f\u0410\u0005a\u0000\u0000\u0410\u0411\u0005v\u0000"+
+ "\u0000\u0411\u0412\u0005g\u0000\u0000\u0412\u00c8\u0001\u0000\u0000\u0000"+
+ "\u0413\u0414\u0005m\u0000\u0000\u0414\u0415\u0005e\u0000\u0000\u0415\u0416"+
+ "\u0005d\u0000\u0000\u0416\u0417\u0005i\u0000\u0000\u0417\u0418\u0005a"+
+ "\u0000\u0000\u0418\u0419\u0005n\u0000\u0000\u0419\u00ca\u0001\u0000\u0000"+
+ "\u0000\u041a\u041b\u0005c\u0000\u0000\u041b\u041c\u0005o\u0000\u0000\u041c"+
+ "\u041d\u0005u\u0000\u0000\u041d\u041e\u0005n\u0000\u0000\u041e\u041f\u0005"+
+ "t\u0000\u0000\u041f\u00cc\u0001\u0000\u0000\u0000\u0420\u0421\u0005i\u0000"+
+ "\u0000\u0421\u0422\u0005d\u0000\u0000\u0422\u0423\u0005e\u0000\u0000\u0423"+
+ "\u0424\u0005n\u0000\u0000\u0424\u0425\u0005t\u0000\u0000\u0425\u0426\u0005"+
+ "i\u0000\u0000\u0426\u0427\u0005f\u0000\u0000\u0427\u0428\u0005i\u0000"+
+ "\u0000\u0428\u0429\u0005e\u0000\u0000\u0429\u042a\u0005r\u0000\u0000\u042a"+
+ "\u00ce\u0001\u0000\u0000\u0000\u042b\u042c\u0005m\u0000\u0000\u042c\u042d"+
+ "\u0005e\u0000\u0000\u042d\u042e\u0005a\u0000\u0000\u042e\u042f\u0005s"+
+ "\u0000\u0000\u042f\u0430\u0005u\u0000\u0000\u0430\u0431\u0005r\u0000\u0000"+
+ "\u0431\u0432\u0005e\u0000\u0000\u0432\u00d0\u0001\u0000\u0000\u0000\u0433"+
+ "\u0434\u0005a\u0000\u0000\u0434\u0435\u0005t\u0000\u0000\u0435\u0436\u0005"+
+ "t\u0000\u0000\u0436\u0437\u0005r\u0000\u0000\u0437\u0438\u0005i\u0000"+
+ "\u0000\u0438\u0439\u0005b\u0000\u0000\u0439\u043a\u0005u\u0000\u0000\u043a"+
+ "\u043b\u0005t\u0000\u0000\u043b\u043c\u0005e\u0000\u0000\u043c\u00d2\u0001"+
+ "\u0000\u0000\u0000\u043d\u043e\u0005f\u0000\u0000\u043e\u043f\u0005i\u0000"+
+ "\u0000\u043f\u0440\u0005l\u0000\u0000\u0440\u0441\u0005t\u0000\u0000\u0441"+
+ "\u0442\u0005e\u0000\u0000\u0442\u0443\u0005r\u0000\u0000\u0443\u00d4\u0001"+
+ "\u0000\u0000\u0000\u0444\u0445\u0005m\u0000\u0000\u0445\u0446\u0005e\u0000"+
+ "\u0000\u0446\u0447\u0005r\u0000\u0000\u0447\u0448\u0005g\u0000\u0000\u0448"+
+ "\u0449\u0005e\u0000\u0000\u0449\u00d6\u0001\u0000\u0000\u0000\u044a\u044b"+
+ "\u0005e\u0000\u0000\u044b\u044c\u0005x\u0000\u0000\u044c\u044d\u0005p"+
+ "\u0000\u0000\u044d\u00d8\u0001\u0000\u0000\u0000\u044e\u044f\u0005c\u0000"+
+ "\u0000\u044f\u0450\u0005o\u0000\u0000\u0450\u0451\u0005m\u0000\u0000\u0451"+
+ "\u0452\u0005p\u0000\u0000\u0452\u0453\u0005o\u0000\u0000\u0453\u0454\u0005"+
+ "n\u0000\u0000\u0454\u0455\u0005e\u0000\u0000\u0455\u0456\u0005n\u0000"+
+ "\u0000\u0456\u0457\u0005t\u0000\u0000\u0457\u0458\u0005R\u0000\u0000\u0458"+
+ "\u0459\u0005o\u0000\u0000\u0459\u045a\u0005l\u0000\u0000\u045a\u045b\u0005"+
+ "e\u0000\u0000\u045b\u00da\u0001\u0000\u0000\u0000\u045c\u045d\u0005v\u0000"+
+ "\u0000\u045d\u045e\u0005i\u0000\u0000\u045e\u045f\u0005r\u0000\u0000\u045f"+
+ "\u0460\u0005a\u0000\u0000\u0460\u0461\u0005l\u0000\u0000\u0461\u00dc\u0001"+
+ "\u0000\u0000\u0000\u0462\u0463\u0005m\u0000\u0000\u0463\u0464\u0005a\u0000"+
+ "\u0000\u0464\u0465\u0005t\u0000\u0000\u0465\u0466\u0005c\u0000\u0000\u0466"+
+ "\u0467\u0005h\u0000\u0000\u0467\u0468\u0005_\u0000\u0000\u0468\u0469\u0005"+
+ "c\u0000\u0000\u0469\u046a\u0005h\u0000\u0000\u046a\u046b\u0005a\u0000"+
+ "\u0000\u046b\u046c\u0005r\u0000\u0000\u046c\u046d\u0005a\u0000\u0000\u046d"+
+ "\u046e\u0005c\u0000\u0000\u046e\u046f\u0005t\u0000\u0000\u046f\u0470\u0005"+
+ "e\u0000\u0000\u0470\u0471\u0005r\u0000\u0000\u0471\u0472\u0005s\u0000"+
+ "\u0000\u0472\u00de\u0001\u0000\u0000\u0000\u0473\u0474\u0005t\u0000\u0000"+
+ "\u0474\u0475\u0005y\u0000\u0000\u0475\u0476\u0005p\u0000\u0000\u0476\u0477"+
+ "\u0005e\u0000\u0000\u0477\u00e0\u0001\u0000\u0000\u0000\u0478\u0479\u0005"+
+ "n\u0000\u0000\u0479\u047a\u0005v\u0000\u0000\u047a\u047b\u0005l\u0000"+
+ "\u0000\u047b\u00e2\u0001\u0000\u0000\u0000\u047c\u047d\u0005h\u0000\u0000"+
+ "\u047d\u047e\u0005i\u0000\u0000\u047e\u047f\u0005e\u0000\u0000\u047f\u0480"+
+ "\u0005r\u0000\u0000\u0480\u0481\u0005a\u0000\u0000\u0481\u0482\u0005r"+
+ "\u0000\u0000\u0482\u0483\u0005c\u0000\u0000\u0483\u0484\u0005h\u0000\u0000"+
+ "\u0484\u0485\u0005y\u0000\u0000\u0485\u00e4\u0001\u0000\u0000\u0000\u0486"+
+ "\u0487\u0005_\u0000\u0000\u0487\u00e6\u0001\u0000\u0000\u0000\u0488\u0489"+
+ "\u0005i\u0000\u0000\u0489\u048a\u0005n\u0000\u0000\u048a\u048b\u0005v"+
+ "\u0000\u0000\u048b\u048c\u0005a\u0000\u0000\u048c\u048d\u0005l\u0000\u0000"+
+ "\u048d\u048e\u0005i\u0000\u0000\u048e\u048f\u0005d\u0000\u0000\u048f\u00e8"+
+ "\u0001\u0000\u0000\u0000\u0490\u0491\u0005l\u0000\u0000\u0491\u0492\u0005"+
+ "e\u0000\u0000\u0492\u0493\u0005v\u0000\u0000\u0493\u0494\u0005e\u0000"+
+ "\u0000\u0494\u0495\u0005n\u0000\u0000\u0495\u0496\u0005s\u0000\u0000\u0496"+
+ "\u0497\u0005h\u0000\u0000\u0497\u0498\u0005t\u0000\u0000\u0498\u0499\u0005"+
+ "e\u0000\u0000\u0499\u049a\u0005i\u0000\u0000\u049a\u049b\u0005n\u0000"+
+ "\u0000\u049b\u00ea\u0001\u0000\u0000\u0000\u049c\u049d\u0005v\u0000\u0000"+
+ "\u049d\u049e\u0005a\u0000\u0000\u049e\u049f\u0005l\u0000\u0000\u049f\u04a0"+
+ "\u0005u\u0000\u0000\u04a0\u04a1\u0005e\u0000\u0000\u04a1\u04a2\u0005d"+
+ "\u0000\u0000\u04a2\u04a3\u0005o\u0000\u0000\u04a3\u04a4\u0005m\u0000\u0000"+
+ "\u04a4\u04a5\u0005a\u0000\u0000\u04a5\u04a6\u0005i\u0000\u0000\u04a6\u04a7"+
+ "\u0005n\u0000\u0000\u04a7\u00ec\u0001\u0000\u0000\u0000\u04a8\u04a9\u0005"+
+ "v\u0000\u0000\u04a9\u04aa\u0005a\u0000\u0000\u04aa\u04ab\u0005r\u0000"+
+ "\u0000\u04ab\u04ac\u0005i\u0000\u0000\u04ac\u04ad\u0005a\u0000\u0000\u04ad"+
+ "\u04ae\u0005b\u0000\u0000\u04ae\u04af\u0005l\u0000\u0000\u04af\u04b0\u0005"+
+ "e\u0000\u0000\u04b0\u00ee\u0001\u0000\u0000\u0000\u04b1\u04b2\u0005d\u0000"+
+ "\u0000\u04b2\u04b3\u0005a\u0000\u0000\u04b3\u04b4\u0005t\u0000\u0000\u04b4"+
+ "\u04b5\u0005a\u0000\u0000\u04b5\u00f0\u0001\u0000\u0000\u0000\u04b6\u04b7"+
+ "\u0005s\u0000\u0000\u04b7\u04b8\u0005t\u0000\u0000\u04b8\u04b9\u0005r"+
+ "\u0000\u0000\u04b9\u04ba\u0005u\u0000\u0000\u04ba\u04bb\u0005c\u0000\u0000"+
+ "\u04bb\u04bc\u0005t\u0000\u0000\u04bc\u04bd\u0005u\u0000\u0000\u04bd\u04be"+
+ "\u0005r\u0000\u0000\u04be\u04bf\u0005e\u0000\u0000\u04bf\u00f2\u0001\u0000"+
+ "\u0000\u0000\u04c0\u04c1\u0005d\u0000\u0000\u04c1\u04c2\u0005a\u0000\u0000"+
+ "\u04c2\u04c3\u0005t\u0000\u0000\u04c3\u04c4\u0005a\u0000\u0000\u04c4\u04c5"+
+ "\u0005s\u0000\u0000\u04c5\u04c6\u0005e\u0000\u0000\u04c6\u04c7\u0005t"+
+ "\u0000\u0000\u04c7\u00f4\u0001\u0000\u0000\u0000\u04c8\u04c9\u0005o\u0000"+
+ "\u0000\u04c9\u04ca\u0005p\u0000\u0000\u04ca\u04cb\u0005e\u0000\u0000\u04cb"+
+ "\u04cc\u0005r\u0000\u0000\u04cc\u04cd\u0005a\u0000\u0000\u04cd\u04ce\u0005"+
+ "t\u0000\u0000\u04ce\u04cf\u0005o\u0000\u0000\u04cf\u04d0\u0005r\u0000"+
+ "\u0000\u04d0\u00f6\u0001\u0000\u0000\u0000\u04d1\u04d2\u0005d\u0000\u0000"+
+ "\u04d2\u04d3\u0005e\u0000\u0000\u04d3\u04d4\u0005f\u0000\u0000\u04d4\u04d5"+
+ "\u0005i\u0000\u0000\u04d5\u04d6\u0005n\u0000\u0000\u04d6\u04d7\u0005e"+
+ "\u0000\u0000\u04d7\u00f8\u0001\u0000\u0000\u0000\u04d8\u04d9\u0005<\u0000"+
+ "\u0000\u04d9\u04da\u0005-\u0000\u0000\u04da\u00fa\u0001\u0000\u0000\u0000"+
+ "\u04db\u04dc\u0005d\u0000\u0000\u04dc\u04dd\u0005a\u0000\u0000\u04dd\u04de"+
+ "\u0005t\u0000\u0000\u04de\u04df\u0005a\u0000\u0000\u04df\u04e0\u0005p"+
+ "\u0000\u0000\u04e0\u04e1\u0005o\u0000\u0000\u04e1\u04e2\u0005i\u0000\u0000"+
+ "\u04e2\u04e3\u0005n\u0000\u0000\u04e3\u04e4\u0005t\u0000\u0000\u04e4\u00fc"+
+ "\u0001\u0000\u0000\u0000\u04e5\u04e6\u0005h\u0000\u0000\u04e6\u04e7\u0005"+
+ "i\u0000\u0000\u04e7\u04e8\u0005e\u0000\u0000\u04e8\u04e9\u0005r\u0000"+
+ "\u0000\u04e9\u04ea\u0005a\u0000\u0000\u04ea\u04eb\u0005r\u0000\u0000\u04eb"+
+ "\u04ec\u0005c\u0000\u0000\u04ec\u04ed\u0005h\u0000\u0000\u04ed\u04ee\u0005"+
+ "i\u0000\u0000\u04ee\u04ef\u0005c\u0000\u0000\u04ef\u04f0\u0005a\u0000"+
+ "\u0000\u04f0\u04f1\u0005l\u0000\u0000\u04f1\u00fe\u0001\u0000\u0000\u0000"+
+ "\u04f2\u04f3\u0005r\u0000\u0000\u04f3\u04f4\u0005u\u0000\u0000\u04f4\u04f5"+
+ "\u0005l\u0000\u0000\u04f5\u04f6\u0005e\u0000\u0000\u04f6\u04f7\u0005s"+
+ "\u0000\u0000\u04f7\u04f8\u0005e\u0000\u0000\u04f8\u04f9\u0005t\u0000\u0000"+
+ "\u04f9\u0100\u0001\u0000\u0000\u0000\u04fa\u04fb\u0005r\u0000\u0000\u04fb"+
+ "\u04fc\u0005u\u0000\u0000\u04fc\u04fd\u0005l\u0000\u0000\u04fd\u04fe\u0005"+
+ "e\u0000\u0000\u04fe\u0102\u0001\u0000\u0000\u0000\u04ff\u0500\u0005e\u0000"+
+ "\u0000\u0500\u0501\u0005n\u0000\u0000\u0501\u0502\u0005d\u0000\u0000\u0502"+
+ "\u0104\u0001\u0000\u0000\u0000\u0503\u0504\u0005a\u0000\u0000\u0504\u0505"+
+ "\u0005l\u0000\u0000\u0505\u0506\u0005t\u0000\u0000\u0506\u0507\u0005e"+
+ "\u0000\u0000\u0507\u0508\u0005r\u0000\u0000\u0508\u0509\u0005D\u0000\u0000"+
+ "\u0509\u050a\u0005a\u0000\u0000\u050a\u050b\u0005t\u0000\u0000\u050b\u050c"+
+ "\u0005a\u0000\u0000\u050c\u050d\u0005s\u0000\u0000\u050d\u050e\u0005e"+
+ "\u0000\u0000\u050e\u050f\u0005t\u0000\u0000\u050f\u0106\u0001\u0000\u0000"+
+ "\u0000\u0510\u0511\u0005l\u0000\u0000\u0511\u0512\u0005t\u0000\u0000\u0512"+
+ "\u0513\u0005r\u0000\u0000\u0513\u0514\u0005i\u0000\u0000\u0514\u0515\u0005"+
+ "m\u0000\u0000\u0515\u0108\u0001\u0000\u0000\u0000\u0516\u0517\u0005r\u0000"+
+ "\u0000\u0517\u0518\u0005t\u0000\u0000\u0518\u0519\u0005r\u0000\u0000\u0519"+
+ "\u051a\u0005i\u0000\u0000\u051a\u051b\u0005m\u0000\u0000\u051b\u010a\u0001"+
+ "\u0000\u0000\u0000\u051c\u051d\u0005i\u0000\u0000\u051d\u051e\u0005n\u0000"+
+ "\u0000\u051e\u051f\u0005s\u0000\u0000\u051f\u0520\u0005t\u0000\u0000\u0520"+
+ "\u0521\u0005r\u0000\u0000\u0521\u010c\u0001\u0000\u0000\u0000\u0522\u0523"+
+ "\u0005r\u0000\u0000\u0523\u0524\u0005e\u0000\u0000\u0524\u0525\u0005p"+
+ "\u0000\u0000\u0525\u0526\u0005l\u0000\u0000\u0526\u0527\u0005a\u0000\u0000"+
+ "\u0527\u0528\u0005c\u0000\u0000\u0528\u0529\u0005e\u0000\u0000\u0529\u010e"+
+ "\u0001\u0000\u0000\u0000\u052a\u052b\u0005c\u0000\u0000\u052b\u052c\u0005"+
+ "e\u0000\u0000\u052c\u052d\u0005i\u0000\u0000\u052d\u052e\u0005l\u0000"+
+ "\u0000\u052e\u0110\u0001\u0000\u0000\u0000\u052f\u0530\u0005f\u0000\u0000"+
+ "\u0530\u0531\u0005l\u0000\u0000\u0531\u0532\u0005o\u0000\u0000\u0532\u0533"+
+ "\u0005o\u0000\u0000\u0533\u0534\u0005r\u0000\u0000\u0534\u0112\u0001\u0000"+
+ "\u0000\u0000\u0535\u0536\u0005s\u0000\u0000\u0536\u0537\u0005q\u0000\u0000"+
+ "\u0537\u0538\u0005r\u0000\u0000\u0538\u0539\u0005t\u0000\u0000\u0539\u0114"+
+ "\u0001\u0000\u0000\u0000\u053a\u053b\u0005a\u0000\u0000\u053b\u053c\u0005"+
+ "n\u0000\u0000\u053c\u053d\u0005y\u0000\u0000\u053d\u0116\u0001\u0000\u0000"+
+ "\u0000\u053e\u053f\u0005s\u0000\u0000\u053f\u0540\u0005e\u0000\u0000\u0540"+
+ "\u0541\u0005t\u0000\u0000\u0541\u0542\u0005d\u0000\u0000\u0542\u0543\u0005"+
+ "i\u0000\u0000\u0543\u0544\u0005f\u0000\u0000\u0544\u0545\u0005f\u0000"+
+ "\u0000\u0545\u0118\u0001\u0000\u0000\u0000\u0546\u0547\u0005s\u0000\u0000"+
+ "\u0547\u0548\u0005t\u0000\u0000\u0548\u0549\u0005d\u0000\u0000\u0549\u054a"+
+ "\u0005d\u0000\u0000\u054a\u054b\u0005e\u0000\u0000\u054b\u054c\u0005v"+
+ "\u0000\u0000\u054c\u054d\u0005_\u0000\u0000\u054d\u054e\u0005p\u0000\u0000"+
+ "\u054e\u054f\u0005o\u0000\u0000\u054f\u0550\u0005p\u0000\u0000\u0550\u011a"+
+ "\u0001\u0000\u0000\u0000\u0551\u0552\u0005s\u0000\u0000\u0552\u0553\u0005"+
+ "t\u0000\u0000\u0553\u0554\u0005d\u0000\u0000\u0554\u0555\u0005d\u0000"+
+ "\u0000\u0555\u0556\u0005e\u0000\u0000\u0556\u0557\u0005v\u0000\u0000\u0557"+
+ "\u0558\u0005_\u0000\u0000\u0558\u0559\u0005s\u0000\u0000\u0559\u055a\u0005"+
+ "a\u0000\u0000\u055a\u055b\u0005m\u0000\u0000\u055b\u055c\u0005p\u0000"+
+ "\u0000\u055c\u011c\u0001\u0000\u0000\u0000\u055d\u055e\u0005v\u0000\u0000"+
+ "\u055e\u055f\u0005a\u0000\u0000\u055f\u0560\u0005r\u0000\u0000\u0560\u0561"+
+ "\u0005_\u0000\u0000\u0561\u0562\u0005p\u0000\u0000\u0562\u0563\u0005o"+
+ "\u0000\u0000\u0563\u0564\u0005p\u0000\u0000\u0564\u011e\u0001\u0000\u0000"+
+ "\u0000\u0565\u0566\u0005v\u0000\u0000\u0566\u0567\u0005a\u0000\u0000\u0567"+
+ "\u0568\u0005r\u0000\u0000\u0568\u0569\u0005_\u0000\u0000\u0569\u056a\u0005"+
+ "s\u0000\u0000\u056a\u056b\u0005a\u0000\u0000\u056b\u056c\u0005m\u0000"+
+ "\u0000\u056c\u056d\u0005p\u0000\u0000\u056d\u0120\u0001\u0000\u0000\u0000"+
+ "\u056e\u056f\u0005g\u0000\u0000\u056f\u0570\u0005r\u0000\u0000\u0570\u0571"+
+ "\u0005o\u0000\u0000\u0571\u0572\u0005u\u0000\u0000\u0572\u0573\u0005p"+
+ "\u0000\u0000\u0573\u0122\u0001\u0000\u0000\u0000\u0574\u0575\u0005e\u0000"+
+ "\u0000\u0575\u0576\u0005x\u0000\u0000\u0576\u0577\u0005c\u0000\u0000\u0577"+
+ "\u0578\u0005e\u0000\u0000\u0578\u0579\u0005p\u0000\u0000\u0579\u057a\u0005"+
+ "t\u0000\u0000\u057a\u0124\u0001\u0000\u0000\u0000\u057b\u057c\u0005h\u0000"+
+ "\u0000\u057c\u057d\u0005a\u0000\u0000\u057d\u057e\u0005v\u0000\u0000\u057e"+
+ "\u057f\u0005i\u0000\u0000\u057f\u0580\u0005n\u0000\u0000\u0580\u0581\u0005"+
+ "g\u0000\u0000\u0581\u0126\u0001\u0000\u0000\u0000\u0582\u0583\u0005f\u0000"+
+ "\u0000\u0583\u0584\u0005i\u0000\u0000\u0584\u0585\u0005r\u0000\u0000\u0585"+
+ "\u0586\u0005s\u0000\u0000\u0586\u0587\u0005t\u0000\u0000\u0587\u0588\u0005"+
+ "_\u0000\u0000\u0588\u0589\u0005v\u0000\u0000\u0589\u058a\u0005a\u0000"+
+ "\u0000\u058a\u058b\u0005l\u0000\u0000\u058b\u058c\u0005u\u0000\u0000\u058c"+
+ "\u058d\u0005e\u0000\u0000\u058d\u0128\u0001\u0000\u0000\u0000\u058e\u058f"+
+ "\u0005l\u0000\u0000\u058f\u0590\u0005a\u0000\u0000\u0590\u0591\u0005s"+
+ "\u0000\u0000\u0591\u0592\u0005t\u0000\u0000\u0592\u0593\u0005_\u0000\u0000"+
+ "\u0593\u0594\u0005v\u0000\u0000\u0594\u0595\u0005a\u0000\u0000\u0595\u0596"+
+ "\u0005l\u0000\u0000\u0596\u0597\u0005u\u0000\u0000\u0597\u0598\u0005e"+
+ "\u0000\u0000\u0598\u012a\u0001\u0000\u0000\u0000\u0599\u059a\u0005l\u0000"+
+ "\u0000\u059a\u059b\u0005a\u0000\u0000\u059b\u059c\u0005g\u0000\u0000\u059c"+
+ "\u012c\u0001\u0000\u0000\u0000\u059d\u059e\u0005l\u0000\u0000\u059e\u059f"+
+ "\u0005e\u0000\u0000\u059f\u05a0\u0005a\u0000\u0000\u05a0\u05a1\u0005d"+
+ "\u0000\u0000\u05a1\u012e\u0001\u0000\u0000\u0000\u05a2\u05a3\u0005r\u0000"+
+ "\u0000\u05a3\u05a4\u0005a\u0000\u0000\u05a4\u05a5\u0005t\u0000\u0000\u05a5"+
+ "\u05a6\u0005i\u0000\u0000\u05a6\u05a7\u0005o\u0000\u0000\u05a7\u05a8\u0005"+
+ "_\u0000\u0000\u05a8\u05a9\u0005t\u0000\u0000\u05a9\u05aa\u0005o\u0000"+
+ "\u0000\u05aa\u05ab\u0005_\u0000\u0000\u05ab\u05ac\u0005r\u0000\u0000\u05ac"+
+ "\u05ad\u0005e\u0000\u0000\u05ad\u05ae\u0005p\u0000\u0000\u05ae\u05af\u0005"+
+ "o\u0000\u0000\u05af\u05b0\u0005r\u0000\u0000\u05b0\u05b1\u0005t\u0000"+
+ "\u0000\u05b1\u0130\u0001\u0000\u0000\u0000\u05b2\u05b3\u0005o\u0000\u0000"+
+ "\u05b3\u05b4\u0005v\u0000\u0000\u05b4\u05b5\u0005e\u0000\u0000\u05b5\u05b6"+
+ "\u0005r\u0000\u0000\u05b6\u0132\u0001\u0000\u0000\u0000\u05b7\u05b8\u0005"+
+ "p\u0000\u0000\u05b8\u05b9\u0005r\u0000\u0000\u05b9\u05ba\u0005e\u0000"+
+ "\u0000\u05ba\u05bb\u0005c\u0000\u0000\u05bb\u05bc\u0005e\u0000\u0000\u05bc"+
+ "\u05bd\u0005d\u0000\u0000\u05bd\u05be\u0005i\u0000\u0000\u05be\u05bf\u0005"+
+ "n\u0000\u0000\u05bf\u05c0\u0005g\u0000\u0000\u05c0\u0134\u0001\u0000\u0000"+
+ "\u0000\u05c1\u05c2\u0005f\u0000\u0000\u05c2\u05c3\u0005o\u0000\u0000\u05c3"+
+ "\u05c4\u0005l\u0000\u0000\u05c4\u05c5\u0005l\u0000\u0000\u05c5\u05c6\u0005"+
+ "o\u0000\u0000\u05c6\u05c7\u0005w\u0000\u0000\u05c7\u05c8\u0005i\u0000"+
+ "\u0000\u05c8\u05c9\u0005n\u0000\u0000\u05c9\u05ca\u0005g\u0000\u0000\u05ca"+
+ "\u0136\u0001\u0000\u0000\u0000\u05cb\u05cc\u0005u\u0000\u0000\u05cc\u05cd"+
+ "\u0005n\u0000\u0000\u05cd\u05ce\u0005b\u0000\u0000\u05ce\u05cf\u0005o"+
+ "\u0000\u0000\u05cf\u05d0\u0005u\u0000\u0000\u05d0\u05d1\u0005n\u0000\u0000"+
+ "\u05d1\u05d2\u0005d\u0000\u0000\u05d2\u05d3\u0005e\u0000\u0000\u05d3\u05d4"+
+ "\u0005d\u0000\u0000\u05d4\u0138\u0001\u0000\u0000\u0000\u05d5\u05d6\u0005"+
+ "p\u0000\u0000\u05d6\u05d7\u0005a\u0000\u0000\u05d7\u05d8\u0005r\u0000"+
+ "\u0000\u05d8\u05d9\u0005t\u0000\u0000\u05d9\u05da\u0005i\u0000\u0000\u05da"+
+ "\u05db\u0005t\u0000\u0000\u05db\u05dc\u0005i\u0000\u0000\u05dc\u05dd\u0005"+
+ "o\u0000\u0000\u05dd\u05de\u0005n\u0000\u0000\u05de\u013a\u0001\u0000\u0000"+
+ "\u0000\u05df\u05e0\u0005r\u0000\u0000\u05e0\u05e1\u0005o\u0000\u0000\u05e1"+
+ "\u05e2\u0005w\u0000\u0000\u05e2\u05e3\u0005s\u0000\u0000\u05e3\u013c\u0001"+
+ "\u0000\u0000\u0000\u05e4\u05e5\u0005r\u0000\u0000\u05e5\u05e6\u0005a\u0000"+
+ "\u0000\u05e6\u05e7\u0005n\u0000\u0000\u05e7\u05e8\u0005g\u0000\u0000\u05e8"+
+ "\u05e9\u0005e\u0000\u0000\u05e9\u013e\u0001\u0000\u0000\u0000\u05ea\u05eb"+
+ "\u0005c\u0000\u0000\u05eb\u05ec\u0005u\u0000\u0000\u05ec\u05ed\u0005r"+
+ "\u0000\u0000\u05ed\u05ee\u0005r\u0000\u0000\u05ee\u05ef\u0005e\u0000\u0000"+
+ "\u05ef\u05f0\u0005n\u0000\u0000\u05f0\u05f1\u0005t\u0000\u0000\u05f1\u0140"+
+ "\u0001\u0000\u0000\u0000\u05f2\u05f3\u0005v\u0000\u0000\u05f3\u05f4\u0005"+
+ "a\u0000\u0000\u05f4\u05f5\u0005l\u0000\u0000\u05f5\u05f6\u0005i\u0000"+
+ "\u0000\u05f6\u05f7\u0005d\u0000\u0000\u05f7\u0142\u0001\u0000\u0000\u0000"+
+ "\u05f8\u05f9\u0005f\u0000\u0000\u05f9\u05fa\u0005i\u0000\u0000\u05fa\u05fb"+
+ "\u0005l\u0000\u0000\u05fb\u05fc\u0005l\u0000\u0000\u05fc\u05fd\u0005_"+
+ "\u0000\u0000\u05fd\u05fe\u0005t\u0000\u0000\u05fe\u05ff\u0005i\u0000\u0000"+
+ "\u05ff\u0600\u0005m\u0000\u0000\u0600\u0601\u0005e\u0000\u0000\u0601\u0602"+
+ "\u0005_\u0000\u0000\u0602\u0603\u0005s\u0000\u0000\u0603\u0604\u0005e"+
+ "\u0000\u0000\u0604\u0605\u0005r\u0000\u0000\u0605\u0606\u0005i\u0000\u0000"+
+ "\u0606\u0607\u0005e\u0000\u0000\u0607\u0608\u0005s\u0000\u0000\u0608\u0144"+
+ "\u0001\u0000\u0000\u0000\u0609\u060a\u0005f\u0000\u0000\u060a\u060b\u0005"+
+ "l\u0000\u0000\u060b\u060c\u0005o\u0000\u0000\u060c\u060d\u0005w\u0000"+
+ "\u0000\u060d\u060e\u0005_\u0000\u0000\u060e\u060f\u0005t\u0000\u0000\u060f"+
+ "\u0610\u0005o\u0000\u0000\u0610\u0611\u0005_\u0000\u0000\u0611\u0612\u0005"+
+ "s\u0000\u0000\u0612\u0613\u0005t\u0000\u0000\u0613\u0614\u0005o\u0000"+
+ "\u0000\u0614\u0615\u0005c\u0000\u0000\u0615\u0616\u0005k\u0000\u0000\u0616"+
+ "\u0146\u0001\u0000\u0000\u0000\u0617\u0618\u0005s\u0000\u0000\u0618\u0619"+
+ "\u0005t\u0000\u0000\u0619\u061a\u0005o\u0000\u0000\u061a\u061b\u0005c"+
+ "\u0000\u0000\u061b\u061c\u0005k\u0000\u0000\u061c\u061d\u0005_\u0000\u0000"+
+ "\u061d\u061e\u0005t\u0000\u0000\u061e\u061f\u0005o\u0000\u0000\u061f\u0620"+
+ "\u0005_\u0000\u0000\u0620\u0621\u0005f\u0000\u0000\u0621\u0622\u0005l"+
+ "\u0000\u0000\u0622\u0623\u0005o\u0000\u0000\u0623\u0624\u0005w\u0000\u0000"+
+ "\u0624\u0148\u0001\u0000\u0000\u0000\u0625\u0626\u0005t\u0000\u0000\u0626"+
+ "\u0627\u0005i\u0000\u0000\u0627\u0628\u0005m\u0000\u0000\u0628\u0629\u0005"+
+ "e\u0000\u0000\u0629\u062a\u0005s\u0000\u0000\u062a\u062b\u0005h\u0000"+
+ "\u0000\u062b\u062c\u0005i\u0000\u0000\u062c\u062d\u0005f\u0000\u0000\u062d"+
+ "\u062e\u0005t\u0000\u0000\u062e\u014a\u0001\u0000\u0000\u0000\u062f\u0630"+
+ "\u0005m\u0000\u0000\u0630\u0631\u0005e\u0000\u0000\u0631\u0632\u0005a"+
+ "\u0000\u0000\u0632\u0633\u0005s\u0000\u0000\u0633\u0634\u0005u\u0000\u0000"+
+ "\u0634\u0635\u0005r\u0000\u0000\u0635\u0636\u0005e\u0000\u0000\u0636\u0637"+
+ "\u0005s\u0000\u0000\u0637\u014c\u0001\u0000\u0000\u0000\u0638\u0639\u0005"+
+ "n\u0000\u0000\u0639\u063a\u0005o\u0000\u0000\u063a\u063b\u0005_\u0000"+
+ "\u0000\u063b\u063c\u0005m\u0000\u0000\u063c\u063d\u0005e\u0000\u0000\u063d"+
+ "\u063e\u0005a\u0000\u0000\u063e\u063f\u0005s\u0000\u0000\u063f\u0640\u0005"+
+ "u\u0000\u0000\u0640\u0641\u0005r\u0000\u0000\u0641\u0642\u0005e\u0000"+
+ "\u0000\u0642\u0643\u0005s\u0000\u0000\u0643\u014e\u0001\u0000\u0000\u0000"+
+ "\u0644\u0645\u0005c\u0000\u0000\u0645\u0646\u0005o\u0000\u0000\u0646\u0647"+
+ "\u0005n\u0000\u0000\u0647\u0648\u0005d\u0000\u0000\u0648\u0649\u0005i"+
+ "\u0000\u0000\u0649\u064a\u0005t\u0000\u0000\u064a\u064b\u0005i\u0000\u0000"+
+ "\u064b\u064c\u0005o\u0000\u0000\u064c\u064d\u0005n\u0000\u0000\u064d\u0150"+
+ "\u0001\u0000\u0000\u0000\u064e\u064f\u0005b\u0000\u0000\u064f\u0650\u0005"+
+ "o\u0000\u0000\u0650\u0651\u0005o\u0000\u0000\u0651\u0652\u0005l\u0000"+
+ "\u0000\u0652\u0653\u0005e\u0000\u0000\u0653\u0654\u0005a\u0000\u0000\u0654"+
+ "\u0655\u0005n\u0000\u0000\u0655\u0152\u0001\u0000\u0000\u0000\u0656\u0657"+
+ "\u0005d\u0000\u0000\u0657\u0658\u0005a\u0000\u0000\u0658\u0659\u0005t"+
+ "\u0000\u0000\u0659\u065a\u0005e\u0000\u0000\u065a\u0154\u0001\u0000\u0000"+
+ "\u0000\u065b\u065c\u0005t\u0000\u0000\u065c\u065d\u0005i\u0000\u0000\u065d"+
+ "\u065e\u0005m\u0000\u0000\u065e\u065f\u0005e\u0000\u0000\u065f\u0660\u0005"+
+ "_\u0000\u0000\u0660\u0661\u0005p\u0000\u0000\u0661\u0662\u0005e\u0000"+
+ "\u0000\u0662\u0663\u0005r\u0000\u0000\u0663\u0664\u0005i\u0000\u0000\u0664"+
+ "\u0665\u0005o\u0000\u0000\u0665\u0666\u0005d\u0000\u0000\u0666\u0156\u0001"+
+ "\u0000\u0000\u0000\u0667\u0668\u0005n\u0000\u0000\u0668\u0669\u0005u\u0000"+
+ "\u0000\u0669\u066a\u0005m\u0000\u0000\u066a\u066b\u0005b\u0000\u0000\u066b"+
+ "\u066c\u0005e\u0000\u0000\u066c\u066d\u0005r\u0000\u0000\u066d\u0158\u0001"+
+ "\u0000\u0000\u0000\u066e\u066f\u0005s\u0000\u0000\u066f\u0670\u0005t\u0000"+
+ "\u0000\u0670\u0671\u0005r\u0000\u0000\u0671\u0672\u0005i\u0000\u0000\u0672"+
+ "\u0673\u0005n\u0000\u0000\u0673\u0674\u0005g\u0000\u0000\u0674\u015a\u0001"+
+ "\u0000\u0000\u0000\u0675\u0676\u0005t\u0000\u0000\u0676\u0677\u0005i\u0000"+
+ "\u0000\u0677\u0678\u0005m\u0000\u0000\u0678\u0679\u0005e\u0000\u0000\u0679"+
+ "\u015c\u0001\u0000\u0000\u0000\u067a\u067b\u0005i\u0000\u0000\u067b\u067c"+
+ "\u0005n\u0000\u0000\u067c\u067d\u0005t\u0000\u0000\u067d\u067e\u0005e"+
+ "\u0000\u0000\u067e\u067f\u0005g\u0000\u0000\u067f\u0680\u0005e\u0000\u0000"+
+ "\u0680\u0681\u0005r\u0000\u0000\u0681\u015e\u0001\u0000\u0000\u0000\u0682"+
+ "\u0683\u0005f\u0000\u0000\u0683\u0684\u0005l\u0000\u0000\u0684\u0685\u0005"+
+ "o\u0000\u0000\u0685\u0686\u0005a\u0000\u0000\u0686\u0687\u0005t\u0000"+
+ "\u0000\u0687\u0160\u0001\u0000\u0000\u0000\u0688\u0689\u0005l\u0000\u0000"+
+ "\u0689\u068a\u0005i\u0000\u0000\u068a\u068b\u0005s\u0000\u0000\u068b\u068c"+
+ "\u0005t\u0000\u0000\u068c\u0162\u0001\u0000\u0000\u0000\u068d\u068e\u0005"+
+ "r\u0000\u0000\u068e\u068f\u0005e\u0000\u0000\u068f\u0690\u0005c\u0000"+
+ "\u0000\u0690\u0691\u0005o\u0000\u0000\u0691\u0692\u0005r\u0000\u0000\u0692"+
+ "\u0693\u0005d\u0000\u0000\u0693\u0164\u0001\u0000\u0000\u0000\u0694\u0695"+
+ "\u0005r\u0000\u0000\u0695\u0696\u0005e\u0000\u0000\u0696\u0697\u0005s"+
+ "\u0000\u0000\u0697\u0698\u0005t\u0000\u0000\u0698\u0699\u0005r\u0000\u0000"+
+ "\u0699\u069a\u0005i\u0000\u0000\u069a\u069b\u0005c\u0000\u0000\u069b\u069c"+
+ "\u0005t\u0000\u0000\u069c\u0166\u0001\u0000\u0000\u0000\u069d\u069e\u0005"+
+ "y\u0000\u0000\u069e\u069f\u0005y\u0000\u0000\u069f\u06a0\u0005y\u0000"+
+ "\u0000\u06a0\u06a1\u0005y\u0000\u0000\u06a1\u0168\u0001\u0000\u0000\u0000"+
+ "\u06a2\u06a3\u0005m\u0000\u0000\u06a3\u06a4\u0005m\u0000\u0000\u06a4\u016a"+
+ "\u0001\u0000\u0000\u0000\u06a5\u06a6\u0005d\u0000\u0000\u06a6\u06a7\u0005"+
+ "d\u0000\u0000\u06a7\u016c\u0001\u0000\u0000\u0000\u06a8\u06a9\u0005m\u0000"+
+ "\u0000\u06a9\u06aa\u0005a\u0000\u0000\u06aa\u06ab\u0005x\u0000\u0000\u06ab"+
+ "\u06ac\u0005L\u0000\u0000\u06ac\u06ad\u0005e\u0000\u0000\u06ad\u06ae\u0005"+
+ "n\u0000\u0000\u06ae\u06af\u0005g\u0000\u0000\u06af\u06b0\u0005t\u0000"+
+ "\u0000\u06b0\u06b1\u0005h\u0000\u0000\u06b1\u016e\u0001\u0000\u0000\u0000"+
+ "\u06b2\u06b3\u0005r\u0000\u0000\u06b3\u06b4\u0005e\u0000\u0000\u06b4\u06b5"+
+ "\u0005g\u0000\u0000\u06b5\u06b6\u0005e\u0000\u0000\u06b6\u06b7\u0005x"+
+ "\u0000\u0000\u06b7\u06b8\u0005p\u0000\u0000\u06b8\u0170\u0001\u0000\u0000"+
+ "\u0000\u06b9\u06ba\u0005i\u0000\u0000\u06ba\u06bb\u0005s\u0000\u0000\u06bb"+
+ "\u0172\u0001\u0000\u0000\u0000\u06bc\u06bd\u0005w\u0000\u0000\u06bd\u06be"+
+ "\u0005h\u0000\u0000\u06be\u06bf\u0005e\u0000\u0000\u06bf\u06c0\u0005n"+
+ "\u0000\u0000\u06c0\u0174\u0001\u0000\u0000\u0000\u06c1\u06c2\u0005f\u0000"+
+ "\u0000\u06c2\u06c3\u0005r\u0000\u0000\u06c3\u06c4\u0005o\u0000\u0000\u06c4"+
+ "\u06c5\u0005m\u0000\u0000\u06c5\u0176\u0001\u0000\u0000\u0000\u06c6\u06c7"+
+ "\u0005a\u0000\u0000\u06c7\u06c8\u0005g\u0000\u0000\u06c8\u06c9\u0005g"+
+ "\u0000\u0000\u06c9\u06ca\u0005r\u0000\u0000\u06ca\u06cb\u0005e\u0000\u0000"+
+ "\u06cb\u06cc\u0005g\u0000\u0000\u06cc\u06cd\u0005a\u0000\u0000\u06cd\u06ce"+
+ "\u0005t\u0000\u0000\u06ce\u06cf\u0005e\u0000\u0000\u06cf\u06d0\u0005s"+
+ "\u0000\u0000\u06d0\u0178\u0001\u0000\u0000\u0000\u06d1\u06d2\u0005p\u0000"+
+ "\u0000\u06d2\u06d3\u0005o\u0000\u0000\u06d3\u06d4\u0005i\u0000\u0000\u06d4"+
+ "\u06d5\u0005n\u0000\u0000\u06d5\u06d6\u0005t\u0000\u0000\u06d6\u06d7\u0005"+
+ "s\u0000\u0000\u06d7\u017a\u0001\u0000\u0000\u0000\u06d8\u06d9\u0005p\u0000"+
+ "\u0000\u06d9\u06da\u0005o\u0000\u0000\u06da\u06db\u0005i\u0000\u0000\u06db"+
+ "\u06dc\u0005n\u0000\u0000\u06dc\u06dd\u0005t\u0000\u0000\u06dd\u017c\u0001"+
+ "\u0000\u0000\u0000\u06de\u06df\u0005t\u0000\u0000\u06df\u06e0\u0005o\u0000"+
+ "\u0000\u06e0\u06e1\u0005t\u0000\u0000\u06e1\u06e2\u0005a\u0000\u0000\u06e2"+
+ "\u06e3\u0005l\u0000\u0000\u06e3\u017e\u0001\u0000\u0000\u0000\u06e4\u06e5"+
+ "\u0005p\u0000\u0000\u06e5\u06e6\u0005a\u0000\u0000\u06e6\u06e7\u0005r"+
+ "\u0000\u0000\u06e7\u06e8\u0005t\u0000\u0000\u06e8\u06e9\u0005i\u0000\u0000"+
+ "\u06e9\u06ea\u0005a\u0000\u0000\u06ea\u06eb\u0005l\u0000\u0000\u06eb\u0180"+
+ "\u0001\u0000\u0000\u0000\u06ec\u06ed\u0005a\u0000\u0000\u06ed\u06ee\u0005"+
+ "l\u0000\u0000\u06ee\u06ef\u0005w\u0000\u0000\u06ef\u06f0\u0005a\u0000"+
+ "\u0000\u06f0\u06f1\u0005y\u0000\u0000\u06f1\u06f2\u0005s\u0000\u0000\u06f2"+
+ "\u0182\u0001\u0000\u0000\u0000\u06f3\u06f4\u0005i\u0000\u0000\u06f4\u06f5"+
+ "\u0005n\u0000\u0000\u06f5\u06f6\u0005n\u0000\u0000\u06f6\u06f7\u0005e"+
+ "\u0000\u0000\u06f7\u06f8\u0005r\u0000\u0000\u06f8\u06f9\u0005_\u0000\u0000"+
+ "\u06f9\u06fa\u0005j\u0000\u0000\u06fa\u06fb\u0005o\u0000\u0000\u06fb\u06fc"+
+ "\u0005i\u0000\u0000\u06fc\u06fd\u0005n\u0000\u0000\u06fd\u0184\u0001\u0000"+
+ "\u0000\u0000\u06fe\u06ff\u0005l\u0000\u0000\u06ff\u0700\u0005e\u0000\u0000"+
+ "\u0700\u0701\u0005f\u0000\u0000\u0701\u0702\u0005t\u0000\u0000\u0702\u0703"+
+ "\u0005_\u0000\u0000\u0703\u0704\u0005j\u0000\u0000\u0704\u0705\u0005o"+
+ "\u0000\u0000\u0705\u0706\u0005i\u0000\u0000\u0706\u0707\u0005n\u0000\u0000"+
+ "\u0707\u0186\u0001\u0000\u0000\u0000\u0708\u0709\u0005c\u0000\u0000\u0709"+
+ "\u070a\u0005r\u0000\u0000\u070a\u070b\u0005o\u0000\u0000\u070b\u070c\u0005"+
+ "s\u0000\u0000\u070c\u070d\u0005s\u0000\u0000\u070d\u070e\u0005_\u0000"+
+ "\u0000\u070e\u070f\u0005j\u0000\u0000\u070f\u0710\u0005o\u0000\u0000\u0710"+
+ "\u0711\u0005i\u0000\u0000\u0711\u0712\u0005n\u0000\u0000\u0712\u0188\u0001"+
+ "\u0000\u0000\u0000\u0713\u0714\u0005f\u0000\u0000\u0714\u0715\u0005u\u0000"+
+ "\u0000\u0715\u0716\u0005l\u0000\u0000\u0716\u0717\u0005l\u0000\u0000\u0717"+
+ "\u0718\u0005_\u0000\u0000\u0718\u0719\u0005j\u0000\u0000\u0719\u071a\u0005"+
+ "o\u0000\u0000\u071a\u071b\u0005i\u0000\u0000\u071b\u071c\u0005n\u0000"+
+ "\u0000\u071c\u018a\u0001\u0000\u0000\u0000\u071d\u071e\u0005m\u0000\u0000"+
+ "\u071e\u071f\u0005a\u0000\u0000\u071f\u0720\u0005p\u0000\u0000\u0720\u0721"+
+ "\u0005s\u0000\u0000\u0721\u0722\u0005_\u0000\u0000\u0722\u0723\u0005f"+
+ "\u0000\u0000\u0723\u0724\u0005r\u0000\u0000\u0724\u0725\u0005o\u0000\u0000"+
+ "\u0725\u0726\u0005m\u0000\u0000\u0726\u018c\u0001\u0000\u0000\u0000\u0727"+
+ "\u0728\u0005m\u0000\u0000\u0728\u0729\u0005a\u0000\u0000\u0729\u072a\u0005"+
+ "p\u0000\u0000\u072a\u072b\u0005s\u0000\u0000\u072b\u072c\u0005_\u0000"+
+ "\u0000\u072c\u072d\u0005t\u0000\u0000\u072d\u072e\u0005o\u0000\u0000\u072e"+
+ "\u018e\u0001\u0000\u0000\u0000\u072f\u0730\u0005m\u0000\u0000\u0730\u0731"+
+ "\u0005a\u0000\u0000\u0731\u0732\u0005p\u0000\u0000\u0732\u0733\u0005_"+
+ "\u0000\u0000\u0733\u0734\u0005t\u0000\u0000\u0734\u0735\u0005o\u0000\u0000"+
+ "\u0735\u0190\u0001\u0000\u0000\u0000\u0736\u0737\u0005m\u0000\u0000\u0737"+
+ "\u0738\u0005a\u0000\u0000\u0738\u0739\u0005p\u0000\u0000\u0739\u073a\u0005"+
+ "_\u0000\u0000\u073a\u073b\u0005f\u0000\u0000\u073b\u073c\u0005r\u0000"+
+ "\u0000\u073c\u073d\u0005o\u0000\u0000\u073d\u073e\u0005m\u0000\u0000\u073e"+
+ "\u0192\u0001\u0000\u0000\u0000\u073f\u0740\u0005r\u0000\u0000\u0740\u0741"+
+ "\u0005e\u0000\u0000\u0741\u0742\u0005t\u0000\u0000\u0742\u0743\u0005u"+
+ "\u0000\u0000\u0743\u0744\u0005r\u0000\u0000\u0744\u0745\u0005n\u0000\u0000"+
+ "\u0745\u0746\u0005s\u0000\u0000\u0746\u0194\u0001\u0000\u0000\u0000\u0747"+
+ "\u0748\u0005p\u0000\u0000\u0748\u0749\u0005i\u0000\u0000\u0749\u074a\u0005"+
+ "v\u0000\u0000\u074a\u074b\u0005o\u0000\u0000\u074b\u074c\u0005t\u0000"+
+ "\u0000\u074c\u0196\u0001\u0000\u0000\u0000\u074d\u074e\u0005c\u0000\u0000"+
+ "\u074e\u074f\u0005u\u0000\u0000\u074f\u0750\u0005s\u0000\u0000\u0750\u0751"+
+ "\u0005t\u0000\u0000\u0751\u0752\u0005o\u0000\u0000\u0752\u0753\u0005m"+
+ "\u0000\u0000\u0753\u0754\u0005P\u0000\u0000\u0754\u0755\u0005i\u0000\u0000"+
+ "\u0755\u0756\u0005v\u0000\u0000\u0756\u0757\u0005o\u0000\u0000\u0757\u0758"+
+ "\u0005t\u0000\u0000\u0758\u0198\u0001\u0000\u0000\u0000\u0759\u075a\u0005"+
+ "u\u0000\u0000\u075a\u075b\u0005n\u0000\u0000\u075b\u075c\u0005p\u0000"+
+ "\u0000\u075c\u075d\u0005i\u0000\u0000\u075d\u075e\u0005v\u0000\u0000\u075e"+
+ "\u075f\u0005o\u0000\u0000\u075f\u0760\u0005t\u0000\u0000\u0760\u019a\u0001"+
+ "\u0000\u0000\u0000\u0761\u0762\u0005s\u0000\u0000\u0762\u0763\u0005u\u0000"+
+ "\u0000\u0763\u0764\u0005b\u0000\u0000\u0764\u019c\u0001\u0000\u0000\u0000"+
+ "\u0765\u0766\u0005a\u0000\u0000\u0766\u0767\u0005p\u0000\u0000\u0767\u0768"+
+ "\u0005p\u0000\u0000\u0768\u0769\u0005l\u0000\u0000\u0769\u076a\u0005y"+
+ "\u0000\u0000\u076a\u019e\u0001\u0000\u0000\u0000\u076b\u076c\u0005c\u0000"+
+ "\u0000\u076c\u076d\u0005o\u0000\u0000\u076d\u076e\u0005n\u0000\u0000\u076e"+
+ "\u076f\u0005d\u0000\u0000\u076f\u0770\u0005i\u0000\u0000\u0770\u0771\u0005"+
+ "t\u0000\u0000\u0771\u0772\u0005i\u0000\u0000\u0772\u0773\u0005o\u0000"+
+ "\u0000\u0773\u0774\u0005n\u0000\u0000\u0774\u0775\u0005e\u0000\u0000\u0775"+
+ "\u0776\u0005d\u0000\u0000\u0776\u01a0\u0001\u0000\u0000\u0000\u0777\u0778"+
+ "\u0005p\u0000\u0000\u0778\u0779\u0005e\u0000\u0000\u0779\u077a\u0005r"+
+ "\u0000\u0000\u077a\u077b\u0005i\u0000\u0000\u077b\u077c\u0005o\u0000\u0000"+
+ "\u077c\u077d\u0005d\u0000\u0000\u077d\u077e\u0005_\u0000\u0000\u077e\u077f"+
+ "\u0005i\u0000\u0000\u077f\u0780\u0005n\u0000\u0000\u0780\u0781\u0005d"+
+ "\u0000\u0000\u0781\u0782\u0005i\u0000\u0000\u0782\u0783\u0005c\u0000\u0000"+
+ "\u0783\u0784\u0005a\u0000\u0000\u0784\u0785\u0005t\u0000\u0000\u0785\u0786"+
+ "\u0005o\u0000\u0000\u0786\u0787\u0005r\u0000\u0000\u0787\u01a2\u0001\u0000"+
+ "\u0000\u0000\u0788\u0789\u0005s\u0000\u0000\u0789\u078a\u0005i\u0000\u0000"+
+ "\u078a\u078b\u0005n\u0000\u0000\u078b\u078c\u0005g\u0000\u0000\u078c\u078d"+
+ "\u0005l\u0000\u0000\u078d\u078e\u0005e\u0000\u0000\u078e\u01a4\u0001\u0000"+
+ "\u0000\u0000\u078f\u0790\u0005d\u0000\u0000\u0790\u0791\u0005u\u0000\u0000"+
+ "\u0791\u0792\u0005r\u0000\u0000\u0792\u0793\u0005a\u0000\u0000\u0793\u0794"+
+ "\u0005t\u0000\u0000\u0794\u0795\u0005i\u0000\u0000\u0795\u0796\u0005o"+
+ "\u0000\u0000\u0796\u0797\u0005n\u0000\u0000\u0797\u01a6\u0001\u0000\u0000"+
+ "\u0000\u0798\u0799\u0005t\u0000\u0000\u0799\u079a\u0005i\u0000\u0000\u079a"+
+ "\u079b\u0005m\u0000\u0000\u079b\u079c\u0005e\u0000\u0000\u079c\u079d\u0005"+
+ "_\u0000\u0000\u079d\u079e\u0005a\u0000\u0000\u079e\u079f\u0005g\u0000"+
+ "\u0000\u079f\u07a0\u0005g\u0000\u0000\u07a0\u01a8\u0001\u0000\u0000\u0000"+
+ "\u07a1\u07a2\u0005u\u0000\u0000\u07a2\u07a3\u0005n\u0000\u0000\u07a3\u07a4"+
+ "\u0005i\u0000\u0000\u07a4\u07a5\u0005t\u0000\u0000\u07a5\u01aa\u0001\u0000"+
+ "\u0000\u0000\u07a6\u07a7\u0005V\u0000\u0000\u07a7\u07a8\u0005a\u0000\u0000"+
+ "\u07a8\u07a9\u0005l\u0000\u0000\u07a9\u07aa\u0005u\u0000\u0000\u07aa\u07ab"+
+ "\u0005e\u0000\u0000\u07ab\u01ac\u0001\u0000\u0000\u0000\u07ac\u07ad\u0005"+
+ "v\u0000\u0000\u07ad\u07ae\u0005a\u0000\u0000\u07ae\u07af\u0005l\u0000"+
+ "\u0000\u07af\u07b0\u0005u\u0000\u0000\u07b0\u07b1\u0005e\u0000\u0000\u07b1"+
+ "\u07b2\u0005d\u0000\u0000\u07b2\u07b3\u0005o\u0000\u0000\u07b3\u07b4\u0005"+
+ "m\u0000\u0000\u07b4\u07b5\u0005a\u0000\u0000\u07b5\u07b6\u0005i\u0000"+
+ "\u0000\u07b6\u07b7\u0005n\u0000\u0000\u07b7\u07b8\u0005s\u0000\u0000\u07b8"+
+ "\u01ae\u0001\u0000\u0000\u0000\u07b9\u07ba\u0005v\u0000\u0000\u07ba\u07bb"+
+ "\u0005a\u0000\u0000\u07bb\u07bc\u0005r\u0000\u0000\u07bc\u07bd\u0005i"+
+ "\u0000\u0000\u07bd\u07be\u0005a\u0000\u0000\u07be\u07bf\u0005b\u0000\u0000"+
+ "\u07bf\u07c0\u0005l\u0000\u0000\u07c0\u07c1\u0005e\u0000\u0000\u07c1\u07c2"+
+ "\u0005s\u0000\u0000\u07c2\u01b0\u0001\u0000\u0000\u0000\u07c3\u07c4\u0005"+
+ "i\u0000\u0000\u07c4\u07c5\u0005n\u0000\u0000\u07c5\u07c6\u0005p\u0000"+
+ "\u0000\u07c6\u07c7\u0005u\u0000\u0000\u07c7\u07c8\u0005t\u0000\u0000\u07c8"+
+ "\u01b2\u0001\u0000\u0000\u0000\u07c9\u07ca\u0005o\u0000\u0000\u07ca\u07cb"+
+ "\u0005u\u0000\u0000\u07cb\u07cc\u0005t\u0000\u0000\u07cc\u07cd\u0005p"+
+ "\u0000\u0000\u07cd\u07ce\u0005u\u0000\u0000\u07ce\u07cf\u0005t\u0000\u0000"+
+ "\u07cf\u01b4\u0001\u0000\u0000\u0000\u07d0\u07d1\u0005c\u0000\u0000\u07d1"+
+ "\u07d2\u0005a\u0000\u0000\u07d2\u07d3\u0005s\u0000\u0000\u07d3\u07d4\u0005"+
+ "t\u0000\u0000\u07d4\u01b6\u0001\u0000\u0000\u0000\u07d5\u07d6\u0005r\u0000"+
+ "\u0000\u07d6\u07d7\u0005u\u0000\u0000\u07d7\u07d8\u0005l\u0000\u0000\u07d8"+
+ "\u07d9\u0005e\u0000\u0000\u07d9\u07da\u0005_\u0000\u0000\u07da\u07db\u0005"+
+ "p\u0000\u0000\u07db\u07dc\u0005r\u0000\u0000\u07dc\u07dd\u0005i\u0000"+
+ "\u0000\u07dd\u07de\u0005o\u0000\u0000\u07de\u07df\u0005r\u0000\u0000\u07df"+
+ "\u07e0\u0005i\u0000\u0000\u07e0\u07e1\u0005t\u0000\u0000\u07e1\u07e2\u0005"+
+ "y\u0000\u0000\u07e2\u01b8\u0001\u0000\u0000\u0000\u07e3\u07e4\u0005d\u0000"+
+ "\u0000\u07e4\u07e5\u0005a\u0000\u0000\u07e5\u07e6\u0005t\u0000\u0000\u07e6"+
+ "\u07e7\u0005a\u0000\u0000\u07e7\u07e8\u0005s\u0000\u0000\u07e8\u07e9\u0005"+
+ "e\u0000\u0000\u07e9\u07ea\u0005t\u0000\u0000\u07ea\u07eb\u0005_\u0000"+
+ "\u0000\u07eb\u07ec\u0005p\u0000\u0000\u07ec\u07ed\u0005r\u0000\u0000\u07ed"+
+ "\u07ee\u0005i\u0000\u0000\u07ee\u07ef\u0005o\u0000\u0000\u07ef\u07f0\u0005"+
+ "r\u0000\u0000\u07f0\u07f1\u0005i\u0000\u0000\u07f1\u07f2\u0005t\u0000"+
+ "\u0000\u07f2\u07f3\u0005y\u0000\u0000\u07f3\u01ba\u0001\u0000\u0000\u0000"+
+ "\u07f4\u07f5\u0005d\u0000\u0000\u07f5\u07f6\u0005e\u0000\u0000\u07f6\u07f7"+
+ "\u0005f\u0000\u0000\u07f7\u07f8\u0005a\u0000\u0000\u07f8\u07f9\u0005u"+
+ "\u0000\u0000\u07f9\u07fa\u0005l\u0000\u0000\u07fa\u07fb\u0005t\u0000\u0000"+
+ "\u07fb\u01bc\u0001\u0000\u0000\u0000\u07fc\u07fd\u0005c\u0000\u0000\u07fd"+
+ "\u07fe\u0005h\u0000\u0000\u07fe\u07ff\u0005e\u0000\u0000\u07ff\u0800\u0005"+
+ "c\u0000\u0000\u0800\u0801\u0005k\u0000\u0000\u0801\u0802\u0005_\u0000"+
+ "\u0000\u0802\u0803\u0005d\u0000\u0000\u0803\u0804\u0005a\u0000\u0000\u0804"+
+ "\u0805\u0005t\u0000\u0000\u0805\u0806\u0005a\u0000\u0000\u0806\u0807\u0005"+
+ "p\u0000\u0000\u0807\u0808\u0005o\u0000\u0000\u0808\u0809\u0005i\u0000"+
+ "\u0000\u0809\u080a\u0005n\u0000\u0000\u080a\u080b\u0005t\u0000\u0000\u080b"+
+ "\u01be\u0001\u0000\u0000\u0000\u080c\u080d\u0005c\u0000\u0000\u080d\u080e"+
+ "\u0005h\u0000\u0000\u080e\u080f\u0005e\u0000\u0000\u080f\u0810\u0005c"+
+ "\u0000\u0000\u0810\u0811\u0005k\u0000\u0000\u0811\u0812\u0005_\u0000\u0000"+
+ "\u0812\u0813\u0005h\u0000\u0000\u0813\u0814\u0005i\u0000\u0000\u0814\u0815"+
+ "\u0005e\u0000\u0000\u0815\u0816\u0005r\u0000\u0000\u0816\u0817\u0005a"+
+ "\u0000\u0000\u0817\u0818\u0005r\u0000\u0000\u0818\u0819\u0005c\u0000\u0000"+
+ "\u0819\u081a\u0005h\u0000\u0000\u081a\u081b\u0005y\u0000\u0000\u081b\u01c0"+
+ "\u0001\u0000\u0000\u0000\u081c\u081d\u0005c\u0000\u0000\u081d\u081e\u0005"+
+ "o\u0000\u0000\u081e\u081f\u0005m\u0000\u0000\u081f\u0820\u0005p\u0000"+
+ "\u0000\u0820\u0821\u0005u\u0000\u0000\u0821\u0822\u0005t\u0000\u0000\u0822"+
+ "\u0823\u0005e\u0000\u0000\u0823\u0824\u0005d\u0000\u0000\u0824\u01c2\u0001"+
+ "\u0000\u0000\u0000\u0825\u0826\u0005n\u0000\u0000\u0826\u0827\u0005o\u0000"+
+ "\u0000\u0827\u0828\u0005n\u0000\u0000\u0828\u0829\u0005_\u0000\u0000\u0829"+
+ "\u082a\u0005n\u0000\u0000\u082a\u082b\u0005u\u0000\u0000\u082b\u082c\u0005"+
+ "l\u0000\u0000\u082c\u082d\u0005l\u0000\u0000\u082d\u01c4\u0001\u0000\u0000"+
+ "\u0000\u082e\u082f\u0005n\u0000\u0000\u082f\u0830\u0005o\u0000\u0000\u0830"+
+ "\u0831\u0005n\u0000\u0000\u0831\u0832\u0005_\u0000\u0000\u0832\u0833\u0005"+
+ "z\u0000\u0000\u0833\u0834\u0005e\u0000\u0000\u0834\u0835\u0005r\u0000"+
+ "\u0000\u0835\u0836\u0005o\u0000\u0000\u0836\u01c6\u0001\u0000\u0000\u0000"+
+ "\u0837\u0838\u0005p\u0000\u0000\u0838\u0839\u0005a\u0000\u0000\u0839\u083a"+
+ "\u0005r\u0000\u0000\u083a\u083b\u0005t\u0000\u0000\u083b\u083c\u0005i"+
+ "\u0000\u0000\u083c\u083d\u0005a\u0000\u0000\u083d\u083e\u0005l\u0000\u0000"+
+ "\u083e\u083f\u0005_\u0000\u0000\u083f\u0840\u0005n\u0000\u0000\u0840\u0841"+
+ "\u0005u\u0000\u0000\u0841\u0842\u0005l\u0000\u0000\u0842\u0843\u0005l"+
+ "\u0000\u0000\u0843\u01c8\u0001\u0000\u0000\u0000\u0844\u0845\u0005p\u0000"+
+ "\u0000\u0845\u0846\u0005a\u0000\u0000\u0846\u0847\u0005r\u0000\u0000\u0847"+
+ "\u0848\u0005t\u0000\u0000\u0848\u0849\u0005i\u0000\u0000\u0849\u084a\u0005"+
+ "a\u0000\u0000\u084a\u084b\u0005l\u0000\u0000\u084b\u084c\u0005_\u0000"+
+ "\u0000\u084c\u084d\u0005z\u0000\u0000\u084d\u084e\u0005e\u0000\u0000\u084e"+
+ "\u084f\u0005r\u0000\u0000\u084f\u0850\u0005o\u0000\u0000\u0850\u01ca\u0001"+
+ "\u0000\u0000\u0000\u0851\u0852\u0005a\u0000\u0000\u0852\u0853\u0005l\u0000"+
+ "\u0000\u0853\u0854\u0005w\u0000\u0000\u0854\u0855\u0005a\u0000\u0000\u0855"+
+ "\u0856\u0005y\u0000\u0000\u0856\u0857\u0005s\u0000\u0000\u0857\u0858\u0005"+
+ "_\u0000\u0000\u0858\u0859\u0005n\u0000\u0000\u0859\u085a\u0005u\u0000"+
+ "\u0000\u085a\u085b\u0005l\u0000\u0000\u085b\u085c\u0005l\u0000\u0000\u085c"+
+ "\u01cc\u0001\u0000\u0000\u0000\u085d\u085e\u0005a\u0000\u0000\u085e\u085f"+
+ "\u0005l\u0000\u0000\u085f\u0860\u0005w\u0000\u0000\u0860\u0861\u0005a"+
+ "\u0000\u0000\u0861\u0862\u0005y\u0000\u0000\u0862\u0863\u0005s\u0000\u0000"+
+ "\u0863\u0864\u0005_\u0000\u0000\u0864\u0865\u0005z\u0000\u0000\u0865\u0866"+
+ "\u0005e\u0000\u0000\u0866\u0867\u0005r\u0000\u0000\u0867\u0868\u0005o"+
+ "\u0000\u0000\u0868\u01ce\u0001\u0000\u0000\u0000\u0869\u086a\u0005c\u0000"+
+ "\u0000\u086a\u086b\u0005o\u0000\u0000\u086b\u086c\u0005m\u0000\u0000\u086c"+
+ "\u086d\u0005p\u0000\u0000\u086d\u086e\u0005o\u0000\u0000\u086e\u086f\u0005"+
+ "n\u0000\u0000\u086f\u0870\u0005e\u0000\u0000\u0870\u0871\u0005n\u0000"+
+ "\u0000\u0871\u0872\u0005t\u0000\u0000\u0872\u0873\u0005s\u0000\u0000\u0873"+
+ "\u01d0\u0001\u0000\u0000\u0000\u0874\u0875\u0005a\u0000\u0000\u0875\u0876"+
+ "\u0005l\u0000\u0000\u0876\u0877\u0005l\u0000\u0000\u0877\u0878\u0005_"+
+ "\u0000\u0000\u0878\u0879\u0005m\u0000\u0000\u0879\u087a\u0005e\u0000\u0000"+
+ "\u087a\u087b\u0005a\u0000\u0000\u087b\u087c\u0005s\u0000\u0000\u087c\u087d"+
+ "\u0005u\u0000\u0000\u087d\u087e\u0005r\u0000\u0000\u087e\u087f\u0005e"+
+ "\u0000\u0000\u087f\u0880\u0005s\u0000\u0000\u0880\u01d2\u0001\u0000\u0000"+
+ "\u0000\u0881\u0882\u0005s\u0000\u0000\u0882\u0883\u0005c\u0000\u0000\u0883"+
+ "\u0884\u0005a\u0000\u0000\u0884\u0885\u0005l\u0000\u0000\u0885\u0886\u0005"+
+ "a\u0000\u0000\u0886\u0887\u0005r\u0000\u0000\u0887\u01d4\u0001\u0000\u0000"+
+ "\u0000\u0888\u0889\u0005c\u0000\u0000\u0889\u088a\u0005o\u0000\u0000\u088a"+
+ "\u088b\u0005m\u0000\u0000\u088b\u088c\u0005p\u0000\u0000\u088c\u088d\u0005"+
+ "o\u0000\u0000\u088d\u088e\u0005n\u0000\u0000\u088e\u088f\u0005e\u0000"+
+ "\u0000\u088f\u0890\u0005n\u0000\u0000\u0890\u0891\u0005t\u0000\u0000\u0891"+
+ "\u01d6\u0001\u0000\u0000\u0000\u0892\u0893\u0005d\u0000\u0000\u0893\u0894"+
+ "\u0005a\u0000\u0000\u0894\u0895\u0005t\u0000\u0000\u0895\u0896\u0005a"+
+ "\u0000\u0000\u0896\u0897\u0005p\u0000\u0000\u0897\u0898\u0005o\u0000\u0000"+
+ "\u0898\u0899\u0005i\u0000\u0000\u0899\u089a\u0005n\u0000\u0000\u089a\u089b"+
+ "\u0005t\u0000\u0000\u089b\u089c\u0005_\u0000\u0000\u089c\u089d\u0005o"+
+ "\u0000\u0000\u089d\u089e\u0005n\u0000\u0000\u089e\u089f\u0005_\u0000\u0000"+
+ "\u089f\u08a0\u0005v\u0000\u0000\u08a0\u08a1\u0005a\u0000\u0000\u08a1\u08a2"+
+ "\u0005l\u0000\u0000\u08a2\u08a3\u0005u\u0000\u0000\u08a3\u08a4\u0005e"+
+ "\u0000\u0000\u08a4\u08a5\u0005d\u0000\u0000\u08a5\u08a6\u0005o\u0000\u0000"+
+ "\u08a6\u08a7\u0005m\u0000\u0000\u08a7\u08a8\u0005a\u0000\u0000\u08a8\u08a9"+
+ "\u0005i\u0000\u0000\u08a9\u08aa\u0005n\u0000\u0000\u08aa\u08ab\u0005s"+
+ "\u0000\u0000\u08ab\u01d8\u0001\u0000\u0000\u0000\u08ac\u08ad\u0005d\u0000"+
+ "\u0000\u08ad\u08ae\u0005a\u0000\u0000\u08ae\u08af\u0005t\u0000\u0000\u08af"+
+ "\u08b0\u0005a\u0000\u0000\u08b0\u08b1\u0005p\u0000\u0000\u08b1\u08b2\u0005"+
+ "o\u0000\u0000\u08b2\u08b3\u0005i\u0000\u0000\u08b3\u08b4\u0005n\u0000"+
+ "\u0000\u08b4\u08b5\u0005t\u0000\u0000\u08b5\u08b6\u0005_\u0000\u0000\u08b6"+
+ "\u08b7\u0005o\u0000\u0000\u08b7\u08b8\u0005n\u0000\u0000\u08b8\u08b9\u0005"+
+ "_\u0000\u0000\u08b9\u08ba\u0005v\u0000\u0000\u08ba\u08bb\u0005a\u0000"+
+ "\u0000\u08bb\u08bc\u0005r\u0000\u0000\u08bc\u08bd\u0005i\u0000\u0000\u08bd"+
+ "\u08be\u0005a\u0000\u0000\u08be\u08bf\u0005b\u0000\u0000\u08bf\u08c0\u0005"+
+ "l\u0000\u0000\u08c0\u08c1\u0005e\u0000\u0000\u08c1\u08c2\u0005s\u0000"+
+ "\u0000\u08c2\u01da\u0001\u0000\u0000\u0000\u08c3\u08c4\u0005h\u0000\u0000"+
+ "\u08c4\u08c5\u0005i\u0000\u0000\u08c5\u08c6\u0005e\u0000\u0000\u08c6\u08c7"+
+ "\u0005r\u0000\u0000\u08c7\u08c8\u0005a\u0000\u0000\u08c8\u08c9\u0005r"+
+ "\u0000\u0000\u08c9\u08ca\u0005c\u0000\u0000\u08ca\u08cb\u0005h\u0000\u0000"+
+ "\u08cb\u08cc\u0005i\u0000\u0000\u08cc\u08cd\u0005c\u0000\u0000\u08cd\u08ce"+
+ "\u0005a\u0000\u0000\u08ce\u08cf\u0005l\u0000\u0000\u08cf\u08d0\u0005_"+
+ "\u0000\u0000\u08d0\u08d1\u0005o\u0000\u0000\u08d1\u08d2\u0005n\u0000\u0000"+
+ "\u08d2\u08d3\u0005_\u0000\u0000\u08d3\u08d4\u0005v\u0000\u0000\u08d4\u08d5"+
+ "\u0005a\u0000\u0000\u08d5\u08d6\u0005l\u0000\u0000\u08d6\u08d7\u0005u"+
+ "\u0000\u0000\u08d7\u08d8\u0005e\u0000\u0000\u08d8\u08d9\u0005d\u0000\u0000"+
+ "\u08d9\u08da\u0005o\u0000\u0000\u08da\u08db\u0005m\u0000\u0000\u08db\u08dc"+
+ "\u0005a\u0000\u0000\u08dc\u08dd\u0005i\u0000\u0000\u08dd\u08de\u0005n"+
+ "\u0000\u0000\u08de\u08df\u0005s\u0000\u0000\u08df\u01dc\u0001\u0000\u0000"+
+ "\u0000\u08e0\u08e1\u0005h\u0000\u0000\u08e1\u08e2\u0005i\u0000\u0000\u08e2"+
+ "\u08e3\u0005e\u0000\u0000\u08e3\u08e4\u0005r\u0000\u0000\u08e4\u08e5\u0005"+
+ "a\u0000\u0000\u08e5\u08e6\u0005r\u0000\u0000\u08e6\u08e7\u0005c\u0000"+
+ "\u0000\u08e7\u08e8\u0005h\u0000\u0000\u08e8\u08e9\u0005i\u0000\u0000\u08e9"+
+ "\u08ea\u0005c\u0000\u0000\u08ea\u08eb\u0005a\u0000\u0000\u08eb\u08ec\u0005"+
+ "l\u0000\u0000\u08ec\u08ed\u0005_\u0000\u0000\u08ed\u08ee\u0005o\u0000"+
+ "\u0000\u08ee\u08ef\u0005n\u0000\u0000\u08ef\u08f0\u0005_\u0000\u0000\u08f0"+
+ "\u08f1\u0005v\u0000\u0000\u08f1\u08f2\u0005a\u0000\u0000\u08f2\u08f3\u0005"+
+ "r\u0000\u0000\u08f3\u08f4\u0005i\u0000\u0000\u08f4\u08f5\u0005a\u0000"+
+ "\u0000\u08f5\u08f6\u0005b\u0000\u0000\u08f6\u08f7\u0005l\u0000\u0000\u08f7"+
+ "\u08f8\u0005e\u0000\u0000\u08f8\u08f9\u0005s\u0000\u0000\u08f9\u01de\u0001"+
+ "\u0000\u0000\u0000\u08fa\u08fb\u0005s\u0000\u0000\u08fb\u08fc\u0005e\u0000"+
+ "\u0000\u08fc\u08fd\u0005t\u0000\u0000\u08fd\u01e0\u0001\u0000\u0000\u0000"+
+ "\u08fe\u08ff\u0005l\u0000\u0000\u08ff\u0900\u0005a\u0000\u0000\u0900\u0901"+
+ "\u0005n\u0000\u0000\u0901\u0902\u0005g\u0000\u0000\u0902\u0903\u0005u"+
+ "\u0000\u0000\u0903\u0904\u0005a\u0000\u0000\u0904\u0905\u0005g\u0000\u0000"+
+ "\u0905\u0906\u0005e\u0000\u0000\u0906\u01e2\u0001\u0000\u0000\u0000\u0907"+
+ "\u0908\u0007\u0000\u0000\u0000\u0908\u01e4\u0001\u0000\u0000\u0000\u0909"+
+ "\u090a\u000209\u0000\u090a\u01e6\u0001\u0000\u0000\u0000\u090b\u090d\u0003"+
+ "\u001b\r\u0000\u090c\u090b\u0001\u0000\u0000\u0000\u090c\u090d\u0001\u0000"+
+ "\u0000\u0000\u090d\u090f\u0001\u0000\u0000\u0000\u090e\u0910\u0003\u01e5"+
+ "\u00f2\u0000\u090f\u090e\u0001\u0000\u0000\u0000\u0910\u0911\u0001\u0000"+
+ "\u0000\u0000\u0911\u090f\u0001\u0000\u0000\u0000\u0911\u0912\u0001\u0000"+
+ "\u0000\u0000\u0912\u01e8\u0001\u0000\u0000\u0000\u0913\u0914\u0003\u01e7"+
+ "\u00f3\u0000\u0914\u0918\u0005.\u0000\u0000\u0915\u0917\u0003\u01e7\u00f3"+
+ "\u0000\u0916\u0915\u0001\u0000\u0000\u0000\u0917\u091a\u0001\u0000\u0000"+
+ "\u0000\u0918\u0916\u0001\u0000\u0000\u0000\u0918\u0919\u0001\u0000\u0000"+
+ "\u0000\u0919\u01ea\u0001\u0000\u0000\u0000\u091a\u0918\u0001\u0000\u0000"+
+ "\u0000\u091b\u091c\u0005t\u0000\u0000\u091c\u091d\u0005r\u0000\u0000\u091d"+
+ "\u091e\u0005u\u0000\u0000\u091e\u0925\u0005e\u0000\u0000\u091f\u0920\u0005"+
+ "f\u0000\u0000\u0920\u0921\u0005a\u0000\u0000\u0921\u0922\u0005l\u0000"+
+ "\u0000\u0922\u0923\u0005s\u0000\u0000\u0923\u0925\u0005e\u0000\u0000\u0924"+
+ "\u091b\u0001\u0000\u0000\u0000\u0924\u091f\u0001\u0000\u0000\u0000\u0925"+
+ "\u01ec\u0001\u0000\u0000\u0000\u0926\u092a\u0005\"\u0000\u0000\u0927\u0929"+
+ "\b\u0001\u0000\u0000\u0928\u0927\u0001\u0000\u0000\u0000\u0929\u092c\u0001"+
+ "\u0000\u0000\u0000\u092a\u0928\u0001\u0000\u0000\u0000\u092a\u092b\u0001"+
+ "\u0000\u0000\u0000\u092b\u092d\u0001\u0000\u0000\u0000\u092c\u092a\u0001"+
+ "\u0000\u0000\u0000\u092d\u092e\u0005\"\u0000\u0000\u092e\u01ee\u0001\u0000"+
+ "\u0000\u0000\u092f\u0933\u0003\u01e3\u00f1\u0000\u0930\u0932\u0007\u0002"+
+ "\u0000\u0000\u0931\u0930\u0001\u0000\u0000\u0000\u0932\u0935\u0001\u0000"+
+ "\u0000\u0000\u0933\u0931\u0001\u0000\u0000\u0000\u0933\u0934\u0001\u0000"+
+ "\u0000\u0000\u0934\u0945\u0001\u0000\u0000\u0000\u0935\u0933\u0001\u0000"+
+ "\u0000\u0000\u0936\u0938\u0003\u01e5\u00f2\u0000\u0937\u0939\u0007\u0002"+
+ "\u0000\u0000\u0938\u0937\u0001\u0000\u0000\u0000\u0939\u093a\u0001\u0000"+
+ "\u0000\u0000\u093a\u0938\u0001\u0000\u0000\u0000\u093a\u093b\u0001\u0000"+
+ "\u0000\u0000\u093b\u0945\u0001\u0000\u0000\u0000\u093c\u0940\u0005\'\u0000"+
+ "\u0000\u093d\u093f\t\u0000\u0000\u0000\u093e\u093d\u0001\u0000\u0000\u0000"+
+ "\u093f\u0942\u0001\u0000\u0000\u0000\u0940\u0941\u0001\u0000\u0000\u0000"+
+ "\u0940\u093e\u0001\u0000\u0000\u0000\u0941\u0943\u0001\u0000\u0000\u0000"+
+ "\u0942\u0940\u0001\u0000\u0000\u0000\u0943\u0945\u0005\'\u0000\u0000\u0944"+
+ "\u092f\u0001\u0000\u0000\u0000\u0944\u0936\u0001\u0000\u0000\u0000\u0944"+
+ "\u093c\u0001\u0000\u0000\u0000\u0945\u01f0\u0001\u0000\u0000\u0000\u0946"+
+ "\u0947\u0007\u0003\u0000\u0000\u0947\u01f2\u0001\u0000\u0000\u0000\u0948"+
+ "\u094a\u0007\u0004\u0000\u0000\u0949\u0948\u0001\u0000\u0000\u0000\u094a"+
+ "\u094b\u0001\u0000\u0000\u0000\u094b\u0949\u0001\u0000\u0000\u0000\u094b"+
+ "\u094c\u0001\u0000\u0000\u0000\u094c\u094d\u0001\u0000\u0000\u0000\u094d"+
+ "\u094e\u0006\u00f9\u0000\u0000\u094e\u01f4\u0001\u0000\u0000\u0000\u094f"+
+ "\u0950\u0005;\u0000\u0000\u0950\u01f6\u0001\u0000\u0000\u0000\u0951\u0952"+
+ "\u0005/\u0000\u0000\u0952\u0953\u0005*\u0000\u0000\u0953\u0957\u0001\u0000"+
+ "\u0000\u0000\u0954\u0956\t\u0000\u0000\u0000\u0955\u0954\u0001\u0000\u0000"+
+ "\u0000\u0956\u0959\u0001\u0000\u0000\u0000\u0957\u0958\u0001\u0000\u0000"+
+ "\u0000\u0957\u0955\u0001\u0000\u0000\u0000\u0958\u095a\u0001\u0000\u0000"+
+ "\u0000\u0959\u0957\u0001\u0000\u0000\u0000\u095a\u095b\u0005*\u0000\u0000"+
+ "\u095b\u095c\u0005/\u0000\u0000\u095c\u095d\u0001\u0000\u0000\u0000\u095d"+
+ "\u095e\u0006\u00fb\u0001\u0000\u095e\u01f8\u0001\u0000\u0000\u0000\u095f"+
+ "\u0960\u0005/\u0000\u0000\u0960\u0961\u0005/\u0000\u0000\u0961\u0965\u0001"+
+ "\u0000\u0000\u0000\u0962\u0964\t\u0000\u0000\u0000\u0963\u0962\u0001\u0000"+
+ "\u0000\u0000\u0964\u0967\u0001\u0000\u0000\u0000\u0965\u0966\u0001\u0000"+
+ "\u0000\u0000\u0965\u0963\u0001\u0000\u0000\u0000\u0966\u0968\u0001\u0000"+
+ "\u0000\u0000\u0967\u0965\u0001\u0000\u0000\u0000\u0968\u0969\u0005\n\u0000"+
+ "\u0000\u0969\u096a\u0001\u0000\u0000\u0000\u096a\u096b\u0006\u00fc\u0001"+
+ "\u0000\u096b\u01fa\u0001\u0000\u0000\u0000\r\u0000\u090c\u0911\u0918\u0924"+
+ "\u092a\u0933\u093a\u0940\u0944\u094b\u0957\u0965\u0002\u0000\u0001\u0000"+
+ "\u0000\u0002\u0000";
+ public static final ATN _ATN =
+ new ATNDeserializer().deserialize(_serializedATN.toCharArray());
+ static {
+ _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
+ for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
+ _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
+ }
+ }
+}
\ No newline at end of file
diff --git a/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.tokens b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.tokens
new file mode 100644
index 000000000..c3da17a7d
--- /dev/null
+++ b/vtl-parser/gen/fr/insee/vtl/parser/VtlTokens.tokens
@@ -0,0 +1,493 @@
+LPAREN=1
+RPAREN=2
+QLPAREN=3
+QRPAREN=4
+GLPAREN=5
+GRPAREN=6
+EQ=7
+LT=8
+MT=9
+ME=10
+NEQ=11
+LE=12
+PLUS=13
+MINUS=14
+MUL=15
+DIV=16
+COMMA=17
+POINTER=18
+COLON=19
+ASSIGN=20
+MEMBERSHIP=21
+EVAL=22
+IF=23
+CASE=24
+THEN=25
+ELSE=26
+USING=27
+WITH=28
+CURRENT_DATE=29
+DATEDIFF=30
+DATEADD=31
+GETYEAR=32
+GETMONTH=33
+DAYOFMONTH=34
+DAYOFYEAR=35
+DAYTOYEAR=36
+DAYTOMONTH=37
+YEARTODAY=38
+MONTHTODAY=39
+ON=40
+DROP=41
+KEEP=42
+CALC=43
+ATTRCALC=44
+RENAME=45
+AS=46
+AND=47
+OR=48
+XOR=49
+NOT=50
+BETWEEN=51
+IN=52
+NOT_IN=53
+NULL_CONSTANT=54
+ISNULL=55
+EX=56
+UNION=57
+DIFF=58
+SYMDIFF=59
+INTERSECT=60
+RANDOM=61
+KEYS=62
+INTYEAR=63
+INTMONTH=64
+INTDAY=65
+CHECK=66
+EXISTS_IN=67
+TO=68
+RETURN=69
+IMBALANCE=70
+ERRORCODE=71
+ALL=72
+AGGREGATE=73
+ERRORLEVEL=74
+ORDER=75
+BY=76
+RANK=77
+ASC=78
+DESC=79
+MIN=80
+MAX=81
+FIRST=82
+LAST=83
+INDEXOF=84
+ABS=85
+KEY=86
+LN=87
+LOG=88
+TRUNC=89
+ROUND=90
+POWER=91
+MOD=92
+LEN=93
+CONCAT=94
+TRIM=95
+UCASE=96
+LCASE=97
+SUBSTR=98
+SUM=99
+AVG=100
+MEDIAN=101
+COUNT=102
+DIMENSION=103
+MEASURE=104
+ATTRIBUTE=105
+FILTER=106
+MERGE=107
+EXP=108
+ROLE=109
+VIRAL=110
+CHARSET_MATCH=111
+TYPE=112
+NVL=113
+HIERARCHY=114
+OPTIONAL=115
+INVALID=116
+LEVENSHTEIN=117
+VALUE_DOMAIN=118
+VARIABLE=119
+DATA=120
+STRUCTURE=121
+DATASET=122
+OPERATOR=123
+DEFINE=124
+PUT_SYMBOL=125
+DATAPOINT=126
+HIERARCHICAL=127
+RULESET=128
+RULE=129
+END=130
+ALTER_DATASET=131
+LTRIM=132
+RTRIM=133
+INSTR=134
+REPLACE=135
+CEIL=136
+FLOOR=137
+SQRT=138
+ANY=139
+SETDIFF=140
+STDDEV_POP=141
+STDDEV_SAMP=142
+VAR_POP=143
+VAR_SAMP=144
+GROUP=145
+EXCEPT=146
+HAVING=147
+FIRST_VALUE=148
+LAST_VALUE=149
+LAG=150
+LEAD=151
+RATIO_TO_REPORT=152
+OVER=153
+PRECEDING=154
+FOLLOWING=155
+UNBOUNDED=156
+PARTITION=157
+ROWS=158
+RANGE=159
+CURRENT=160
+VALID=161
+FILL_TIME_SERIES=162
+FLOW_TO_STOCK=163
+STOCK_TO_FLOW=164
+TIMESHIFT=165
+MEASURES=166
+NO_MEASURES=167
+CONDITION=168
+BOOLEAN=169
+DATE=170
+TIME_PERIOD=171
+NUMBER=172
+STRING=173
+TIME=174
+INTEGER=175
+FLOAT=176
+LIST=177
+RECORD=178
+RESTRICT=179
+YYYY=180
+MM=181
+DD=182
+MAX_LENGTH=183
+REGEXP=184
+IS=185
+WHEN=186
+FROM=187
+AGGREGATES=188
+POINTS=189
+POINT=190
+TOTAL=191
+PARTIAL=192
+ALWAYS=193
+INNER_JOIN=194
+LEFT_JOIN=195
+CROSS_JOIN=196
+FULL_JOIN=197
+MAPS_FROM=198
+MAPS_TO=199
+MAP_TO=200
+MAP_FROM=201
+RETURNS=202
+PIVOT=203
+CUSTOMPIVOT=204
+UNPIVOT=205
+SUBSPACE=206
+APPLY=207
+CONDITIONED=208
+PERIOD_INDICATOR=209
+SINGLE=210
+DURATION=211
+TIME_AGG=212
+UNIT=213
+VALUE=214
+VALUEDOMAINS=215
+VARIABLES=216
+INPUT=217
+OUTPUT=218
+CAST=219
+RULE_PRIORITY=220
+DATASET_PRIORITY=221
+DEFAULT=222
+CHECK_DATAPOINT=223
+CHECK_HIERARCHY=224
+COMPUTED=225
+NON_NULL=226
+NON_ZERO=227
+PARTIAL_NULL=228
+PARTIAL_ZERO=229
+ALWAYS_NULL=230
+ALWAYS_ZERO=231
+COMPONENTS=232
+ALL_MEASURES=233
+SCALAR=234
+COMPONENT=235
+DATAPOINT_ON_VD=236
+DATAPOINT_ON_VAR=237
+HIERARCHICAL_ON_VD=238
+HIERARCHICAL_ON_VAR=239
+SET=240
+LANGUAGE=241
+INTEGER_CONSTANT=242
+NUMBER_CONSTANT=243
+BOOLEAN_CONSTANT=244
+STRING_CONSTANT=245
+IDENTIFIER=246
+TIME_UNIT=247
+WS=248
+EOL=249
+ML_COMMENT=250
+SL_COMMENT=251
+'('=1
+')'=2
+'['=3
+']'=4
+'{'=5
+'}'=6
+'='=7
+'<'=8
+'>'=9
+'>='=10
+'<>'=11
+'<='=12
+'+'=13
+'-'=14
+'*'=15
+'/'=16
+','=17
+'->'=18
+':'=19
+':='=20
+'#'=21
+'eval'=22
+'if'=23
+'case'=24
+'then'=25
+'else'=26
+'using'=27
+'with'=28
+'current_date'=29
+'datediff'=30
+'dateadd'=31
+'getyear'=32
+'getmonth'=33
+'dayofmonth'=34
+'dayofyear'=35
+'daytoyear'=36
+'daytomonth'=37
+'yeartoday'=38
+'monthtoday'=39
+'on'=40
+'drop'=41
+'keep'=42
+'calc'=43
+'attrcalc'=44
+'rename'=45
+'as'=46
+'and'=47
+'or'=48
+'xor'=49
+'not'=50
+'between'=51
+'in'=52
+'not_in'=53
+'null'=54
+'isnull'=55
+'ex'=56
+'union'=57
+'diff'=58
+'symdiff'=59
+'intersect'=60
+'random'=61
+'keys'=62
+'intyear'=63
+'intmonth'=64
+'intday'=65
+'check'=66
+'exists_in'=67
+'to'=68
+'return'=69
+'imbalance'=70
+'errorcode'=71
+'all'=72
+'aggr'=73
+'errorlevel'=74
+'order'=75
+'by'=76
+'rank'=77
+'asc'=78
+'desc'=79
+'min'=80
+'max'=81
+'first'=82
+'last'=83
+'indexof'=84
+'abs'=85
+'key'=86
+'ln'=87
+'log'=88
+'trunc'=89
+'round'=90
+'power'=91
+'mod'=92
+'length'=93
+'||'=94
+'trim'=95
+'upper'=96
+'lower'=97
+'substr'=98
+'sum'=99
+'avg'=100
+'median'=101
+'count'=102
+'identifier'=103
+'measure'=104
+'attribute'=105
+'filter'=106
+'merge'=107
+'exp'=108
+'componentRole'=109
+'viral'=110
+'match_characters'=111
+'type'=112
+'nvl'=113
+'hierarchy'=114
+'_'=115
+'invalid'=116
+'levenshtein'=117
+'valuedomain'=118
+'variable'=119
+'data'=120
+'structure'=121
+'dataset'=122
+'operator'=123
+'define'=124
+'<-'=125
+'datapoint'=126
+'hierarchical'=127
+'ruleset'=128
+'rule'=129
+'end'=130
+'alterDataset'=131
+'ltrim'=132
+'rtrim'=133
+'instr'=134
+'replace'=135
+'ceil'=136
+'floor'=137
+'sqrt'=138
+'any'=139
+'setdiff'=140
+'stddev_pop'=141
+'stddev_samp'=142
+'var_pop'=143
+'var_samp'=144
+'group'=145
+'except'=146
+'having'=147
+'first_value'=148
+'last_value'=149
+'lag'=150
+'lead'=151
+'ratio_to_report'=152
+'over'=153
+'preceding'=154
+'following'=155
+'unbounded'=156
+'partition'=157
+'rows'=158
+'range'=159
+'current'=160
+'valid'=161
+'fill_time_series'=162
+'flow_to_stock'=163
+'stock_to_flow'=164
+'timeshift'=165
+'measures'=166
+'no_measures'=167
+'condition'=168
+'boolean'=169
+'date'=170
+'time_period'=171
+'number'=172
+'string'=173
+'time'=174
+'integer'=175
+'float'=176
+'list'=177
+'record'=178
+'restrict'=179
+'yyyy'=180
+'mm'=181
+'dd'=182
+'maxLength'=183
+'regexp'=184
+'is'=185
+'when'=186
+'from'=187
+'aggregates'=188
+'points'=189
+'point'=190
+'total'=191
+'partial'=192
+'always'=193
+'inner_join'=194
+'left_join'=195
+'cross_join'=196
+'full_join'=197
+'maps_from'=198
+'maps_to'=199
+'map_to'=200
+'map_from'=201
+'returns'=202
+'pivot'=203
+'customPivot'=204
+'unpivot'=205
+'sub'=206
+'apply'=207
+'conditioned'=208
+'period_indicator'=209
+'single'=210
+'duration'=211
+'time_agg'=212
+'unit'=213
+'Value'=214
+'valuedomains'=215
+'variables'=216
+'input'=217
+'output'=218
+'cast'=219
+'rule_priority'=220
+'dataset_priority'=221
+'default'=222
+'check_datapoint'=223
+'check_hierarchy'=224
+'computed'=225
+'non_null'=226
+'non_zero'=227
+'partial_null'=228
+'partial_zero'=229
+'always_null'=230
+'always_zero'=231
+'components'=232
+'all_measures'=233
+'scalar'=234
+'component'=235
+'datapoint_on_valuedomains'=236
+'datapoint_on_variables'=237
+'hierarchical_on_valuedomains'=238
+'hierarchical_on_variables'=239
+'set'=240
+'language'=241
+';'=249
diff --git a/vtl-prov/docs/model-v1.md b/vtl-prov/docs/model-v1.md
index 242f21efd..1eea72398 100644
--- a/vtl-prov/docs/model-v1.md
+++ b/vtl-prov/docs/model-v1.md
@@ -10,7 +10,6 @@ his document present how we could extract some provenance from a VTL program in
- SDTH:
```mermaid
-
classDiagram
class Program["sdth:Program"] {
diff --git a/vtl-sdmx/src/test/resources/DSD_BPE_CENSUS.xml b/vtl-sdmx/src/test/resources/DSD_BPE_CENSUS.xml
index a73b0768d..ae2cfecd5 100644
--- a/vtl-sdmx/src/test/resources/DSD_BPE_CENSUS.xml
+++ b/vtl-sdmx/src/test/resources/DSD_BPE_CENSUS.xml
@@ -83,6 +83,12 @@
Nombre de communes
+
+ Nombre d'équipement
+
+
+ Nombre de médecins généralistes pour 10 OOO habitants
+
Population municipale
@@ -195,6 +201,120 @@
+
+ Cube BPE par ville
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).MUNICIPALITY
+
+ urn:sdmx:org.sdmx.infomodel.codelist.Codelist=FR1:CL_DEPCOM(1.0)
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).REF_YEAR
+
+
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).TYPE_EQUIPEMENT
+
+ urn:sdmx:org.sdmx.infomodel.codelist.Codelist=FR1:CL_TYPEQU(1.0)
+
+
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).NB_EQUIPEMENT
+
+
+
+
+
+ Cube BPE par nuts 3
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).REF_AREA
+
+ urn:sdmx:org.sdmx.infomodel.codelist.Codelist=FR1:CL_REF_AREA(1.0)
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).REF_YEAR
+
+
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).TYPE_EQUIPEMENT
+
+ urn:sdmx:org.sdmx.infomodel.codelist.Codelist=FR1:CL_TYPEQU(1.0)
+
+
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).NB_EQUIPEMENT
+
+
+
+
+
+ Cube médecins généralistes par habitants ventillé par nuts 3 en 2010
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).REF_AREA
+
+ urn:sdmx:org.sdmx.infomodel.codelist.Codelist=FR1:CL_REF_AREA(1.0)
+
+
+
+
+
+ urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=FR1:INSEE_CONCEPTS(1.0).NB_GENERALISTES_PAR_HABITANTS
+
+
+
+
@@ -205,6 +325,18 @@
Dataflow for BPE_CENSUS
urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=FR1:LEGAL_POP(1.0)
+
+ Dataflow for BPE_MUNICIPALITY
+ urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=FR1:BPE_MUNICIPALITY(1.0)
+
+
+ Dataflow for BPE_NUTS3
+ urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=FR1:BPE_NUTS3(1.0)
+
+
+ Dataflow for BPE_CENSUS_NUTS3_2021
+ urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=FR1:BPE_CENSUS_NUTS3_2021(1.0)
+
@@ -223,7 +355,7 @@
define datapoint ruleset UNIQUE_MUNICIPALITY (valuedomain CL_DEPCOM) is
MUNICIPALITY_FORMAT_RULE : match_characters(CL_DEPCOM, "[0-9]{5}|2[A-B][0-9]{3}") errorcode "Municipality code is not in the correct format"
- end datapoint ruleset
+ end datapoint ruleset;
@@ -231,7 +363,7 @@
define datapoint ruleset NUTS3_TYPES (variable facility_type, nb) is
BOWLING_ALLEY_RULE : when facility_type = "F102" then nb > 10 errorcode "Not enough bowling alleys"
- end datapoint ruleset
+ end datapoint ruleset;