diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 3159a258..bb21dad1 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -18,7 +18,7 @@ jobs: - name: Test run: make test - name: Setup mxbuild - run: ./bin/mxcli setup mxbuild --version 11.8.0 + run: ./bin/mxcli setup mxbuild --version 11.6.4 - name: Integration tests run: make test-integration timeout-minutes: 30 diff --git a/cmd/mxcli/cmd_widget.go b/cmd/mxcli/cmd_widget.go index 4ec508a7..ecb30df6 100644 --- a/cmd/mxcli/cmd_widget.go +++ b/cmd/mxcli/cmd_widget.go @@ -44,14 +44,39 @@ var widgetListCmd = &cobra.Command{ RunE: runWidgetList, } +var widgetInitCmd = &cobra.Command{ + Use: "init", + Short: "Extract definitions for all project widgets", + Long: `Scan the project's widgets/ directory, extract .def.json for each .mpk, +and generate skill documentation in .claude/skills/widgets/. + +This enables CREATE PAGE to use any project widget via the pluggable engine.`, + RunE: runWidgetInit, +} + +var widgetDocsCmd = &cobra.Command{ + Use: "docs", + Short: "Generate widget skill documentation", + Long: `Generate per-widget markdown documentation in .claude/skills/widgets/ from .mpk definitions.`, + RunE: runWidgetDocs, +} + func init() { widgetExtractCmd.Flags().String("mpk", "", "Path to .mpk widget package file") widgetExtractCmd.Flags().StringP("output", "o", "", "Output directory (default: .mxcli/widgets/)") widgetExtractCmd.Flags().String("mdl-name", "", "Override the MDL keyword name (default: derived from widget name)") widgetExtractCmd.MarkFlagRequired("mpk") + widgetInitCmd.Flags().StringP("project", "p", "", "Path to .mpr project file") + widgetInitCmd.MarkFlagRequired("project") + + widgetDocsCmd.Flags().StringP("project", "p", "", "Path to .mpr project file") + widgetDocsCmd.MarkFlagRequired("project") + widgetCmd.AddCommand(widgetExtractCmd) widgetCmd.AddCommand(widgetListCmd) + widgetCmd.AddCommand(widgetInitCmd) + widgetCmd.AddCommand(widgetDocsCmd) rootCmd.AddCommand(widgetCmd) } @@ -115,78 +140,277 @@ func deriveMDLName(widgetID string) string { return strings.ToUpper(name) } -// generateDefJSON creates a WidgetDefinition from an mpk.WidgetDefinition. +// generateDefJSON creates a skeleton WidgetDefinition from an mpk.WidgetDefinition. +// Properties are handled explicitly from MDL via the engine's explicit property pass, +// so no propertyMappings or childSlots are generated here. func generateDefJSON(mpkDef *mpk.WidgetDefinition, mdlName string) *executor.WidgetDefinition { + widgetKind := "custom" + if mpkDef.IsPluggable { + widgetKind = "pluggable" + } def := &executor.WidgetDefinition{ WidgetID: mpkDef.ID, MDLName: mdlName, + WidgetKind: widgetKind, TemplateFile: strings.ToLower(mdlName) + ".json", DefaultEditable: "Always", } - // Build property mappings by inferring operations from XML types - var mappings []executor.PropertyMapping - var childSlots []executor.ChildSlotMapping - - for _, prop := range mpkDef.Properties { - normalizedType := mpk.NormalizeType(prop.Type) - - switch normalizedType { + // Generate property mappings and child slots from MPK property definitions. + // Two passes: datasource first (association depends on entityContext set by datasource). + var assocMappings []executor.PropertyMapping + for _, p := range mpkDef.Properties { + switch p.Type { + case "widgets": + container := strings.ToUpper(p.Key) + if p.Key == "content" { + container = "TEMPLATE" + } + def.ChildSlots = append(def.ChildSlots, executor.ChildSlotMapping{ + PropertyKey: p.Key, + MDLContainer: container, + Operation: "widgets", + }) + case "datasource": + def.PropertyMappings = append(def.PropertyMappings, executor.PropertyMapping{ + PropertyKey: p.Key, + Source: "DataSource", + Operation: "datasource", + }) case "attribute": - mappings = append(mappings, executor.PropertyMapping{ - PropertyKey: prop.Key, + def.PropertyMappings = append(def.PropertyMappings, executor.PropertyMapping{ + PropertyKey: p.Key, Source: "Attribute", Operation: "attribute", }) case "association": - mappings = append(mappings, executor.PropertyMapping{ - PropertyKey: prop.Key, + assocMappings = append(assocMappings, executor.PropertyMapping{ + PropertyKey: p.Key, Source: "Association", Operation: "association", }) - case "datasource": - mappings = append(mappings, executor.PropertyMapping{ - PropertyKey: prop.Key, - Source: "DataSource", - Operation: "datasource", - }) - case "widgets": - // Widgets properties become child slots - containerName := strings.ToUpper(prop.Key) - if containerName == "CONTENT" { - containerName = "TEMPLATE" - } - childSlots = append(childSlots, executor.ChildSlotMapping{ - PropertyKey: prop.Key, - MDLContainer: containerName, - Operation: "widgets", - }) case "selection": - mappings = append(mappings, executor.PropertyMapping{ - PropertyKey: prop.Key, + def.PropertyMappings = append(def.PropertyMappings, executor.PropertyMapping{ + PropertyKey: p.Key, Source: "Selection", Operation: "selection", - Default: prop.DefaultValue, + Default: p.DefaultValue, }) - case "boolean", "string", "enumeration", "integer", "decimal": - mapping := executor.PropertyMapping{ - PropertyKey: prop.Key, + case "boolean", "integer", "decimal", "string", "enumeration": + m := executor.PropertyMapping{ + PropertyKey: p.Key, Operation: "primitive", } - if prop.DefaultValue != "" { - mapping.Value = prop.DefaultValue + if p.DefaultValue != "" { + m.Value = p.DefaultValue } - mappings = append(mappings, mapping) - // Skip action, expression, textTemplate, object, icon, image, file — too complex for auto-mapping + def.PropertyMappings = append(def.PropertyMappings, m) } } - - def.PropertyMappings = mappings - def.ChildSlots = childSlots + // Append association mappings after datasource (association requires prior entityContext) + def.PropertyMappings = append(def.PropertyMappings, assocMappings...) return def } +func runWidgetInit(cmd *cobra.Command, args []string) error { + projectPath, _ := cmd.Flags().GetString("project") + projectDir := filepath.Dir(projectPath) + widgetsDir := filepath.Join(projectDir, "widgets") + outputDir := filepath.Join(projectDir, ".mxcli", "widgets") + + // Load built-in registry to skip widgets that already have hand-crafted definitions + builtinRegistry, _ := executor.NewWidgetRegistry() + + // Scan widgets/ for .mpk files + matches, err := filepath.Glob(filepath.Join(widgetsDir, "*.mpk")) + if err != nil { + return fmt.Errorf("failed to scan widgets directory: %w", err) + } + if len(matches) == 0 { + fmt.Println("No .mpk files found in widgets/ directory.") + return nil + } + + if err := os.MkdirAll(outputDir, 0755); err != nil { + return fmt.Errorf("failed to create output directory: %w", err) + } + + var extracted, skipped int + for _, mpkPath := range matches { + mpkDef, err := mpk.ParseMPK(mpkPath) + if err != nil { + log.Printf("warning: skipping %s: %v", filepath.Base(mpkPath), err) + skipped++ + continue + } + + mdlName := deriveMDLName(mpkDef.ID) + filename := strings.ToLower(mdlName) + ".def.json" + outPath := filepath.Join(outputDir, filename) + + // Skip widgets that have hand-crafted built-in definitions (e.g., COMBOBOX, GALLERY) + if builtinRegistry != nil { + if _, ok := builtinRegistry.GetByWidgetID(mpkDef.ID); ok { + skipped++ + continue + } + } + + // Skip if already exists on disk + if _, err := os.Stat(outPath); err == nil { + skipped++ + continue + } + + defJSON := generateDefJSON(mpkDef, mdlName) + data, err := json.MarshalIndent(defJSON, "", " ") + if err != nil { + log.Printf("warning: skipping %s: %v", mpkDef.ID, err) + skipped++ + continue + } + data = append(data, '\n') + + if err := os.WriteFile(outPath, data, 0644); err != nil { + return fmt.Errorf("failed to write %s: %w", outPath, err) + } + kind := "custom" + if mpkDef.IsPluggable { + kind = "pluggable" + } + fmt.Printf(" %-12s %-20s %s\n", kind, mdlName, mpkDef.ID) + extracted++ + } + + fmt.Printf("\nExtracted: %d, Skipped: %d (existing or unparseable)\n", extracted, skipped) + + // Also generate docs + fmt.Println("\nGenerating widget documentation...") + return generateWidgetDocs(projectDir) +} + +func runWidgetDocs(cmd *cobra.Command, args []string) error { + projectPath, _ := cmd.Flags().GetString("project") + projectDir := filepath.Dir(projectPath) + return generateWidgetDocs(projectDir) +} + +func generateWidgetDocs(projectDir string) error { + widgetsDir := filepath.Join(projectDir, "widgets") + docsDir := filepath.Join(projectDir, ".claude", "skills", "widgets") + // Also try .ai-context + if _, err := os.Stat(filepath.Join(projectDir, ".ai-context")); err == nil { + docsDir = filepath.Join(projectDir, ".ai-context", "skills", "widgets") + } + + if err := os.MkdirAll(docsDir, 0755); err != nil { + return fmt.Errorf("failed to create docs directory: %w", err) + } + + matches, err := filepath.Glob(filepath.Join(widgetsDir, "*.mpk")) + if err != nil { + return fmt.Errorf("failed to scan widgets directory: %w", err) + } + + var generated int + var indexEntries []string + + for _, mpkPath := range matches { + mpkDef, err := mpk.ParseMPK(mpkPath) + if err != nil { + continue + } + + mdlName := deriveMDLName(mpkDef.ID) + filename := strings.ToLower(mdlName) + ".md" + outPath := filepath.Join(docsDir, filename) + + doc := generateWidgetDoc(mpkDef, mdlName) + + if err := os.WriteFile(outPath, []byte(doc), 0644); err != nil { + log.Printf("warning: failed to write %s: %v", filename, err) + continue + } + + kind := "CUSTOMWIDGET" + if mpkDef.IsPluggable { + kind = "PLUGGABLEWIDGET" + } + indexEntries = append(indexEntries, fmt.Sprintf("| `%s` | %s | `%s` | %s | %d |", + kind, mdlName, mpkDef.ID, mpkDef.Name, len(mpkDef.Properties))) + generated++ + } + + // Write index + var indexBuf strings.Builder + indexBuf.WriteString("# Available Widgets\n\n") + indexBuf.WriteString("Generated by `mxcli widget docs`. See individual files for property details.\n\n") + indexBuf.WriteString("| Prefix | Name | Widget ID | Display Name | Props |\n") + indexBuf.WriteString("|--------|------|-----------|--------------|-------|\n") + for _, entry := range indexEntries { + indexBuf.WriteString(entry) + indexBuf.WriteString("\n") + } + indexBuf.WriteString("\n**Usage in MDL:**\n```sql\n") + indexBuf.WriteString("-- React pluggable widgets\n") + indexBuf.WriteString("PLUGGABLEWIDGET 'com.mendix.widget.custom.badge.Badge' badge1\n\n") + indexBuf.WriteString("-- Legacy custom widgets\n") + indexBuf.WriteString("CUSTOMWIDGET 'com.company.OldWidget' legacy1\n") + indexBuf.WriteString("```\n") + + indexPath := filepath.Join(docsDir, "_index.md") + if err := os.WriteFile(indexPath, []byte(indexBuf.String()), 0644); err != nil { + return fmt.Errorf("failed to write index: %w", err) + } + + fmt.Printf("Generated %d widget docs in %s\n", generated, docsDir) + return nil +} + +func generateWidgetDoc(mpkDef *mpk.WidgetDefinition, mdlName string) string { + var buf strings.Builder + + prefix := "CUSTOMWIDGET" + if mpkDef.IsPluggable { + prefix = "PLUGGABLEWIDGET" + } + + buf.WriteString(fmt.Sprintf("# %s\n\n", mpkDef.Name)) + buf.WriteString(fmt.Sprintf("- **Widget ID:** `%s`\n", mpkDef.ID)) + buf.WriteString(fmt.Sprintf("- **Type:** %s\n", prefix)) + buf.WriteString(fmt.Sprintf("- **Version:** %s\n\n", mpkDef.Version)) + + buf.WriteString("## MDL Example\n\n```sql\n") + buf.WriteString(fmt.Sprintf("%s '%s' widget1\n", prefix, mpkDef.ID)) + buf.WriteString("```\n\n") + + if len(mpkDef.Properties) > 0 { + buf.WriteString("## Properties\n\n") + buf.WriteString("| Property | Type | Required | Default | Description |\n") + buf.WriteString("|----------|------|----------|---------|-------------|\n") + + for _, prop := range mpkDef.Properties { + if prop.IsSystem { + continue + } + req := "" + if prop.Required { + req = "Yes" + } + desc := prop.Description + if len(desc) > 80 { + desc = desc[:77] + "..." + } + buf.WriteString(fmt.Sprintf("| `%s` | %s | %s | %s | %s |\n", + prop.Key, prop.Type, req, prop.DefaultValue, desc)) + } + } + + buf.WriteString("\n") + return buf.String() +} + func runWidgetList(cmd *cobra.Command, args []string) error { registry, err := executor.NewWidgetRegistry() if err != nil { @@ -207,10 +431,14 @@ func runWidgetList(cmd *cobra.Command, args []string) error { return nil } - fmt.Printf("%-20s %-50s %s\n", "MDL Name", "Widget ID", "Template") - fmt.Printf("%-20s %-50s %s\n", strings.Repeat("-", 20), strings.Repeat("-", 50), strings.Repeat("-", 20)) + fmt.Printf("%-16s %-20s %-50s %s\n", "Kind", "MDL Name", "Widget ID", "Template") + fmt.Printf("%-16s %-20s %-50s %s\n", strings.Repeat("-", 16), strings.Repeat("-", 20), strings.Repeat("-", 50), strings.Repeat("-", 20)) for _, def := range defs { - fmt.Printf("%-20s %-50s %s\n", def.MDLName, def.WidgetID, def.TemplateFile) + kind := def.WidgetKind + if kind == "" { + kind = "pluggable" + } + fmt.Printf("%-16s %-20s %-50s %s\n", kind, def.MDLName, def.WidgetID, def.TemplateFile) } fmt.Printf("\nTotal: %d definitions\n", len(defs)) diff --git a/cmd/mxcli/cmd_widget_test.go b/cmd/mxcli/cmd_widget_test.go index 061810ee..675dc2c3 100644 --- a/cmd/mxcli/cmd_widget_test.go +++ b/cmd/mxcli/cmd_widget_test.go @@ -144,6 +144,50 @@ func TestGenerateDefJSON_SkipsComplexTypes(t *testing.T) { } } +func TestGenerateDefJSON_AssociationAfterDataSource(t *testing.T) { + // Association mappings require entityContext from a prior DataSource mapping. + // generateDefJSON must order datasource before association regardless of MPK order. + mpkDef := &mpk.WidgetDefinition{ + ID: "com.example.AssocFirst", + Name: "AssocFirst", + Properties: []mpk.PropertyDef{ + {Key: "myAssoc", Type: "association"}, // association BEFORE datasource in MPK + {Key: "myLabel", Type: "string"}, + {Key: "myDS", Type: "datasource"}, + }, + } + + def := generateDefJSON(mpkDef, "ASSOCFIRST") + + // Should have 3 mappings: datasource, string primitive, association + if len(def.PropertyMappings) != 3 { + t.Fatalf("PropertyMappings count = %d, want 3", len(def.PropertyMappings)) + } + + // datasource must appear before association in the mappings slice + dsIdx, assocIdx := -1, -1 + for i, m := range def.PropertyMappings { + if m.Source == "DataSource" { + dsIdx = i + } + if m.Source == "Association" { + assocIdx = i + } + } + if dsIdx < 0 { + t.Fatal("DataSource mapping not found") + } + if assocIdx < 0 { + t.Fatal("Association mapping not found") + } + if dsIdx > assocIdx { + t.Errorf("DataSource at index %d must come before Association at index %d", dsIdx, assocIdx) + } + + // Verify the generated definition can be loaded by the registry without validation errors. + // The registry's validateMappings enforces Association-after-DataSource ordering. +} + func findMapping(mappings []executor.PropertyMapping, key string) *executor.PropertyMapping { for i := range mappings { if mappings[i].PropertyKey == key { diff --git a/cmd/mxcli/docker/build_test.go b/cmd/mxcli/docker/build_test.go index bcd90f20..ef72528c 100644 --- a/cmd/mxcli/docker/build_test.go +++ b/cmd/mxcli/docker/build_test.go @@ -6,6 +6,7 @@ import ( "archive/zip" "os" "path/filepath" + "runtime" "strings" "testing" @@ -18,6 +19,9 @@ func newTestZipWriter(f *os.File) *zip.Writer { } func TestPatchStartPermissions_Applied(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("chmod not supported on Windows") + } dir := t.TempDir() binDir := filepath.Join(dir, "bin") os.MkdirAll(binDir, 0755) @@ -35,6 +39,9 @@ func TestPatchStartPermissions_Applied(t *testing.T) { } func TestPatchStartPermissions_Skipped_AlreadyExecutable(t *testing.T) { + if runtime.GOOS == "windows" { + t.Skip("chmod not supported on Windows") + } dir := t.TempDir() binDir := filepath.Join(dir, "bin") os.MkdirAll(binDir, 0755) diff --git a/cmd/mxcli/docker/download_test.go b/cmd/mxcli/docker/download_test.go index 68c7a383..f0c0e9c5 100644 --- a/cmd/mxcli/docker/download_test.go +++ b/cmd/mxcli/docker/download_test.go @@ -9,6 +9,15 @@ import ( "testing" ) +func setTestHomeDir(t *testing.T, dir string) { + t.Helper() + if runtime.GOOS == "windows" { + t.Setenv("USERPROFILE", dir) + } else { + t.Setenv("HOME", dir) + } +} + func TestMxBuildCDNURL_ARM64(t *testing.T) { url := MxBuildCDNURL("11.6.3", "arm64") expected := "https://cdn.mendix.com/runtime/arm64-mxbuild-11.6.3.tar.gz" @@ -48,9 +57,7 @@ func TestCachedMxBuildPath_NotCached(t *testing.T) { func TestCachedMxBuildPath_Cached(t *testing.T) { // Create a fake cached mxbuild dir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", dir) - defer os.Setenv("HOME", origHome) + setTestHomeDir(t, dir) version := "99.99.99" modelerDir := filepath.Join(dir, ".mxcli", "mxbuild", version, "modeler") @@ -67,9 +74,7 @@ func TestCachedMxBuildPath_Cached(t *testing.T) { func TestAnyCachedMxBuildPath_Empty(t *testing.T) { dir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", dir) - defer os.Setenv("HOME", origHome) + setTestHomeDir(t, dir) path := AnyCachedMxBuildPath() if path != "" { @@ -79,9 +84,7 @@ func TestAnyCachedMxBuildPath_Empty(t *testing.T) { func TestAnyCachedMxBuildPath_Found(t *testing.T) { dir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", dir) - defer os.Setenv("HOME", origHome) + setTestHomeDir(t, dir) modelerDir := filepath.Join(dir, ".mxcli", "mxbuild", "11.6.3", "modeler") os.MkdirAll(modelerDir, 0755) @@ -123,9 +126,7 @@ func TestCachedRuntimePath_NotCached(t *testing.T) { func TestCachedRuntimePath_Cached(t *testing.T) { dir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", dir) - defer os.Setenv("HOME", origHome) + setTestHomeDir(t, dir) version := "99.99.99" launcherDir := filepath.Join(dir, ".mxcli", "runtime", version, "runtime", "launcher") @@ -141,9 +142,7 @@ func TestCachedRuntimePath_Cached(t *testing.T) { func TestResolveMxBuild_FindsCachedVersion(t *testing.T) { dir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", dir) - defer os.Setenv("HOME", origHome) + setTestHomeDir(t, dir) // Set up a fake cached mxbuild modelerDir := filepath.Join(dir, ".mxcli", "mxbuild", "11.6.3", "modeler") diff --git a/mdl-examples/doctype-tests/20-json-structure-examples.mdl b/mdl-examples/doctype-tests/20-json-structure-examples.mdl index 19d29ad0..473651d6 100644 --- a/mdl-examples/doctype-tests/20-json-structure-examples.mdl +++ b/mdl-examples/doctype-tests/20-json-structure-examples.mdl @@ -2,14 +2,18 @@ -- JSON Structure Examples -- ============================================================================= --- List all JSON structures in the project +-- MARK: Setup +CREATE MODULE MyModule; + +-- MARK: Show (empty) + +-- List all JSON structures in the project (empty initially) SHOW JSON STRUCTURES; -- List JSON structures in a specific module SHOW JSON STRUCTURES IN MyModule; --- Describe a JSON structure (shows element tree + JSON snippet) -DESCRIBE JSON STRUCTURE MyModule.CustomerResponse; +-- MARK: Create -- Create a JSON structure from a JSON snippet (single-line) CREATE JSON STRUCTURE MyModule.SimpleItem SNIPPET '{"id": 1, "name": "John", "active": true}'; @@ -43,6 +47,13 @@ CUSTOM NAME MAP ( 'naam' AS 'CompanyName' ); +-- MARK: Describe + +-- Describe a JSON structure (shows element tree + JSON snippet) +DESCRIBE JSON STRUCTURE MyModule.CustomerResponse; + +-- MARK: Replace + -- Edit (replace) an existing JSON structure with an updated schema CREATE OR REPLACE JSON STRUCTURE MyModule.CustomerResponse SNIPPET $${ "id": 1, @@ -61,6 +72,8 @@ CREATE OR REPLACE JSON STRUCTURE MyModule.CustomerResponse SNIPPET $${ "tags": ["premium", "verified"] }$$; +-- MARK: Drop + -- Delete JSON structures DROP JSON STRUCTURE MyModule.SimpleItem; @@ -69,3 +82,6 @@ DROP JSON STRUCTURE MyModule.ApiError; DROP JSON STRUCTURE MyModule.ExternalApi; DROP JSON STRUCTURE MyModule.CustomerResponse; + +-- MARK: Cleanup +DROP MODULE MyModule; diff --git a/mdl/diaglog/diaglog_test.go b/mdl/diaglog/diaglog_test.go index af0de601..74f18041 100644 --- a/mdl/diaglog/diaglog_test.go +++ b/mdl/diaglog/diaglog_test.go @@ -5,6 +5,7 @@ package diaglog import ( "os" "path/filepath" + "runtime" "strings" "testing" "time" @@ -22,12 +23,20 @@ func TestNilLoggerIsSafe(t *testing.T) { l.Close() } +func setHomeDir(t *testing.T, dir string) { + t.Helper() + // Windows uses USERPROFILE, Unix uses HOME. os.UserHomeDir() checks both. + if runtime.GOOS == "windows" { + t.Setenv("USERPROFILE", dir) + } else { + t.Setenv("HOME", dir) + } +} + func TestInitAndClose(t *testing.T) { // Use a temp dir for logs tmpDir := t.TempDir() - origHome := os.Getenv("HOME") - t.Setenv("HOME", tmpDir) - defer os.Setenv("HOME", origHome) + setHomeDir(t, tmpDir) l := Init("test-version", "test") if l == nil { @@ -53,7 +62,7 @@ func TestInitAndClose(t *testing.T) { func TestCommandLogging(t *testing.T) { tmpDir := t.TempDir() - t.Setenv("HOME", tmpDir) + setHomeDir(t, tmpDir) l := Init("test", "batch") if l == nil { @@ -89,7 +98,7 @@ func TestCommandLogging(t *testing.T) { func TestDisabledViaEnv(t *testing.T) { tmpDir := t.TempDir() - t.Setenv("HOME", tmpDir) + setHomeDir(t, tmpDir) t.Setenv("MXCLI_LOG", "0") l := Init("test", "batch") diff --git a/mdl/executor/cmd_alter_page.go b/mdl/executor/cmd_alter_page.go index eefbe8e9..88fdc7d4 100644 --- a/mdl/executor/cmd_alter_page.go +++ b/mdl/executor/cmd_alter_page.go @@ -632,6 +632,8 @@ func setRawWidgetProperty(widget bson.D, propName string, value interface{}) err return nil case "Attribute": return setWidgetAttributeRef(widget, value) + case "DataSource": + return setWidgetDataSource(widget, value) default: // Try as pluggable widget property (quoted string property name) return setPluggableWidgetProperty(widget, propName, value) @@ -685,6 +687,75 @@ func setWidgetAttributeRef(widget bson.D, value interface{}) error { return fmt.Errorf("widget does not have an AttributeRef property; Attribute can only be SET on input widgets (TextBox, TextArea, DatePicker, etc.)") } +// setWidgetDataSource sets the DataSource on a DataView or list widget. +func setWidgetDataSource(widget bson.D, value interface{}) error { + ds, ok := value.(*ast.DataSourceV3) + if !ok { + return fmt.Errorf("DataSource value must be a datasource expression") + } + + var serialized interface{} + + switch ds.Type { + case "selection": + // SELECTION widgetName → Forms$ListenTargetSource + serialized = bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$ListenTargetSource"}, + {Key: "ListenTarget", Value: ds.Reference}, + } + case "database": + // DATABASE Entity → Forms$DataViewSource with entity ref + var entityRef interface{} + if ds.Reference != "" { + entityRef = bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "DomainModels$DirectEntityRef"}, + {Key: "Entity", Value: ds.Reference}, + } + } + serialized = bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$DataViewSource"}, + {Key: "EntityRef", Value: entityRef}, + {Key: "ForceFullObjects", Value: false}, + {Key: "SourceVariable", Value: nil}, + } + case "microflow": + serialized = bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$MicroflowSource"}, + {Key: "MicroflowSettings", Value: bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$MicroflowSettings"}, + {Key: "Asynchronous", Value: false}, + {Key: "ConfirmationInfo", Value: nil}, + {Key: "FormValidations", Value: "All"}, + {Key: "Microflow", Value: ds.Reference}, + {Key: "ParameterMappings", Value: bson.A{int32(3)}}, + {Key: "ProgressBar", Value: "None"}, + {Key: "ProgressMessage", Value: nil}, + }}, + } + case "nanoflow": + serialized = bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$NanoflowSource"}, + {Key: "NanoflowSettings", Value: bson.D{ + {Key: "$ID", Value: mpr.IDToBsonBinary(mpr.GenerateID())}, + {Key: "$Type", Value: "Forms$NanoflowSettings"}, + {Key: "Nanoflow", Value: ds.Reference}, + {Key: "ParameterMappings", Value: bson.A{int32(3)}}, + }}, + } + default: + return fmt.Errorf("unsupported DataSource type for ALTER PAGE SET: %s", ds.Type) + } + + dSet(widget, "DataSource", serialized) + return nil +} + // setWidgetLabel sets the Label.Caption text on input widgets. func setWidgetLabel(widget bson.D, value interface{}) error { label := dGetDoc(widget, "Label") diff --git a/mdl/executor/cmd_pages_builder_input.go b/mdl/executor/cmd_pages_builder_input.go index 3d65027f..be49c22c 100644 --- a/mdl/executor/cmd_pages_builder_input.go +++ b/mdl/executor/cmd_pages_builder_input.go @@ -4,6 +4,7 @@ package executor import ( "fmt" + "log" "strings" "github.com/mendixlabs/mxcli/model" @@ -97,10 +98,12 @@ func updateWidgetPropertyValue(obj bson.D, propTypeIDs map[string]pages.Property // updatePropertyInArray finds a property by TypePointer and updates its value. func updatePropertyInArray(arr bson.A, propertyTypeID string, updateFn func(bson.D) bson.D) bson.A { result := make(bson.A, len(arr)) + matched := false for i, item := range arr { if prop, ok := item.(bson.D); ok { if matchesTypePointer(prop, propertyTypeID) { result[i] = updatePropertyValue(prop, updateFn) + matched = true } else { result[i] = item } @@ -108,21 +111,32 @@ func updatePropertyInArray(arr bson.A, propertyTypeID string, updateFn func(bson result[i] = item } } + if !matched { + log.Printf("WARNING: updatePropertyInArray: no match for TypePointer %s in %d properties", propertyTypeID, len(arr)-1) + } return result } // matchesTypePointer checks if a WidgetProperty has the given TypePointer. func matchesTypePointer(prop bson.D, propertyTypeID string) bool { + // Normalize: strip dashes for comparison (BlobToUUID returns dashed format, + // but propertyTypeIDs from template loader use undashed 32-char hex). + normalizedTarget := strings.ReplaceAll(propertyTypeID, "-", "") for _, elem := range prop { if elem.Key == "TypePointer" { // Handle both primitive.Binary (from MPR) and []byte (from JSON templates) switch v := elem.Value.(type) { case primitive.Binary: - propID := mpr.BlobToUUID(v.Data) - return propID == propertyTypeID + propID := strings.ReplaceAll(mpr.BlobToUUID(v.Data), "-", "") + return propID == normalizedTarget case []byte: - propID := mpr.BlobToUUID(v) - return propID == propertyTypeID + propID := strings.ReplaceAll(mpr.BlobToUUID(v), "-", "") + if propID == normalizedTarget { + return true + } + // Also try raw hex encoding (no GUID swap) for templates + rawHex := fmt.Sprintf("%x", v) + return rawHex == normalizedTarget } } } @@ -233,6 +247,7 @@ func convertPropertyTypeIDs(src map[string]widgets.PropertyTypeIDEntry) map[stri ValueTypeID: v.ValueTypeID, DefaultValue: v.DefaultValue, ValueType: v.ValueType, + Required: v.Required, ObjectTypeID: v.ObjectTypeID, } // Convert nested property IDs if present diff --git a/mdl/executor/cmd_pages_builder_v3.go b/mdl/executor/cmd_pages_builder_v3.go index 43c1f89c..b1e03c08 100644 --- a/mdl/executor/cmd_pages_builder_v3.go +++ b/mdl/executor/cmd_pages_builder_v3.go @@ -311,14 +311,6 @@ func (pb *pageBuilder) buildWidgetV3(w *ast.WidgetV3) (pages.Widget, error) { widget, err = pb.buildTemplateV3(w) case "FILTER": widget, err = pb.buildFilterV3(w) - case "TEXTFILTER": - widget, err = pb.buildTextFilterV3(w) - case "NUMBERFILTER": - widget, err = pb.buildNumberFilterV3(w) - case "DROPDOWNFILTER": - widget, err = pb.buildDropdownFilterV3(w) - case "DATEFILTER": - widget, err = pb.buildDateFilterV3(w) case "STATICIMAGE": widget, err = pb.buildStaticImageV3(w) case "DYNAMICIMAGE": @@ -334,17 +326,26 @@ func (pb *pageBuilder) buildWidgetV3(w *ast.WidgetV3) (pages.Widget, error) { // Fallback to static image if pluggable engine unavailable widget, err = pb.buildStaticImageV3(w) default: - // Try pluggable widget engine for registered widget types pb.initPluggableEngine() if pb.widgetRegistry != nil { + // Try by MDL name first if def, ok := pb.widgetRegistry.Get(strings.ToUpper(w.Type)); ok { return pb.pluggableEngine.Build(def, w) } + // PLUGGABLEWIDGET/CUSTOMWIDGET 'widget.id' name — lookup by widget ID + if w.Type == "PLUGGABLEWIDGET" || w.Type == "CUSTOMWIDGET" { + if widgetType, ok := w.Properties["WidgetType"].(string); ok { + if def, ok := pb.widgetRegistry.GetByWidgetID(widgetType); ok { + return pb.pluggableEngine.Build(def, w) + } + return nil, fmt.Errorf("no definition for widget %s (run 'mxcli widget init -p app.mpr')", widgetType) + } + } } if pb.pluggableEngineErr != nil { - return nil, fmt.Errorf("unsupported V3 widget type: %s (%v)", w.Type, pb.pluggableEngineErr) + return nil, fmt.Errorf("unsupported widget type: %s (%v)", w.Type, pb.pluggableEngineErr) } - return nil, fmt.Errorf("unsupported V3 widget type: %s", w.Type) + return nil, fmt.Errorf("unsupported widget type: %s", w.Type) } if err != nil { diff --git a/mdl/executor/cmd_pages_builder_v3_layout.go b/mdl/executor/cmd_pages_builder_v3_layout.go index 3dc31bc3..cd26f1b3 100644 --- a/mdl/executor/cmd_pages_builder_v3_layout.go +++ b/mdl/executor/cmd_pages_builder_v3_layout.go @@ -221,7 +221,7 @@ func (pb *pageBuilder) buildTabContainerV3(w *ast.WidgetV3) (*pages.TabContainer BaseWidget: pages.BaseWidget{ BaseElement: model.BaseElement{ ID: model.ID(mpr.GenerateID()), - TypeName: "Forms$TabContainer", + TypeName: "Forms$TabControl", }, Name: w.Name, }, diff --git a/mdl/executor/cmd_pages_builder_v3_pluggable.go b/mdl/executor/cmd_pages_builder_v3_pluggable.go index d6cf8b60..d61c9ca4 100644 --- a/mdl/executor/cmd_pages_builder_v3_pluggable.go +++ b/mdl/executor/cmd_pages_builder_v3_pluggable.go @@ -9,10 +9,7 @@ import ( "go.mongodb.org/mongo-driver/bson" "github.com/mendixlabs/mxcli/mdl/ast" - "github.com/mendixlabs/mxcli/model" "github.com/mendixlabs/mxcli/sdk/mpr" - "github.com/mendixlabs/mxcli/sdk/pages" - "github.com/mendixlabs/mxcli/sdk/widgets" ) // ============================================================================= @@ -95,348 +92,14 @@ func (pb *pageBuilder) buildWidgetV3ToBSON(w *ast.WidgetV3) (bson.D, error) { return mpr.SerializeWidget(widget), nil } -// buildTextFilterV3 creates a DataGrid Text Filter pluggable widget. -func (pb *pageBuilder) buildTextFilterV3(w *ast.WidgetV3) (*pages.CustomWidget, error) { - widgetID := model.ID(mpr.GenerateID()) - - // Load embedded template with both Type and Object - embeddedType, embeddedObject, embeddedIDs, embeddedObjectTypeID, err := widgets.GetTemplateFullBSON(pages.WidgetIDDataGridTextFilter, mpr.GenerateID, pb.reader.Path()) - if err != nil { - return nil, fmt.Errorf("failed to load TextFilter template: %w", err) - } - if embeddedType == nil || embeddedObject == nil { - return nil, fmt.Errorf("TextFilter template not found or incomplete") - } - - // Apply Attributes and FilterType properties from AST - attributes := w.GetAttributes() - filterType := w.GetFilterType() - if len(attributes) > 0 || filterType != "" { - embeddedObject, err = pb.applyFilterWidgetProperties(embeddedObject, embeddedType, attributes, filterType) - if err != nil { - return nil, fmt.Errorf("failed to apply filter properties: %w", err) - } - } - - // Convert widget IDs to pages.PropertyTypeIDEntry format - propertyTypeIDs := convertPropertyTypeIDs(embeddedIDs) - - // Create the widget with both Type and Object - cw := &pages.CustomWidget{ - BaseWidget: pages.BaseWidget{ - BaseElement: model.BaseElement{ - ID: widgetID, - TypeName: "CustomWidgets$CustomWidget", - }, - Name: w.Name, - }, - Editable: "Always", - RawType: embeddedType, - RawObject: embeddedObject, - PropertyTypeIDMap: propertyTypeIDs, - ObjectTypeID: embeddedObjectTypeID, - } - - if err := pb.registerWidgetName(w.Name, cw.ID); err != nil { - return nil, err - } - - return cw, nil -} - -// buildNumberFilterV3 creates a DataGrid Number Filter pluggable widget. -func (pb *pageBuilder) buildNumberFilterV3(w *ast.WidgetV3) (*pages.CustomWidget, error) { - widgetID := model.ID(mpr.GenerateID()) - - // Load embedded template with both Type and Object - embeddedType, embeddedObject, embeddedIDs, embeddedObjectTypeID, err := widgets.GetTemplateFullBSON(pages.WidgetIDDataGridNumberFilter, mpr.GenerateID, pb.reader.Path()) - if err != nil { - return nil, fmt.Errorf("failed to load NumberFilter template: %w", err) - } - if embeddedType == nil || embeddedObject == nil { - return nil, fmt.Errorf("NumberFilter template not found or incomplete") - } - - // Apply Attributes and FilterType properties from AST - attributes := w.GetAttributes() - filterType := w.GetFilterType() - if len(attributes) > 0 || filterType != "" { - embeddedObject, err = pb.applyFilterWidgetProperties(embeddedObject, embeddedType, attributes, filterType) - if err != nil { - return nil, fmt.Errorf("failed to apply filter properties: %w", err) - } - } - - // Convert widget IDs to pages.PropertyTypeIDEntry format - propertyTypeIDs := convertPropertyTypeIDs(embeddedIDs) - - // Create the widget with both Type and Object - cw := &pages.CustomWidget{ - BaseWidget: pages.BaseWidget{ - BaseElement: model.BaseElement{ - ID: widgetID, - TypeName: "CustomWidgets$CustomWidget", - }, - Name: w.Name, - }, - Editable: "Always", - RawType: embeddedType, - RawObject: embeddedObject, - PropertyTypeIDMap: propertyTypeIDs, - ObjectTypeID: embeddedObjectTypeID, - } - - if err := pb.registerWidgetName(w.Name, cw.ID); err != nil { - return nil, err - } - - return cw, nil -} - -// buildDropdownFilterV3 creates a Dropdown Filter pluggable widget. -func (pb *pageBuilder) buildDropdownFilterV3(w *ast.WidgetV3) (*pages.CustomWidget, error) { - widgetID := model.ID(mpr.GenerateID()) - - // Load embedded template with both Type and Object - embeddedType, embeddedObject, embeddedIDs, embeddedObjectTypeID, err := widgets.GetTemplateFullBSON(pages.WidgetIDDataGridDropdownFilter, mpr.GenerateID, pb.reader.Path()) - if err != nil { - return nil, fmt.Errorf("failed to load DropdownFilter template: %w", err) - } - if embeddedType == nil || embeddedObject == nil { - return nil, fmt.Errorf("DropdownFilter template not found or incomplete") - } - - // Apply Attributes and FilterType properties from AST - attributes := w.GetAttributes() - filterType := w.GetFilterType() - if len(attributes) > 0 || filterType != "" { - embeddedObject, err = pb.applyFilterWidgetProperties(embeddedObject, embeddedType, attributes, filterType) - if err != nil { - return nil, fmt.Errorf("failed to apply filter properties: %w", err) - } - } - - // Convert widget IDs to pages.PropertyTypeIDEntry format - propertyTypeIDs := convertPropertyTypeIDs(embeddedIDs) - - // Create the widget with both Type and Object - cw := &pages.CustomWidget{ - BaseWidget: pages.BaseWidget{ - BaseElement: model.BaseElement{ - ID: widgetID, - TypeName: "CustomWidgets$CustomWidget", - }, - Name: w.Name, - }, - Editable: "Always", - RawType: embeddedType, - RawObject: embeddedObject, - PropertyTypeIDMap: propertyTypeIDs, - ObjectTypeID: embeddedObjectTypeID, - } - - if err := pb.registerWidgetName(w.Name, cw.ID); err != nil { - return nil, err - } - - return cw, nil -} - -// buildDateFilterV3 creates a Date Filter pluggable widget. -func (pb *pageBuilder) buildDateFilterV3(w *ast.WidgetV3) (*pages.CustomWidget, error) { - widgetID := model.ID(mpr.GenerateID()) - - // Load embedded template with both Type and Object - embeddedType, embeddedObject, embeddedIDs, embeddedObjectTypeID, err := widgets.GetTemplateFullBSON(pages.WidgetIDDataGridDateFilter, mpr.GenerateID, pb.reader.Path()) - if err != nil { - return nil, fmt.Errorf("failed to load DateFilter template: %w", err) - } - if embeddedType == nil || embeddedObject == nil { - return nil, fmt.Errorf("DateFilter template not found or incomplete") - } - - // Apply Attributes and FilterType properties from AST - attributes := w.GetAttributes() - filterType := w.GetFilterType() - if len(attributes) > 0 || filterType != "" { - embeddedObject, err = pb.applyFilterWidgetProperties(embeddedObject, embeddedType, attributes, filterType) - if err != nil { - return nil, fmt.Errorf("failed to apply filter properties: %w", err) - } - } - - // Convert widget IDs to pages.PropertyTypeIDEntry format - propertyTypeIDs := convertPropertyTypeIDs(embeddedIDs) - - // Create the widget with both Type and Object - cw := &pages.CustomWidget{ - BaseWidget: pages.BaseWidget{ - BaseElement: model.BaseElement{ - ID: widgetID, - TypeName: "CustomWidgets$CustomWidget", - }, - Name: w.Name, - }, - Editable: "Always", - RawType: embeddedType, - RawObject: embeddedObject, - PropertyTypeIDMap: propertyTypeIDs, - ObjectTypeID: embeddedObjectTypeID, - } - - if err := pb.registerWidgetName(w.Name, cw.ID); err != nil { - return nil, err - } - - return cw, nil -} - -// ============================================================================= -// Filter Widget Property Helpers -// ============================================================================= - -// applyFilterWidgetProperties applies Attributes and FilterType to a filter widget's RawObject. -// This works for TEXTFILTER, NUMBERFILTER, DROPDOWNFILTER, and DATEFILTER widgets. -func (pb *pageBuilder) applyFilterWidgetProperties(rawObject bson.D, rawType bson.D, attributes []string, filterType string) (bson.D, error) { - if len(attributes) == 0 && filterType == "" { - return rawObject, nil - } - - // Build property key map from RawType.ObjectType.PropertyTypes - propKeyMap := make(map[string]string) // TypePointer ID -> PropertyKey - objType := getBsonField(rawType, "ObjectType") - if objType != nil { - propTypes := getBsonArray(objType, "PropertyTypes") - for _, pt := range propTypes { - ptMap, ok := pt.(bson.D) - if !ok { - continue - } - id := getBsonBinaryID(ptMap, "$ID") - key := getBsonString(ptMap, "PropertyKey") - if id != "" && key != "" { - propKeyMap[id] = key - } - } - } - - // Reverse map: PropertyKey -> TypePointer ID - keyToIDMap := make(map[string]string) - for id, key := range propKeyMap { - keyToIDMap[key] = id - } - - // Get the ObjectType for the "attributes" property (for nested objects) - var attributeObjectTypeID string - var attributePropertyTypeID string - var attributeValueTypeID string - if attrTypePointerID, ok := keyToIDMap["attributes"]; ok { - // Find the PropertyType for "attributes" in ObjectType.PropertyTypes - for _, pt := range getBsonArray(objType, "PropertyTypes") { - ptMap, ok := pt.(bson.D) - if !ok { - continue - } - if getBsonBinaryID(ptMap, "$ID") == attrTypePointerID { - // Get the ObjectType inside ValueType - valueType := getBsonField(ptMap, "ValueType") - if valueType != nil { - innerObjType := getBsonField(valueType, "ObjectType") - if innerObjType != nil { - attributeObjectTypeID = getBsonBinaryID(innerObjType, "$ID") - // Get the PropertyType for "attribute" inside - for _, innerPt := range getBsonArray(innerObjType, "PropertyTypes") { - innerPtMap, ok := innerPt.(bson.D) - if !ok { - continue - } - if getBsonString(innerPtMap, "PropertyKey") == "attribute" { - attributePropertyTypeID = getBsonBinaryID(innerPtMap, "$ID") - innerValueType := getBsonField(innerPtMap, "ValueType") - if innerValueType != nil { - attributeValueTypeID = getBsonBinaryID(innerValueType, "$ID") - } - } - } - } - } - } - } - } - - // Validate that we have all required IDs for attribute objects - canCreateAttributes := len(attributes) > 0 && - attributeObjectTypeID != "" && - attributePropertyTypeID != "" && - attributeValueTypeID != "" - - // Modify Properties array in rawObject - propsArray := getBsonArray(rawObject, "Properties") - newPropsArray := make([]any, 0, len(propsArray)) - - for _, prop := range propsArray { - propMap, ok := prop.(bson.D) - if !ok { - newPropsArray = append(newPropsArray, prop) - continue - } - - typePointer := getBsonBinaryID(propMap, "TypePointer") - propKey := propKeyMap[typePointer] - - switch propKey { - case "attrChoice": - // Set to "linked" (custom) if attributes are specified and we can create them - if canCreateAttributes { - propMap = setBsonPrimitiveValue(propMap, "linked") - } - case "attributes": - // Add attribute objects only if we have all required IDs - if canCreateAttributes { - propMap = pb.buildAttributeObjects(propMap, attributes, attributeObjectTypeID, attributePropertyTypeID, attributeValueTypeID) - } - case "defaultFilter": - // Set filter type - if filterType != "" { - propMap = setBsonPrimitiveValue(propMap, filterType) - } - } - - newPropsArray = append(newPropsArray, propMap) - } - - // Update Properties in rawObject - return setBsonArrayField(rawObject, "Properties", newPropsArray), nil -} - -// buildAttributeObjects creates the Objects array for the "attributes" property. -func (pb *pageBuilder) buildAttributeObjects(propMap bson.D, attributes []string, objectTypeID, propertyTypeID, valueTypeID string) bson.D { - // Get existing Value field - value := getBsonField(propMap, "Value") - if value == nil { - return propMap - } - - // Create Objects array with attribute entries - objects := make([]any, 0, len(attributes)+1) - objects = append(objects, int32(2)) // BSON array prefix - - for _, attr := range attributes { - // Resolve short attribute names using entity context (e.g., "Name" → "Module.Entity.Name") - resolvedAttr := pb.resolveAttributePath(attr) - attrObj := pb.createAttributeObject(resolvedAttr, objectTypeID, propertyTypeID, valueTypeID) - objects = append(objects, attrObj) - } - - // Update Value.Objects - value = setBsonArrayField(value, "Objects", objects) - return setBsonField(propMap, "Value", value) -} - // createAttributeObject creates a single attribute object entry for filter widget Attributes. +// Used by the widget engine's opAttributeObjects operation. // The structure follows CustomWidgets$WidgetObject with a nested WidgetProperty for "attribute". // TypePointers reference the Type's PropertyType IDs (not regenerated). -func (pb *pageBuilder) createAttributeObject(attributePath string, objectTypeID, propertyTypeID, valueTypeID string) bson.D { +func (pb *pageBuilder) createAttributeObject(attributePath string, objectTypeID, propertyTypeID, valueTypeID string) (bson.D, error) { + if strings.Count(attributePath, ".") < 2 { + return nil, fmt.Errorf("invalid attribute path %q: expected Module.Entity.Attribute format", attributePath) + } return bson.D{ {Key: "$ID", Value: hexToBytes(mpr.GenerateID())}, {Key: "$Type", Value: "CustomWidgets$WidgetObject"}, @@ -454,17 +117,12 @@ func (pb *pageBuilder) createAttributeObject(attributePath string, objectTypeID, {Key: "$Type", Value: "Forms$NoAction"}, {Key: "DisabledDuringExecution", Value: true}, }}, - {Key: "AttributeRef", Value: func() any { - if strings.Count(attributePath, ".") < 2 { - return nil - } - return bson.D{ - {Key: "$ID", Value: hexToBytes(mpr.GenerateID())}, - {Key: "$Type", Value: "DomainModels$AttributeRef"}, - {Key: "Attribute", Value: attributePath}, - {Key: "EntityRef", Value: nil}, - } - }()}, + {Key: "AttributeRef", Value: bson.D{ + {Key: "$ID", Value: hexToBytes(mpr.GenerateID())}, + {Key: "$Type", Value: "DomainModels$AttributeRef"}, + {Key: "Attribute", Value: attributePath}, + {Key: "EntityRef", Value: nil}, + }}, {Key: "DataSource", Value: nil}, {Key: "EntityRef", Value: nil}, {Key: "Expression", Value: ""}, @@ -486,7 +144,7 @@ func (pb *pageBuilder) createAttributeObject(attributePath string, objectTypeID, }, }}, {Key: "TypePointer", Value: hexToBytes(objectTypeID)}, - } + }, nil } // BSON helper functions for filter properties diff --git a/mdl/executor/cmd_pages_describe.go b/mdl/executor/cmd_pages_describe.go index 22f8b9fe..8d7ad216 100644 --- a/mdl/executor/cmd_pages_describe.go +++ b/mdl/executor/cmd_pages_describe.go @@ -531,6 +531,10 @@ type rawWidget struct { EditableIf string // Expression from ConditionalEditabilitySettings // Design properties from Appearance DesignProperties []rawDesignProp + // Explicit widget properties (for generic PLUGGABLEWIDGET output) + ExplicitProperties []rawExplicitProp + // Full widget ID (e.g. "com.mendix.widget.custom.switch.Switch") + WidgetID string // Pluggable Image widget properties ImageUrl string // Image URL (from textTemplate) AlternativeText string // Alt text (from textTemplate) @@ -544,6 +548,13 @@ type rawWidget struct { OnClickType string // "action", "enlarge" } +// rawExplicitProp represents a non-default property extracted from a CustomWidget. +type rawExplicitProp struct { + Key string + Value string // attribute short name or primitive value + IsRef bool // true if this is an attribute reference, false for primitive +} + // rawDesignProp represents a parsed design property from BSON. type rawDesignProp struct { Key string // Design property key, e.g., "Spacing top" diff --git a/mdl/executor/cmd_pages_describe_output.go b/mdl/executor/cmd_pages_describe_output.go index 2ce2a826..16e19492 100644 --- a/mdl/executor/cmd_pages_describe_output.go +++ b/mdl/executor/cmd_pages_describe_output.go @@ -500,6 +500,18 @@ func (e *Executor) outputWidgetMDLV3(w rawWidget, indent int) { props = appendConditionalProps(props, w) props = appendAppearanceProps(props, w) formatWidgetProps(e.output, prefix, header, props, "\n") + } else if len(w.ExplicitProperties) > 0 && w.WidgetID != "" { + // Generic pluggable widget with explicit properties + header := fmt.Sprintf("PLUGGABLEWIDGET '%s' %s", w.WidgetID, w.Name) + props := []string{} + if w.Caption != "" { + props = append(props, fmt.Sprintf("Label: %s", mdlQuote(w.Caption))) + } + for _, ep := range w.ExplicitProperties { + props = append(props, fmt.Sprintf("%s: %s", ep.Key, ep.Value)) + } + props = appendAppearanceProps(props, w) + formatWidgetProps(e.output, prefix, header, props, "\n") } else { header := fmt.Sprintf("%s %s", widgetType, w.Name) props := []string{} diff --git a/mdl/executor/cmd_pages_describe_parse.go b/mdl/executor/cmd_pages_describe_parse.go index 7f981327..c44ba04c 100644 --- a/mdl/executor/cmd_pages_describe_parse.go +++ b/mdl/executor/cmd_pages_describe_parse.go @@ -158,6 +158,7 @@ func (e *Executor) parseRawWidget(w map[string]any) []rawWidget { widget.Caption = e.extractLabelText(w) widget.Content = e.extractCustomWidgetAttribute(w) widget.RenderMode = e.extractCustomWidgetType(w) // Store widget type in RenderMode + widget.WidgetID = e.extractCustomWidgetID(w) // For ComboBox, extract datasource and association attribute for association mode. // In association mode the Attribute binding is stored as EntityRef (not AttributeRef), // so we must use extractCustomWidgetPropertyAssociation instead of the generic scan. @@ -199,6 +200,11 @@ func (e *Executor) parseRawWidget(w map[string]any) []rawWidget { if widget.RenderMode == "IMAGE" { e.extractImageProperties(w, &widget) } + // For generic pluggable widgets (not handled by dedicated extractors above), + // extract all non-default properties as explicit key-value pairs. + if !isKnownCustomWidgetType(widget.RenderMode) { + widget.ExplicitProperties = e.extractExplicitProperties(w) + } return []rawWidget{widget} case "Forms$Label", "Pages$Label": diff --git a/mdl/executor/cmd_pages_describe_pluggable.go b/mdl/executor/cmd_pages_describe_pluggable.go index 3b57ce2d..a317953b 100644 --- a/mdl/executor/cmd_pages_describe_pluggable.go +++ b/mdl/executor/cmd_pages_describe_pluggable.go @@ -76,6 +76,8 @@ func (e *Executor) extractCustomWidgetType(w map[string]any) string { return "DROPDOWNFILTER" case "com.mendix.widget.web.datagriddatefilter.DatagridDateFilter": return "DATEFILTER" + case "com.mendix.widget.web.dropdownsort.DropdownSort": + return "DROPDOWNSORT" case "com.mendix.widget.web.image.Image": return "IMAGE" default: @@ -999,6 +1001,86 @@ func (e *Executor) extractCustomWidgetPropertyAttributes(w map[string]any, prope return nil } +// extractCustomWidgetID extracts the full widget ID from a CustomWidget (e.g. "com.mendix.widget.custom.switch.Switch"). +func (e *Executor) extractCustomWidgetID(w map[string]any) string { + typeObj, ok := w["Type"].(map[string]any) + if !ok { + return "" + } + if widgetID, ok := typeObj["WidgetId"].(string); ok { + return widgetID + } + return "" +} + +// isKnownCustomWidgetType returns true for widget types that have dedicated DESCRIBE extractors. +func isKnownCustomWidgetType(widgetType string) bool { + switch widgetType { + case "COMBOBOX", "DATAGRID2", "GALLERY", "IMAGE", + "TEXTFILTER", "NUMBERFILTER", "DROPDOWNFILTER", "DATEFILTER", + "DROPDOWNSORT": + return true + } + return false +} + +// extractExplicitProperties extracts non-default property values from a CustomWidget BSON. +// Returns attribute references and primitive values for properties that differ from defaults. +func (e *Executor) extractExplicitProperties(w map[string]any) []rawExplicitProp { + obj, ok := w["Object"].(map[string]any) + if !ok { + return nil + } + + propTypeKeyMap := buildPropertyTypeKeyMap(w, false) + if len(propTypeKeyMap) == 0 { + return nil + } + + var result []rawExplicitProp + props := getBsonArrayElements(obj["Properties"]) + for _, prop := range props { + propMap, ok := prop.(map[string]any) + if !ok { + continue + } + typePointerID := extractBinaryID(propMap["TypePointer"]) + propKey := propTypeKeyMap[typePointerID] + if propKey == "" { + continue + } + value, ok := propMap["Value"].(map[string]any) + if !ok { + continue + } + + // Check for AttributeRef (attribute binding) + if attrRef, ok := value["AttributeRef"].(map[string]any); ok && attrRef != nil { + if attr := extractString(attrRef["Attribute"]); attr != "" { + result = append(result, rawExplicitProp{ + Key: propKey, + Value: shortAttributeName(attr), + IsRef: true, + }) + continue + } + } + + // Check for non-default PrimitiveValue + if pv := extractString(value["PrimitiveValue"]); pv != "" { + // Skip common defaults + if pv == "true" || pv == "false" { + continue + } + result = append(result, rawExplicitProp{ + Key: propKey, + Value: pv, + }) + } + } + return result +} + // extractImageProperties extracts properties from a pluggable Image CustomWidget. func (e *Executor) extractImageProperties(w map[string]any, widget *rawWidget) { widget.ImageType = e.extractCustomWidgetPropertyString(w, "datasource") diff --git a/mdl/executor/roundtrip_doctype_test.go b/mdl/executor/roundtrip_doctype_test.go index 0f8f44bc..d2df7a9f 100644 --- a/mdl/executor/roundtrip_doctype_test.go +++ b/mdl/executor/roundtrip_doctype_test.go @@ -155,6 +155,12 @@ func TestMxCheck_DoctypeScripts(t *testing.T) { // Flush to disk env.executor.Execute(&ast.DisconnectStmt{}) + // Update widgets for scripts that create pluggable widgets (prevents CE0463). + // Skip for other scripts — update-widgets can corrupt non-widget projects. + if strings.Contains(name, "page") || strings.Contains(name, "widget") { + runMxUpdateWidgets(t, env.projectPath) + } + // Run mx check output, mxErr := runMxCheck(t, env.projectPath) if mxErr != nil { diff --git a/mdl/executor/roundtrip_mxcheck_datagrid_test.go b/mdl/executor/roundtrip_mxcheck_datagrid_test.go index 69cbea8e..08e1eab4 100644 --- a/mdl/executor/roundtrip_mxcheck_datagrid_test.go +++ b/mdl/executor/roundtrip_mxcheck_datagrid_test.go @@ -183,6 +183,8 @@ func TestMxCheck_GalleryPage(t *testing.T) { env.executor.Execute(&ast.DisconnectStmt{}) + runMxUpdateWidgets(t, env.projectPath) + output, err := runMxCheck(t, env.projectPath) if err != nil { if strings.Contains(output, "placeholder") || strings.Contains(output, "CE0463") { diff --git a/mdl/executor/roundtrip_mxcheck_test.go b/mdl/executor/roundtrip_mxcheck_test.go index 57c2cc56..7be894b1 100644 --- a/mdl/executor/roundtrip_mxcheck_test.go +++ b/mdl/executor/roundtrip_mxcheck_test.go @@ -36,6 +36,17 @@ func runMxCheck(t *testing.T, projectPath string) (string, error) { return string(output), err } +// runMxUpdateWidgets synchronizes widget definitions with mpk files. +// Call before runMxCheck on tests that create pluggable widgets. +func runMxUpdateWidgets(t *testing.T, projectPath string) { + t.Helper() + mxPath := findMxBinary() + if mxPath == "" { + return + } + exec.Command(mxPath, "update-widgets", projectPath).CombinedOutput() +} + // TestMxCheck_Entity creates an entity and verifies mx check passes. func TestMxCheck_Entity(t *testing.T) { if !mxCheckAvailable() { @@ -830,6 +841,8 @@ END;` // Disconnect to flush changes env.executor.Execute(&ast.DisconnectStmt{}) + runMxUpdateWidgets(t, env.projectPath) + // Run mx check output, err := runMxCheck(t, env.projectPath) if err != nil { diff --git a/mdl/executor/widget_engine.go b/mdl/executor/widget_engine.go index 5ddd149c..6df56dca 100644 --- a/mdl/executor/widget_engine.go +++ b/mdl/executor/widget_engine.go @@ -3,8 +3,10 @@ package executor import ( + "encoding/hex" "fmt" "log" + "regexp" "strings" "github.com/mendixlabs/mxcli/mdl/ast" @@ -27,6 +29,7 @@ const defaultSlotContainer = "TEMPLATE" type WidgetDefinition struct { WidgetID string `json:"widgetId"` MDLName string `json:"mdlName"` + WidgetKind string `json:"widgetKind,omitempty"` // "pluggable" (React) or "custom" (legacy Dojo) TemplateFile string `json:"templateFile"` DefaultEditable string `json:"defaultEditable"` PropertyMappings []PropertyMapping `json:"propertyMappings,omitempty"` @@ -66,13 +69,15 @@ type ChildSlotMapping struct { // BuildContext carries resolved values from MDL parsing for use by operations. type BuildContext struct { - AttributePath string - AssocPath string - EntityName string - PrimitiveVal string - DataSource pages.DataSource - ChildWidgets []bson.D - ActionBSON bson.D // Serialized client action BSON for opAction + AttributePath string + AttributePaths []string // For operations that process multiple attributes + AssocPath string + EntityName string + PrimitiveVal string + DataSource pages.DataSource + ChildWidgets []bson.D + ActionBSON bson.D // Serialized client action BSON for opAction + pageBuilder *pageBuilder } // OperationFunc updates a template object's property identified by propertyKey. @@ -98,6 +103,7 @@ func NewOperationRegistry() *OperationRegistry { reg.Register("widgets", opWidgets) reg.Register("texttemplate", opTextTemplate) reg.Register("action", opAction) + reg.Register("attributeObjects", opAttributeObjects) return reg } @@ -170,6 +176,24 @@ func opSelection(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, p }) } +// opExpression sets an expression string on a widget property. +func opExpression(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, propertyKey string, ctx *BuildContext) bson.D { + if ctx.PrimitiveVal == "" { + return obj + } + return updateWidgetPropertyValue(obj, propTypeIDs, propertyKey, func(val bson.D) bson.D { + result := make(bson.D, 0, len(val)) + for _, elem := range val { + if elem.Key == "Expression" { + result = append(result, bson.E{Key: "Expression", Value: ctx.PrimitiveVal}) + } else { + result = append(result, elem) + } + } + return result + }) +} + // opDatasource sets a data source on a widget property. func opDatasource(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, propertyKey string, ctx *BuildContext) bson.D { if ctx.DataSource == nil { @@ -185,9 +209,10 @@ func opWidgets(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, pro if len(ctx.ChildWidgets) == 0 { return obj } - return updateWidgetPropertyValue(obj, propTypeIDs, propertyKey, func(val bson.D) bson.D { + result := updateWidgetPropertyValue(obj, propTypeIDs, propertyKey, func(val bson.D) bson.D { return setChildWidgets(val, ctx.ChildWidgets) }) + return result } // setChildWidgets replaces the Widgets field in a WidgetValue with the given child widgets. @@ -231,7 +256,6 @@ func setTextTemplateValue(val bson.D, text string) bson.D { // Creating a TextTemplate from null triggers CE0463 because Studio Pro // detects the structural change. The template must be extracted from a // widget that already has this property configured in Studio Pro. - log.Printf("warning: opTextTemplate: skipping null TextTemplate (cannot create from scratch without CE0463)") result = append(result, elem) } } else { @@ -292,6 +316,49 @@ func opAction(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, prop }) } +// opAttributeObjects populates the Objects array in an "attributes" property +// with attribute reference objects. Used by filter widgets (TEXTFILTER, etc.). +func opAttributeObjects(obj bson.D, propTypeIDs map[string]pages.PropertyTypeIDEntry, propertyKey string, ctx *BuildContext) bson.D { + if len(ctx.AttributePaths) == 0 { + return obj + } + + entry, ok := propTypeIDs[propertyKey] + if !ok || entry.ObjectTypeID == "" { + return obj + } + + // Get nested "attribute" property IDs from the PropertyTypeIDEntry + nestedEntry, ok := entry.NestedPropertyIDs["attribute"] + if !ok { + return obj + } + + return updateWidgetPropertyValue(obj, propTypeIDs, propertyKey, func(val bson.D) bson.D { + objects := make([]any, 0, len(ctx.AttributePaths)+1) + objects = append(objects, int32(2)) // BSON array version marker + + for _, attrPath := range ctx.AttributePaths { + attrObj, err := ctx.pageBuilder.createAttributeObject(attrPath, entry.ObjectTypeID, nestedEntry.PropertyTypeID, nestedEntry.ValueTypeID) + if err != nil { + log.Printf("warning: skipping attribute %s: %v", attrPath, err) + continue + } + objects = append(objects, attrObj) + } + + result := make(bson.D, 0, len(val)) + for _, elem := range val { + if elem.Key == "Objects" { + result = append(result, bson.E{Key: "Objects", Value: bson.A(objects)}) + } else { + result = append(result, elem) + } + } + return result + }) +} + // ============================================================================= // Pluggable Widget Engine // ============================================================================= @@ -350,11 +417,207 @@ func (e *PluggableWidgetEngine) Build(def *WidgetDefinition, w *ast.WidgetV3) (* updatedObject = op(updatedObject, propertyTypeIDs, mapping.PropertyKey, ctx) } - // 4. Apply child slots + // 4. Apply child slots (.def.json) if err := e.applyChildSlots(slots, w, propertyTypeIDs, &updatedObject); err != nil { return nil, err } + // 4.1 Auto datasource: map AST DataSource to first DataSource-type property. + // Must run BEFORE child slots and explicit properties so entityContext is set. + dsHandledByMapping := false + for _, m := range mappings { + if m.Source == "DataSource" { + dsHandledByMapping = true + break + } + } + if !dsHandledByMapping { + if ds := w.GetDataSource(); ds != nil { + for propKey, entry := range propertyTypeIDs { + if entry.ValueType == "DataSource" { + dataSource, entityName, err := e.pageBuilder.buildDataSourceV3(ds) + if err != nil { + return nil, fmt.Errorf("auto datasource for %s: %w", propKey, err) + } + ctx := &BuildContext{DataSource: dataSource, EntityName: entityName} + updatedObject = opDatasource(updatedObject, propertyTypeIDs, propKey, ctx) + if entityName != "" { + e.pageBuilder.entityContext = entityName + } + break + } + } + } + } + + // 4.3 Auto child slots: match AST children to Widgets-type template properties. + // Two matching strategies: + // 1. Named match: CONTAINER trigger { ... } → property "trigger" (by child name) + // 2. Default slot: direct children not matching any named slot → first Widgets property + // This allows pluggable widget child containers without requiring .def.json ChildSlot entries. + handledSlotKeys := make(map[string]bool) + for _, s := range slots { + handledSlotKeys[s.PropertyKey] = true + } + // Collect Widgets-type property keys + var widgetsPropKeys []string + for propKey, entry := range propertyTypeIDs { + if entry.ValueType == "Widgets" && !handledSlotKeys[propKey] { + widgetsPropKeys = append(widgetsPropKeys, propKey) + } + } + // Phase 1: Named matching — match children by name against property keys + matchedChildren := make(map[int]bool) // indices of matched children + for _, propKey := range widgetsPropKeys { + upperKey := strings.ToUpper(propKey) + for i, child := range w.Children { + if matchedChildren[i] { + continue + } + if strings.ToUpper(child.Name) == upperKey { + var childBSONs []bson.D + for _, slotChild := range child.Children { + widgetBSON, err := e.pageBuilder.buildWidgetV3ToBSON(slotChild) + if err != nil { + return nil, err + } + if widgetBSON != nil { + childBSONs = append(childBSONs, widgetBSON) + } + } + if len(childBSONs) > 0 { + updatedObject = opWidgets(updatedObject, propertyTypeIDs, propKey, &BuildContext{ChildWidgets: childBSONs}) + handledSlotKeys[propKey] = true + } + matchedChildren[i] = true + break + } + } + } + // Phase 2: Default slot — unmatched direct children go to first unmatched Widgets property. + // Skip if .def.json has childSlots defined — applyChildSlots already handles direct children. + defSlotContainers := make(map[string]bool) + for _, s := range slots { + defSlotContainers[strings.ToUpper(s.MDLContainer)] = true + } + var defaultWidgetBSONs []bson.D + for i, child := range w.Children { + if matchedChildren[i] { + continue + } + if len(slots) > 0 { + continue // applyChildSlots handles both container and direct children + } + if defSlotContainers[strings.ToUpper(child.Type)] { + continue + } + widgetBSON, err := e.pageBuilder.buildWidgetV3ToBSON(child) + if err != nil { + return nil, err + } + if widgetBSON != nil { + defaultWidgetBSONs = append(defaultWidgetBSONs, widgetBSON) + } + } + if len(defaultWidgetBSONs) > 0 { + for _, propKey := range widgetsPropKeys { + if !handledSlotKeys[propKey] { + updatedObject = opWidgets(updatedObject, propertyTypeIDs, propKey, &BuildContext{ChildWidgets: defaultWidgetBSONs}) + break + } + } + } + + // 4.6 Apply explicit properties (not covered by .def.json mappings) + mappedKeys := make(map[string]bool) + for _, m := range mappings { + if m.Source != "" { + mappedKeys[m.Source] = true + } + } + for _, s := range slots { + mappedKeys[s.MDLContainer] = true + } + for propName, propVal := range w.Properties { + if mappedKeys[propName] || isBuiltinPropName(propName) { + continue + } + entry, ok := propertyTypeIDs[propName] + if !ok { + continue // not a known widget property key + } + // Convert non-string values (bool, int, float) to string for property setting + var strVal string + switch v := propVal.(type) { + case string: + strVal = v + case bool: + strVal = fmt.Sprintf("%t", v) + case int: + strVal = fmt.Sprintf("%d", v) + case float64: + strVal = fmt.Sprintf("%g", v) + default: + continue + } + ctx := &BuildContext{} + + // Route by ValueType when available + switch entry.ValueType { + case "Expression": + // Expression properties: set Expression field (not PrimitiveValue) + ctx.PrimitiveVal = strVal + updatedObject = opExpression(updatedObject, propertyTypeIDs, propName, ctx) + case "TextTemplate": + // TextTemplate properties: create ClientTemplate with attribute parameter binding. + // Syntax: '{AttributeName} - {OtherAttr}' → text '{1} - {2}' with TemplateParameters. + entityCtx := e.pageBuilder.entityContext + tmplBSON := createClientTemplateBSONWithParams(strVal, entityCtx) + updatedObject = updateWidgetPropertyValue(updatedObject, propertyTypeIDs, propName, func(val bson.D) bson.D { + result := make(bson.D, 0, len(val)) + for _, elem := range val { + if elem.Key == "TextTemplate" { + result = append(result, bson.E{Key: "TextTemplate", Value: tmplBSON}) + } else { + result = append(result, elem) + } + } + return result + }) + case "Attribute": + // Attribute properties: resolve path + if strings.Count(strVal, ".") >= 2 { + ctx.AttributePath = strVal + } else if e.pageBuilder.entityContext != "" { + ctx.AttributePath = e.pageBuilder.resolveAttributePath(strVal) + } + if ctx.AttributePath != "" { + updatedObject = opAttribute(updatedObject, propertyTypeIDs, propName, ctx) + } + default: + // Known non-attribute types: always use primitive + if entry.ValueType != "" && entry.ValueType != "Attribute" { + ctx.PrimitiveVal = strVal + updatedObject = opPrimitive(updatedObject, propertyTypeIDs, propName, ctx) + continue + } + // Legacy routing for properties without ValueType info + if strings.Count(strVal, ".") >= 2 { + ctx.AttributePath = strVal + updatedObject = opAttribute(updatedObject, propertyTypeIDs, propName, ctx) + } else if e.pageBuilder.entityContext != "" && !strings.ContainsAny(strVal, " '\"") { + ctx.AttributePath = e.pageBuilder.resolveAttributePath(strVal) + updatedObject = opAttribute(updatedObject, propertyTypeIDs, propName, ctx) + } else { + ctx.PrimitiveVal = strVal + updatedObject = opPrimitive(updatedObject, propertyTypeIDs, propName, ctx) + } + } + } + + // 4.9 Auto-populate required empty object lists (e.g., Accordion groups, AreaChart series) + updatedObject = ensureRequiredObjectLists(updatedObject, propertyTypeIDs) + // 5. Build CustomWidget widgetID := model.ID(mpr.GenerateID()) cw := &pages.CustomWidget{ @@ -391,10 +654,11 @@ func (e *PluggableWidgetEngine) selectMappings(def *WidgetDefinition, w *ast.Wid // Evaluate modes in order; first match wins var fallback *WidgetMode + var fallbackCount int for i := range def.Modes { mode := &def.Modes[i] if mode.Condition == "" { - // No condition = default fallback (use first one if multiple) + fallbackCount++ if fallback == nil { fallback = mode } @@ -407,6 +671,9 @@ func (e *PluggableWidgetEngine) selectMappings(def *WidgetDefinition, w *ast.Wid // Use fallback mode if fallback != nil { + if fallbackCount > 1 { + return nil, nil, fmt.Errorf("widget %s has %d modes without conditions; only one default mode is allowed", def.MDLName, fallbackCount) + } return fallback.PropertyMappings, fallback.ChildSlots, nil } @@ -424,14 +691,13 @@ func (e *PluggableWidgetEngine) evaluateCondition(condition string, w *ast.Widge propName := strings.TrimPrefix(condition, "hasProp:") return w.GetStringProp(propName) != "" default: - log.Printf("warning: unknown widget condition %q — returning false", condition) return false } } // resolveMapping resolves a PropertyMapping's source into a BuildContext. func (e *PluggableWidgetEngine) resolveMapping(mapping PropertyMapping, w *ast.WidgetV3) (*BuildContext, error) { - ctx := &BuildContext{} + ctx := &BuildContext{pageBuilder: e.pageBuilder} // Static value takes priority if mapping.Value != "" { @@ -450,6 +716,14 @@ func (e *PluggableWidgetEngine) resolveMapping(mapping PropertyMapping, w *ast.W ctx.AttributePath = e.pageBuilder.resolveAttributePath(attr) } + case "Attributes": + if attrs := w.GetAttributes(); len(attrs) > 0 { + ctx.AttributePaths = make([]string, 0, len(attrs)) + for _, attr := range attrs { + ctx.AttributePaths = append(ctx.AttributePaths, e.pageBuilder.resolveAttributePath(attr)) + } + } + case "DataSource": if ds := w.GetDataSource(); ds != nil { dataSource, entityName, err := e.pageBuilder.buildDataSourceV3(ds) @@ -489,6 +763,9 @@ func (e *PluggableWidgetEngine) resolveMapping(mapping PropertyMapping, w *ast.W } // Entity name comes from DataSource context (must be resolved first by a DataSource mapping) ctx.EntityName = e.pageBuilder.entityContext + if ctx.AssocPath != "" && ctx.EntityName == "" { + return nil, fmt.Errorf("association %q requires an entity context (add a DataSource mapping before Association)", ctx.AssocPath) + } case "OnClick": // Resolve AST action (stored as Properties["Action"]) into serialized BSON @@ -576,3 +853,313 @@ func (e *PluggableWidgetEngine) applyChildSlots(slots []ChildSlotMapping, w *ast return nil } + +// isBuiltinPropName returns true for property names that are handled by +// dedicated MDL keywords (DataSource, Attribute, etc.) rather than by +// the explicit property pass. +func isBuiltinPropName(name string) bool { + switch name { + case "DataSource", "Attribute", "Label", "Caption", "Action", + "Selection", "Class", "Style", "Editable", "Visible", + "WidgetType", "DesignProperties", "Association", "CaptionAttribute", + "Content", "RenderMode", "ContentParams", "CaptionParams", + "ButtonStyle", "DesktopWidth", "DesktopColumns", "TabletColumns", + "PhoneColumns", "PageSize", "Pagination", "PagingPosition", + "ShowPagingButtons", "Attributes", "FilterType", "Width", "Height", + "Tooltip", "Name": + return true + } + return false +} + +// ============================================================================= +// Default Object List Population +// ============================================================================= + +// ensureRequiredObjectLists populates empty Object list properties with one default +// entry. This prevents CE0642 "Property 'X' is required" errors for widget properties +// like Accordion groups, AreaChart series, etc. +func ensureRequiredObjectLists(obj bson.D, propertyTypeIDs map[string]pages.PropertyTypeIDEntry) bson.D { + for propKey, entry := range propertyTypeIDs { + if entry.ObjectTypeID == "" || len(entry.NestedPropertyIDs) == 0 { + continue + } + // Skip non-required object lists that have nested DataSource properties — + // auto-populating these creates entries that trigger widget-level validation errors. + // Required object lists (like AreaChart series) are populated even with nested DataSource + // because the DataSource is conditional (e.g., depends on dataSet enum). + if !entry.Required { + hasNestedDS := false + for _, nested := range entry.NestedPropertyIDs { + if nested.ValueType == "DataSource" { + hasNestedDS = true + break + } + } + if hasNestedDS { + continue + } + } + // Skip if any Required nested property is Attribute (needs entity context) + hasRequiredAttr := false + for _, nested := range entry.NestedPropertyIDs { + if nested.Required && nested.ValueType == "Attribute" { + hasRequiredAttr = true + break + } + } + if hasRequiredAttr { + continue + } + obj = updateWidgetPropertyValue(obj, propertyTypeIDs, propKey, func(val bson.D) bson.D { + for _, elem := range val { + if elem.Key == "Objects" { + if arr, ok := elem.Value.(bson.A); ok && len(arr) <= 1 { + // Empty Objects array — create one default entry + defaultObj := createDefaultWidgetObject(entry.ObjectTypeID, entry.NestedPropertyIDs) + newArr := bson.A{int32(2), defaultObj} + result := make(bson.D, 0, len(val)) + for _, e := range val { + if e.Key == "Objects" { + result = append(result, bson.E{Key: "Objects", Value: newArr}) + } else { + result = append(result, e) + } + } + return result + } + } + } + return val + }) + } + return obj +} + +// createDefaultWidgetObject creates a minimal WidgetObject BSON entry for an object list. +func createDefaultWidgetObject(objectTypeID string, nestedProps map[string]pages.PropertyTypeIDEntry) bson.D { + propsArr := bson.A{int32(2)} // version marker + for _, entry := range nestedProps { + prop := createDefaultWidgetProperty(entry) + propsArr = append(propsArr, prop) + } + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "CustomWidgets$WidgetObject"}, + {Key: "TypePointer", Value: hexIDToBlob(objectTypeID)}, + {Key: "Properties", Value: propsArr}, + } +} + +// createDefaultWidgetProperty creates a WidgetProperty with default WidgetValue. +func createDefaultWidgetProperty(entry pages.PropertyTypeIDEntry) bson.D { + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "CustomWidgets$WidgetProperty"}, + {Key: "TypePointer", Value: hexIDToBlob(entry.PropertyTypeID)}, + {Key: "Value", Value: createDefaultWidgetValue(entry)}, + } +} + +// createDefaultWidgetValue creates a WidgetValue with standard default fields. +// Sets type-specific defaults: Expression→Expression field, TextTemplate→template, etc. +func createDefaultWidgetValue(entry pages.PropertyTypeIDEntry) bson.D { + primitiveVal := entry.DefaultValue + expressionVal := "" + var textTemplate interface{} // nil by default + + // Route default value to the correct field based on ValueType + switch entry.ValueType { + case "Expression": + expressionVal = primitiveVal + primitiveVal = "" + case "TextTemplate": + // Create a ClientTemplate with a placeholder translation to satisfy CE4899 + text := primitiveVal + if text == "" { + text = " " // non-empty to satisfy "required" translation check + } + textTemplate = createDefaultClientTemplateBSON(text) + case "String": + if primitiveVal == "" { + primitiveVal = " " // non-empty to satisfy required String properties + } + } + + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "CustomWidgets$WidgetValue"}, + {Key: "Action", Value: bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Forms$NoAction"}, + {Key: "DisabledDuringExecution", Value: true}, + }}, + {Key: "AttributeRef", Value: nil}, + {Key: "DataSource", Value: nil}, + {Key: "EntityRef", Value: nil}, + {Key: "Expression", Value: expressionVal}, + {Key: "Form", Value: ""}, + {Key: "Icon", Value: nil}, + {Key: "Image", Value: ""}, + {Key: "Microflow", Value: ""}, + {Key: "Nanoflow", Value: ""}, + {Key: "Objects", Value: bson.A{int32(2)}}, + {Key: "PrimitiveValue", Value: primitiveVal}, + {Key: "Selection", Value: "None"}, + {Key: "SourceVariable", Value: nil}, + {Key: "TextTemplate", Value: textTemplate}, + {Key: "TranslatableValue", Value: nil}, + {Key: "TypePointer", Value: hexIDToBlob(entry.ValueTypeID)}, + {Key: "Widgets", Value: bson.A{int32(2)}}, + {Key: "XPathConstraint", Value: ""}, + } +} + +// createClientTemplateBSONWithParams creates a Forms$ClientTemplate that supports +// attribute parameter binding. Syntax: '{AttrName} - {OtherAttr}' extracts attribute +// names from curly braces, replaces them with {1}, {2}, etc., and generates +// TemplateParameter entries with AttributeRef bindings. +// If no {AttrName} patterns are found, creates a static text template. +func createClientTemplateBSONWithParams(text string, entityContext string) bson.D { + // Extract {AttributeName} patterns and build parameter list + re := regexp.MustCompile(`\{([A-Za-z][A-Za-z0-9_]*)\}`) + matches := re.FindAllStringSubmatchIndex(text, -1) + + if len(matches) == 0 { + // No attribute references — static text + return createDefaultClientTemplateBSON(text) + } + + // Replace {AttrName} with {1}, {2}, etc. and collect attribute names + var attrNames []string + paramText := text + // Process in reverse to preserve indices + for i := len(matches) - 1; i >= 0; i-- { + match := matches[i] + attrName := text[match[2]:match[3]] + // Check if it's a pure number (like {1}) — keep as-is + if _, err := fmt.Sscanf(attrName, "%d", new(int)); err == nil { + continue + } + attrNames = append([]string{attrName}, attrNames...) // prepend + paramText = paramText[:match[0]] + fmt.Sprintf("{%d}", len(attrNames)) + paramText[match[1]:] + } + + // Rebuild paramText with sequential numbering + paramText = text + attrNames = nil + for i := 0; i < len(matches); i++ { + match := matches[i] + attrName := text[match[2]:match[3]] + if _, err := fmt.Sscanf(attrName, "%d", new(int)); err == nil { + continue + } + attrNames = append(attrNames, attrName) + } + paramText = re.ReplaceAllStringFunc(text, func(s string) string { + name := s[1 : len(s)-1] + if _, err := fmt.Sscanf(name, "%d", new(int)); err == nil { + return s // keep numeric {1} as-is + } + for i, an := range attrNames { + if an == name { + return fmt.Sprintf("{%d}", i+1) + } + } + return s + }) + + // Build parameters BSON + params := bson.A{int32(2)} // version marker for non-empty array + for _, attrName := range attrNames { + attrPath := attrName + if entityContext != "" && !strings.Contains(attrName, ".") { + attrPath = entityContext + "." + attrName + } + params = append(params, bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Forms$ClientTemplateParameter"}, + {Key: "AttributeRef", Value: bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "DomainModels$AttributeRef"}, + {Key: "Attribute", Value: attrPath}, + {Key: "EntityRef", Value: nil}, + }}, + {Key: "Expression", Value: ""}, + {Key: "FormattingInfo", Value: bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Forms$FormattingInfo"}, + {Key: "CustomDateFormat", Value: ""}, + {Key: "DateFormat", Value: "Date"}, + {Key: "DecimalPrecision", Value: int64(2)}, + {Key: "EnumFormat", Value: "Text"}, + {Key: "GroupDigits", Value: false}, + {Key: "TimeFormat", Value: "HoursMinutes"}, + }}, + {Key: "SourceVariable", Value: nil}, + }) + } + + makeText := func(t string) bson.D { + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Texts$Text"}, + {Key: "Items", Value: bson.A{int32(3), bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Texts$Translation"}, + {Key: "LanguageCode", Value: "en_US"}, + {Key: "Text", Value: t}, + }}}, + } + } + + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Forms$ClientTemplate"}, + {Key: "Fallback", Value: makeText(paramText)}, + {Key: "Parameters", Value: params}, + {Key: "Template", Value: makeText(paramText)}, + } +} + +// createDefaultClientTemplateBSON creates a Forms$ClientTemplate with an en_US translation. +func createDefaultClientTemplateBSON(text string) bson.D { + makeText := func(t string) bson.D { + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Texts$Text"}, + {Key: "Items", Value: bson.A{int32(3), bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Texts$Translation"}, + {Key: "LanguageCode", Value: "en_US"}, + {Key: "Text", Value: t}, + }}}, + } + } + return bson.D{ + {Key: "$ID", Value: generateBinaryID()}, + {Key: "$Type", Value: "Forms$ClientTemplate"}, + {Key: "Fallback", Value: makeText(text)}, + {Key: "Parameters", Value: bson.A{int32(2)}}, + {Key: "Template", Value: makeText(text)}, + } +} + +// generateBinaryID creates a new random 16-byte UUID in Microsoft GUID binary format. +func generateBinaryID() []byte { + return hexIDToBlob(mpr.GenerateID()) +} + +// hexIDToBlob converts a hex UUID string to a 16-byte binary blob in Microsoft GUID format. +func hexIDToBlob(hexStr string) []byte { + hexStr = strings.ReplaceAll(hexStr, "-", "") + data, err := hex.DecodeString(hexStr) + if err != nil || len(data) != 16 { + return data + } + // Swap bytes to match Microsoft GUID format (little-endian for first 3 segments) + data[0], data[1], data[2], data[3] = data[3], data[2], data[1], data[0] + data[4], data[5] = data[5], data[4] + data[6], data[7] = data[7], data[6] + return data +} diff --git a/mdl/executor/widget_engine_test.go b/mdl/executor/widget_engine_test.go index ec022c1e..20564dce 100644 --- a/mdl/executor/widget_engine_test.go +++ b/mdl/executor/widget_engine_test.go @@ -3,10 +3,7 @@ package executor import ( - "bytes" "encoding/json" - "log" - "strings" "testing" "github.com/mendixlabs/mxcli/mdl/ast" @@ -250,24 +247,17 @@ func TestEvaluateCondition(t *testing.T) { } } -func TestEvaluateConditionUnknownLogsWarning(t *testing.T) { +func TestEvaluateConditionUnknownReturnsFalse(t *testing.T) { engine := &PluggableWidgetEngine{ operations: NewOperationRegistry(), } - var buf bytes.Buffer - log.SetOutput(&buf) - defer log.SetOutput(nil) - w := &ast.WidgetV3{Properties: map[string]any{}} result := engine.evaluateCondition("typoCondition", w) if result != false { t.Errorf("expected false for unknown condition, got %v", result) } - if !strings.Contains(buf.String(), "typoCondition") { - t.Errorf("expected warning log mentioning 'typoCondition', got: %q", buf.String()) - } } func TestSelectMappings_NoModes(t *testing.T) { diff --git a/mdl/executor/widget_registry.go b/mdl/executor/widget_registry.go index 9969d104..4b4d9d28 100644 --- a/mdl/executor/widget_registry.go +++ b/mdl/executor/widget_registry.go @@ -157,6 +157,12 @@ func (r *WidgetRegistry) loadDefinitionsFromDir(dir string) error { upperName := strings.ToUpper(def.MDLName) if existing, ok := r.byMDLName[upperName]; ok { + // Skip user skeleton definitions (no mappings/modes) when built-in has mappings + if len(def.PropertyMappings) == 0 && len(def.Modes) == 0 && + (len(existing.PropertyMappings) > 0 || len(existing.Modes) > 0) { + log.Printf("info: skipping user skeleton %q — built-in %s has mappings", entry.Name(), def.MDLName) + continue + } log.Printf("info: user definition %q overrides built-in %s (widgetId: %s → %s)", entry.Name(), def.MDLName, existing.WidgetID, def.WidgetID) } @@ -195,6 +201,7 @@ func validateDefinitionOperations(def *WidgetDefinition, source string, opReg *O // sourceOperationCompatible checks that a mapping's Source and Operation are compatible. var incompatibleSourceOps = map[string]map[string]bool{ "Attribute": {"association": true, "datasource": true}, + "Attributes": {"association": true, "datasource": true, "attribute": true}, "Association": {"attribute": true, "datasource": true}, "DataSource": {"attribute": true, "association": true}, } diff --git a/mdl/executor/widget_registry_test.go b/mdl/executor/widget_registry_test.go index 0a62805e..6314d65c 100644 --- a/mdl/executor/widget_registry_test.go +++ b/mdl/executor/widget_registry_test.go @@ -20,9 +20,9 @@ func TestRegistryLoadsAllEmbeddedDefinitions(t *testing.T) { t.Fatalf("NewWidgetRegistry() error: %v", err) } - // We expect 3 embedded definitions (combobox, gallery, image) - if got := reg.Count(); got != 3 { - t.Errorf("registry count = %d, want 3", got) + // We expect 9 embedded definitions (combobox, gallery, image, barcodescanner, 4 filters, dropdownsort) + if got := reg.Count(); got != 9 { + t.Errorf("registry count = %d, want 9", got) } } @@ -132,13 +132,7 @@ func TestAllEmbeddedDefinitionsAreValidJSON(t *testing.T) { t.Error("templateFile is empty") } - // Must have either propertyMappings, modes, or childSlots - hasMappings := len(def.PropertyMappings) > 0 - hasModes := len(def.Modes) > 0 - hasSlots := len(def.ChildSlots) > 0 - if !hasMappings && !hasModes && !hasSlots { - t.Error("definition has no propertyMappings, modes, or childSlots") - } + // Template-only widgets (e.g., DROPDOWNSORT) may have no mappings — that's valid }) } } diff --git a/mdl/grammar/MDLLexer.g4 b/mdl/grammar/MDLLexer.g4 index c684c49c..7a37d586 100644 --- a/mdl/grammar/MDLLexer.g4 +++ b/mdl/grammar/MDLLexer.g4 @@ -260,12 +260,14 @@ INPUTREFERENCESETSELECTOR: I N P U T R E F E R E N C E S E T S E L E C T O R; FILEINPUT: F I L E I N P U T; IMAGEINPUT: I M A G E I N P U T; -// Custom/Filter widgets +// Custom/Filter/Pluggable widgets CUSTOMWIDGET: C U S T O M W I D G E T; +PLUGGABLEWIDGET: P L U G G A B L E W I D G E T; TEXTFILTER: T E X T F I L T E R; NUMBERFILTER: N U M B E R F I L T E R; DROPDOWNFILTER: D R O P D O W N F I L T E R; DATEFILTER: D A T E F I L T E R; +DROPDOWNSORT: D R O P D O W N S O R T; FILTER: F I L T E R; // Widget properties @@ -316,6 +318,8 @@ COLLECTION: C O L L E C T I O N; STATICIMAGE: S T A T I C I M A G E; DYNAMICIMAGE: D Y N A M I C I M A G E; CUSTOMCONTAINER: C U S T O M C O N T A I N E R; +TABCONTAINER: T A B C O N T A I N E R; +TABPAGE: T A B P A G E; GROUPBOX: G R O U P B O X; VISIBLE: V I S I B L E; SAVECHANGES: S A V E C H A N G E S; diff --git a/mdl/grammar/MDLParser.g4 b/mdl/grammar/MDLParser.g4 index 9f6a4c6b..8d26ea29 100644 --- a/mdl/grammar/MDLParser.g4 +++ b/mdl/grammar/MDLParser.g4 @@ -202,7 +202,8 @@ alterLayoutMapping ; alterPageAssignment - : identifierOrKeyword EQUALS propertyValueV3 // Caption = 'Save' + : DATASOURCE EQUALS dataSourceExprV3 // DataSource = SELECTION widgetName + | identifierOrKeyword EQUALS propertyValueV3 // Caption = 'Save' | STRING_LITERAL EQUALS propertyValueV3 // 'showLabel' = false ; @@ -556,6 +557,7 @@ attributeName : IDENTIFIER | QUOTED_IDENTIFIER // Escape any reserved word ("Range", `Order`) | commonNameKeyword + | ATTRIBUTE // Allow 'Attribute' as attribute name ; attributeConstraint @@ -598,7 +600,7 @@ attributeConstraint * ``` */ dataType - : STRING_TYPE (LPAREN NUMBER_LITERAL RPAREN)? + : STRING_TYPE (LPAREN (NUMBER_LITERAL | IDENTIFIER) RPAREN)? | INTEGER_TYPE | LONG_TYPE | DECIMAL_TYPE @@ -626,7 +628,7 @@ templateContext // Non-list data type - used for createObjectStatement to avoid matching "CREATE LIST OF" nonListDataType - : STRING_TYPE (LPAREN NUMBER_LITERAL RPAREN)? + : STRING_TYPE (LPAREN (NUMBER_LITERAL | IDENTIFIER) RPAREN)? | INTEGER_TYPE | LONG_TYPE | DECIMAL_TYPE @@ -667,6 +669,10 @@ createAssociationStatement FROM qualifiedName TO qualifiedName associationOptions? + | ASSOCIATION qualifiedName LPAREN + FROM qualifiedName TO qualifiedName + (COMMA associationOption)* + RPAREN ; associationOptions @@ -674,9 +680,9 @@ associationOptions ; associationOption - : TYPE (REFERENCE | REFERENCE_SET) - | OWNER (DEFAULT | BOTH) - | STORAGE (COLUMN | TABLE) + : TYPE COLON? (REFERENCE | REFERENCE_SET) + | OWNER COLON? (DEFAULT | BOTH) + | STORAGE COLON? (COLUMN | TABLE) | DELETE_BEHAVIOR deleteBehavior | COMMENT STRING_LITERAL ; @@ -773,6 +779,7 @@ enumValueName | SERVICE | SERVICES // OData/auth keywords used as enum values | GUEST | SESSION | BASIC | CLIENT | CLIENTS | PUBLISH | EXPOSE | EXTERNAL | PAGING | HEADERS + | DISPLAY | STRUCTURE // Layout/structure keywords used as enum values ; enumerationOptions @@ -1795,6 +1802,8 @@ useFragmentRef // V3 Widget: WIDGET name (Props) { children } widgetV3 : widgetTypeV3 IDENTIFIER widgetPropertiesV3? widgetBodyV3? + | PLUGGABLEWIDGET STRING_LITERAL IDENTIFIER widgetPropertiesV3? widgetBodyV3? // PLUGGABLEWIDGET 'widget.id' name + | CUSTOMWIDGET STRING_LITERAL IDENTIFIER widgetPropertiesV3? widgetBodyV3? // CUSTOMWIDGET 'widget.id' name (legacy) ; // V3 Widget types (same as V2) @@ -1828,6 +1837,7 @@ widgetTypeV3 | NUMBERFILTER | DROPDOWNFILTER | DATEFILTER + | DROPDOWNSORT | FOOTER | HEADER | CONTROLBAR @@ -1837,6 +1847,8 @@ widgetTypeV3 | STATICIMAGE | DYNAMICIMAGE | CUSTOMCONTAINER + | TABCONTAINER + | TABPAGE | GROUPBOX ; @@ -1877,6 +1889,7 @@ widgetPropertyV3 | EDITABLE COLON propertyValueV3 // Editable: Never | Always | TOOLTIP COLON propertyValueV3 // Tooltip: 'text' | IDENTIFIER COLON propertyValueV3 // Generic: any other property + | keyword COLON propertyValueV3 // Generic: keyword as property name (for pluggable widgets) ; // Filter type values - handle keywords like CONTAINS that are also filter types @@ -2593,7 +2606,7 @@ widgetTypeKeyword | COMBOBOX | DYNAMICTEXT | ACTIONBUTTON | LINKBUTTON | DATAVIEW | LISTVIEW | DATAGRID | GALLERY | LAYOUTGRID | IMAGE | STATICIMAGE | DYNAMICIMAGE | HEADER | FOOTER | SNIPPETCALL | NAVIGATIONLIST - | CUSTOMCONTAINER | DROPDOWN | REFERENCESELECTOR | GROUPBOX + | CUSTOMCONTAINER | TABCONTAINER | TABPAGE | DROPDOWN | REFERENCESELECTOR | GROUPBOX | IDENTIFIER ; @@ -2937,11 +2950,10 @@ debugStatement */ sqlStatement : SQL CONNECT IDENTIFIER STRING_LITERAL AS IDENTIFIER # sqlConnect - | SQL CONNECT IDENTIFIER # sqlConnectAlias | SQL DISCONNECT IDENTIFIER # sqlDisconnect | SQL CONNECTIONS # sqlConnections - | SQL IDENTIFIER SHOW identifierOrKeyword # sqlShowTables - | SQL IDENTIFIER DESCRIBE qualifiedName # sqlDescribeTable + | SQL IDENTIFIER SHOW IDENTIFIER # sqlShowTables + | SQL IDENTIFIER DESCRIBE IDENTIFIER # sqlDescribeTable | SQL IDENTIFIER GENERATE CONNECTOR INTO identifierOrKeyword (TABLES LPAREN identifierOrKeyword (COMMA identifierOrKeyword)* RPAREN)? (VIEWS LPAREN identifierOrKeyword (COMMA identifierOrKeyword)* RPAREN)? @@ -3250,7 +3262,7 @@ keyword | ACTIONBUTTON | CHECKBOX | COMBOBOX | CONTROLBAR | DATAGRID | DATAVIEW // Widget keywords | DATEPICKER | DYNAMICTEXT | GALLERY | LAYOUTGRID | LINKBUTTON | LISTVIEW | NAVIGATIONLIST | RADIOBUTTONS | SEARCHBAR | SNIPPETCALL | TEXTAREA | TEXTBOX - | IMAGE | STATICIMAGE | DYNAMICIMAGE | CUSTOMCONTAINER | GROUPBOX + | IMAGE | STATICIMAGE | DYNAMICIMAGE | CUSTOMCONTAINER | TABCONTAINER | TABPAGE | GROUPBOX | HEADER | FOOTER | IMAGEINPUT | VERSION | TIMEOUT | PATH | PUBLISH | PUBLISHED | EXPOSE | NAMESPACE_KW | SOURCE_KW | CONTRACT | CHANNELS | MESSAGES // OData/AsyncAPI keywords | SESSION | GUEST | BASIC | AUTHENTICATION | ODATA | SERVICE | CLIENT | CLIENTS | SERVICES diff --git a/mdl/grammar/Makefile b/mdl/grammar/Makefile index 5330766e..870a6819 100644 --- a/mdl/grammar/Makefile +++ b/mdl/grammar/Makefile @@ -27,7 +27,7 @@ endif generate: check-antlr $(LEXER) $(PARSER) @mkdir -p $(OUTPUT_DIR) - $(ANTLR4) -Dlanguage=Go -package $(PACKAGE) -o $(OUTPUT_DIR) $(LEXER) $(PARSER) + $(ANTLR4) -Dlanguage=Go -no-visitor -package $(PACKAGE) -o $(OUTPUT_DIR) $(LEXER) $(PARSER) @echo "Generated Go parser in $(OUTPUT_DIR)/" clean: diff --git a/mdl/grammar/parser/MDLLexer.interp b/mdl/grammar/parser/MDLLexer.interp index c5aea594..d4e982de 100644 --- a/mdl/grammar/parser/MDLLexer.interp +++ b/mdl/grammar/parser/MDLLexer.interp @@ -487,6 +487,10 @@ null null null null +null +null +null +null '<=' '>=' '=' @@ -706,10 +710,12 @@ INPUTREFERENCESETSELECTOR FILEINPUT IMAGEINPUT CUSTOMWIDGET +PLUGGABLEWIDGET TEXTFILTER NUMBERFILTER DROPDOWNFILTER DATEFILTER +DROPDOWNSORT FILTER WIDGET WIDGETS @@ -756,6 +762,8 @@ COLLECTION STATICIMAGE DYNAMICIMAGE CUSTOMCONTAINER +TABCONTAINER +TABPAGE GROUPBOX VISIBLE SAVECHANGES @@ -1231,10 +1239,12 @@ INPUTREFERENCESETSELECTOR FILEINPUT IMAGEINPUT CUSTOMWIDGET +PLUGGABLEWIDGET TEXTFILTER NUMBERFILTER DROPDOWNFILTER DATEFILTER +DROPDOWNSORT FILTER WIDGET WIDGETS @@ -1281,6 +1291,8 @@ COLLECTION STATICIMAGE DYNAMICIMAGE CUSTOMCONTAINER +TABCONTAINER +TABPAGE GROUPBOX VISIBLE SAVECHANGES @@ -1612,4 +1624,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 523, 5439, 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, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 1, 0, 4, 0, 1107, 8, 0, 11, 0, 12, 0, 1108, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1118, 8, 1, 10, 1, 12, 1, 1121, 9, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1130, 8, 2, 10, 2, 12, 2, 1133, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 1144, 8, 3, 10, 3, 12, 3, 1147, 9, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 4, 4, 1154, 8, 4, 11, 4, 12, 4, 1155, 1, 4, 1, 4, 1, 4, 1, 4, 4, 4, 1162, 8, 4, 11, 4, 12, 4, 1163, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 4, 5, 1174, 8, 5, 11, 5, 12, 5, 1175, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 4, 6, 1187, 8, 6, 11, 6, 12, 6, 1188, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 4, 7, 1202, 8, 7, 11, 7, 12, 7, 1203, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1215, 8, 8, 11, 8, 12, 8, 1216, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 4, 9, 1227, 8, 9, 11, 9, 12, 9, 1228, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1259, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 4, 12, 1270, 8, 12, 11, 12, 12, 12, 1271, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1284, 8, 13, 11, 13, 12, 13, 1285, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1292, 8, 13, 11, 13, 12, 13, 1293, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1349, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1358, 8, 14, 11, 14, 12, 14, 1359, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1366, 8, 14, 11, 14, 12, 14, 1367, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1375, 8, 14, 11, 14, 12, 14, 1376, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1441, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 4, 15, 1450, 8, 15, 11, 15, 12, 15, 1451, 1, 15, 1, 15, 1, 15, 4, 15, 1457, 8, 15, 11, 15, 12, 15, 1458, 1, 15, 1, 15, 1, 15, 4, 15, 1464, 8, 15, 11, 15, 12, 15, 1465, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1524, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 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, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 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, 29, 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, 30, 1, 31, 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, 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, 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, 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, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 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, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1820, 8, 52, 1, 52, 1, 52, 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, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 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, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 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, 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, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 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, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 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, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 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, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 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, 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, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 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, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 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, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 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, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 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, 127, 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, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 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, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 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, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 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, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 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, 152, 1, 152, 1, 152, 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, 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, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 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, 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, 160, 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, 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, 164, 1, 164, 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, 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, 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, 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, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 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, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 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, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 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, 177, 1, 177, 1, 177, 1, 178, 1, 178, 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, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 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, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 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, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 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, 190, 1, 190, 1, 190, 1, 190, 1, 190, 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, 192, 1, 192, 1, 192, 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, 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, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 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, 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, 200, 1, 200, 1, 200, 1, 200, 1, 200, 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, 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, 203, 1, 204, 1, 204, 1, 204, 1, 204, 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, 205, 1, 205, 1, 205, 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, 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, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 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, 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, 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, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 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, 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, 221, 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, 224, 1, 224, 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, 226, 1, 226, 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, 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, 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, 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, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 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, 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, 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, 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, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 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, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 4, 406, 4607, 8, 406, 11, 406, 12, 406, 4608, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 4, 406, 4616, 8, 406, 11, 406, 12, 406, 4617, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 3, 486, 5203, 8, 486, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, 501, 1, 501, 1, 502, 1, 502, 1, 503, 1, 503, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 5, 515, 5273, 8, 515, 10, 515, 12, 515, 5276, 9, 515, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 1, 516, 5, 516, 5287, 8, 516, 10, 516, 12, 516, 5290, 9, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 1, 517, 5, 517, 5298, 8, 517, 10, 517, 12, 517, 5301, 9, 517, 1, 517, 1, 517, 1, 517, 1, 518, 3, 518, 5307, 8, 518, 1, 518, 4, 518, 5310, 8, 518, 11, 518, 12, 518, 5311, 1, 518, 1, 518, 4, 518, 5316, 8, 518, 11, 518, 12, 518, 5317, 3, 518, 5320, 8, 518, 1, 518, 1, 518, 3, 518, 5324, 8, 518, 1, 518, 4, 518, 5327, 8, 518, 11, 518, 12, 518, 5328, 3, 518, 5331, 8, 518, 1, 519, 1, 519, 4, 519, 5335, 8, 519, 11, 519, 12, 519, 5336, 1, 520, 1, 520, 5, 520, 5341, 8, 520, 10, 520, 12, 520, 5344, 9, 520, 1, 521, 1, 521, 5, 521, 5348, 8, 521, 10, 521, 12, 521, 5351, 9, 521, 1, 521, 4, 521, 5354, 8, 521, 11, 521, 12, 521, 5355, 1, 521, 5, 521, 5359, 8, 521, 10, 521, 12, 521, 5362, 9, 521, 1, 522, 1, 522, 5, 522, 5366, 8, 522, 10, 522, 12, 522, 5369, 9, 522, 1, 522, 1, 522, 1, 522, 5, 522, 5374, 8, 522, 10, 522, 12, 522, 5377, 9, 522, 1, 522, 3, 522, 5380, 8, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 537, 1, 537, 1, 538, 1, 538, 1, 539, 1, 539, 1, 540, 1, 540, 1, 541, 1, 541, 1, 542, 1, 542, 1, 543, 1, 543, 1, 544, 1, 544, 1, 545, 1, 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 548, 1, 548, 1, 549, 1, 549, 1, 550, 1, 550, 1, 551, 1, 551, 4, 1119, 1131, 5274, 5299, 0, 552, 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, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 0, 1049, 0, 1051, 0, 1053, 0, 1055, 0, 1057, 0, 1059, 0, 1061, 0, 1063, 0, 1065, 0, 1067, 0, 1069, 0, 1071, 0, 1073, 0, 1075, 0, 1077, 0, 1079, 0, 1081, 0, 1083, 0, 1085, 0, 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1103, 0, 1, 0, 35, 2, 0, 9, 13, 32, 32, 2, 0, 10, 10, 13, 13, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 2, 0, 69, 69, 101, 101, 2, 0, 43, 43, 45, 45, 3, 0, 10, 10, 13, 13, 34, 34, 3, 0, 10, 10, 13, 13, 96, 96, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 5460, 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, 483, 1, 0, 0, 0, 0, 485, 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, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 1, 1106, 1, 0, 0, 0, 3, 1112, 1, 0, 0, 0, 5, 1125, 1, 0, 0, 0, 7, 1139, 1, 0, 0, 0, 9, 1150, 1, 0, 0, 0, 11, 1170, 1, 0, 0, 0, 13, 1182, 1, 0, 0, 0, 15, 1195, 1, 0, 0, 0, 17, 1208, 1, 0, 0, 0, 19, 1221, 1, 0, 0, 0, 21, 1233, 1, 0, 0, 0, 23, 1248, 1, 0, 0, 0, 25, 1264, 1, 0, 0, 0, 27, 1348, 1, 0, 0, 0, 29, 1440, 1, 0, 0, 0, 31, 1523, 1, 0, 0, 0, 33, 1525, 1, 0, 0, 0, 35, 1532, 1, 0, 0, 0, 37, 1538, 1, 0, 0, 0, 39, 1543, 1, 0, 0, 0, 41, 1550, 1, 0, 0, 0, 43, 1555, 1, 0, 0, 0, 45, 1562, 1, 0, 0, 0, 47, 1569, 1, 0, 0, 0, 49, 1580, 1, 0, 0, 0, 51, 1585, 1, 0, 0, 0, 53, 1594, 1, 0, 0, 0, 55, 1606, 1, 0, 0, 0, 57, 1618, 1, 0, 0, 0, 59, 1625, 1, 0, 0, 0, 61, 1635, 1, 0, 0, 0, 63, 1644, 1, 0, 0, 0, 65, 1653, 1, 0, 0, 0, 67, 1658, 1, 0, 0, 0, 69, 1666, 1, 0, 0, 0, 71, 1673, 1, 0, 0, 0, 73, 1682, 1, 0, 0, 0, 75, 1691, 1, 0, 0, 0, 77, 1701, 1, 0, 0, 0, 79, 1708, 1, 0, 0, 0, 81, 1716, 1, 0, 0, 0, 83, 1722, 1, 0, 0, 0, 85, 1728, 1, 0, 0, 0, 87, 1734, 1, 0, 0, 0, 89, 1744, 1, 0, 0, 0, 91, 1759, 1, 0, 0, 0, 93, 1767, 1, 0, 0, 0, 95, 1771, 1, 0, 0, 0, 97, 1775, 1, 0, 0, 0, 99, 1784, 1, 0, 0, 0, 101, 1798, 1, 0, 0, 0, 103, 1806, 1, 0, 0, 0, 105, 1812, 1, 0, 0, 0, 107, 1830, 1, 0, 0, 0, 109, 1838, 1, 0, 0, 0, 111, 1846, 1, 0, 0, 0, 113, 1854, 1, 0, 0, 0, 115, 1865, 1, 0, 0, 0, 117, 1871, 1, 0, 0, 0, 119, 1879, 1, 0, 0, 0, 121, 1887, 1, 0, 0, 0, 123, 1894, 1, 0, 0, 0, 125, 1900, 1, 0, 0, 0, 127, 1905, 1, 0, 0, 0, 129, 1910, 1, 0, 0, 0, 131, 1915, 1, 0, 0, 0, 133, 1924, 1, 0, 0, 0, 135, 1928, 1, 0, 0, 0, 137, 1939, 1, 0, 0, 0, 139, 1945, 1, 0, 0, 0, 141, 1952, 1, 0, 0, 0, 143, 1957, 1, 0, 0, 0, 145, 1963, 1, 0, 0, 0, 147, 1970, 1, 0, 0, 0, 149, 1977, 1, 0, 0, 0, 151, 1983, 1, 0, 0, 0, 153, 1986, 1, 0, 0, 0, 155, 1994, 1, 0, 0, 0, 157, 2004, 1, 0, 0, 0, 159, 2009, 1, 0, 0, 0, 161, 2014, 1, 0, 0, 0, 163, 2019, 1, 0, 0, 0, 165, 2024, 1, 0, 0, 0, 167, 2028, 1, 0, 0, 0, 169, 2037, 1, 0, 0, 0, 171, 2041, 1, 0, 0, 0, 173, 2046, 1, 0, 0, 0, 175, 2051, 1, 0, 0, 0, 177, 2057, 1, 0, 0, 0, 179, 2063, 1, 0, 0, 0, 181, 2069, 1, 0, 0, 0, 183, 2074, 1, 0, 0, 0, 185, 2080, 1, 0, 0, 0, 187, 2083, 1, 0, 0, 0, 189, 2087, 1, 0, 0, 0, 191, 2092, 1, 0, 0, 0, 193, 2098, 1, 0, 0, 0, 195, 2106, 1, 0, 0, 0, 197, 2113, 1, 0, 0, 0, 199, 2122, 1, 0, 0, 0, 201, 2129, 1, 0, 0, 0, 203, 2136, 1, 0, 0, 0, 205, 2145, 1, 0, 0, 0, 207, 2150, 1, 0, 0, 0, 209, 2156, 1, 0, 0, 0, 211, 2159, 1, 0, 0, 0, 213, 2165, 1, 0, 0, 0, 215, 2172, 1, 0, 0, 0, 217, 2181, 1, 0, 0, 0, 219, 2187, 1, 0, 0, 0, 221, 2194, 1, 0, 0, 0, 223, 2200, 1, 0, 0, 0, 225, 2204, 1, 0, 0, 0, 227, 2209, 1, 0, 0, 0, 229, 2214, 1, 0, 0, 0, 231, 2225, 1, 0, 0, 0, 233, 2232, 1, 0, 0, 0, 235, 2240, 1, 0, 0, 0, 237, 2246, 1, 0, 0, 0, 239, 2251, 1, 0, 0, 0, 241, 2258, 1, 0, 0, 0, 243, 2263, 1, 0, 0, 0, 245, 2268, 1, 0, 0, 0, 247, 2273, 1, 0, 0, 0, 249, 2278, 1, 0, 0, 0, 251, 2284, 1, 0, 0, 0, 253, 2294, 1, 0, 0, 0, 255, 2303, 1, 0, 0, 0, 257, 2312, 1, 0, 0, 0, 259, 2320, 1, 0, 0, 0, 261, 2328, 1, 0, 0, 0, 263, 2336, 1, 0, 0, 0, 265, 2341, 1, 0, 0, 0, 267, 2348, 1, 0, 0, 0, 269, 2355, 1, 0, 0, 0, 271, 2360, 1, 0, 0, 0, 273, 2368, 1, 0, 0, 0, 275, 2374, 1, 0, 0, 0, 277, 2383, 1, 0, 0, 0, 279, 2388, 1, 0, 0, 0, 281, 2394, 1, 0, 0, 0, 283, 2401, 1, 0, 0, 0, 285, 2409, 1, 0, 0, 0, 287, 2415, 1, 0, 0, 0, 289, 2423, 1, 0, 0, 0, 291, 2432, 1, 0, 0, 0, 293, 2442, 1, 0, 0, 0, 295, 2454, 1, 0, 0, 0, 297, 2466, 1, 0, 0, 0, 299, 2477, 1, 0, 0, 0, 301, 2486, 1, 0, 0, 0, 303, 2495, 1, 0, 0, 0, 305, 2504, 1, 0, 0, 0, 307, 2512, 1, 0, 0, 0, 309, 2522, 1, 0, 0, 0, 311, 2526, 1, 0, 0, 0, 313, 2531, 1, 0, 0, 0, 315, 2542, 1, 0, 0, 0, 317, 2549, 1, 0, 0, 0, 319, 2559, 1, 0, 0, 0, 321, 2574, 1, 0, 0, 0, 323, 2587, 1, 0, 0, 0, 325, 2598, 1, 0, 0, 0, 327, 2605, 1, 0, 0, 0, 329, 2611, 1, 0, 0, 0, 331, 2623, 1, 0, 0, 0, 333, 2631, 1, 0, 0, 0, 335, 2642, 1, 0, 0, 0, 337, 2648, 1, 0, 0, 0, 339, 2656, 1, 0, 0, 0, 341, 2665, 1, 0, 0, 0, 343, 2676, 1, 0, 0, 0, 345, 2689, 1, 0, 0, 0, 347, 2698, 1, 0, 0, 0, 349, 2707, 1, 0, 0, 0, 351, 2716, 1, 0, 0, 0, 353, 2734, 1, 0, 0, 0, 355, 2760, 1, 0, 0, 0, 357, 2770, 1, 0, 0, 0, 359, 2781, 1, 0, 0, 0, 361, 2794, 1, 0, 0, 0, 363, 2805, 1, 0, 0, 0, 365, 2818, 1, 0, 0, 0, 367, 2833, 1, 0, 0, 0, 369, 2844, 1, 0, 0, 0, 371, 2851, 1, 0, 0, 0, 373, 2858, 1, 0, 0, 0, 375, 2866, 1, 0, 0, 0, 377, 2874, 1, 0, 0, 0, 379, 2879, 1, 0, 0, 0, 381, 2887, 1, 0, 0, 0, 383, 2898, 1, 0, 0, 0, 385, 2905, 1, 0, 0, 0, 387, 2915, 1, 0, 0, 0, 389, 2922, 1, 0, 0, 0, 391, 2929, 1, 0, 0, 0, 393, 2937, 1, 0, 0, 0, 395, 2948, 1, 0, 0, 0, 397, 2954, 1, 0, 0, 0, 399, 2959, 1, 0, 0, 0, 401, 2973, 1, 0, 0, 0, 403, 2987, 1, 0, 0, 0, 405, 2994, 1, 0, 0, 0, 407, 3004, 1, 0, 0, 0, 409, 3017, 1, 0, 0, 0, 411, 3029, 1, 0, 0, 0, 413, 3040, 1, 0, 0, 0, 415, 3046, 1, 0, 0, 0, 417, 3052, 1, 0, 0, 0, 419, 3064, 1, 0, 0, 0, 421, 3071, 1, 0, 0, 0, 423, 3082, 1, 0, 0, 0, 425, 3099, 1, 0, 0, 0, 427, 3107, 1, 0, 0, 0, 429, 3113, 1, 0, 0, 0, 431, 3119, 1, 0, 0, 0, 433, 3126, 1, 0, 0, 0, 435, 3135, 1, 0, 0, 0, 437, 3139, 1, 0, 0, 0, 439, 3146, 1, 0, 0, 0, 441, 3154, 1, 0, 0, 0, 443, 3162, 1, 0, 0, 0, 445, 3171, 1, 0, 0, 0, 447, 3180, 1, 0, 0, 0, 449, 3191, 1, 0, 0, 0, 451, 3202, 1, 0, 0, 0, 453, 3208, 1, 0, 0, 0, 455, 3219, 1, 0, 0, 0, 457, 3231, 1, 0, 0, 0, 459, 3244, 1, 0, 0, 0, 461, 3260, 1, 0, 0, 0, 463, 3269, 1, 0, 0, 0, 465, 3277, 1, 0, 0, 0, 467, 3289, 1, 0, 0, 0, 469, 3302, 1, 0, 0, 0, 471, 3317, 1, 0, 0, 0, 473, 3328, 1, 0, 0, 0, 475, 3338, 1, 0, 0, 0, 477, 3352, 1, 0, 0, 0, 479, 3366, 1, 0, 0, 0, 481, 3380, 1, 0, 0, 0, 483, 3395, 1, 0, 0, 0, 485, 3409, 1, 0, 0, 0, 487, 3419, 1, 0, 0, 0, 489, 3428, 1, 0, 0, 0, 491, 3435, 1, 0, 0, 0, 493, 3443, 1, 0, 0, 0, 495, 3451, 1, 0, 0, 0, 497, 3458, 1, 0, 0, 0, 499, 3466, 1, 0, 0, 0, 501, 3471, 1, 0, 0, 0, 503, 3480, 1, 0, 0, 0, 505, 3488, 1, 0, 0, 0, 507, 3497, 1, 0, 0, 0, 509, 3506, 1, 0, 0, 0, 511, 3509, 1, 0, 0, 0, 513, 3512, 1, 0, 0, 0, 515, 3515, 1, 0, 0, 0, 517, 3518, 1, 0, 0, 0, 519, 3521, 1, 0, 0, 0, 521, 3524, 1, 0, 0, 0, 523, 3534, 1, 0, 0, 0, 525, 3541, 1, 0, 0, 0, 527, 3549, 1, 0, 0, 0, 529, 3554, 1, 0, 0, 0, 531, 3562, 1, 0, 0, 0, 533, 3570, 1, 0, 0, 0, 535, 3579, 1, 0, 0, 0, 537, 3584, 1, 0, 0, 0, 539, 3595, 1, 0, 0, 0, 541, 3602, 1, 0, 0, 0, 543, 3615, 1, 0, 0, 0, 545, 3624, 1, 0, 0, 0, 547, 3630, 1, 0, 0, 0, 549, 3645, 1, 0, 0, 0, 551, 3650, 1, 0, 0, 0, 553, 3656, 1, 0, 0, 0, 555, 3660, 1, 0, 0, 0, 557, 3664, 1, 0, 0, 0, 559, 3668, 1, 0, 0, 0, 561, 3672, 1, 0, 0, 0, 563, 3679, 1, 0, 0, 0, 565, 3684, 1, 0, 0, 0, 567, 3693, 1, 0, 0, 0, 569, 3698, 1, 0, 0, 0, 571, 3702, 1, 0, 0, 0, 573, 3705, 1, 0, 0, 0, 575, 3709, 1, 0, 0, 0, 577, 3714, 1, 0, 0, 0, 579, 3717, 1, 0, 0, 0, 581, 3725, 1, 0, 0, 0, 583, 3730, 1, 0, 0, 0, 585, 3736, 1, 0, 0, 0, 587, 3743, 1, 0, 0, 0, 589, 3750, 1, 0, 0, 0, 591, 3758, 1, 0, 0, 0, 593, 3763, 1, 0, 0, 0, 595, 3769, 1, 0, 0, 0, 597, 3780, 1, 0, 0, 0, 599, 3789, 1, 0, 0, 0, 601, 3794, 1, 0, 0, 0, 603, 3803, 1, 0, 0, 0, 605, 3809, 1, 0, 0, 0, 607, 3815, 1, 0, 0, 0, 609, 3821, 1, 0, 0, 0, 611, 3827, 1, 0, 0, 0, 613, 3835, 1, 0, 0, 0, 615, 3846, 1, 0, 0, 0, 617, 3852, 1, 0, 0, 0, 619, 3863, 1, 0, 0, 0, 621, 3874, 1, 0, 0, 0, 623, 3879, 1, 0, 0, 0, 625, 3887, 1, 0, 0, 0, 627, 3896, 1, 0, 0, 0, 629, 3902, 1, 0, 0, 0, 631, 3907, 1, 0, 0, 0, 633, 3912, 1, 0, 0, 0, 635, 3927, 1, 0, 0, 0, 637, 3933, 1, 0, 0, 0, 639, 3941, 1, 0, 0, 0, 641, 3947, 1, 0, 0, 0, 643, 3957, 1, 0, 0, 0, 645, 3964, 1, 0, 0, 0, 647, 3969, 1, 0, 0, 0, 649, 3977, 1, 0, 0, 0, 651, 3982, 1, 0, 0, 0, 653, 3991, 1, 0, 0, 0, 655, 3999, 1, 0, 0, 0, 657, 4004, 1, 0, 0, 0, 659, 4009, 1, 0, 0, 0, 661, 4013, 1, 0, 0, 0, 663, 4020, 1, 0, 0, 0, 665, 4025, 1, 0, 0, 0, 667, 4033, 1, 0, 0, 0, 669, 4037, 1, 0, 0, 0, 671, 4042, 1, 0, 0, 0, 673, 4046, 1, 0, 0, 0, 675, 4052, 1, 0, 0, 0, 677, 4056, 1, 0, 0, 0, 679, 4063, 1, 0, 0, 0, 681, 4071, 1, 0, 0, 0, 683, 4079, 1, 0, 0, 0, 685, 4089, 1, 0, 0, 0, 687, 4096, 1, 0, 0, 0, 689, 4105, 1, 0, 0, 0, 691, 4115, 1, 0, 0, 0, 693, 4123, 1, 0, 0, 0, 695, 4129, 1, 0, 0, 0, 697, 4136, 1, 0, 0, 0, 699, 4150, 1, 0, 0, 0, 701, 4159, 1, 0, 0, 0, 703, 4168, 1, 0, 0, 0, 705, 4179, 1, 0, 0, 0, 707, 4188, 1, 0, 0, 0, 709, 4194, 1, 0, 0, 0, 711, 4198, 1, 0, 0, 0, 713, 4206, 1, 0, 0, 0, 715, 4213, 1, 0, 0, 0, 717, 4218, 1, 0, 0, 0, 719, 4224, 1, 0, 0, 0, 721, 4229, 1, 0, 0, 0, 723, 4236, 1, 0, 0, 0, 725, 4245, 1, 0, 0, 0, 727, 4255, 1, 0, 0, 0, 729, 4260, 1, 0, 0, 0, 731, 4267, 1, 0, 0, 0, 733, 4273, 1, 0, 0, 0, 735, 4281, 1, 0, 0, 0, 737, 4291, 1, 0, 0, 0, 739, 4302, 1, 0, 0, 0, 741, 4310, 1, 0, 0, 0, 743, 4321, 1, 0, 0, 0, 745, 4326, 1, 0, 0, 0, 747, 4332, 1, 0, 0, 0, 749, 4337, 1, 0, 0, 0, 751, 4343, 1, 0, 0, 0, 753, 4349, 1, 0, 0, 0, 755, 4357, 1, 0, 0, 0, 757, 4366, 1, 0, 0, 0, 759, 4379, 1, 0, 0, 0, 761, 4390, 1, 0, 0, 0, 763, 4400, 1, 0, 0, 0, 765, 4410, 1, 0, 0, 0, 767, 4423, 1, 0, 0, 0, 769, 4433, 1, 0, 0, 0, 771, 4445, 1, 0, 0, 0, 773, 4452, 1, 0, 0, 0, 775, 4461, 1, 0, 0, 0, 777, 4471, 1, 0, 0, 0, 779, 4481, 1, 0, 0, 0, 781, 4488, 1, 0, 0, 0, 783, 4495, 1, 0, 0, 0, 785, 4501, 1, 0, 0, 0, 787, 4508, 1, 0, 0, 0, 789, 4516, 1, 0, 0, 0, 791, 4522, 1, 0, 0, 0, 793, 4528, 1, 0, 0, 0, 795, 4536, 1, 0, 0, 0, 797, 4543, 1, 0, 0, 0, 799, 4548, 1, 0, 0, 0, 801, 4554, 1, 0, 0, 0, 803, 4559, 1, 0, 0, 0, 805, 4565, 1, 0, 0, 0, 807, 4573, 1, 0, 0, 0, 809, 4582, 1, 0, 0, 0, 811, 4591, 1, 0, 0, 0, 813, 4599, 1, 0, 0, 0, 815, 4623, 1, 0, 0, 0, 817, 4631, 1, 0, 0, 0, 819, 4637, 1, 0, 0, 0, 821, 4648, 1, 0, 0, 0, 823, 4656, 1, 0, 0, 0, 825, 4664, 1, 0, 0, 0, 827, 4675, 1, 0, 0, 0, 829, 4686, 1, 0, 0, 0, 831, 4693, 1, 0, 0, 0, 833, 4699, 1, 0, 0, 0, 835, 4709, 1, 0, 0, 0, 837, 4720, 1, 0, 0, 0, 839, 4725, 1, 0, 0, 0, 841, 4731, 1, 0, 0, 0, 843, 4738, 1, 0, 0, 0, 845, 4745, 1, 0, 0, 0, 847, 4754, 1, 0, 0, 0, 849, 4759, 1, 0, 0, 0, 851, 4764, 1, 0, 0, 0, 853, 4767, 1, 0, 0, 0, 855, 4770, 1, 0, 0, 0, 857, 4775, 1, 0, 0, 0, 859, 4779, 1, 0, 0, 0, 861, 4787, 1, 0, 0, 0, 863, 4795, 1, 0, 0, 0, 865, 4809, 1, 0, 0, 0, 867, 4816, 1, 0, 0, 0, 869, 4820, 1, 0, 0, 0, 871, 4828, 1, 0, 0, 0, 873, 4832, 1, 0, 0, 0, 875, 4836, 1, 0, 0, 0, 877, 4847, 1, 0, 0, 0, 879, 4850, 1, 0, 0, 0, 881, 4859, 1, 0, 0, 0, 883, 4865, 1, 0, 0, 0, 885, 4875, 1, 0, 0, 0, 887, 4884, 1, 0, 0, 0, 889, 4898, 1, 0, 0, 0, 891, 4907, 1, 0, 0, 0, 893, 4913, 1, 0, 0, 0, 895, 4919, 1, 0, 0, 0, 897, 4928, 1, 0, 0, 0, 899, 4933, 1, 0, 0, 0, 901, 4939, 1, 0, 0, 0, 903, 4945, 1, 0, 0, 0, 905, 4952, 1, 0, 0, 0, 907, 4963, 1, 0, 0, 0, 909, 4973, 1, 0, 0, 0, 911, 4980, 1, 0, 0, 0, 913, 4985, 1, 0, 0, 0, 915, 4992, 1, 0, 0, 0, 917, 4998, 1, 0, 0, 0, 919, 5005, 1, 0, 0, 0, 921, 5011, 1, 0, 0, 0, 923, 5016, 1, 0, 0, 0, 925, 5021, 1, 0, 0, 0, 927, 5030, 1, 0, 0, 0, 929, 5036, 1, 0, 0, 0, 931, 5045, 1, 0, 0, 0, 933, 5055, 1, 0, 0, 0, 935, 5068, 1, 0, 0, 0, 937, 5074, 1, 0, 0, 0, 939, 5079, 1, 0, 0, 0, 941, 5083, 1, 0, 0, 0, 943, 5092, 1, 0, 0, 0, 945, 5097, 1, 0, 0, 0, 947, 5106, 1, 0, 0, 0, 949, 5111, 1, 0, 0, 0, 951, 5122, 1, 0, 0, 0, 953, 5131, 1, 0, 0, 0, 955, 5144, 1, 0, 0, 0, 957, 5148, 1, 0, 0, 0, 959, 5154, 1, 0, 0, 0, 961, 5157, 1, 0, 0, 0, 963, 5162, 1, 0, 0, 0, 965, 5168, 1, 0, 0, 0, 967, 5180, 1, 0, 0, 0, 969, 5188, 1, 0, 0, 0, 971, 5192, 1, 0, 0, 0, 973, 5202, 1, 0, 0, 0, 975, 5204, 1, 0, 0, 0, 977, 5207, 1, 0, 0, 0, 979, 5210, 1, 0, 0, 0, 981, 5212, 1, 0, 0, 0, 983, 5214, 1, 0, 0, 0, 985, 5216, 1, 0, 0, 0, 987, 5218, 1, 0, 0, 0, 989, 5220, 1, 0, 0, 0, 991, 5222, 1, 0, 0, 0, 993, 5224, 1, 0, 0, 0, 995, 5226, 1, 0, 0, 0, 997, 5230, 1, 0, 0, 0, 999, 5234, 1, 0, 0, 0, 1001, 5236, 1, 0, 0, 0, 1003, 5238, 1, 0, 0, 0, 1005, 5240, 1, 0, 0, 0, 1007, 5242, 1, 0, 0, 0, 1009, 5244, 1, 0, 0, 0, 1011, 5246, 1, 0, 0, 0, 1013, 5248, 1, 0, 0, 0, 1015, 5250, 1, 0, 0, 0, 1017, 5252, 1, 0, 0, 0, 1019, 5254, 1, 0, 0, 0, 1021, 5256, 1, 0, 0, 0, 1023, 5258, 1, 0, 0, 0, 1025, 5261, 1, 0, 0, 0, 1027, 5264, 1, 0, 0, 0, 1029, 5266, 1, 0, 0, 0, 1031, 5268, 1, 0, 0, 0, 1033, 5280, 1, 0, 0, 0, 1035, 5293, 1, 0, 0, 0, 1037, 5306, 1, 0, 0, 0, 1039, 5332, 1, 0, 0, 0, 1041, 5338, 1, 0, 0, 0, 1043, 5345, 1, 0, 0, 0, 1045, 5379, 1, 0, 0, 0, 1047, 5381, 1, 0, 0, 0, 1049, 5383, 1, 0, 0, 0, 1051, 5385, 1, 0, 0, 0, 1053, 5387, 1, 0, 0, 0, 1055, 5389, 1, 0, 0, 0, 1057, 5391, 1, 0, 0, 0, 1059, 5393, 1, 0, 0, 0, 1061, 5395, 1, 0, 0, 0, 1063, 5397, 1, 0, 0, 0, 1065, 5399, 1, 0, 0, 0, 1067, 5401, 1, 0, 0, 0, 1069, 5403, 1, 0, 0, 0, 1071, 5405, 1, 0, 0, 0, 1073, 5407, 1, 0, 0, 0, 1075, 5409, 1, 0, 0, 0, 1077, 5411, 1, 0, 0, 0, 1079, 5413, 1, 0, 0, 0, 1081, 5415, 1, 0, 0, 0, 1083, 5417, 1, 0, 0, 0, 1085, 5419, 1, 0, 0, 0, 1087, 5421, 1, 0, 0, 0, 1089, 5423, 1, 0, 0, 0, 1091, 5425, 1, 0, 0, 0, 1093, 5427, 1, 0, 0, 0, 1095, 5429, 1, 0, 0, 0, 1097, 5431, 1, 0, 0, 0, 1099, 5433, 1, 0, 0, 0, 1101, 5435, 1, 0, 0, 0, 1103, 5437, 1, 0, 0, 0, 1105, 1107, 7, 0, 0, 0, 1106, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 6, 0, 0, 0, 1111, 2, 1, 0, 0, 0, 1112, 1113, 5, 47, 0, 0, 1113, 1114, 5, 42, 0, 0, 1114, 1115, 5, 42, 0, 0, 1115, 1119, 1, 0, 0, 0, 1116, 1118, 9, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 1121, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1119, 1, 0, 0, 0, 1122, 1123, 5, 42, 0, 0, 1123, 1124, 5, 47, 0, 0, 1124, 4, 1, 0, 0, 0, 1125, 1126, 5, 47, 0, 0, 1126, 1127, 5, 42, 0, 0, 1127, 1131, 1, 0, 0, 0, 1128, 1130, 9, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1134, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 42, 0, 0, 1135, 1136, 5, 47, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 6, 2, 0, 0, 1138, 6, 1, 0, 0, 0, 1139, 1140, 5, 45, 0, 0, 1140, 1141, 5, 45, 0, 0, 1141, 1145, 1, 0, 0, 0, 1142, 1144, 8, 1, 0, 0, 1143, 1142, 1, 0, 0, 0, 1144, 1147, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1149, 6, 3, 0, 0, 1149, 8, 1, 0, 0, 0, 1150, 1151, 3, 1069, 534, 0, 1151, 1153, 3, 1089, 544, 0, 1152, 1154, 3, 1, 0, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 3, 1079, 539, 0, 1158, 1159, 3, 1081, 540, 0, 1159, 1161, 3, 1091, 545, 0, 1160, 1162, 3, 1, 0, 0, 1161, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 3, 1079, 539, 0, 1166, 1167, 3, 1093, 546, 0, 1167, 1168, 3, 1075, 537, 0, 1168, 1169, 3, 1075, 537, 0, 1169, 10, 1, 0, 0, 0, 1170, 1171, 3, 1069, 534, 0, 1171, 1173, 3, 1089, 544, 0, 1172, 1174, 3, 1, 0, 0, 1173, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 3, 1079, 539, 0, 1178, 1179, 3, 1093, 546, 0, 1179, 1180, 3, 1075, 537, 0, 1180, 1181, 3, 1075, 537, 0, 1181, 12, 1, 0, 0, 0, 1182, 1183, 3, 1079, 539, 0, 1183, 1184, 3, 1081, 540, 0, 1184, 1186, 3, 1091, 545, 0, 1185, 1187, 3, 1, 0, 0, 1186, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 3, 1079, 539, 0, 1191, 1192, 3, 1093, 546, 0, 1192, 1193, 3, 1075, 537, 0, 1193, 1194, 3, 1075, 537, 0, 1194, 14, 1, 0, 0, 0, 1195, 1196, 3, 1065, 532, 0, 1196, 1197, 3, 1087, 543, 0, 1197, 1198, 3, 1081, 540, 0, 1198, 1199, 3, 1093, 546, 0, 1199, 1201, 3, 1083, 541, 0, 1200, 1202, 3, 1, 0, 0, 1201, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 3, 1055, 527, 0, 1206, 1207, 3, 1101, 550, 0, 1207, 16, 1, 0, 0, 0, 1208, 1209, 3, 1081, 540, 0, 1209, 1210, 3, 1087, 543, 0, 1210, 1211, 3, 1059, 529, 0, 1211, 1212, 3, 1061, 530, 0, 1212, 1214, 3, 1087, 543, 0, 1213, 1215, 3, 1, 0, 0, 1214, 1213, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 3, 1055, 527, 0, 1219, 1220, 3, 1101, 550, 0, 1220, 18, 1, 0, 0, 0, 1221, 1222, 3, 1089, 544, 0, 1222, 1223, 3, 1081, 540, 0, 1223, 1224, 3, 1087, 543, 0, 1224, 1226, 3, 1091, 545, 0, 1225, 1227, 3, 1, 0, 0, 1226, 1225, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 3, 1055, 527, 0, 1231, 1232, 3, 1101, 550, 0, 1232, 20, 1, 0, 0, 0, 1233, 1234, 3, 1079, 539, 0, 1234, 1235, 3, 1081, 540, 0, 1235, 1236, 3, 1079, 539, 0, 1236, 1237, 5, 45, 0, 0, 1237, 1238, 3, 1083, 541, 0, 1238, 1239, 3, 1061, 530, 0, 1239, 1240, 3, 1087, 543, 0, 1240, 1241, 3, 1089, 544, 0, 1241, 1242, 3, 1069, 534, 0, 1242, 1243, 3, 1089, 544, 0, 1243, 1244, 3, 1091, 545, 0, 1244, 1245, 3, 1061, 530, 0, 1245, 1246, 3, 1079, 539, 0, 1246, 1247, 3, 1091, 545, 0, 1247, 22, 1, 0, 0, 0, 1248, 1249, 3, 1087, 543, 0, 1249, 1250, 3, 1061, 530, 0, 1250, 1251, 3, 1063, 531, 0, 1251, 1252, 3, 1061, 530, 0, 1252, 1253, 3, 1087, 543, 0, 1253, 1254, 3, 1061, 530, 0, 1254, 1255, 3, 1079, 539, 0, 1255, 1256, 3, 1057, 528, 0, 1256, 1258, 3, 1061, 530, 0, 1257, 1259, 5, 95, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 3, 1089, 544, 0, 1261, 1262, 3, 1061, 530, 0, 1262, 1263, 3, 1091, 545, 0, 1263, 24, 1, 0, 0, 0, 1264, 1265, 3, 1075, 537, 0, 1265, 1266, 3, 1069, 534, 0, 1266, 1267, 3, 1089, 544, 0, 1267, 1269, 3, 1091, 545, 0, 1268, 1270, 3, 1, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 3, 1081, 540, 0, 1274, 1275, 3, 1063, 531, 0, 1275, 26, 1, 0, 0, 0, 1276, 1277, 3, 1059, 529, 0, 1277, 1278, 3, 1061, 530, 0, 1278, 1279, 3, 1075, 537, 0, 1279, 1280, 3, 1061, 530, 0, 1280, 1281, 3, 1091, 545, 0, 1281, 1283, 3, 1061, 530, 0, 1282, 1284, 3, 1, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 3, 1053, 526, 0, 1288, 1289, 3, 1079, 539, 0, 1289, 1291, 3, 1059, 529, 0, 1290, 1292, 3, 1, 0, 0, 1291, 1290, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 3, 1087, 543, 0, 1296, 1297, 3, 1061, 530, 0, 1297, 1298, 3, 1063, 531, 0, 1298, 1299, 3, 1061, 530, 0, 1299, 1300, 3, 1087, 543, 0, 1300, 1301, 3, 1061, 530, 0, 1301, 1302, 3, 1079, 539, 0, 1302, 1303, 3, 1057, 528, 0, 1303, 1304, 3, 1061, 530, 0, 1304, 1305, 3, 1089, 544, 0, 1305, 1349, 1, 0, 0, 0, 1306, 1307, 3, 1059, 529, 0, 1307, 1308, 3, 1061, 530, 0, 1308, 1309, 3, 1075, 537, 0, 1309, 1310, 3, 1061, 530, 0, 1310, 1311, 3, 1091, 545, 0, 1311, 1312, 3, 1061, 530, 0, 1312, 1313, 5, 95, 0, 0, 1313, 1314, 3, 1053, 526, 0, 1314, 1315, 3, 1079, 539, 0, 1315, 1316, 3, 1059, 529, 0, 1316, 1317, 5, 95, 0, 0, 1317, 1318, 3, 1087, 543, 0, 1318, 1319, 3, 1061, 530, 0, 1319, 1320, 3, 1063, 531, 0, 1320, 1321, 3, 1061, 530, 0, 1321, 1322, 3, 1087, 543, 0, 1322, 1323, 3, 1061, 530, 0, 1323, 1324, 3, 1079, 539, 0, 1324, 1325, 3, 1057, 528, 0, 1325, 1326, 3, 1061, 530, 0, 1326, 1327, 3, 1089, 544, 0, 1327, 1349, 1, 0, 0, 0, 1328, 1329, 3, 1059, 529, 0, 1329, 1330, 3, 1061, 530, 0, 1330, 1331, 3, 1075, 537, 0, 1331, 1332, 3, 1061, 530, 0, 1332, 1333, 3, 1091, 545, 0, 1333, 1334, 3, 1061, 530, 0, 1334, 1335, 3, 1053, 526, 0, 1335, 1336, 3, 1079, 539, 0, 1336, 1337, 3, 1059, 529, 0, 1337, 1338, 3, 1087, 543, 0, 1338, 1339, 3, 1061, 530, 0, 1339, 1340, 3, 1063, 531, 0, 1340, 1341, 3, 1061, 530, 0, 1341, 1342, 3, 1087, 543, 0, 1342, 1343, 3, 1061, 530, 0, 1343, 1344, 3, 1079, 539, 0, 1344, 1345, 3, 1057, 528, 0, 1345, 1346, 3, 1061, 530, 0, 1346, 1347, 3, 1089, 544, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1276, 1, 0, 0, 0, 1348, 1306, 1, 0, 0, 0, 1348, 1328, 1, 0, 0, 0, 1349, 28, 1, 0, 0, 0, 1350, 1351, 3, 1059, 529, 0, 1351, 1352, 3, 1061, 530, 0, 1352, 1353, 3, 1075, 537, 0, 1353, 1354, 3, 1061, 530, 0, 1354, 1355, 3, 1091, 545, 0, 1355, 1357, 3, 1061, 530, 0, 1356, 1358, 3, 1, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 3, 1055, 527, 0, 1362, 1363, 3, 1093, 546, 0, 1363, 1365, 3, 1091, 545, 0, 1364, 1366, 3, 1, 0, 0, 1365, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 3, 1073, 536, 0, 1370, 1371, 3, 1061, 530, 0, 1371, 1372, 3, 1061, 530, 0, 1372, 1374, 3, 1083, 541, 0, 1373, 1375, 3, 1, 0, 0, 1374, 1373, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 3, 1087, 543, 0, 1379, 1380, 3, 1061, 530, 0, 1380, 1381, 3, 1063, 531, 0, 1381, 1382, 3, 1061, 530, 0, 1382, 1383, 3, 1087, 543, 0, 1383, 1384, 3, 1061, 530, 0, 1384, 1385, 3, 1079, 539, 0, 1385, 1386, 3, 1057, 528, 0, 1386, 1387, 3, 1061, 530, 0, 1387, 1388, 3, 1089, 544, 0, 1388, 1441, 1, 0, 0, 0, 1389, 1390, 3, 1059, 529, 0, 1390, 1391, 3, 1061, 530, 0, 1391, 1392, 3, 1075, 537, 0, 1392, 1393, 3, 1061, 530, 0, 1393, 1394, 3, 1091, 545, 0, 1394, 1395, 3, 1061, 530, 0, 1395, 1396, 5, 95, 0, 0, 1396, 1397, 3, 1055, 527, 0, 1397, 1398, 3, 1093, 546, 0, 1398, 1399, 3, 1091, 545, 0, 1399, 1400, 5, 95, 0, 0, 1400, 1401, 3, 1073, 536, 0, 1401, 1402, 3, 1061, 530, 0, 1402, 1403, 3, 1061, 530, 0, 1403, 1404, 3, 1083, 541, 0, 1404, 1405, 5, 95, 0, 0, 1405, 1406, 3, 1087, 543, 0, 1406, 1407, 3, 1061, 530, 0, 1407, 1408, 3, 1063, 531, 0, 1408, 1409, 3, 1061, 530, 0, 1409, 1410, 3, 1087, 543, 0, 1410, 1411, 3, 1061, 530, 0, 1411, 1412, 3, 1079, 539, 0, 1412, 1413, 3, 1057, 528, 0, 1413, 1414, 3, 1061, 530, 0, 1414, 1415, 3, 1089, 544, 0, 1415, 1441, 1, 0, 0, 0, 1416, 1417, 3, 1059, 529, 0, 1417, 1418, 3, 1061, 530, 0, 1418, 1419, 3, 1075, 537, 0, 1419, 1420, 3, 1061, 530, 0, 1420, 1421, 3, 1091, 545, 0, 1421, 1422, 3, 1061, 530, 0, 1422, 1423, 3, 1055, 527, 0, 1423, 1424, 3, 1093, 546, 0, 1424, 1425, 3, 1091, 545, 0, 1425, 1426, 3, 1073, 536, 0, 1426, 1427, 3, 1061, 530, 0, 1427, 1428, 3, 1061, 530, 0, 1428, 1429, 3, 1083, 541, 0, 1429, 1430, 3, 1087, 543, 0, 1430, 1431, 3, 1061, 530, 0, 1431, 1432, 3, 1063, 531, 0, 1432, 1433, 3, 1061, 530, 0, 1433, 1434, 3, 1087, 543, 0, 1434, 1435, 3, 1061, 530, 0, 1435, 1436, 3, 1079, 539, 0, 1436, 1437, 3, 1057, 528, 0, 1437, 1438, 3, 1061, 530, 0, 1438, 1439, 3, 1089, 544, 0, 1439, 1441, 1, 0, 0, 0, 1440, 1350, 1, 0, 0, 0, 1440, 1389, 1, 0, 0, 0, 1440, 1416, 1, 0, 0, 0, 1441, 30, 1, 0, 0, 0, 1442, 1443, 3, 1059, 529, 0, 1443, 1444, 3, 1061, 530, 0, 1444, 1445, 3, 1075, 537, 0, 1445, 1446, 3, 1061, 530, 0, 1446, 1447, 3, 1091, 545, 0, 1447, 1449, 3, 1061, 530, 0, 1448, 1450, 3, 1, 0, 0, 1449, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1449, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 3, 1069, 534, 0, 1454, 1456, 3, 1063, 531, 0, 1455, 1457, 3, 1, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 3, 1079, 539, 0, 1461, 1463, 3, 1081, 540, 0, 1462, 1464, 3, 1, 0, 0, 1463, 1462, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 3, 1087, 543, 0, 1468, 1469, 3, 1061, 530, 0, 1469, 1470, 3, 1063, 531, 0, 1470, 1471, 3, 1061, 530, 0, 1471, 1472, 3, 1087, 543, 0, 1472, 1473, 3, 1061, 530, 0, 1473, 1474, 3, 1079, 539, 0, 1474, 1475, 3, 1057, 528, 0, 1475, 1476, 3, 1061, 530, 0, 1476, 1477, 3, 1089, 544, 0, 1477, 1524, 1, 0, 0, 0, 1478, 1479, 3, 1059, 529, 0, 1479, 1480, 3, 1061, 530, 0, 1480, 1481, 3, 1075, 537, 0, 1481, 1482, 3, 1061, 530, 0, 1482, 1483, 3, 1091, 545, 0, 1483, 1484, 3, 1061, 530, 0, 1484, 1485, 5, 95, 0, 0, 1485, 1486, 3, 1069, 534, 0, 1486, 1487, 3, 1063, 531, 0, 1487, 1488, 5, 95, 0, 0, 1488, 1489, 3, 1079, 539, 0, 1489, 1490, 3, 1081, 540, 0, 1490, 1491, 5, 95, 0, 0, 1491, 1492, 3, 1087, 543, 0, 1492, 1493, 3, 1061, 530, 0, 1493, 1494, 3, 1063, 531, 0, 1494, 1495, 3, 1061, 530, 0, 1495, 1496, 3, 1087, 543, 0, 1496, 1497, 3, 1061, 530, 0, 1497, 1498, 3, 1079, 539, 0, 1498, 1499, 3, 1057, 528, 0, 1499, 1500, 3, 1061, 530, 0, 1500, 1501, 3, 1089, 544, 0, 1501, 1524, 1, 0, 0, 0, 1502, 1503, 3, 1059, 529, 0, 1503, 1504, 3, 1061, 530, 0, 1504, 1505, 3, 1075, 537, 0, 1505, 1506, 3, 1061, 530, 0, 1506, 1507, 3, 1091, 545, 0, 1507, 1508, 3, 1061, 530, 0, 1508, 1509, 3, 1069, 534, 0, 1509, 1510, 3, 1063, 531, 0, 1510, 1511, 3, 1079, 539, 0, 1511, 1512, 3, 1081, 540, 0, 1512, 1513, 3, 1087, 543, 0, 1513, 1514, 3, 1061, 530, 0, 1514, 1515, 3, 1063, 531, 0, 1515, 1516, 3, 1061, 530, 0, 1516, 1517, 3, 1087, 543, 0, 1517, 1518, 3, 1061, 530, 0, 1518, 1519, 3, 1079, 539, 0, 1519, 1520, 3, 1057, 528, 0, 1520, 1521, 3, 1061, 530, 0, 1521, 1522, 3, 1089, 544, 0, 1522, 1524, 1, 0, 0, 0, 1523, 1442, 1, 0, 0, 0, 1523, 1478, 1, 0, 0, 0, 1523, 1502, 1, 0, 0, 0, 1524, 32, 1, 0, 0, 0, 1525, 1526, 3, 1057, 528, 0, 1526, 1527, 3, 1087, 543, 0, 1527, 1528, 3, 1061, 530, 0, 1528, 1529, 3, 1053, 526, 0, 1529, 1530, 3, 1091, 545, 0, 1530, 1531, 3, 1061, 530, 0, 1531, 34, 1, 0, 0, 0, 1532, 1533, 3, 1053, 526, 0, 1533, 1534, 3, 1075, 537, 0, 1534, 1535, 3, 1091, 545, 0, 1535, 1536, 3, 1061, 530, 0, 1536, 1537, 3, 1087, 543, 0, 1537, 36, 1, 0, 0, 0, 1538, 1539, 3, 1059, 529, 0, 1539, 1540, 3, 1087, 543, 0, 1540, 1541, 3, 1081, 540, 0, 1541, 1542, 3, 1083, 541, 0, 1542, 38, 1, 0, 0, 0, 1543, 1544, 3, 1087, 543, 0, 1544, 1545, 3, 1061, 530, 0, 1545, 1546, 3, 1079, 539, 0, 1546, 1547, 3, 1053, 526, 0, 1547, 1548, 3, 1077, 538, 0, 1548, 1549, 3, 1061, 530, 0, 1549, 40, 1, 0, 0, 0, 1550, 1551, 3, 1077, 538, 0, 1551, 1552, 3, 1081, 540, 0, 1552, 1553, 3, 1095, 547, 0, 1553, 1554, 3, 1061, 530, 0, 1554, 42, 1, 0, 0, 0, 1555, 1556, 3, 1077, 538, 0, 1556, 1557, 3, 1081, 540, 0, 1557, 1558, 3, 1059, 529, 0, 1558, 1559, 3, 1069, 534, 0, 1559, 1560, 3, 1063, 531, 0, 1560, 1561, 3, 1101, 550, 0, 1561, 44, 1, 0, 0, 0, 1562, 1563, 3, 1061, 530, 0, 1563, 1564, 3, 1079, 539, 0, 1564, 1565, 3, 1091, 545, 0, 1565, 1566, 3, 1069, 534, 0, 1566, 1567, 3, 1091, 545, 0, 1567, 1568, 3, 1101, 550, 0, 1568, 46, 1, 0, 0, 0, 1569, 1570, 3, 1083, 541, 0, 1570, 1571, 3, 1061, 530, 0, 1571, 1572, 3, 1087, 543, 0, 1572, 1573, 3, 1089, 544, 0, 1573, 1574, 3, 1069, 534, 0, 1574, 1575, 3, 1089, 544, 0, 1575, 1576, 3, 1091, 545, 0, 1576, 1577, 3, 1061, 530, 0, 1577, 1578, 3, 1079, 539, 0, 1578, 1579, 3, 1091, 545, 0, 1579, 48, 1, 0, 0, 0, 1580, 1581, 3, 1095, 547, 0, 1581, 1582, 3, 1069, 534, 0, 1582, 1583, 3, 1061, 530, 0, 1583, 1584, 3, 1097, 548, 0, 1584, 50, 1, 0, 0, 0, 1585, 1586, 3, 1061, 530, 0, 1586, 1587, 3, 1099, 549, 0, 1587, 1588, 3, 1091, 545, 0, 1588, 1589, 3, 1061, 530, 0, 1589, 1590, 3, 1087, 543, 0, 1590, 1591, 3, 1079, 539, 0, 1591, 1592, 3, 1053, 526, 0, 1592, 1593, 3, 1075, 537, 0, 1593, 52, 1, 0, 0, 0, 1594, 1595, 3, 1053, 526, 0, 1595, 1596, 3, 1089, 544, 0, 1596, 1597, 3, 1089, 544, 0, 1597, 1598, 3, 1081, 540, 0, 1598, 1599, 3, 1057, 528, 0, 1599, 1600, 3, 1069, 534, 0, 1600, 1601, 3, 1053, 526, 0, 1601, 1602, 3, 1091, 545, 0, 1602, 1603, 3, 1069, 534, 0, 1603, 1604, 3, 1081, 540, 0, 1604, 1605, 3, 1079, 539, 0, 1605, 54, 1, 0, 0, 0, 1606, 1607, 3, 1061, 530, 0, 1607, 1608, 3, 1079, 539, 0, 1608, 1609, 3, 1093, 546, 0, 1609, 1610, 3, 1077, 538, 0, 1610, 1611, 3, 1061, 530, 0, 1611, 1612, 3, 1087, 543, 0, 1612, 1613, 3, 1053, 526, 0, 1613, 1614, 3, 1091, 545, 0, 1614, 1615, 3, 1069, 534, 0, 1615, 1616, 3, 1081, 540, 0, 1616, 1617, 3, 1079, 539, 0, 1617, 56, 1, 0, 0, 0, 1618, 1619, 3, 1077, 538, 0, 1619, 1620, 3, 1081, 540, 0, 1620, 1621, 3, 1059, 529, 0, 1621, 1622, 3, 1093, 546, 0, 1622, 1623, 3, 1075, 537, 0, 1623, 1624, 3, 1061, 530, 0, 1624, 58, 1, 0, 0, 0, 1625, 1626, 3, 1077, 538, 0, 1626, 1627, 3, 1069, 534, 0, 1627, 1628, 3, 1057, 528, 0, 1628, 1629, 3, 1087, 543, 0, 1629, 1630, 3, 1081, 540, 0, 1630, 1631, 3, 1063, 531, 0, 1631, 1632, 3, 1075, 537, 0, 1632, 1633, 3, 1081, 540, 0, 1633, 1634, 3, 1097, 548, 0, 1634, 60, 1, 0, 0, 0, 1635, 1636, 3, 1079, 539, 0, 1636, 1637, 3, 1053, 526, 0, 1637, 1638, 3, 1079, 539, 0, 1638, 1639, 3, 1081, 540, 0, 1639, 1640, 3, 1063, 531, 0, 1640, 1641, 3, 1075, 537, 0, 1641, 1642, 3, 1081, 540, 0, 1642, 1643, 3, 1097, 548, 0, 1643, 62, 1, 0, 0, 0, 1644, 1645, 3, 1097, 548, 0, 1645, 1646, 3, 1081, 540, 0, 1646, 1647, 3, 1087, 543, 0, 1647, 1648, 3, 1073, 536, 0, 1648, 1649, 3, 1063, 531, 0, 1649, 1650, 3, 1075, 537, 0, 1650, 1651, 3, 1081, 540, 0, 1651, 1652, 3, 1097, 548, 0, 1652, 64, 1, 0, 0, 0, 1653, 1654, 3, 1083, 541, 0, 1654, 1655, 3, 1053, 526, 0, 1655, 1656, 3, 1065, 532, 0, 1656, 1657, 3, 1061, 530, 0, 1657, 66, 1, 0, 0, 0, 1658, 1659, 3, 1089, 544, 0, 1659, 1660, 3, 1079, 539, 0, 1660, 1661, 3, 1069, 534, 0, 1661, 1662, 3, 1083, 541, 0, 1662, 1663, 3, 1083, 541, 0, 1663, 1664, 3, 1061, 530, 0, 1664, 1665, 3, 1091, 545, 0, 1665, 68, 1, 0, 0, 0, 1666, 1667, 3, 1075, 537, 0, 1667, 1668, 3, 1053, 526, 0, 1668, 1669, 3, 1101, 550, 0, 1669, 1670, 3, 1081, 540, 0, 1670, 1671, 3, 1093, 546, 0, 1671, 1672, 3, 1091, 545, 0, 1672, 70, 1, 0, 0, 0, 1673, 1674, 3, 1079, 539, 0, 1674, 1675, 3, 1081, 540, 0, 1675, 1676, 3, 1091, 545, 0, 1676, 1677, 3, 1061, 530, 0, 1677, 1678, 3, 1055, 527, 0, 1678, 1679, 3, 1081, 540, 0, 1679, 1680, 3, 1081, 540, 0, 1680, 1681, 3, 1073, 536, 0, 1681, 72, 1, 0, 0, 0, 1682, 1683, 3, 1057, 528, 0, 1683, 1684, 3, 1081, 540, 0, 1684, 1685, 3, 1079, 539, 0, 1685, 1686, 3, 1089, 544, 0, 1686, 1687, 3, 1091, 545, 0, 1687, 1688, 3, 1053, 526, 0, 1688, 1689, 3, 1079, 539, 0, 1689, 1690, 3, 1091, 545, 0, 1690, 74, 1, 0, 0, 0, 1691, 1692, 3, 1053, 526, 0, 1692, 1693, 3, 1091, 545, 0, 1693, 1694, 3, 1091, 545, 0, 1694, 1695, 3, 1087, 543, 0, 1695, 1696, 3, 1069, 534, 0, 1696, 1697, 3, 1055, 527, 0, 1697, 1698, 3, 1093, 546, 0, 1698, 1699, 3, 1091, 545, 0, 1699, 1700, 3, 1061, 530, 0, 1700, 76, 1, 0, 0, 0, 1701, 1702, 3, 1057, 528, 0, 1702, 1703, 3, 1081, 540, 0, 1703, 1704, 3, 1075, 537, 0, 1704, 1705, 3, 1093, 546, 0, 1705, 1706, 3, 1077, 538, 0, 1706, 1707, 3, 1079, 539, 0, 1707, 78, 1, 0, 0, 0, 1708, 1709, 3, 1057, 528, 0, 1709, 1710, 3, 1081, 540, 0, 1710, 1711, 3, 1075, 537, 0, 1711, 1712, 3, 1093, 546, 0, 1712, 1713, 3, 1077, 538, 0, 1713, 1714, 3, 1079, 539, 0, 1714, 1715, 3, 1089, 544, 0, 1715, 80, 1, 0, 0, 0, 1716, 1717, 3, 1069, 534, 0, 1717, 1718, 3, 1079, 539, 0, 1718, 1719, 3, 1059, 529, 0, 1719, 1720, 3, 1061, 530, 0, 1720, 1721, 3, 1099, 549, 0, 1721, 82, 1, 0, 0, 0, 1722, 1723, 3, 1081, 540, 0, 1723, 1724, 3, 1097, 548, 0, 1724, 1725, 3, 1079, 539, 0, 1725, 1726, 3, 1061, 530, 0, 1726, 1727, 3, 1087, 543, 0, 1727, 84, 1, 0, 0, 0, 1728, 1729, 3, 1089, 544, 0, 1729, 1730, 3, 1091, 545, 0, 1730, 1731, 3, 1081, 540, 0, 1731, 1732, 3, 1087, 543, 0, 1732, 1733, 3, 1061, 530, 0, 1733, 86, 1, 0, 0, 0, 1734, 1735, 3, 1087, 543, 0, 1735, 1736, 3, 1061, 530, 0, 1736, 1737, 3, 1063, 531, 0, 1737, 1738, 3, 1061, 530, 0, 1738, 1739, 3, 1087, 543, 0, 1739, 1740, 3, 1061, 530, 0, 1740, 1741, 3, 1079, 539, 0, 1741, 1742, 3, 1057, 528, 0, 1742, 1743, 3, 1061, 530, 0, 1743, 88, 1, 0, 0, 0, 1744, 1745, 3, 1065, 532, 0, 1745, 1746, 3, 1061, 530, 0, 1746, 1747, 3, 1079, 539, 0, 1747, 1748, 3, 1061, 530, 0, 1748, 1749, 3, 1087, 543, 0, 1749, 1750, 3, 1053, 526, 0, 1750, 1751, 3, 1075, 537, 0, 1751, 1752, 3, 1069, 534, 0, 1752, 1753, 3, 1103, 551, 0, 1753, 1754, 3, 1053, 526, 0, 1754, 1755, 3, 1091, 545, 0, 1755, 1756, 3, 1069, 534, 0, 1756, 1757, 3, 1081, 540, 0, 1757, 1758, 3, 1079, 539, 0, 1758, 90, 1, 0, 0, 0, 1759, 1760, 3, 1061, 530, 0, 1760, 1761, 3, 1099, 549, 0, 1761, 1762, 3, 1091, 545, 0, 1762, 1763, 3, 1061, 530, 0, 1763, 1764, 3, 1079, 539, 0, 1764, 1765, 3, 1059, 529, 0, 1765, 1766, 3, 1089, 544, 0, 1766, 92, 1, 0, 0, 0, 1767, 1768, 3, 1053, 526, 0, 1768, 1769, 3, 1059, 529, 0, 1769, 1770, 3, 1059, 529, 0, 1770, 94, 1, 0, 0, 0, 1771, 1772, 3, 1089, 544, 0, 1772, 1773, 3, 1061, 530, 0, 1773, 1774, 3, 1091, 545, 0, 1774, 96, 1, 0, 0, 0, 1775, 1776, 3, 1083, 541, 0, 1776, 1777, 3, 1081, 540, 0, 1777, 1778, 3, 1089, 544, 0, 1778, 1779, 3, 1069, 534, 0, 1779, 1780, 3, 1091, 545, 0, 1780, 1781, 3, 1069, 534, 0, 1781, 1782, 3, 1081, 540, 0, 1782, 1783, 3, 1079, 539, 0, 1783, 98, 1, 0, 0, 0, 1784, 1785, 3, 1059, 529, 0, 1785, 1786, 3, 1081, 540, 0, 1786, 1787, 3, 1057, 528, 0, 1787, 1788, 3, 1093, 546, 0, 1788, 1789, 3, 1077, 538, 0, 1789, 1790, 3, 1061, 530, 0, 1790, 1791, 3, 1079, 539, 0, 1791, 1792, 3, 1091, 545, 0, 1792, 1793, 3, 1053, 526, 0, 1793, 1794, 3, 1091, 545, 0, 1794, 1795, 3, 1069, 534, 0, 1795, 1796, 3, 1081, 540, 0, 1796, 1797, 3, 1079, 539, 0, 1797, 100, 1, 0, 0, 0, 1798, 1799, 3, 1089, 544, 0, 1799, 1800, 3, 1091, 545, 0, 1800, 1801, 3, 1081, 540, 0, 1801, 1802, 3, 1087, 543, 0, 1802, 1803, 3, 1053, 526, 0, 1803, 1804, 3, 1065, 532, 0, 1804, 1805, 3, 1061, 530, 0, 1805, 102, 1, 0, 0, 0, 1806, 1807, 3, 1091, 545, 0, 1807, 1808, 3, 1053, 526, 0, 1808, 1809, 3, 1055, 527, 0, 1809, 1810, 3, 1075, 537, 0, 1810, 1811, 3, 1061, 530, 0, 1811, 104, 1, 0, 0, 0, 1812, 1813, 3, 1059, 529, 0, 1813, 1814, 3, 1061, 530, 0, 1814, 1815, 3, 1075, 537, 0, 1815, 1816, 3, 1061, 530, 0, 1816, 1817, 3, 1091, 545, 0, 1817, 1819, 3, 1061, 530, 0, 1818, 1820, 5, 95, 0, 0, 1819, 1818, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 3, 1055, 527, 0, 1822, 1823, 3, 1061, 530, 0, 1823, 1824, 3, 1067, 533, 0, 1824, 1825, 3, 1053, 526, 0, 1825, 1826, 3, 1095, 547, 0, 1826, 1827, 3, 1069, 534, 0, 1827, 1828, 3, 1081, 540, 0, 1828, 1829, 3, 1087, 543, 0, 1829, 106, 1, 0, 0, 0, 1830, 1831, 3, 1057, 528, 0, 1831, 1832, 3, 1053, 526, 0, 1832, 1833, 3, 1089, 544, 0, 1833, 1834, 3, 1057, 528, 0, 1834, 1835, 3, 1053, 526, 0, 1835, 1836, 3, 1059, 529, 0, 1836, 1837, 3, 1061, 530, 0, 1837, 108, 1, 0, 0, 0, 1838, 1839, 3, 1083, 541, 0, 1839, 1840, 3, 1087, 543, 0, 1840, 1841, 3, 1061, 530, 0, 1841, 1842, 3, 1095, 547, 0, 1842, 1843, 3, 1061, 530, 0, 1843, 1844, 3, 1079, 539, 0, 1844, 1845, 3, 1091, 545, 0, 1845, 110, 1, 0, 0, 0, 1846, 1847, 3, 1057, 528, 0, 1847, 1848, 3, 1081, 540, 0, 1848, 1849, 3, 1079, 539, 0, 1849, 1850, 3, 1079, 539, 0, 1850, 1851, 3, 1061, 530, 0, 1851, 1852, 3, 1057, 528, 0, 1852, 1853, 3, 1091, 545, 0, 1853, 112, 1, 0, 0, 0, 1854, 1855, 3, 1059, 529, 0, 1855, 1856, 3, 1069, 534, 0, 1856, 1857, 3, 1089, 544, 0, 1857, 1858, 3, 1057, 528, 0, 1858, 1859, 3, 1081, 540, 0, 1859, 1860, 3, 1079, 539, 0, 1860, 1861, 3, 1079, 539, 0, 1861, 1862, 3, 1061, 530, 0, 1862, 1863, 3, 1057, 528, 0, 1863, 1864, 3, 1091, 545, 0, 1864, 114, 1, 0, 0, 0, 1865, 1866, 3, 1075, 537, 0, 1866, 1867, 3, 1081, 540, 0, 1867, 1868, 3, 1057, 528, 0, 1868, 1869, 3, 1053, 526, 0, 1869, 1870, 3, 1075, 537, 0, 1870, 116, 1, 0, 0, 0, 1871, 1872, 3, 1083, 541, 0, 1872, 1873, 3, 1087, 543, 0, 1873, 1874, 3, 1081, 540, 0, 1874, 1875, 3, 1071, 535, 0, 1875, 1876, 3, 1061, 530, 0, 1876, 1877, 3, 1057, 528, 0, 1877, 1878, 3, 1091, 545, 0, 1878, 118, 1, 0, 0, 0, 1879, 1880, 3, 1087, 543, 0, 1880, 1881, 3, 1093, 546, 0, 1881, 1882, 3, 1079, 539, 0, 1882, 1883, 3, 1091, 545, 0, 1883, 1884, 3, 1069, 534, 0, 1884, 1885, 3, 1077, 538, 0, 1885, 1886, 3, 1061, 530, 0, 1886, 120, 1, 0, 0, 0, 1887, 1888, 3, 1055, 527, 0, 1888, 1889, 3, 1087, 543, 0, 1889, 1890, 3, 1053, 526, 0, 1890, 1891, 3, 1079, 539, 0, 1891, 1892, 3, 1057, 528, 0, 1892, 1893, 3, 1067, 533, 0, 1893, 122, 1, 0, 0, 0, 1894, 1895, 3, 1091, 545, 0, 1895, 1896, 3, 1081, 540, 0, 1896, 1897, 3, 1073, 536, 0, 1897, 1898, 3, 1061, 530, 0, 1898, 1899, 3, 1079, 539, 0, 1899, 124, 1, 0, 0, 0, 1900, 1901, 3, 1067, 533, 0, 1901, 1902, 3, 1081, 540, 0, 1902, 1903, 3, 1089, 544, 0, 1903, 1904, 3, 1091, 545, 0, 1904, 126, 1, 0, 0, 0, 1905, 1906, 3, 1083, 541, 0, 1906, 1907, 3, 1081, 540, 0, 1907, 1908, 3, 1087, 543, 0, 1908, 1909, 3, 1091, 545, 0, 1909, 128, 1, 0, 0, 0, 1910, 1911, 3, 1089, 544, 0, 1911, 1912, 3, 1067, 533, 0, 1912, 1913, 3, 1081, 540, 0, 1913, 1914, 3, 1097, 548, 0, 1914, 130, 1, 0, 0, 0, 1915, 1916, 3, 1059, 529, 0, 1916, 1917, 3, 1061, 530, 0, 1917, 1918, 3, 1089, 544, 0, 1918, 1919, 3, 1057, 528, 0, 1919, 1920, 3, 1087, 543, 0, 1920, 1921, 3, 1069, 534, 0, 1921, 1922, 3, 1055, 527, 0, 1922, 1923, 3, 1061, 530, 0, 1923, 132, 1, 0, 0, 0, 1924, 1925, 3, 1093, 546, 0, 1925, 1926, 3, 1089, 544, 0, 1926, 1927, 3, 1061, 530, 0, 1927, 134, 1, 0, 0, 0, 1928, 1929, 3, 1069, 534, 0, 1929, 1930, 3, 1079, 539, 0, 1930, 1931, 3, 1091, 545, 0, 1931, 1932, 3, 1087, 543, 0, 1932, 1933, 3, 1081, 540, 0, 1933, 1934, 3, 1089, 544, 0, 1934, 1935, 3, 1083, 541, 0, 1935, 1936, 3, 1061, 530, 0, 1936, 1937, 3, 1057, 528, 0, 1937, 1938, 3, 1091, 545, 0, 1938, 136, 1, 0, 0, 0, 1939, 1940, 3, 1059, 529, 0, 1940, 1941, 3, 1061, 530, 0, 1941, 1942, 3, 1055, 527, 0, 1942, 1943, 3, 1093, 546, 0, 1943, 1944, 3, 1065, 532, 0, 1944, 138, 1, 0, 0, 0, 1945, 1946, 3, 1089, 544, 0, 1946, 1947, 3, 1061, 530, 0, 1947, 1948, 3, 1075, 537, 0, 1948, 1949, 3, 1061, 530, 0, 1949, 1950, 3, 1057, 528, 0, 1950, 1951, 3, 1091, 545, 0, 1951, 140, 1, 0, 0, 0, 1952, 1953, 3, 1063, 531, 0, 1953, 1954, 3, 1087, 543, 0, 1954, 1955, 3, 1081, 540, 0, 1955, 1956, 3, 1077, 538, 0, 1956, 142, 1, 0, 0, 0, 1957, 1958, 3, 1097, 548, 0, 1958, 1959, 3, 1067, 533, 0, 1959, 1960, 3, 1061, 530, 0, 1960, 1961, 3, 1087, 543, 0, 1961, 1962, 3, 1061, 530, 0, 1962, 144, 1, 0, 0, 0, 1963, 1964, 3, 1067, 533, 0, 1964, 1965, 3, 1053, 526, 0, 1965, 1966, 3, 1095, 547, 0, 1966, 1967, 3, 1069, 534, 0, 1967, 1968, 3, 1079, 539, 0, 1968, 1969, 3, 1065, 532, 0, 1969, 146, 1, 0, 0, 0, 1970, 1971, 3, 1081, 540, 0, 1971, 1972, 3, 1063, 531, 0, 1972, 1973, 3, 1063, 531, 0, 1973, 1974, 3, 1089, 544, 0, 1974, 1975, 3, 1061, 530, 0, 1975, 1976, 3, 1091, 545, 0, 1976, 148, 1, 0, 0, 0, 1977, 1978, 3, 1075, 537, 0, 1978, 1979, 3, 1069, 534, 0, 1979, 1980, 3, 1077, 538, 0, 1980, 1981, 3, 1069, 534, 0, 1981, 1982, 3, 1091, 545, 0, 1982, 150, 1, 0, 0, 0, 1983, 1984, 3, 1053, 526, 0, 1984, 1985, 3, 1089, 544, 0, 1985, 152, 1, 0, 0, 0, 1986, 1987, 3, 1087, 543, 0, 1987, 1988, 3, 1061, 530, 0, 1988, 1989, 3, 1091, 545, 0, 1989, 1990, 3, 1093, 546, 0, 1990, 1991, 3, 1087, 543, 0, 1991, 1992, 3, 1079, 539, 0, 1992, 1993, 3, 1089, 544, 0, 1993, 154, 1, 0, 0, 0, 1994, 1995, 3, 1087, 543, 0, 1995, 1996, 3, 1061, 530, 0, 1996, 1997, 3, 1091, 545, 0, 1997, 1998, 3, 1093, 546, 0, 1998, 1999, 3, 1087, 543, 0, 1999, 2000, 3, 1079, 539, 0, 2000, 2001, 3, 1069, 534, 0, 2001, 2002, 3, 1079, 539, 0, 2002, 2003, 3, 1065, 532, 0, 2003, 156, 1, 0, 0, 0, 2004, 2005, 3, 1057, 528, 0, 2005, 2006, 3, 1053, 526, 0, 2006, 2007, 3, 1089, 544, 0, 2007, 2008, 3, 1061, 530, 0, 2008, 158, 1, 0, 0, 0, 2009, 2010, 3, 1097, 548, 0, 2010, 2011, 3, 1067, 533, 0, 2011, 2012, 3, 1061, 530, 0, 2012, 2013, 3, 1079, 539, 0, 2013, 160, 1, 0, 0, 0, 2014, 2015, 3, 1091, 545, 0, 2015, 2016, 3, 1067, 533, 0, 2016, 2017, 3, 1061, 530, 0, 2017, 2018, 3, 1079, 539, 0, 2018, 162, 1, 0, 0, 0, 2019, 2020, 3, 1061, 530, 0, 2020, 2021, 3, 1075, 537, 0, 2021, 2022, 3, 1089, 544, 0, 2022, 2023, 3, 1061, 530, 0, 2023, 164, 1, 0, 0, 0, 2024, 2025, 3, 1061, 530, 0, 2025, 2026, 3, 1079, 539, 0, 2026, 2027, 3, 1059, 529, 0, 2027, 166, 1, 0, 0, 0, 2028, 2029, 3, 1059, 529, 0, 2029, 2030, 3, 1069, 534, 0, 2030, 2031, 3, 1089, 544, 0, 2031, 2032, 3, 1091, 545, 0, 2032, 2033, 3, 1069, 534, 0, 2033, 2034, 3, 1079, 539, 0, 2034, 2035, 3, 1057, 528, 0, 2035, 2036, 3, 1091, 545, 0, 2036, 168, 1, 0, 0, 0, 2037, 2038, 3, 1053, 526, 0, 2038, 2039, 3, 1075, 537, 0, 2039, 2040, 3, 1075, 537, 0, 2040, 170, 1, 0, 0, 0, 2041, 2042, 3, 1071, 535, 0, 2042, 2043, 3, 1081, 540, 0, 2043, 2044, 3, 1069, 534, 0, 2044, 2045, 3, 1079, 539, 0, 2045, 172, 1, 0, 0, 0, 2046, 2047, 3, 1075, 537, 0, 2047, 2048, 3, 1061, 530, 0, 2048, 2049, 3, 1063, 531, 0, 2049, 2050, 3, 1091, 545, 0, 2050, 174, 1, 0, 0, 0, 2051, 2052, 3, 1087, 543, 0, 2052, 2053, 3, 1069, 534, 0, 2053, 2054, 3, 1065, 532, 0, 2054, 2055, 3, 1067, 533, 0, 2055, 2056, 3, 1091, 545, 0, 2056, 176, 1, 0, 0, 0, 2057, 2058, 3, 1069, 534, 0, 2058, 2059, 3, 1079, 539, 0, 2059, 2060, 3, 1079, 539, 0, 2060, 2061, 3, 1061, 530, 0, 2061, 2062, 3, 1087, 543, 0, 2062, 178, 1, 0, 0, 0, 2063, 2064, 3, 1081, 540, 0, 2064, 2065, 3, 1093, 546, 0, 2065, 2066, 3, 1091, 545, 0, 2066, 2067, 3, 1061, 530, 0, 2067, 2068, 3, 1087, 543, 0, 2068, 180, 1, 0, 0, 0, 2069, 2070, 3, 1063, 531, 0, 2070, 2071, 3, 1093, 546, 0, 2071, 2072, 3, 1075, 537, 0, 2072, 2073, 3, 1075, 537, 0, 2073, 182, 1, 0, 0, 0, 2074, 2075, 3, 1057, 528, 0, 2075, 2076, 3, 1087, 543, 0, 2076, 2077, 3, 1081, 540, 0, 2077, 2078, 3, 1089, 544, 0, 2078, 2079, 3, 1089, 544, 0, 2079, 184, 1, 0, 0, 0, 2080, 2081, 3, 1081, 540, 0, 2081, 2082, 3, 1079, 539, 0, 2082, 186, 1, 0, 0, 0, 2083, 2084, 3, 1053, 526, 0, 2084, 2085, 3, 1089, 544, 0, 2085, 2086, 3, 1057, 528, 0, 2086, 188, 1, 0, 0, 0, 2087, 2088, 3, 1059, 529, 0, 2088, 2089, 3, 1061, 530, 0, 2089, 2090, 3, 1089, 544, 0, 2090, 2091, 3, 1057, 528, 0, 2091, 190, 1, 0, 0, 0, 2092, 2093, 3, 1055, 527, 0, 2093, 2094, 3, 1061, 530, 0, 2094, 2095, 3, 1065, 532, 0, 2095, 2096, 3, 1069, 534, 0, 2096, 2097, 3, 1079, 539, 0, 2097, 192, 1, 0, 0, 0, 2098, 2099, 3, 1059, 529, 0, 2099, 2100, 3, 1061, 530, 0, 2100, 2101, 3, 1057, 528, 0, 2101, 2102, 3, 1075, 537, 0, 2102, 2103, 3, 1053, 526, 0, 2103, 2104, 3, 1087, 543, 0, 2104, 2105, 3, 1061, 530, 0, 2105, 194, 1, 0, 0, 0, 2106, 2107, 3, 1057, 528, 0, 2107, 2108, 3, 1067, 533, 0, 2108, 2109, 3, 1053, 526, 0, 2109, 2110, 3, 1079, 539, 0, 2110, 2111, 3, 1065, 532, 0, 2111, 2112, 3, 1061, 530, 0, 2112, 196, 1, 0, 0, 0, 2113, 2114, 3, 1087, 543, 0, 2114, 2115, 3, 1061, 530, 0, 2115, 2116, 3, 1091, 545, 0, 2116, 2117, 3, 1087, 543, 0, 2117, 2118, 3, 1069, 534, 0, 2118, 2119, 3, 1061, 530, 0, 2119, 2120, 3, 1095, 547, 0, 2120, 2121, 3, 1061, 530, 0, 2121, 198, 1, 0, 0, 0, 2122, 2123, 3, 1059, 529, 0, 2123, 2124, 3, 1061, 530, 0, 2124, 2125, 3, 1075, 537, 0, 2125, 2126, 3, 1061, 530, 0, 2126, 2127, 3, 1091, 545, 0, 2127, 2128, 3, 1061, 530, 0, 2128, 200, 1, 0, 0, 0, 2129, 2130, 3, 1057, 528, 0, 2130, 2131, 3, 1081, 540, 0, 2131, 2132, 3, 1077, 538, 0, 2132, 2133, 3, 1077, 538, 0, 2133, 2134, 3, 1069, 534, 0, 2134, 2135, 3, 1091, 545, 0, 2135, 202, 1, 0, 0, 0, 2136, 2137, 3, 1087, 543, 0, 2137, 2138, 3, 1081, 540, 0, 2138, 2139, 3, 1075, 537, 0, 2139, 2140, 3, 1075, 537, 0, 2140, 2141, 3, 1055, 527, 0, 2141, 2142, 3, 1053, 526, 0, 2142, 2143, 3, 1057, 528, 0, 2143, 2144, 3, 1073, 536, 0, 2144, 204, 1, 0, 0, 0, 2145, 2146, 3, 1075, 537, 0, 2146, 2147, 3, 1081, 540, 0, 2147, 2148, 3, 1081, 540, 0, 2148, 2149, 3, 1083, 541, 0, 2149, 206, 1, 0, 0, 0, 2150, 2151, 3, 1097, 548, 0, 2151, 2152, 3, 1067, 533, 0, 2152, 2153, 3, 1069, 534, 0, 2153, 2154, 3, 1075, 537, 0, 2154, 2155, 3, 1061, 530, 0, 2155, 208, 1, 0, 0, 0, 2156, 2157, 3, 1069, 534, 0, 2157, 2158, 3, 1063, 531, 0, 2158, 210, 1, 0, 0, 0, 2159, 2160, 3, 1061, 530, 0, 2160, 2161, 3, 1075, 537, 0, 2161, 2162, 3, 1089, 544, 0, 2162, 2163, 3, 1069, 534, 0, 2163, 2164, 3, 1063, 531, 0, 2164, 212, 1, 0, 0, 0, 2165, 2166, 3, 1061, 530, 0, 2166, 2167, 3, 1075, 537, 0, 2167, 2168, 3, 1089, 544, 0, 2168, 2169, 3, 1061, 530, 0, 2169, 2170, 3, 1069, 534, 0, 2170, 2171, 3, 1063, 531, 0, 2171, 214, 1, 0, 0, 0, 2172, 2173, 3, 1057, 528, 0, 2173, 2174, 3, 1081, 540, 0, 2174, 2175, 3, 1079, 539, 0, 2175, 2176, 3, 1091, 545, 0, 2176, 2177, 3, 1069, 534, 0, 2177, 2178, 3, 1079, 539, 0, 2178, 2179, 3, 1093, 546, 0, 2179, 2180, 3, 1061, 530, 0, 2180, 216, 1, 0, 0, 0, 2181, 2182, 3, 1055, 527, 0, 2182, 2183, 3, 1087, 543, 0, 2183, 2184, 3, 1061, 530, 0, 2184, 2185, 3, 1053, 526, 0, 2185, 2186, 3, 1073, 536, 0, 2186, 218, 1, 0, 0, 0, 2187, 2188, 3, 1087, 543, 0, 2188, 2189, 3, 1061, 530, 0, 2189, 2190, 3, 1091, 545, 0, 2190, 2191, 3, 1093, 546, 0, 2191, 2192, 3, 1087, 543, 0, 2192, 2193, 3, 1079, 539, 0, 2193, 220, 1, 0, 0, 0, 2194, 2195, 3, 1091, 545, 0, 2195, 2196, 3, 1067, 533, 0, 2196, 2197, 3, 1087, 543, 0, 2197, 2198, 3, 1081, 540, 0, 2198, 2199, 3, 1097, 548, 0, 2199, 222, 1, 0, 0, 0, 2200, 2201, 3, 1075, 537, 0, 2201, 2202, 3, 1081, 540, 0, 2202, 2203, 3, 1065, 532, 0, 2203, 224, 1, 0, 0, 0, 2204, 2205, 3, 1057, 528, 0, 2205, 2206, 3, 1053, 526, 0, 2206, 2207, 3, 1075, 537, 0, 2207, 2208, 3, 1075, 537, 0, 2208, 226, 1, 0, 0, 0, 2209, 2210, 3, 1071, 535, 0, 2210, 2211, 3, 1053, 526, 0, 2211, 2212, 3, 1095, 547, 0, 2212, 2213, 3, 1053, 526, 0, 2213, 228, 1, 0, 0, 0, 2214, 2215, 3, 1071, 535, 0, 2215, 2216, 3, 1053, 526, 0, 2216, 2217, 3, 1095, 547, 0, 2217, 2218, 3, 1053, 526, 0, 2218, 2219, 3, 1089, 544, 0, 2219, 2220, 3, 1057, 528, 0, 2220, 2221, 3, 1087, 543, 0, 2221, 2222, 3, 1069, 534, 0, 2222, 2223, 3, 1083, 541, 0, 2223, 2224, 3, 1091, 545, 0, 2224, 230, 1, 0, 0, 0, 2225, 2226, 3, 1053, 526, 0, 2226, 2227, 3, 1057, 528, 0, 2227, 2228, 3, 1091, 545, 0, 2228, 2229, 3, 1069, 534, 0, 2229, 2230, 3, 1081, 540, 0, 2230, 2231, 3, 1079, 539, 0, 2231, 232, 1, 0, 0, 0, 2232, 2233, 3, 1053, 526, 0, 2233, 2234, 3, 1057, 528, 0, 2234, 2235, 3, 1091, 545, 0, 2235, 2236, 3, 1069, 534, 0, 2236, 2237, 3, 1081, 540, 0, 2237, 2238, 3, 1079, 539, 0, 2238, 2239, 3, 1089, 544, 0, 2239, 234, 1, 0, 0, 0, 2240, 2241, 3, 1057, 528, 0, 2241, 2242, 3, 1075, 537, 0, 2242, 2243, 3, 1081, 540, 0, 2243, 2244, 3, 1089, 544, 0, 2244, 2245, 3, 1061, 530, 0, 2245, 236, 1, 0, 0, 0, 2246, 2247, 3, 1079, 539, 0, 2247, 2248, 3, 1081, 540, 0, 2248, 2249, 3, 1059, 529, 0, 2249, 2250, 3, 1061, 530, 0, 2250, 238, 1, 0, 0, 0, 2251, 2252, 3, 1061, 530, 0, 2252, 2253, 3, 1095, 547, 0, 2253, 2254, 3, 1061, 530, 0, 2254, 2255, 3, 1079, 539, 0, 2255, 2256, 3, 1091, 545, 0, 2256, 2257, 3, 1089, 544, 0, 2257, 240, 1, 0, 0, 0, 2258, 2259, 3, 1067, 533, 0, 2259, 2260, 3, 1061, 530, 0, 2260, 2261, 3, 1053, 526, 0, 2261, 2262, 3, 1059, 529, 0, 2262, 242, 1, 0, 0, 0, 2263, 2264, 3, 1091, 545, 0, 2264, 2265, 3, 1053, 526, 0, 2265, 2266, 3, 1069, 534, 0, 2266, 2267, 3, 1075, 537, 0, 2267, 244, 1, 0, 0, 0, 2268, 2269, 3, 1063, 531, 0, 2269, 2270, 3, 1069, 534, 0, 2270, 2271, 3, 1079, 539, 0, 2271, 2272, 3, 1059, 529, 0, 2272, 246, 1, 0, 0, 0, 2273, 2274, 3, 1089, 544, 0, 2274, 2275, 3, 1081, 540, 0, 2275, 2276, 3, 1087, 543, 0, 2276, 2277, 3, 1091, 545, 0, 2277, 248, 1, 0, 0, 0, 2278, 2279, 3, 1093, 546, 0, 2279, 2280, 3, 1079, 539, 0, 2280, 2281, 3, 1069, 534, 0, 2281, 2282, 3, 1081, 540, 0, 2282, 2283, 3, 1079, 539, 0, 2283, 250, 1, 0, 0, 0, 2284, 2285, 3, 1069, 534, 0, 2285, 2286, 3, 1079, 539, 0, 2286, 2287, 3, 1091, 545, 0, 2287, 2288, 3, 1061, 530, 0, 2288, 2289, 3, 1087, 543, 0, 2289, 2290, 3, 1089, 544, 0, 2290, 2291, 3, 1061, 530, 0, 2291, 2292, 3, 1057, 528, 0, 2292, 2293, 3, 1091, 545, 0, 2293, 252, 1, 0, 0, 0, 2294, 2295, 3, 1089, 544, 0, 2295, 2296, 3, 1093, 546, 0, 2296, 2297, 3, 1055, 527, 0, 2297, 2298, 3, 1091, 545, 0, 2298, 2299, 3, 1087, 543, 0, 2299, 2300, 3, 1053, 526, 0, 2300, 2301, 3, 1057, 528, 0, 2301, 2302, 3, 1091, 545, 0, 2302, 254, 1, 0, 0, 0, 2303, 2304, 3, 1057, 528, 0, 2304, 2305, 3, 1081, 540, 0, 2305, 2306, 3, 1079, 539, 0, 2306, 2307, 3, 1091, 545, 0, 2307, 2308, 3, 1053, 526, 0, 2308, 2309, 3, 1069, 534, 0, 2309, 2310, 3, 1079, 539, 0, 2310, 2311, 3, 1089, 544, 0, 2311, 256, 1, 0, 0, 0, 2312, 2313, 3, 1053, 526, 0, 2313, 2314, 3, 1095, 547, 0, 2314, 2315, 3, 1061, 530, 0, 2315, 2316, 3, 1087, 543, 0, 2316, 2317, 3, 1053, 526, 0, 2317, 2318, 3, 1065, 532, 0, 2318, 2319, 3, 1061, 530, 0, 2319, 258, 1, 0, 0, 0, 2320, 2321, 3, 1077, 538, 0, 2321, 2322, 3, 1069, 534, 0, 2322, 2323, 3, 1079, 539, 0, 2323, 2324, 3, 1069, 534, 0, 2324, 2325, 3, 1077, 538, 0, 2325, 2326, 3, 1093, 546, 0, 2326, 2327, 3, 1077, 538, 0, 2327, 260, 1, 0, 0, 0, 2328, 2329, 3, 1077, 538, 0, 2329, 2330, 3, 1053, 526, 0, 2330, 2331, 3, 1099, 549, 0, 2331, 2332, 3, 1069, 534, 0, 2332, 2333, 3, 1077, 538, 0, 2333, 2334, 3, 1093, 546, 0, 2334, 2335, 3, 1077, 538, 0, 2335, 262, 1, 0, 0, 0, 2336, 2337, 3, 1075, 537, 0, 2337, 2338, 3, 1069, 534, 0, 2338, 2339, 3, 1089, 544, 0, 2339, 2340, 3, 1091, 545, 0, 2340, 264, 1, 0, 0, 0, 2341, 2342, 3, 1087, 543, 0, 2342, 2343, 3, 1061, 530, 0, 2343, 2344, 3, 1077, 538, 0, 2344, 2345, 3, 1081, 540, 0, 2345, 2346, 3, 1095, 547, 0, 2346, 2347, 3, 1061, 530, 0, 2347, 266, 1, 0, 0, 0, 2348, 2349, 3, 1061, 530, 0, 2349, 2350, 3, 1085, 542, 0, 2350, 2351, 3, 1093, 546, 0, 2351, 2352, 3, 1053, 526, 0, 2352, 2353, 3, 1075, 537, 0, 2353, 2354, 3, 1089, 544, 0, 2354, 268, 1, 0, 0, 0, 2355, 2356, 3, 1069, 534, 0, 2356, 2357, 3, 1079, 539, 0, 2357, 2358, 3, 1063, 531, 0, 2358, 2359, 3, 1081, 540, 0, 2359, 270, 1, 0, 0, 0, 2360, 2361, 3, 1097, 548, 0, 2361, 2362, 3, 1053, 526, 0, 2362, 2363, 3, 1087, 543, 0, 2363, 2364, 3, 1079, 539, 0, 2364, 2365, 3, 1069, 534, 0, 2365, 2366, 3, 1079, 539, 0, 2366, 2367, 3, 1065, 532, 0, 2367, 272, 1, 0, 0, 0, 2368, 2369, 3, 1091, 545, 0, 2369, 2370, 3, 1087, 543, 0, 2370, 2371, 3, 1053, 526, 0, 2371, 2372, 3, 1057, 528, 0, 2372, 2373, 3, 1061, 530, 0, 2373, 274, 1, 0, 0, 0, 2374, 2375, 3, 1057, 528, 0, 2375, 2376, 3, 1087, 543, 0, 2376, 2377, 3, 1069, 534, 0, 2377, 2378, 3, 1091, 545, 0, 2378, 2379, 3, 1069, 534, 0, 2379, 2380, 3, 1057, 528, 0, 2380, 2381, 3, 1053, 526, 0, 2381, 2382, 3, 1075, 537, 0, 2382, 276, 1, 0, 0, 0, 2383, 2384, 3, 1097, 548, 0, 2384, 2385, 3, 1069, 534, 0, 2385, 2386, 3, 1091, 545, 0, 2386, 2387, 3, 1067, 533, 0, 2387, 278, 1, 0, 0, 0, 2388, 2389, 3, 1061, 530, 0, 2389, 2390, 3, 1077, 538, 0, 2390, 2391, 3, 1083, 541, 0, 2391, 2392, 3, 1091, 545, 0, 2392, 2393, 3, 1101, 550, 0, 2393, 280, 1, 0, 0, 0, 2394, 2395, 3, 1081, 540, 0, 2395, 2396, 3, 1055, 527, 0, 2396, 2397, 3, 1071, 535, 0, 2397, 2398, 3, 1061, 530, 0, 2398, 2399, 3, 1057, 528, 0, 2399, 2400, 3, 1091, 545, 0, 2400, 282, 1, 0, 0, 0, 2401, 2402, 3, 1081, 540, 0, 2402, 2403, 3, 1055, 527, 0, 2403, 2404, 3, 1071, 535, 0, 2404, 2405, 3, 1061, 530, 0, 2405, 2406, 3, 1057, 528, 0, 2406, 2407, 3, 1091, 545, 0, 2407, 2408, 3, 1089, 544, 0, 2408, 284, 1, 0, 0, 0, 2409, 2410, 3, 1083, 541, 0, 2410, 2411, 3, 1053, 526, 0, 2411, 2412, 3, 1065, 532, 0, 2412, 2413, 3, 1061, 530, 0, 2413, 2414, 3, 1089, 544, 0, 2414, 286, 1, 0, 0, 0, 2415, 2416, 3, 1075, 537, 0, 2416, 2417, 3, 1053, 526, 0, 2417, 2418, 3, 1101, 550, 0, 2418, 2419, 3, 1081, 540, 0, 2419, 2420, 3, 1093, 546, 0, 2420, 2421, 3, 1091, 545, 0, 2421, 2422, 3, 1089, 544, 0, 2422, 288, 1, 0, 0, 0, 2423, 2424, 3, 1089, 544, 0, 2424, 2425, 3, 1079, 539, 0, 2425, 2426, 3, 1069, 534, 0, 2426, 2427, 3, 1083, 541, 0, 2427, 2428, 3, 1083, 541, 0, 2428, 2429, 3, 1061, 530, 0, 2429, 2430, 3, 1091, 545, 0, 2430, 2431, 3, 1089, 544, 0, 2431, 290, 1, 0, 0, 0, 2432, 2433, 3, 1079, 539, 0, 2433, 2434, 3, 1081, 540, 0, 2434, 2435, 3, 1091, 545, 0, 2435, 2436, 3, 1061, 530, 0, 2436, 2437, 3, 1055, 527, 0, 2437, 2438, 3, 1081, 540, 0, 2438, 2439, 3, 1081, 540, 0, 2439, 2440, 3, 1073, 536, 0, 2440, 2441, 3, 1089, 544, 0, 2441, 292, 1, 0, 0, 0, 2442, 2443, 3, 1083, 541, 0, 2443, 2444, 3, 1075, 537, 0, 2444, 2445, 3, 1053, 526, 0, 2445, 2446, 3, 1057, 528, 0, 2446, 2447, 3, 1061, 530, 0, 2447, 2448, 3, 1067, 533, 0, 2448, 2449, 3, 1081, 540, 0, 2449, 2450, 3, 1075, 537, 0, 2450, 2451, 3, 1059, 529, 0, 2451, 2452, 3, 1061, 530, 0, 2452, 2453, 3, 1087, 543, 0, 2453, 294, 1, 0, 0, 0, 2454, 2455, 3, 1089, 544, 0, 2455, 2456, 3, 1079, 539, 0, 2456, 2457, 3, 1069, 534, 0, 2457, 2458, 3, 1083, 541, 0, 2458, 2459, 3, 1083, 541, 0, 2459, 2460, 3, 1061, 530, 0, 2460, 2461, 3, 1091, 545, 0, 2461, 2462, 3, 1057, 528, 0, 2462, 2463, 3, 1053, 526, 0, 2463, 2464, 3, 1075, 537, 0, 2464, 2465, 3, 1075, 537, 0, 2465, 296, 1, 0, 0, 0, 2466, 2467, 3, 1075, 537, 0, 2467, 2468, 3, 1053, 526, 0, 2468, 2469, 3, 1101, 550, 0, 2469, 2470, 3, 1081, 540, 0, 2470, 2471, 3, 1093, 546, 0, 2471, 2472, 3, 1091, 545, 0, 2472, 2473, 3, 1065, 532, 0, 2473, 2474, 3, 1087, 543, 0, 2474, 2475, 3, 1069, 534, 0, 2475, 2476, 3, 1059, 529, 0, 2476, 298, 1, 0, 0, 0, 2477, 2478, 3, 1059, 529, 0, 2478, 2479, 3, 1053, 526, 0, 2479, 2480, 3, 1091, 545, 0, 2480, 2481, 3, 1053, 526, 0, 2481, 2482, 3, 1065, 532, 0, 2482, 2483, 3, 1087, 543, 0, 2483, 2484, 3, 1069, 534, 0, 2484, 2485, 3, 1059, 529, 0, 2485, 300, 1, 0, 0, 0, 2486, 2487, 3, 1059, 529, 0, 2487, 2488, 3, 1053, 526, 0, 2488, 2489, 3, 1091, 545, 0, 2489, 2490, 3, 1053, 526, 0, 2490, 2491, 3, 1095, 547, 0, 2491, 2492, 3, 1069, 534, 0, 2492, 2493, 3, 1061, 530, 0, 2493, 2494, 3, 1097, 548, 0, 2494, 302, 1, 0, 0, 0, 2495, 2496, 3, 1075, 537, 0, 2496, 2497, 3, 1069, 534, 0, 2497, 2498, 3, 1089, 544, 0, 2498, 2499, 3, 1091, 545, 0, 2499, 2500, 3, 1095, 547, 0, 2500, 2501, 3, 1069, 534, 0, 2501, 2502, 3, 1061, 530, 0, 2502, 2503, 3, 1097, 548, 0, 2503, 304, 1, 0, 0, 0, 2504, 2505, 3, 1065, 532, 0, 2505, 2506, 3, 1053, 526, 0, 2506, 2507, 3, 1075, 537, 0, 2507, 2508, 3, 1075, 537, 0, 2508, 2509, 3, 1061, 530, 0, 2509, 2510, 3, 1087, 543, 0, 2510, 2511, 3, 1101, 550, 0, 2511, 306, 1, 0, 0, 0, 2512, 2513, 3, 1057, 528, 0, 2513, 2514, 3, 1081, 540, 0, 2514, 2515, 3, 1079, 539, 0, 2515, 2516, 3, 1091, 545, 0, 2516, 2517, 3, 1053, 526, 0, 2517, 2518, 3, 1069, 534, 0, 2518, 2519, 3, 1079, 539, 0, 2519, 2520, 3, 1061, 530, 0, 2520, 2521, 3, 1087, 543, 0, 2521, 308, 1, 0, 0, 0, 2522, 2523, 3, 1087, 543, 0, 2523, 2524, 3, 1081, 540, 0, 2524, 2525, 3, 1097, 548, 0, 2525, 310, 1, 0, 0, 0, 2526, 2527, 3, 1069, 534, 0, 2527, 2528, 3, 1091, 545, 0, 2528, 2529, 3, 1061, 530, 0, 2529, 2530, 3, 1077, 538, 0, 2530, 312, 1, 0, 0, 0, 2531, 2532, 3, 1057, 528, 0, 2532, 2533, 3, 1081, 540, 0, 2533, 2534, 3, 1079, 539, 0, 2534, 2535, 3, 1091, 545, 0, 2535, 2536, 3, 1087, 543, 0, 2536, 2537, 3, 1081, 540, 0, 2537, 2538, 3, 1075, 537, 0, 2538, 2539, 3, 1055, 527, 0, 2539, 2540, 3, 1053, 526, 0, 2540, 2541, 3, 1087, 543, 0, 2541, 314, 1, 0, 0, 0, 2542, 2543, 3, 1089, 544, 0, 2543, 2544, 3, 1061, 530, 0, 2544, 2545, 3, 1053, 526, 0, 2545, 2546, 3, 1087, 543, 0, 2546, 2547, 3, 1057, 528, 0, 2547, 2548, 3, 1067, 533, 0, 2548, 316, 1, 0, 0, 0, 2549, 2550, 3, 1089, 544, 0, 2550, 2551, 3, 1061, 530, 0, 2551, 2552, 3, 1053, 526, 0, 2552, 2553, 3, 1087, 543, 0, 2553, 2554, 3, 1057, 528, 0, 2554, 2555, 3, 1067, 533, 0, 2555, 2556, 3, 1055, 527, 0, 2556, 2557, 3, 1053, 526, 0, 2557, 2558, 3, 1087, 543, 0, 2558, 318, 1, 0, 0, 0, 2559, 2560, 3, 1079, 539, 0, 2560, 2561, 3, 1053, 526, 0, 2561, 2562, 3, 1095, 547, 0, 2562, 2563, 3, 1069, 534, 0, 2563, 2564, 3, 1065, 532, 0, 2564, 2565, 3, 1053, 526, 0, 2565, 2566, 3, 1091, 545, 0, 2566, 2567, 3, 1069, 534, 0, 2567, 2568, 3, 1081, 540, 0, 2568, 2569, 3, 1079, 539, 0, 2569, 2570, 3, 1075, 537, 0, 2570, 2571, 3, 1069, 534, 0, 2571, 2572, 3, 1089, 544, 0, 2572, 2573, 3, 1091, 545, 0, 2573, 320, 1, 0, 0, 0, 2574, 2575, 3, 1053, 526, 0, 2575, 2576, 3, 1057, 528, 0, 2576, 2577, 3, 1091, 545, 0, 2577, 2578, 3, 1069, 534, 0, 2578, 2579, 3, 1081, 540, 0, 2579, 2580, 3, 1079, 539, 0, 2580, 2581, 3, 1055, 527, 0, 2581, 2582, 3, 1093, 546, 0, 2582, 2583, 3, 1091, 545, 0, 2583, 2584, 3, 1091, 545, 0, 2584, 2585, 3, 1081, 540, 0, 2585, 2586, 3, 1079, 539, 0, 2586, 322, 1, 0, 0, 0, 2587, 2588, 3, 1075, 537, 0, 2588, 2589, 3, 1069, 534, 0, 2589, 2590, 3, 1079, 539, 0, 2590, 2591, 3, 1073, 536, 0, 2591, 2592, 3, 1055, 527, 0, 2592, 2593, 3, 1093, 546, 0, 2593, 2594, 3, 1091, 545, 0, 2594, 2595, 3, 1091, 545, 0, 2595, 2596, 3, 1081, 540, 0, 2596, 2597, 3, 1079, 539, 0, 2597, 324, 1, 0, 0, 0, 2598, 2599, 3, 1055, 527, 0, 2599, 2600, 3, 1093, 546, 0, 2600, 2601, 3, 1091, 545, 0, 2601, 2602, 3, 1091, 545, 0, 2602, 2603, 3, 1081, 540, 0, 2603, 2604, 3, 1079, 539, 0, 2604, 326, 1, 0, 0, 0, 2605, 2606, 3, 1091, 545, 0, 2606, 2607, 3, 1069, 534, 0, 2607, 2608, 3, 1091, 545, 0, 2608, 2609, 3, 1075, 537, 0, 2609, 2610, 3, 1061, 530, 0, 2610, 328, 1, 0, 0, 0, 2611, 2612, 3, 1059, 529, 0, 2612, 2613, 3, 1101, 550, 0, 2613, 2614, 3, 1079, 539, 0, 2614, 2615, 3, 1053, 526, 0, 2615, 2616, 3, 1077, 538, 0, 2616, 2617, 3, 1069, 534, 0, 2617, 2618, 3, 1057, 528, 0, 2618, 2619, 3, 1091, 545, 0, 2619, 2620, 3, 1061, 530, 0, 2620, 2621, 3, 1099, 549, 0, 2621, 2622, 3, 1091, 545, 0, 2622, 330, 1, 0, 0, 0, 2623, 2624, 3, 1059, 529, 0, 2624, 2625, 3, 1101, 550, 0, 2625, 2626, 3, 1079, 539, 0, 2626, 2627, 3, 1053, 526, 0, 2627, 2628, 3, 1077, 538, 0, 2628, 2629, 3, 1069, 534, 0, 2629, 2630, 3, 1057, 528, 0, 2630, 332, 1, 0, 0, 0, 2631, 2632, 3, 1089, 544, 0, 2632, 2633, 3, 1091, 545, 0, 2633, 2634, 3, 1053, 526, 0, 2634, 2635, 3, 1091, 545, 0, 2635, 2636, 3, 1069, 534, 0, 2636, 2637, 3, 1057, 528, 0, 2637, 2638, 3, 1091, 545, 0, 2638, 2639, 3, 1061, 530, 0, 2639, 2640, 3, 1099, 549, 0, 2640, 2641, 3, 1091, 545, 0, 2641, 334, 1, 0, 0, 0, 2642, 2643, 3, 1075, 537, 0, 2643, 2644, 3, 1053, 526, 0, 2644, 2645, 3, 1055, 527, 0, 2645, 2646, 3, 1061, 530, 0, 2646, 2647, 3, 1075, 537, 0, 2647, 336, 1, 0, 0, 0, 2648, 2649, 3, 1091, 545, 0, 2649, 2650, 3, 1061, 530, 0, 2650, 2651, 3, 1099, 549, 0, 2651, 2652, 3, 1091, 545, 0, 2652, 2653, 3, 1055, 527, 0, 2653, 2654, 3, 1081, 540, 0, 2654, 2655, 3, 1099, 549, 0, 2655, 338, 1, 0, 0, 0, 2656, 2657, 3, 1091, 545, 0, 2657, 2658, 3, 1061, 530, 0, 2658, 2659, 3, 1099, 549, 0, 2659, 2660, 3, 1091, 545, 0, 2660, 2661, 3, 1053, 526, 0, 2661, 2662, 3, 1087, 543, 0, 2662, 2663, 3, 1061, 530, 0, 2663, 2664, 3, 1053, 526, 0, 2664, 340, 1, 0, 0, 0, 2665, 2666, 3, 1059, 529, 0, 2666, 2667, 3, 1053, 526, 0, 2667, 2668, 3, 1091, 545, 0, 2668, 2669, 3, 1061, 530, 0, 2669, 2670, 3, 1083, 541, 0, 2670, 2671, 3, 1069, 534, 0, 2671, 2672, 3, 1057, 528, 0, 2672, 2673, 3, 1073, 536, 0, 2673, 2674, 3, 1061, 530, 0, 2674, 2675, 3, 1087, 543, 0, 2675, 342, 1, 0, 0, 0, 2676, 2677, 3, 1087, 543, 0, 2677, 2678, 3, 1053, 526, 0, 2678, 2679, 3, 1059, 529, 0, 2679, 2680, 3, 1069, 534, 0, 2680, 2681, 3, 1081, 540, 0, 2681, 2682, 3, 1055, 527, 0, 2682, 2683, 3, 1093, 546, 0, 2683, 2684, 3, 1091, 545, 0, 2684, 2685, 3, 1091, 545, 0, 2685, 2686, 3, 1081, 540, 0, 2686, 2687, 3, 1079, 539, 0, 2687, 2688, 3, 1089, 544, 0, 2688, 344, 1, 0, 0, 0, 2689, 2690, 3, 1059, 529, 0, 2690, 2691, 3, 1087, 543, 0, 2691, 2692, 3, 1081, 540, 0, 2692, 2693, 3, 1083, 541, 0, 2693, 2694, 3, 1059, 529, 0, 2694, 2695, 3, 1081, 540, 0, 2695, 2696, 3, 1097, 548, 0, 2696, 2697, 3, 1079, 539, 0, 2697, 346, 1, 0, 0, 0, 2698, 2699, 3, 1057, 528, 0, 2699, 2700, 3, 1081, 540, 0, 2700, 2701, 3, 1077, 538, 0, 2701, 2702, 3, 1055, 527, 0, 2702, 2703, 3, 1081, 540, 0, 2703, 2704, 3, 1055, 527, 0, 2704, 2705, 3, 1081, 540, 0, 2705, 2706, 3, 1099, 549, 0, 2706, 348, 1, 0, 0, 0, 2707, 2708, 3, 1057, 528, 0, 2708, 2709, 3, 1067, 533, 0, 2709, 2710, 3, 1061, 530, 0, 2710, 2711, 3, 1057, 528, 0, 2711, 2712, 3, 1073, 536, 0, 2712, 2713, 3, 1055, 527, 0, 2713, 2714, 3, 1081, 540, 0, 2714, 2715, 3, 1099, 549, 0, 2715, 350, 1, 0, 0, 0, 2716, 2717, 3, 1087, 543, 0, 2717, 2718, 3, 1061, 530, 0, 2718, 2719, 3, 1063, 531, 0, 2719, 2720, 3, 1061, 530, 0, 2720, 2721, 3, 1087, 543, 0, 2721, 2722, 3, 1061, 530, 0, 2722, 2723, 3, 1079, 539, 0, 2723, 2724, 3, 1057, 528, 0, 2724, 2725, 3, 1061, 530, 0, 2725, 2726, 3, 1089, 544, 0, 2726, 2727, 3, 1061, 530, 0, 2727, 2728, 3, 1075, 537, 0, 2728, 2729, 3, 1061, 530, 0, 2729, 2730, 3, 1057, 528, 0, 2730, 2731, 3, 1091, 545, 0, 2731, 2732, 3, 1081, 540, 0, 2732, 2733, 3, 1087, 543, 0, 2733, 352, 1, 0, 0, 0, 2734, 2735, 3, 1069, 534, 0, 2735, 2736, 3, 1079, 539, 0, 2736, 2737, 3, 1083, 541, 0, 2737, 2738, 3, 1093, 546, 0, 2738, 2739, 3, 1091, 545, 0, 2739, 2740, 3, 1087, 543, 0, 2740, 2741, 3, 1061, 530, 0, 2741, 2742, 3, 1063, 531, 0, 2742, 2743, 3, 1061, 530, 0, 2743, 2744, 3, 1087, 543, 0, 2744, 2745, 3, 1061, 530, 0, 2745, 2746, 3, 1079, 539, 0, 2746, 2747, 3, 1057, 528, 0, 2747, 2748, 3, 1061, 530, 0, 2748, 2749, 3, 1089, 544, 0, 2749, 2750, 3, 1061, 530, 0, 2750, 2751, 3, 1091, 545, 0, 2751, 2752, 3, 1089, 544, 0, 2752, 2753, 3, 1061, 530, 0, 2753, 2754, 3, 1075, 537, 0, 2754, 2755, 3, 1061, 530, 0, 2755, 2756, 3, 1057, 528, 0, 2756, 2757, 3, 1091, 545, 0, 2757, 2758, 3, 1081, 540, 0, 2758, 2759, 3, 1087, 543, 0, 2759, 354, 1, 0, 0, 0, 2760, 2761, 3, 1063, 531, 0, 2761, 2762, 3, 1069, 534, 0, 2762, 2763, 3, 1075, 537, 0, 2763, 2764, 3, 1061, 530, 0, 2764, 2765, 3, 1069, 534, 0, 2765, 2766, 3, 1079, 539, 0, 2766, 2767, 3, 1083, 541, 0, 2767, 2768, 3, 1093, 546, 0, 2768, 2769, 3, 1091, 545, 0, 2769, 356, 1, 0, 0, 0, 2770, 2771, 3, 1069, 534, 0, 2771, 2772, 3, 1077, 538, 0, 2772, 2773, 3, 1053, 526, 0, 2773, 2774, 3, 1065, 532, 0, 2774, 2775, 3, 1061, 530, 0, 2775, 2776, 3, 1069, 534, 0, 2776, 2777, 3, 1079, 539, 0, 2777, 2778, 3, 1083, 541, 0, 2778, 2779, 3, 1093, 546, 0, 2779, 2780, 3, 1091, 545, 0, 2780, 358, 1, 0, 0, 0, 2781, 2782, 3, 1057, 528, 0, 2782, 2783, 3, 1093, 546, 0, 2783, 2784, 3, 1089, 544, 0, 2784, 2785, 3, 1091, 545, 0, 2785, 2786, 3, 1081, 540, 0, 2786, 2787, 3, 1077, 538, 0, 2787, 2788, 3, 1097, 548, 0, 2788, 2789, 3, 1069, 534, 0, 2789, 2790, 3, 1059, 529, 0, 2790, 2791, 3, 1065, 532, 0, 2791, 2792, 3, 1061, 530, 0, 2792, 2793, 3, 1091, 545, 0, 2793, 360, 1, 0, 0, 0, 2794, 2795, 3, 1091, 545, 0, 2795, 2796, 3, 1061, 530, 0, 2796, 2797, 3, 1099, 549, 0, 2797, 2798, 3, 1091, 545, 0, 2798, 2799, 3, 1063, 531, 0, 2799, 2800, 3, 1069, 534, 0, 2800, 2801, 3, 1075, 537, 0, 2801, 2802, 3, 1091, 545, 0, 2802, 2803, 3, 1061, 530, 0, 2803, 2804, 3, 1087, 543, 0, 2804, 362, 1, 0, 0, 0, 2805, 2806, 3, 1079, 539, 0, 2806, 2807, 3, 1093, 546, 0, 2807, 2808, 3, 1077, 538, 0, 2808, 2809, 3, 1055, 527, 0, 2809, 2810, 3, 1061, 530, 0, 2810, 2811, 3, 1087, 543, 0, 2811, 2812, 3, 1063, 531, 0, 2812, 2813, 3, 1069, 534, 0, 2813, 2814, 3, 1075, 537, 0, 2814, 2815, 3, 1091, 545, 0, 2815, 2816, 3, 1061, 530, 0, 2816, 2817, 3, 1087, 543, 0, 2817, 364, 1, 0, 0, 0, 2818, 2819, 3, 1059, 529, 0, 2819, 2820, 3, 1087, 543, 0, 2820, 2821, 3, 1081, 540, 0, 2821, 2822, 3, 1083, 541, 0, 2822, 2823, 3, 1059, 529, 0, 2823, 2824, 3, 1081, 540, 0, 2824, 2825, 3, 1097, 548, 0, 2825, 2826, 3, 1079, 539, 0, 2826, 2827, 3, 1063, 531, 0, 2827, 2828, 3, 1069, 534, 0, 2828, 2829, 3, 1075, 537, 0, 2829, 2830, 3, 1091, 545, 0, 2830, 2831, 3, 1061, 530, 0, 2831, 2832, 3, 1087, 543, 0, 2832, 366, 1, 0, 0, 0, 2833, 2834, 3, 1059, 529, 0, 2834, 2835, 3, 1053, 526, 0, 2835, 2836, 3, 1091, 545, 0, 2836, 2837, 3, 1061, 530, 0, 2837, 2838, 3, 1063, 531, 0, 2838, 2839, 3, 1069, 534, 0, 2839, 2840, 3, 1075, 537, 0, 2840, 2841, 3, 1091, 545, 0, 2841, 2842, 3, 1061, 530, 0, 2842, 2843, 3, 1087, 543, 0, 2843, 368, 1, 0, 0, 0, 2844, 2845, 3, 1063, 531, 0, 2845, 2846, 3, 1069, 534, 0, 2846, 2847, 3, 1075, 537, 0, 2847, 2848, 3, 1091, 545, 0, 2848, 2849, 3, 1061, 530, 0, 2849, 2850, 3, 1087, 543, 0, 2850, 370, 1, 0, 0, 0, 2851, 2852, 3, 1097, 548, 0, 2852, 2853, 3, 1069, 534, 0, 2853, 2854, 3, 1059, 529, 0, 2854, 2855, 3, 1065, 532, 0, 2855, 2856, 3, 1061, 530, 0, 2856, 2857, 3, 1091, 545, 0, 2857, 372, 1, 0, 0, 0, 2858, 2859, 3, 1097, 548, 0, 2859, 2860, 3, 1069, 534, 0, 2860, 2861, 3, 1059, 529, 0, 2861, 2862, 3, 1065, 532, 0, 2862, 2863, 3, 1061, 530, 0, 2863, 2864, 3, 1091, 545, 0, 2864, 2865, 3, 1089, 544, 0, 2865, 374, 1, 0, 0, 0, 2866, 2867, 3, 1057, 528, 0, 2867, 2868, 3, 1053, 526, 0, 2868, 2869, 3, 1083, 541, 0, 2869, 2870, 3, 1091, 545, 0, 2870, 2871, 3, 1069, 534, 0, 2871, 2872, 3, 1081, 540, 0, 2872, 2873, 3, 1079, 539, 0, 2873, 376, 1, 0, 0, 0, 2874, 2875, 3, 1069, 534, 0, 2875, 2876, 3, 1057, 528, 0, 2876, 2877, 3, 1081, 540, 0, 2877, 2878, 3, 1079, 539, 0, 2878, 378, 1, 0, 0, 0, 2879, 2880, 3, 1091, 545, 0, 2880, 2881, 3, 1081, 540, 0, 2881, 2882, 3, 1081, 540, 0, 2882, 2883, 3, 1075, 537, 0, 2883, 2884, 3, 1091, 545, 0, 2884, 2885, 3, 1069, 534, 0, 2885, 2886, 3, 1083, 541, 0, 2886, 380, 1, 0, 0, 0, 2887, 2888, 3, 1059, 529, 0, 2888, 2889, 3, 1053, 526, 0, 2889, 2890, 3, 1091, 545, 0, 2890, 2891, 3, 1053, 526, 0, 2891, 2892, 3, 1089, 544, 0, 2892, 2893, 3, 1081, 540, 0, 2893, 2894, 3, 1093, 546, 0, 2894, 2895, 3, 1087, 543, 0, 2895, 2896, 3, 1057, 528, 0, 2896, 2897, 3, 1061, 530, 0, 2897, 382, 1, 0, 0, 0, 2898, 2899, 3, 1089, 544, 0, 2899, 2900, 3, 1081, 540, 0, 2900, 2901, 3, 1093, 546, 0, 2901, 2902, 3, 1087, 543, 0, 2902, 2903, 3, 1057, 528, 0, 2903, 2904, 3, 1061, 530, 0, 2904, 384, 1, 0, 0, 0, 2905, 2906, 3, 1089, 544, 0, 2906, 2907, 3, 1061, 530, 0, 2907, 2908, 3, 1075, 537, 0, 2908, 2909, 3, 1061, 530, 0, 2909, 2910, 3, 1057, 528, 0, 2910, 2911, 3, 1091, 545, 0, 2911, 2912, 3, 1069, 534, 0, 2912, 2913, 3, 1081, 540, 0, 2913, 2914, 3, 1079, 539, 0, 2914, 386, 1, 0, 0, 0, 2915, 2916, 3, 1063, 531, 0, 2916, 2917, 3, 1081, 540, 0, 2917, 2918, 3, 1081, 540, 0, 2918, 2919, 3, 1091, 545, 0, 2919, 2920, 3, 1061, 530, 0, 2920, 2921, 3, 1087, 543, 0, 2921, 388, 1, 0, 0, 0, 2922, 2923, 3, 1067, 533, 0, 2923, 2924, 3, 1061, 530, 0, 2924, 2925, 3, 1053, 526, 0, 2925, 2926, 3, 1059, 529, 0, 2926, 2927, 3, 1061, 530, 0, 2927, 2928, 3, 1087, 543, 0, 2928, 390, 1, 0, 0, 0, 2929, 2930, 3, 1057, 528, 0, 2930, 2931, 3, 1081, 540, 0, 2931, 2932, 3, 1079, 539, 0, 2932, 2933, 3, 1091, 545, 0, 2933, 2934, 3, 1061, 530, 0, 2934, 2935, 3, 1079, 539, 0, 2935, 2936, 3, 1091, 545, 0, 2936, 392, 1, 0, 0, 0, 2937, 2938, 3, 1087, 543, 0, 2938, 2939, 3, 1061, 530, 0, 2939, 2940, 3, 1079, 539, 0, 2940, 2941, 3, 1059, 529, 0, 2941, 2942, 3, 1061, 530, 0, 2942, 2943, 3, 1087, 543, 0, 2943, 2944, 3, 1077, 538, 0, 2944, 2945, 3, 1081, 540, 0, 2945, 2946, 3, 1059, 529, 0, 2946, 2947, 3, 1061, 530, 0, 2947, 394, 1, 0, 0, 0, 2948, 2949, 3, 1055, 527, 0, 2949, 2950, 3, 1069, 534, 0, 2950, 2951, 3, 1079, 539, 0, 2951, 2952, 3, 1059, 529, 0, 2952, 2953, 3, 1089, 544, 0, 2953, 396, 1, 0, 0, 0, 2954, 2955, 3, 1053, 526, 0, 2955, 2956, 3, 1091, 545, 0, 2956, 2957, 3, 1091, 545, 0, 2957, 2958, 3, 1087, 543, 0, 2958, 398, 1, 0, 0, 0, 2959, 2960, 3, 1057, 528, 0, 2960, 2961, 3, 1081, 540, 0, 2961, 2962, 3, 1079, 539, 0, 2962, 2963, 3, 1091, 545, 0, 2963, 2964, 3, 1061, 530, 0, 2964, 2965, 3, 1079, 539, 0, 2965, 2966, 3, 1091, 545, 0, 2966, 2967, 3, 1083, 541, 0, 2967, 2968, 3, 1053, 526, 0, 2968, 2969, 3, 1087, 543, 0, 2969, 2970, 3, 1053, 526, 0, 2970, 2971, 3, 1077, 538, 0, 2971, 2972, 3, 1089, 544, 0, 2972, 400, 1, 0, 0, 0, 2973, 2974, 3, 1057, 528, 0, 2974, 2975, 3, 1053, 526, 0, 2975, 2976, 3, 1083, 541, 0, 2976, 2977, 3, 1091, 545, 0, 2977, 2978, 3, 1069, 534, 0, 2978, 2979, 3, 1081, 540, 0, 2979, 2980, 3, 1079, 539, 0, 2980, 2981, 3, 1083, 541, 0, 2981, 2982, 3, 1053, 526, 0, 2982, 2983, 3, 1087, 543, 0, 2983, 2984, 3, 1053, 526, 0, 2984, 2985, 3, 1077, 538, 0, 2985, 2986, 3, 1089, 544, 0, 2986, 402, 1, 0, 0, 0, 2987, 2988, 3, 1083, 541, 0, 2988, 2989, 3, 1053, 526, 0, 2989, 2990, 3, 1087, 543, 0, 2990, 2991, 3, 1053, 526, 0, 2991, 2992, 3, 1077, 538, 0, 2992, 2993, 3, 1089, 544, 0, 2993, 404, 1, 0, 0, 0, 2994, 2995, 3, 1095, 547, 0, 2995, 2996, 3, 1053, 526, 0, 2996, 2997, 3, 1087, 543, 0, 2997, 2998, 3, 1069, 534, 0, 2998, 2999, 3, 1053, 526, 0, 2999, 3000, 3, 1055, 527, 0, 3000, 3001, 3, 1075, 537, 0, 3001, 3002, 3, 1061, 530, 0, 3002, 3003, 3, 1089, 544, 0, 3003, 406, 1, 0, 0, 0, 3004, 3005, 3, 1059, 529, 0, 3005, 3006, 3, 1061, 530, 0, 3006, 3007, 3, 1089, 544, 0, 3007, 3008, 3, 1073, 536, 0, 3008, 3009, 3, 1091, 545, 0, 3009, 3010, 3, 1081, 540, 0, 3010, 3011, 3, 1083, 541, 0, 3011, 3012, 3, 1097, 548, 0, 3012, 3013, 3, 1069, 534, 0, 3013, 3014, 3, 1059, 529, 0, 3014, 3015, 3, 1091, 545, 0, 3015, 3016, 3, 1067, 533, 0, 3016, 408, 1, 0, 0, 0, 3017, 3018, 3, 1091, 545, 0, 3018, 3019, 3, 1053, 526, 0, 3019, 3020, 3, 1055, 527, 0, 3020, 3021, 3, 1075, 537, 0, 3021, 3022, 3, 1061, 530, 0, 3022, 3023, 3, 1091, 545, 0, 3023, 3024, 3, 1097, 548, 0, 3024, 3025, 3, 1069, 534, 0, 3025, 3026, 3, 1059, 529, 0, 3026, 3027, 3, 1091, 545, 0, 3027, 3028, 3, 1067, 533, 0, 3028, 410, 1, 0, 0, 0, 3029, 3030, 3, 1083, 541, 0, 3030, 3031, 3, 1067, 533, 0, 3031, 3032, 3, 1081, 540, 0, 3032, 3033, 3, 1079, 539, 0, 3033, 3034, 3, 1061, 530, 0, 3034, 3035, 3, 1097, 548, 0, 3035, 3036, 3, 1069, 534, 0, 3036, 3037, 3, 1059, 529, 0, 3037, 3038, 3, 1091, 545, 0, 3038, 3039, 3, 1067, 533, 0, 3039, 412, 1, 0, 0, 0, 3040, 3041, 3, 1057, 528, 0, 3041, 3042, 3, 1075, 537, 0, 3042, 3043, 3, 1053, 526, 0, 3043, 3044, 3, 1089, 544, 0, 3044, 3045, 3, 1089, 544, 0, 3045, 414, 1, 0, 0, 0, 3046, 3047, 3, 1089, 544, 0, 3047, 3048, 3, 1091, 545, 0, 3048, 3049, 3, 1101, 550, 0, 3049, 3050, 3, 1075, 537, 0, 3050, 3051, 3, 1061, 530, 0, 3051, 416, 1, 0, 0, 0, 3052, 3053, 3, 1055, 527, 0, 3053, 3054, 3, 1093, 546, 0, 3054, 3055, 3, 1091, 545, 0, 3055, 3056, 3, 1091, 545, 0, 3056, 3057, 3, 1081, 540, 0, 3057, 3058, 3, 1079, 539, 0, 3058, 3059, 3, 1089, 544, 0, 3059, 3060, 3, 1091, 545, 0, 3060, 3061, 3, 1101, 550, 0, 3061, 3062, 3, 1075, 537, 0, 3062, 3063, 3, 1061, 530, 0, 3063, 418, 1, 0, 0, 0, 3064, 3065, 3, 1059, 529, 0, 3065, 3066, 3, 1061, 530, 0, 3066, 3067, 3, 1089, 544, 0, 3067, 3068, 3, 1069, 534, 0, 3068, 3069, 3, 1065, 532, 0, 3069, 3070, 3, 1079, 539, 0, 3070, 420, 1, 0, 0, 0, 3071, 3072, 3, 1083, 541, 0, 3072, 3073, 3, 1087, 543, 0, 3073, 3074, 3, 1081, 540, 0, 3074, 3075, 3, 1083, 541, 0, 3075, 3076, 3, 1061, 530, 0, 3076, 3077, 3, 1087, 543, 0, 3077, 3078, 3, 1091, 545, 0, 3078, 3079, 3, 1069, 534, 0, 3079, 3080, 3, 1061, 530, 0, 3080, 3081, 3, 1089, 544, 0, 3081, 422, 1, 0, 0, 0, 3082, 3083, 3, 1059, 529, 0, 3083, 3084, 3, 1061, 530, 0, 3084, 3085, 3, 1089, 544, 0, 3085, 3086, 3, 1069, 534, 0, 3086, 3087, 3, 1065, 532, 0, 3087, 3088, 3, 1079, 539, 0, 3088, 3089, 3, 1083, 541, 0, 3089, 3090, 3, 1087, 543, 0, 3090, 3091, 3, 1081, 540, 0, 3091, 3092, 3, 1083, 541, 0, 3092, 3093, 3, 1061, 530, 0, 3093, 3094, 3, 1087, 543, 0, 3094, 3095, 3, 1091, 545, 0, 3095, 3096, 3, 1069, 534, 0, 3096, 3097, 3, 1061, 530, 0, 3097, 3098, 3, 1089, 544, 0, 3098, 424, 1, 0, 0, 0, 3099, 3100, 3, 1089, 544, 0, 3100, 3101, 3, 1091, 545, 0, 3101, 3102, 3, 1101, 550, 0, 3102, 3103, 3, 1075, 537, 0, 3103, 3104, 3, 1069, 534, 0, 3104, 3105, 3, 1079, 539, 0, 3105, 3106, 3, 1065, 532, 0, 3106, 426, 1, 0, 0, 0, 3107, 3108, 3, 1057, 528, 0, 3108, 3109, 3, 1075, 537, 0, 3109, 3110, 3, 1061, 530, 0, 3110, 3111, 3, 1053, 526, 0, 3111, 3112, 3, 1087, 543, 0, 3112, 428, 1, 0, 0, 0, 3113, 3114, 3, 1097, 548, 0, 3114, 3115, 3, 1069, 534, 0, 3115, 3116, 3, 1059, 529, 0, 3116, 3117, 3, 1091, 545, 0, 3117, 3118, 3, 1067, 533, 0, 3118, 430, 1, 0, 0, 0, 3119, 3120, 3, 1067, 533, 0, 3120, 3121, 3, 1061, 530, 0, 3121, 3122, 3, 1069, 534, 0, 3122, 3123, 3, 1065, 532, 0, 3123, 3124, 3, 1067, 533, 0, 3124, 3125, 3, 1091, 545, 0, 3125, 432, 1, 0, 0, 0, 3126, 3127, 3, 1053, 526, 0, 3127, 3128, 3, 1093, 546, 0, 3128, 3129, 3, 1091, 545, 0, 3129, 3130, 3, 1081, 540, 0, 3130, 3131, 3, 1063, 531, 0, 3131, 3132, 3, 1069, 534, 0, 3132, 3133, 3, 1075, 537, 0, 3133, 3134, 3, 1075, 537, 0, 3134, 434, 1, 0, 0, 0, 3135, 3136, 3, 1093, 546, 0, 3136, 3137, 3, 1087, 543, 0, 3137, 3138, 3, 1075, 537, 0, 3138, 436, 1, 0, 0, 0, 3139, 3140, 3, 1063, 531, 0, 3140, 3141, 3, 1081, 540, 0, 3141, 3142, 3, 1075, 537, 0, 3142, 3143, 3, 1059, 529, 0, 3143, 3144, 3, 1061, 530, 0, 3144, 3145, 3, 1087, 543, 0, 3145, 438, 1, 0, 0, 0, 3146, 3147, 3, 1083, 541, 0, 3147, 3148, 3, 1053, 526, 0, 3148, 3149, 3, 1089, 544, 0, 3149, 3150, 3, 1089, 544, 0, 3150, 3151, 3, 1069, 534, 0, 3151, 3152, 3, 1079, 539, 0, 3152, 3153, 3, 1065, 532, 0, 3153, 440, 1, 0, 0, 0, 3154, 3155, 3, 1057, 528, 0, 3155, 3156, 3, 1081, 540, 0, 3156, 3157, 3, 1079, 539, 0, 3157, 3158, 3, 1091, 545, 0, 3158, 3159, 3, 1061, 530, 0, 3159, 3160, 3, 1099, 549, 0, 3160, 3161, 3, 1091, 545, 0, 3161, 442, 1, 0, 0, 0, 3162, 3163, 3, 1061, 530, 0, 3163, 3164, 3, 1059, 529, 0, 3164, 3165, 3, 1069, 534, 0, 3165, 3166, 3, 1091, 545, 0, 3166, 3167, 3, 1053, 526, 0, 3167, 3168, 3, 1055, 527, 0, 3168, 3169, 3, 1075, 537, 0, 3169, 3170, 3, 1061, 530, 0, 3170, 444, 1, 0, 0, 0, 3171, 3172, 3, 1087, 543, 0, 3172, 3173, 3, 1061, 530, 0, 3173, 3174, 3, 1053, 526, 0, 3174, 3175, 3, 1059, 529, 0, 3175, 3176, 3, 1081, 540, 0, 3176, 3177, 3, 1079, 539, 0, 3177, 3178, 3, 1075, 537, 0, 3178, 3179, 3, 1101, 550, 0, 3179, 446, 1, 0, 0, 0, 3180, 3181, 3, 1053, 526, 0, 3181, 3182, 3, 1091, 545, 0, 3182, 3183, 3, 1091, 545, 0, 3183, 3184, 3, 1087, 543, 0, 3184, 3185, 3, 1069, 534, 0, 3185, 3186, 3, 1055, 527, 0, 3186, 3187, 3, 1093, 546, 0, 3187, 3188, 3, 1091, 545, 0, 3188, 3189, 3, 1061, 530, 0, 3189, 3190, 3, 1089, 544, 0, 3190, 448, 1, 0, 0, 0, 3191, 3192, 3, 1063, 531, 0, 3192, 3193, 3, 1069, 534, 0, 3193, 3194, 3, 1075, 537, 0, 3194, 3195, 3, 1091, 545, 0, 3195, 3196, 3, 1061, 530, 0, 3196, 3197, 3, 1087, 543, 0, 3197, 3198, 3, 1091, 545, 0, 3198, 3199, 3, 1101, 550, 0, 3199, 3200, 3, 1083, 541, 0, 3200, 3201, 3, 1061, 530, 0, 3201, 450, 1, 0, 0, 0, 3202, 3203, 3, 1069, 534, 0, 3203, 3204, 3, 1077, 538, 0, 3204, 3205, 3, 1053, 526, 0, 3205, 3206, 3, 1065, 532, 0, 3206, 3207, 3, 1061, 530, 0, 3207, 452, 1, 0, 0, 0, 3208, 3209, 3, 1057, 528, 0, 3209, 3210, 3, 1081, 540, 0, 3210, 3211, 3, 1075, 537, 0, 3211, 3212, 3, 1075, 537, 0, 3212, 3213, 3, 1061, 530, 0, 3213, 3214, 3, 1057, 528, 0, 3214, 3215, 3, 1091, 545, 0, 3215, 3216, 3, 1069, 534, 0, 3216, 3217, 3, 1081, 540, 0, 3217, 3218, 3, 1079, 539, 0, 3218, 454, 1, 0, 0, 0, 3219, 3220, 3, 1089, 544, 0, 3220, 3221, 3, 1091, 545, 0, 3221, 3222, 3, 1053, 526, 0, 3222, 3223, 3, 1091, 545, 0, 3223, 3224, 3, 1069, 534, 0, 3224, 3225, 3, 1057, 528, 0, 3225, 3226, 3, 1069, 534, 0, 3226, 3227, 3, 1077, 538, 0, 3227, 3228, 3, 1053, 526, 0, 3228, 3229, 3, 1065, 532, 0, 3229, 3230, 3, 1061, 530, 0, 3230, 456, 1, 0, 0, 0, 3231, 3232, 3, 1059, 529, 0, 3232, 3233, 3, 1101, 550, 0, 3233, 3234, 3, 1079, 539, 0, 3234, 3235, 3, 1053, 526, 0, 3235, 3236, 3, 1077, 538, 0, 3236, 3237, 3, 1069, 534, 0, 3237, 3238, 3, 1057, 528, 0, 3238, 3239, 3, 1069, 534, 0, 3239, 3240, 3, 1077, 538, 0, 3240, 3241, 3, 1053, 526, 0, 3241, 3242, 3, 1065, 532, 0, 3242, 3243, 3, 1061, 530, 0, 3243, 458, 1, 0, 0, 0, 3244, 3245, 3, 1057, 528, 0, 3245, 3246, 3, 1093, 546, 0, 3246, 3247, 3, 1089, 544, 0, 3247, 3248, 3, 1091, 545, 0, 3248, 3249, 3, 1081, 540, 0, 3249, 3250, 3, 1077, 538, 0, 3250, 3251, 3, 1057, 528, 0, 3251, 3252, 3, 1081, 540, 0, 3252, 3253, 3, 1079, 539, 0, 3253, 3254, 3, 1091, 545, 0, 3254, 3255, 3, 1053, 526, 0, 3255, 3256, 3, 1069, 534, 0, 3256, 3257, 3, 1079, 539, 0, 3257, 3258, 3, 1061, 530, 0, 3258, 3259, 3, 1087, 543, 0, 3259, 460, 1, 0, 0, 0, 3260, 3261, 3, 1065, 532, 0, 3261, 3262, 3, 1087, 543, 0, 3262, 3263, 3, 1081, 540, 0, 3263, 3264, 3, 1093, 546, 0, 3264, 3265, 3, 1083, 541, 0, 3265, 3266, 3, 1055, 527, 0, 3266, 3267, 3, 1081, 540, 0, 3267, 3268, 3, 1099, 549, 0, 3268, 462, 1, 0, 0, 0, 3269, 3270, 3, 1095, 547, 0, 3270, 3271, 3, 1069, 534, 0, 3271, 3272, 3, 1089, 544, 0, 3272, 3273, 3, 1069, 534, 0, 3273, 3274, 3, 1055, 527, 0, 3274, 3275, 3, 1075, 537, 0, 3275, 3276, 3, 1061, 530, 0, 3276, 464, 1, 0, 0, 0, 3277, 3278, 3, 1089, 544, 0, 3278, 3279, 3, 1053, 526, 0, 3279, 3280, 3, 1095, 547, 0, 3280, 3281, 3, 1061, 530, 0, 3281, 3282, 3, 1057, 528, 0, 3282, 3283, 3, 1067, 533, 0, 3283, 3284, 3, 1053, 526, 0, 3284, 3285, 3, 1079, 539, 0, 3285, 3286, 3, 1065, 532, 0, 3286, 3287, 3, 1061, 530, 0, 3287, 3288, 3, 1089, 544, 0, 3288, 466, 1, 0, 0, 0, 3289, 3290, 3, 1089, 544, 0, 3290, 3291, 3, 1053, 526, 0, 3291, 3292, 3, 1095, 547, 0, 3292, 3293, 3, 1061, 530, 0, 3293, 3294, 5, 95, 0, 0, 3294, 3295, 3, 1057, 528, 0, 3295, 3296, 3, 1067, 533, 0, 3296, 3297, 3, 1053, 526, 0, 3297, 3298, 3, 1079, 539, 0, 3298, 3299, 3, 1065, 532, 0, 3299, 3300, 3, 1061, 530, 0, 3300, 3301, 3, 1089, 544, 0, 3301, 468, 1, 0, 0, 0, 3302, 3303, 3, 1057, 528, 0, 3303, 3304, 3, 1053, 526, 0, 3304, 3305, 3, 1079, 539, 0, 3305, 3306, 3, 1057, 528, 0, 3306, 3307, 3, 1061, 530, 0, 3307, 3308, 3, 1075, 537, 0, 3308, 3309, 5, 95, 0, 0, 3309, 3310, 3, 1057, 528, 0, 3310, 3311, 3, 1067, 533, 0, 3311, 3312, 3, 1053, 526, 0, 3312, 3313, 3, 1079, 539, 0, 3313, 3314, 3, 1065, 532, 0, 3314, 3315, 3, 1061, 530, 0, 3315, 3316, 3, 1089, 544, 0, 3316, 470, 1, 0, 0, 0, 3317, 3318, 3, 1057, 528, 0, 3318, 3319, 3, 1075, 537, 0, 3319, 3320, 3, 1081, 540, 0, 3320, 3321, 3, 1089, 544, 0, 3321, 3322, 3, 1061, 530, 0, 3322, 3323, 5, 95, 0, 0, 3323, 3324, 3, 1083, 541, 0, 3324, 3325, 3, 1053, 526, 0, 3325, 3326, 3, 1065, 532, 0, 3326, 3327, 3, 1061, 530, 0, 3327, 472, 1, 0, 0, 0, 3328, 3329, 3, 1089, 544, 0, 3329, 3330, 3, 1067, 533, 0, 3330, 3331, 3, 1081, 540, 0, 3331, 3332, 3, 1097, 548, 0, 3332, 3333, 5, 95, 0, 0, 3333, 3334, 3, 1083, 541, 0, 3334, 3335, 3, 1053, 526, 0, 3335, 3336, 3, 1065, 532, 0, 3336, 3337, 3, 1061, 530, 0, 3337, 474, 1, 0, 0, 0, 3338, 3339, 3, 1059, 529, 0, 3339, 3340, 3, 1061, 530, 0, 3340, 3341, 3, 1075, 537, 0, 3341, 3342, 3, 1061, 530, 0, 3342, 3343, 3, 1091, 545, 0, 3343, 3344, 3, 1061, 530, 0, 3344, 3345, 5, 95, 0, 0, 3345, 3346, 3, 1053, 526, 0, 3346, 3347, 3, 1057, 528, 0, 3347, 3348, 3, 1091, 545, 0, 3348, 3349, 3, 1069, 534, 0, 3349, 3350, 3, 1081, 540, 0, 3350, 3351, 3, 1079, 539, 0, 3351, 476, 1, 0, 0, 0, 3352, 3353, 3, 1059, 529, 0, 3353, 3354, 3, 1061, 530, 0, 3354, 3355, 3, 1075, 537, 0, 3355, 3356, 3, 1061, 530, 0, 3356, 3357, 3, 1091, 545, 0, 3357, 3358, 3, 1061, 530, 0, 3358, 3359, 5, 95, 0, 0, 3359, 3360, 3, 1081, 540, 0, 3360, 3361, 3, 1055, 527, 0, 3361, 3362, 3, 1071, 535, 0, 3362, 3363, 3, 1061, 530, 0, 3363, 3364, 3, 1057, 528, 0, 3364, 3365, 3, 1091, 545, 0, 3365, 478, 1, 0, 0, 0, 3366, 3367, 3, 1057, 528, 0, 3367, 3368, 3, 1087, 543, 0, 3368, 3369, 3, 1061, 530, 0, 3369, 3370, 3, 1053, 526, 0, 3370, 3371, 3, 1091, 545, 0, 3371, 3372, 3, 1061, 530, 0, 3372, 3373, 5, 95, 0, 0, 3373, 3374, 3, 1081, 540, 0, 3374, 3375, 3, 1055, 527, 0, 3375, 3376, 3, 1071, 535, 0, 3376, 3377, 3, 1061, 530, 0, 3377, 3378, 3, 1057, 528, 0, 3378, 3379, 3, 1091, 545, 0, 3379, 480, 1, 0, 0, 0, 3380, 3381, 3, 1057, 528, 0, 3381, 3382, 3, 1053, 526, 0, 3382, 3383, 3, 1075, 537, 0, 3383, 3384, 3, 1075, 537, 0, 3384, 3385, 5, 95, 0, 0, 3385, 3386, 3, 1077, 538, 0, 3386, 3387, 3, 1069, 534, 0, 3387, 3388, 3, 1057, 528, 0, 3388, 3389, 3, 1087, 543, 0, 3389, 3390, 3, 1081, 540, 0, 3390, 3391, 3, 1063, 531, 0, 3391, 3392, 3, 1075, 537, 0, 3392, 3393, 3, 1081, 540, 0, 3393, 3394, 3, 1097, 548, 0, 3394, 482, 1, 0, 0, 0, 3395, 3396, 3, 1057, 528, 0, 3396, 3397, 3, 1053, 526, 0, 3397, 3398, 3, 1075, 537, 0, 3398, 3399, 3, 1075, 537, 0, 3399, 3400, 5, 95, 0, 0, 3400, 3401, 3, 1079, 539, 0, 3401, 3402, 3, 1053, 526, 0, 3402, 3403, 3, 1079, 539, 0, 3403, 3404, 3, 1081, 540, 0, 3404, 3405, 3, 1063, 531, 0, 3405, 3406, 3, 1075, 537, 0, 3406, 3407, 3, 1081, 540, 0, 3407, 3408, 3, 1097, 548, 0, 3408, 484, 1, 0, 0, 0, 3409, 3410, 3, 1081, 540, 0, 3410, 3411, 3, 1083, 541, 0, 3411, 3412, 3, 1061, 530, 0, 3412, 3413, 3, 1079, 539, 0, 3413, 3414, 5, 95, 0, 0, 3414, 3415, 3, 1075, 537, 0, 3415, 3416, 3, 1069, 534, 0, 3416, 3417, 3, 1079, 539, 0, 3417, 3418, 3, 1073, 536, 0, 3418, 486, 1, 0, 0, 0, 3419, 3420, 3, 1089, 544, 0, 3420, 3421, 3, 1069, 534, 0, 3421, 3422, 3, 1065, 532, 0, 3422, 3423, 3, 1079, 539, 0, 3423, 3424, 5, 95, 0, 0, 3424, 3425, 3, 1081, 540, 0, 3425, 3426, 3, 1093, 546, 0, 3426, 3427, 3, 1091, 545, 0, 3427, 488, 1, 0, 0, 0, 3428, 3429, 3, 1057, 528, 0, 3429, 3430, 3, 1053, 526, 0, 3430, 3431, 3, 1079, 539, 0, 3431, 3432, 3, 1057, 528, 0, 3432, 3433, 3, 1061, 530, 0, 3433, 3434, 3, 1075, 537, 0, 3434, 490, 1, 0, 0, 0, 3435, 3436, 3, 1083, 541, 0, 3436, 3437, 3, 1087, 543, 0, 3437, 3438, 3, 1069, 534, 0, 3438, 3439, 3, 1077, 538, 0, 3439, 3440, 3, 1053, 526, 0, 3440, 3441, 3, 1087, 543, 0, 3441, 3442, 3, 1101, 550, 0, 3442, 492, 1, 0, 0, 0, 3443, 3444, 3, 1089, 544, 0, 3444, 3445, 3, 1093, 546, 0, 3445, 3446, 3, 1057, 528, 0, 3446, 3447, 3, 1057, 528, 0, 3447, 3448, 3, 1061, 530, 0, 3448, 3449, 3, 1089, 544, 0, 3449, 3450, 3, 1089, 544, 0, 3450, 494, 1, 0, 0, 0, 3451, 3452, 3, 1059, 529, 0, 3452, 3453, 3, 1053, 526, 0, 3453, 3454, 3, 1079, 539, 0, 3454, 3455, 3, 1065, 532, 0, 3455, 3456, 3, 1061, 530, 0, 3456, 3457, 3, 1087, 543, 0, 3457, 496, 1, 0, 0, 0, 3458, 3459, 3, 1097, 548, 0, 3459, 3460, 3, 1053, 526, 0, 3460, 3461, 3, 1087, 543, 0, 3461, 3462, 3, 1079, 539, 0, 3462, 3463, 3, 1069, 534, 0, 3463, 3464, 3, 1079, 539, 0, 3464, 3465, 3, 1065, 532, 0, 3465, 498, 1, 0, 0, 0, 3466, 3467, 3, 1069, 534, 0, 3467, 3468, 3, 1079, 539, 0, 3468, 3469, 3, 1063, 531, 0, 3469, 3470, 3, 1081, 540, 0, 3470, 500, 1, 0, 0, 0, 3471, 3472, 3, 1091, 545, 0, 3472, 3473, 3, 1061, 530, 0, 3473, 3474, 3, 1077, 538, 0, 3474, 3475, 3, 1083, 541, 0, 3475, 3476, 3, 1075, 537, 0, 3476, 3477, 3, 1053, 526, 0, 3477, 3478, 3, 1091, 545, 0, 3478, 3479, 3, 1061, 530, 0, 3479, 502, 1, 0, 0, 0, 3480, 3481, 3, 1081, 540, 0, 3481, 3482, 3, 1079, 539, 0, 3482, 3483, 3, 1057, 528, 0, 3483, 3484, 3, 1075, 537, 0, 3484, 3485, 3, 1069, 534, 0, 3485, 3486, 3, 1057, 528, 0, 3486, 3487, 3, 1073, 536, 0, 3487, 504, 1, 0, 0, 0, 3488, 3489, 3, 1081, 540, 0, 3489, 3490, 3, 1079, 539, 0, 3490, 3491, 3, 1057, 528, 0, 3491, 3492, 3, 1067, 533, 0, 3492, 3493, 3, 1053, 526, 0, 3493, 3494, 3, 1079, 539, 0, 3494, 3495, 3, 1065, 532, 0, 3495, 3496, 3, 1061, 530, 0, 3496, 506, 1, 0, 0, 0, 3497, 3498, 3, 1091, 545, 0, 3498, 3499, 3, 1053, 526, 0, 3499, 3500, 3, 1055, 527, 0, 3500, 3501, 3, 1069, 534, 0, 3501, 3502, 3, 1079, 539, 0, 3502, 3503, 3, 1059, 529, 0, 3503, 3504, 3, 1061, 530, 0, 3504, 3505, 3, 1099, 549, 0, 3505, 508, 1, 0, 0, 0, 3506, 3507, 3, 1067, 533, 0, 3507, 3508, 5, 49, 0, 0, 3508, 510, 1, 0, 0, 0, 3509, 3510, 3, 1067, 533, 0, 3510, 3511, 5, 50, 0, 0, 3511, 512, 1, 0, 0, 0, 3512, 3513, 3, 1067, 533, 0, 3513, 3514, 5, 51, 0, 0, 3514, 514, 1, 0, 0, 0, 3515, 3516, 3, 1067, 533, 0, 3516, 3517, 5, 52, 0, 0, 3517, 516, 1, 0, 0, 0, 3518, 3519, 3, 1067, 533, 0, 3519, 3520, 5, 53, 0, 0, 3520, 518, 1, 0, 0, 0, 3521, 3522, 3, 1067, 533, 0, 3522, 3523, 5, 54, 0, 0, 3523, 520, 1, 0, 0, 0, 3524, 3525, 3, 1083, 541, 0, 3525, 3526, 3, 1053, 526, 0, 3526, 3527, 3, 1087, 543, 0, 3527, 3528, 3, 1053, 526, 0, 3528, 3529, 3, 1065, 532, 0, 3529, 3530, 3, 1087, 543, 0, 3530, 3531, 3, 1053, 526, 0, 3531, 3532, 3, 1083, 541, 0, 3532, 3533, 3, 1067, 533, 0, 3533, 522, 1, 0, 0, 0, 3534, 3535, 3, 1089, 544, 0, 3535, 3536, 3, 1091, 545, 0, 3536, 3537, 3, 1087, 543, 0, 3537, 3538, 3, 1069, 534, 0, 3538, 3539, 3, 1079, 539, 0, 3539, 3540, 3, 1065, 532, 0, 3540, 524, 1, 0, 0, 0, 3541, 3542, 3, 1069, 534, 0, 3542, 3543, 3, 1079, 539, 0, 3543, 3544, 3, 1091, 545, 0, 3544, 3545, 3, 1061, 530, 0, 3545, 3546, 3, 1065, 532, 0, 3546, 3547, 3, 1061, 530, 0, 3547, 3548, 3, 1087, 543, 0, 3548, 526, 1, 0, 0, 0, 3549, 3550, 3, 1075, 537, 0, 3550, 3551, 3, 1081, 540, 0, 3551, 3552, 3, 1079, 539, 0, 3552, 3553, 3, 1065, 532, 0, 3553, 528, 1, 0, 0, 0, 3554, 3555, 3, 1059, 529, 0, 3555, 3556, 3, 1061, 530, 0, 3556, 3557, 3, 1057, 528, 0, 3557, 3558, 3, 1069, 534, 0, 3558, 3559, 3, 1077, 538, 0, 3559, 3560, 3, 1053, 526, 0, 3560, 3561, 3, 1075, 537, 0, 3561, 530, 1, 0, 0, 0, 3562, 3563, 3, 1055, 527, 0, 3563, 3564, 3, 1081, 540, 0, 3564, 3565, 3, 1081, 540, 0, 3565, 3566, 3, 1075, 537, 0, 3566, 3567, 3, 1061, 530, 0, 3567, 3568, 3, 1053, 526, 0, 3568, 3569, 3, 1079, 539, 0, 3569, 532, 1, 0, 0, 0, 3570, 3571, 3, 1059, 529, 0, 3571, 3572, 3, 1053, 526, 0, 3572, 3573, 3, 1091, 545, 0, 3573, 3574, 3, 1061, 530, 0, 3574, 3575, 3, 1091, 545, 0, 3575, 3576, 3, 1069, 534, 0, 3576, 3577, 3, 1077, 538, 0, 3577, 3578, 3, 1061, 530, 0, 3578, 534, 1, 0, 0, 0, 3579, 3580, 3, 1059, 529, 0, 3580, 3581, 3, 1053, 526, 0, 3581, 3582, 3, 1091, 545, 0, 3582, 3583, 3, 1061, 530, 0, 3583, 536, 1, 0, 0, 0, 3584, 3585, 3, 1053, 526, 0, 3585, 3586, 3, 1093, 546, 0, 3586, 3587, 3, 1091, 545, 0, 3587, 3588, 3, 1081, 540, 0, 3588, 3589, 3, 1079, 539, 0, 3589, 3590, 3, 1093, 546, 0, 3590, 3591, 3, 1077, 538, 0, 3591, 3592, 3, 1055, 527, 0, 3592, 3593, 3, 1061, 530, 0, 3593, 3594, 3, 1087, 543, 0, 3594, 538, 1, 0, 0, 0, 3595, 3596, 3, 1055, 527, 0, 3596, 3597, 3, 1069, 534, 0, 3597, 3598, 3, 1079, 539, 0, 3598, 3599, 3, 1053, 526, 0, 3599, 3600, 3, 1087, 543, 0, 3600, 3601, 3, 1101, 550, 0, 3601, 540, 1, 0, 0, 0, 3602, 3603, 3, 1067, 533, 0, 3603, 3604, 3, 1053, 526, 0, 3604, 3605, 3, 1089, 544, 0, 3605, 3606, 3, 1067, 533, 0, 3606, 3607, 3, 1061, 530, 0, 3607, 3608, 3, 1059, 529, 0, 3608, 3609, 3, 1089, 544, 0, 3609, 3610, 3, 1091, 545, 0, 3610, 3611, 3, 1087, 543, 0, 3611, 3612, 3, 1069, 534, 0, 3612, 3613, 3, 1079, 539, 0, 3613, 3614, 3, 1065, 532, 0, 3614, 542, 1, 0, 0, 0, 3615, 3616, 3, 1057, 528, 0, 3616, 3617, 3, 1093, 546, 0, 3617, 3618, 3, 1087, 543, 0, 3618, 3619, 3, 1087, 543, 0, 3619, 3620, 3, 1061, 530, 0, 3620, 3621, 3, 1079, 539, 0, 3621, 3622, 3, 1057, 528, 0, 3622, 3623, 3, 1101, 550, 0, 3623, 544, 1, 0, 0, 0, 3624, 3625, 3, 1063, 531, 0, 3625, 3626, 3, 1075, 537, 0, 3626, 3627, 3, 1081, 540, 0, 3627, 3628, 3, 1053, 526, 0, 3628, 3629, 3, 1091, 545, 0, 3629, 546, 1, 0, 0, 0, 3630, 3631, 3, 1089, 544, 0, 3631, 3632, 3, 1091, 545, 0, 3632, 3633, 3, 1087, 543, 0, 3633, 3634, 3, 1069, 534, 0, 3634, 3635, 3, 1079, 539, 0, 3635, 3636, 3, 1065, 532, 0, 3636, 3637, 3, 1091, 545, 0, 3637, 3638, 3, 1061, 530, 0, 3638, 3639, 3, 1077, 538, 0, 3639, 3640, 3, 1083, 541, 0, 3640, 3641, 3, 1075, 537, 0, 3641, 3642, 3, 1053, 526, 0, 3642, 3643, 3, 1091, 545, 0, 3643, 3644, 3, 1061, 530, 0, 3644, 548, 1, 0, 0, 0, 3645, 3646, 3, 1061, 530, 0, 3646, 3647, 3, 1079, 539, 0, 3647, 3648, 3, 1093, 546, 0, 3648, 3649, 3, 1077, 538, 0, 3649, 550, 1, 0, 0, 0, 3650, 3651, 3, 1057, 528, 0, 3651, 3652, 3, 1081, 540, 0, 3652, 3653, 3, 1093, 546, 0, 3653, 3654, 3, 1079, 539, 0, 3654, 3655, 3, 1091, 545, 0, 3655, 552, 1, 0, 0, 0, 3656, 3657, 3, 1089, 544, 0, 3657, 3658, 3, 1093, 546, 0, 3658, 3659, 3, 1077, 538, 0, 3659, 554, 1, 0, 0, 0, 3660, 3661, 3, 1053, 526, 0, 3661, 3662, 3, 1095, 547, 0, 3662, 3663, 3, 1065, 532, 0, 3663, 556, 1, 0, 0, 0, 3664, 3665, 3, 1077, 538, 0, 3665, 3666, 3, 1069, 534, 0, 3666, 3667, 3, 1079, 539, 0, 3667, 558, 1, 0, 0, 0, 3668, 3669, 3, 1077, 538, 0, 3669, 3670, 3, 1053, 526, 0, 3670, 3671, 3, 1099, 549, 0, 3671, 560, 1, 0, 0, 0, 3672, 3673, 3, 1075, 537, 0, 3673, 3674, 3, 1061, 530, 0, 3674, 3675, 3, 1079, 539, 0, 3675, 3676, 3, 1065, 532, 0, 3676, 3677, 3, 1091, 545, 0, 3677, 3678, 3, 1067, 533, 0, 3678, 562, 1, 0, 0, 0, 3679, 3680, 3, 1091, 545, 0, 3680, 3681, 3, 1087, 543, 0, 3681, 3682, 3, 1069, 534, 0, 3682, 3683, 3, 1077, 538, 0, 3683, 564, 1, 0, 0, 0, 3684, 3685, 3, 1057, 528, 0, 3685, 3686, 3, 1081, 540, 0, 3686, 3687, 3, 1053, 526, 0, 3687, 3688, 3, 1075, 537, 0, 3688, 3689, 3, 1061, 530, 0, 3689, 3690, 3, 1089, 544, 0, 3690, 3691, 3, 1057, 528, 0, 3691, 3692, 3, 1061, 530, 0, 3692, 566, 1, 0, 0, 0, 3693, 3694, 3, 1057, 528, 0, 3694, 3695, 3, 1053, 526, 0, 3695, 3696, 3, 1089, 544, 0, 3696, 3697, 3, 1091, 545, 0, 3697, 568, 1, 0, 0, 0, 3698, 3699, 3, 1053, 526, 0, 3699, 3700, 3, 1079, 539, 0, 3700, 3701, 3, 1059, 529, 0, 3701, 570, 1, 0, 0, 0, 3702, 3703, 3, 1081, 540, 0, 3703, 3704, 3, 1087, 543, 0, 3704, 572, 1, 0, 0, 0, 3705, 3706, 3, 1079, 539, 0, 3706, 3707, 3, 1081, 540, 0, 3707, 3708, 3, 1091, 545, 0, 3708, 574, 1, 0, 0, 0, 3709, 3710, 3, 1079, 539, 0, 3710, 3711, 3, 1093, 546, 0, 3711, 3712, 3, 1075, 537, 0, 3712, 3713, 3, 1075, 537, 0, 3713, 576, 1, 0, 0, 0, 3714, 3715, 3, 1069, 534, 0, 3715, 3716, 3, 1079, 539, 0, 3716, 578, 1, 0, 0, 0, 3717, 3718, 3, 1055, 527, 0, 3718, 3719, 3, 1061, 530, 0, 3719, 3720, 3, 1091, 545, 0, 3720, 3721, 3, 1097, 548, 0, 3721, 3722, 3, 1061, 530, 0, 3722, 3723, 3, 1061, 530, 0, 3723, 3724, 3, 1079, 539, 0, 3724, 580, 1, 0, 0, 0, 3725, 3726, 3, 1075, 537, 0, 3726, 3727, 3, 1069, 534, 0, 3727, 3728, 3, 1073, 536, 0, 3728, 3729, 3, 1061, 530, 0, 3729, 582, 1, 0, 0, 0, 3730, 3731, 3, 1077, 538, 0, 3731, 3732, 3, 1053, 526, 0, 3732, 3733, 3, 1091, 545, 0, 3733, 3734, 3, 1057, 528, 0, 3734, 3735, 3, 1067, 533, 0, 3735, 584, 1, 0, 0, 0, 3736, 3737, 3, 1061, 530, 0, 3737, 3738, 3, 1099, 549, 0, 3738, 3739, 3, 1069, 534, 0, 3739, 3740, 3, 1089, 544, 0, 3740, 3741, 3, 1091, 545, 0, 3741, 3742, 3, 1089, 544, 0, 3742, 586, 1, 0, 0, 0, 3743, 3744, 3, 1093, 546, 0, 3744, 3745, 3, 1079, 539, 0, 3745, 3746, 3, 1069, 534, 0, 3746, 3747, 3, 1085, 542, 0, 3747, 3748, 3, 1093, 546, 0, 3748, 3749, 3, 1061, 530, 0, 3749, 588, 1, 0, 0, 0, 3750, 3751, 3, 1059, 529, 0, 3751, 3752, 3, 1061, 530, 0, 3752, 3753, 3, 1063, 531, 0, 3753, 3754, 3, 1053, 526, 0, 3754, 3755, 3, 1093, 546, 0, 3755, 3756, 3, 1075, 537, 0, 3756, 3757, 3, 1091, 545, 0, 3757, 590, 1, 0, 0, 0, 3758, 3759, 3, 1091, 545, 0, 3759, 3760, 3, 1087, 543, 0, 3760, 3761, 3, 1093, 546, 0, 3761, 3762, 3, 1061, 530, 0, 3762, 592, 1, 0, 0, 0, 3763, 3764, 3, 1063, 531, 0, 3764, 3765, 3, 1053, 526, 0, 3765, 3766, 3, 1075, 537, 0, 3766, 3767, 3, 1089, 544, 0, 3767, 3768, 3, 1061, 530, 0, 3768, 594, 1, 0, 0, 0, 3769, 3770, 3, 1095, 547, 0, 3770, 3771, 3, 1053, 526, 0, 3771, 3772, 3, 1075, 537, 0, 3772, 3773, 3, 1069, 534, 0, 3773, 3774, 3, 1059, 529, 0, 3774, 3775, 3, 1053, 526, 0, 3775, 3776, 3, 1091, 545, 0, 3776, 3777, 3, 1069, 534, 0, 3777, 3778, 3, 1081, 540, 0, 3778, 3779, 3, 1079, 539, 0, 3779, 596, 1, 0, 0, 0, 3780, 3781, 3, 1063, 531, 0, 3781, 3782, 3, 1061, 530, 0, 3782, 3783, 3, 1061, 530, 0, 3783, 3784, 3, 1059, 529, 0, 3784, 3785, 3, 1055, 527, 0, 3785, 3786, 3, 1053, 526, 0, 3786, 3787, 3, 1057, 528, 0, 3787, 3788, 3, 1073, 536, 0, 3788, 598, 1, 0, 0, 0, 3789, 3790, 3, 1087, 543, 0, 3790, 3791, 3, 1093, 546, 0, 3791, 3792, 3, 1075, 537, 0, 3792, 3793, 3, 1061, 530, 0, 3793, 600, 1, 0, 0, 0, 3794, 3795, 3, 1087, 543, 0, 3795, 3796, 3, 1061, 530, 0, 3796, 3797, 3, 1085, 542, 0, 3797, 3798, 3, 1093, 546, 0, 3798, 3799, 3, 1069, 534, 0, 3799, 3800, 3, 1087, 543, 0, 3800, 3801, 3, 1061, 530, 0, 3801, 3802, 3, 1059, 529, 0, 3802, 602, 1, 0, 0, 0, 3803, 3804, 3, 1061, 530, 0, 3804, 3805, 3, 1087, 543, 0, 3805, 3806, 3, 1087, 543, 0, 3806, 3807, 3, 1081, 540, 0, 3807, 3808, 3, 1087, 543, 0, 3808, 604, 1, 0, 0, 0, 3809, 3810, 3, 1087, 543, 0, 3810, 3811, 3, 1053, 526, 0, 3811, 3812, 3, 1069, 534, 0, 3812, 3813, 3, 1089, 544, 0, 3813, 3814, 3, 1061, 530, 0, 3814, 606, 1, 0, 0, 0, 3815, 3816, 3, 1087, 543, 0, 3816, 3817, 3, 1053, 526, 0, 3817, 3818, 3, 1079, 539, 0, 3818, 3819, 3, 1065, 532, 0, 3819, 3820, 3, 1061, 530, 0, 3820, 608, 1, 0, 0, 0, 3821, 3822, 3, 1087, 543, 0, 3822, 3823, 3, 1061, 530, 0, 3823, 3824, 3, 1065, 532, 0, 3824, 3825, 3, 1061, 530, 0, 3825, 3826, 3, 1099, 549, 0, 3826, 610, 1, 0, 0, 0, 3827, 3828, 3, 1083, 541, 0, 3828, 3829, 3, 1053, 526, 0, 3829, 3830, 3, 1091, 545, 0, 3830, 3831, 3, 1091, 545, 0, 3831, 3832, 3, 1061, 530, 0, 3832, 3833, 3, 1087, 543, 0, 3833, 3834, 3, 1079, 539, 0, 3834, 612, 1, 0, 0, 0, 3835, 3836, 3, 1061, 530, 0, 3836, 3837, 3, 1099, 549, 0, 3837, 3838, 3, 1083, 541, 0, 3838, 3839, 3, 1087, 543, 0, 3839, 3840, 3, 1061, 530, 0, 3840, 3841, 3, 1089, 544, 0, 3841, 3842, 3, 1089, 544, 0, 3842, 3843, 3, 1069, 534, 0, 3843, 3844, 3, 1081, 540, 0, 3844, 3845, 3, 1079, 539, 0, 3845, 614, 1, 0, 0, 0, 3846, 3847, 3, 1099, 549, 0, 3847, 3848, 3, 1083, 541, 0, 3848, 3849, 3, 1053, 526, 0, 3849, 3850, 3, 1091, 545, 0, 3850, 3851, 3, 1067, 533, 0, 3851, 616, 1, 0, 0, 0, 3852, 3853, 3, 1057, 528, 0, 3853, 3854, 3, 1081, 540, 0, 3854, 3855, 3, 1079, 539, 0, 3855, 3856, 3, 1089, 544, 0, 3856, 3857, 3, 1091, 545, 0, 3857, 3858, 3, 1087, 543, 0, 3858, 3859, 3, 1053, 526, 0, 3859, 3860, 3, 1069, 534, 0, 3860, 3861, 3, 1079, 539, 0, 3861, 3862, 3, 1091, 545, 0, 3862, 618, 1, 0, 0, 0, 3863, 3864, 3, 1057, 528, 0, 3864, 3865, 3, 1053, 526, 0, 3865, 3866, 3, 1075, 537, 0, 3866, 3867, 3, 1057, 528, 0, 3867, 3868, 3, 1093, 546, 0, 3868, 3869, 3, 1075, 537, 0, 3869, 3870, 3, 1053, 526, 0, 3870, 3871, 3, 1091, 545, 0, 3871, 3872, 3, 1061, 530, 0, 3872, 3873, 3, 1059, 529, 0, 3873, 620, 1, 0, 0, 0, 3874, 3875, 3, 1087, 543, 0, 3875, 3876, 3, 1061, 530, 0, 3876, 3877, 3, 1089, 544, 0, 3877, 3878, 3, 1091, 545, 0, 3878, 622, 1, 0, 0, 0, 3879, 3880, 3, 1089, 544, 0, 3880, 3881, 3, 1061, 530, 0, 3881, 3882, 3, 1087, 543, 0, 3882, 3883, 3, 1095, 547, 0, 3883, 3884, 3, 1069, 534, 0, 3884, 3885, 3, 1057, 528, 0, 3885, 3886, 3, 1061, 530, 0, 3886, 624, 1, 0, 0, 0, 3887, 3888, 3, 1089, 544, 0, 3888, 3889, 3, 1061, 530, 0, 3889, 3890, 3, 1087, 543, 0, 3890, 3891, 3, 1095, 547, 0, 3891, 3892, 3, 1069, 534, 0, 3892, 3893, 3, 1057, 528, 0, 3893, 3894, 3, 1061, 530, 0, 3894, 3895, 3, 1089, 544, 0, 3895, 626, 1, 0, 0, 0, 3896, 3897, 3, 1081, 540, 0, 3897, 3898, 3, 1059, 529, 0, 3898, 3899, 3, 1053, 526, 0, 3899, 3900, 3, 1091, 545, 0, 3900, 3901, 3, 1053, 526, 0, 3901, 628, 1, 0, 0, 0, 3902, 3903, 3, 1055, 527, 0, 3903, 3904, 3, 1053, 526, 0, 3904, 3905, 3, 1089, 544, 0, 3905, 3906, 3, 1061, 530, 0, 3906, 630, 1, 0, 0, 0, 3907, 3908, 3, 1053, 526, 0, 3908, 3909, 3, 1093, 546, 0, 3909, 3910, 3, 1091, 545, 0, 3910, 3911, 3, 1067, 533, 0, 3911, 632, 1, 0, 0, 0, 3912, 3913, 3, 1053, 526, 0, 3913, 3914, 3, 1093, 546, 0, 3914, 3915, 3, 1091, 545, 0, 3915, 3916, 3, 1067, 533, 0, 3916, 3917, 3, 1061, 530, 0, 3917, 3918, 3, 1079, 539, 0, 3918, 3919, 3, 1091, 545, 0, 3919, 3920, 3, 1069, 534, 0, 3920, 3921, 3, 1057, 528, 0, 3921, 3922, 3, 1053, 526, 0, 3922, 3923, 3, 1091, 545, 0, 3923, 3924, 3, 1069, 534, 0, 3924, 3925, 3, 1081, 540, 0, 3925, 3926, 3, 1079, 539, 0, 3926, 634, 1, 0, 0, 0, 3927, 3928, 3, 1055, 527, 0, 3928, 3929, 3, 1053, 526, 0, 3929, 3930, 3, 1089, 544, 0, 3930, 3931, 3, 1069, 534, 0, 3931, 3932, 3, 1057, 528, 0, 3932, 636, 1, 0, 0, 0, 3933, 3934, 3, 1079, 539, 0, 3934, 3935, 3, 1081, 540, 0, 3935, 3936, 3, 1091, 545, 0, 3936, 3937, 3, 1067, 533, 0, 3937, 3938, 3, 1069, 534, 0, 3938, 3939, 3, 1079, 539, 0, 3939, 3940, 3, 1065, 532, 0, 3940, 638, 1, 0, 0, 0, 3941, 3942, 3, 1081, 540, 0, 3942, 3943, 3, 1053, 526, 0, 3943, 3944, 3, 1093, 546, 0, 3944, 3945, 3, 1091, 545, 0, 3945, 3946, 3, 1067, 533, 0, 3946, 640, 1, 0, 0, 0, 3947, 3948, 3, 1081, 540, 0, 3948, 3949, 3, 1083, 541, 0, 3949, 3950, 3, 1061, 530, 0, 3950, 3951, 3, 1087, 543, 0, 3951, 3952, 3, 1053, 526, 0, 3952, 3953, 3, 1091, 545, 0, 3953, 3954, 3, 1069, 534, 0, 3954, 3955, 3, 1081, 540, 0, 3955, 3956, 3, 1079, 539, 0, 3956, 642, 1, 0, 0, 0, 3957, 3958, 3, 1077, 538, 0, 3958, 3959, 3, 1061, 530, 0, 3959, 3960, 3, 1091, 545, 0, 3960, 3961, 3, 1067, 533, 0, 3961, 3962, 3, 1081, 540, 0, 3962, 3963, 3, 1059, 529, 0, 3963, 644, 1, 0, 0, 0, 3964, 3965, 3, 1083, 541, 0, 3965, 3966, 3, 1053, 526, 0, 3966, 3967, 3, 1091, 545, 0, 3967, 3968, 3, 1067, 533, 0, 3968, 646, 1, 0, 0, 0, 3969, 3970, 3, 1091, 545, 0, 3970, 3971, 3, 1069, 534, 0, 3971, 3972, 3, 1077, 538, 0, 3972, 3973, 3, 1061, 530, 0, 3973, 3974, 3, 1081, 540, 0, 3974, 3975, 3, 1093, 546, 0, 3975, 3976, 3, 1091, 545, 0, 3976, 648, 1, 0, 0, 0, 3977, 3978, 3, 1055, 527, 0, 3978, 3979, 3, 1081, 540, 0, 3979, 3980, 3, 1059, 529, 0, 3980, 3981, 3, 1101, 550, 0, 3981, 650, 1, 0, 0, 0, 3982, 3983, 3, 1087, 543, 0, 3983, 3984, 3, 1061, 530, 0, 3984, 3985, 3, 1089, 544, 0, 3985, 3986, 3, 1083, 541, 0, 3986, 3987, 3, 1081, 540, 0, 3987, 3988, 3, 1079, 539, 0, 3988, 3989, 3, 1089, 544, 0, 3989, 3990, 3, 1061, 530, 0, 3990, 652, 1, 0, 0, 0, 3991, 3992, 3, 1087, 543, 0, 3992, 3993, 3, 1061, 530, 0, 3993, 3994, 3, 1085, 542, 0, 3994, 3995, 3, 1093, 546, 0, 3995, 3996, 3, 1061, 530, 0, 3996, 3997, 3, 1089, 544, 0, 3997, 3998, 3, 1091, 545, 0, 3998, 654, 1, 0, 0, 0, 3999, 4000, 3, 1089, 544, 0, 4000, 4001, 3, 1061, 530, 0, 4001, 4002, 3, 1079, 539, 0, 4002, 4003, 3, 1059, 529, 0, 4003, 656, 1, 0, 0, 0, 4004, 4005, 3, 1071, 535, 0, 4005, 4006, 3, 1089, 544, 0, 4006, 4007, 3, 1081, 540, 0, 4007, 4008, 3, 1079, 539, 0, 4008, 658, 1, 0, 0, 0, 4009, 4010, 3, 1099, 549, 0, 4010, 4011, 3, 1077, 538, 0, 4011, 4012, 3, 1075, 537, 0, 4012, 660, 1, 0, 0, 0, 4013, 4014, 3, 1089, 544, 0, 4014, 4015, 3, 1091, 545, 0, 4015, 4016, 3, 1053, 526, 0, 4016, 4017, 3, 1091, 545, 0, 4017, 4018, 3, 1093, 546, 0, 4018, 4019, 3, 1089, 544, 0, 4019, 662, 1, 0, 0, 0, 4020, 4021, 3, 1063, 531, 0, 4021, 4022, 3, 1069, 534, 0, 4022, 4023, 3, 1075, 537, 0, 4023, 4024, 3, 1061, 530, 0, 4024, 664, 1, 0, 0, 0, 4025, 4026, 3, 1095, 547, 0, 4026, 4027, 3, 1061, 530, 0, 4027, 4028, 3, 1087, 543, 0, 4028, 4029, 3, 1089, 544, 0, 4029, 4030, 3, 1069, 534, 0, 4030, 4031, 3, 1081, 540, 0, 4031, 4032, 3, 1079, 539, 0, 4032, 666, 1, 0, 0, 0, 4033, 4034, 3, 1065, 532, 0, 4034, 4035, 3, 1061, 530, 0, 4035, 4036, 3, 1091, 545, 0, 4036, 668, 1, 0, 0, 0, 4037, 4038, 3, 1083, 541, 0, 4038, 4039, 3, 1081, 540, 0, 4039, 4040, 3, 1089, 544, 0, 4040, 4041, 3, 1091, 545, 0, 4041, 670, 1, 0, 0, 0, 4042, 4043, 3, 1083, 541, 0, 4043, 4044, 3, 1093, 546, 0, 4044, 4045, 3, 1091, 545, 0, 4045, 672, 1, 0, 0, 0, 4046, 4047, 3, 1083, 541, 0, 4047, 4048, 3, 1053, 526, 0, 4048, 4049, 3, 1091, 545, 0, 4049, 4050, 3, 1057, 528, 0, 4050, 4051, 3, 1067, 533, 0, 4051, 674, 1, 0, 0, 0, 4052, 4053, 3, 1053, 526, 0, 4053, 4054, 3, 1083, 541, 0, 4054, 4055, 3, 1069, 534, 0, 4055, 676, 1, 0, 0, 0, 4056, 4057, 3, 1057, 528, 0, 4057, 4058, 3, 1075, 537, 0, 4058, 4059, 3, 1069, 534, 0, 4059, 4060, 3, 1061, 530, 0, 4060, 4061, 3, 1079, 539, 0, 4061, 4062, 3, 1091, 545, 0, 4062, 678, 1, 0, 0, 0, 4063, 4064, 3, 1057, 528, 0, 4064, 4065, 3, 1075, 537, 0, 4065, 4066, 3, 1069, 534, 0, 4066, 4067, 3, 1061, 530, 0, 4067, 4068, 3, 1079, 539, 0, 4068, 4069, 3, 1091, 545, 0, 4069, 4070, 3, 1089, 544, 0, 4070, 680, 1, 0, 0, 0, 4071, 4072, 3, 1083, 541, 0, 4072, 4073, 3, 1093, 546, 0, 4073, 4074, 3, 1055, 527, 0, 4074, 4075, 3, 1075, 537, 0, 4075, 4076, 3, 1069, 534, 0, 4076, 4077, 3, 1089, 544, 0, 4077, 4078, 3, 1067, 533, 0, 4078, 682, 1, 0, 0, 0, 4079, 4080, 3, 1083, 541, 0, 4080, 4081, 3, 1093, 546, 0, 4081, 4082, 3, 1055, 527, 0, 4082, 4083, 3, 1075, 537, 0, 4083, 4084, 3, 1069, 534, 0, 4084, 4085, 3, 1089, 544, 0, 4085, 4086, 3, 1067, 533, 0, 4086, 4087, 3, 1061, 530, 0, 4087, 4088, 3, 1059, 529, 0, 4088, 684, 1, 0, 0, 0, 4089, 4090, 3, 1061, 530, 0, 4090, 4091, 3, 1099, 549, 0, 4091, 4092, 3, 1083, 541, 0, 4092, 4093, 3, 1081, 540, 0, 4093, 4094, 3, 1089, 544, 0, 4094, 4095, 3, 1061, 530, 0, 4095, 686, 1, 0, 0, 0, 4096, 4097, 3, 1057, 528, 0, 4097, 4098, 3, 1081, 540, 0, 4098, 4099, 3, 1079, 539, 0, 4099, 4100, 3, 1091, 545, 0, 4100, 4101, 3, 1087, 543, 0, 4101, 4102, 3, 1053, 526, 0, 4102, 4103, 3, 1057, 528, 0, 4103, 4104, 3, 1091, 545, 0, 4104, 688, 1, 0, 0, 0, 4105, 4106, 3, 1079, 539, 0, 4106, 4107, 3, 1053, 526, 0, 4107, 4108, 3, 1077, 538, 0, 4108, 4109, 3, 1061, 530, 0, 4109, 4110, 3, 1089, 544, 0, 4110, 4111, 3, 1083, 541, 0, 4111, 4112, 3, 1053, 526, 0, 4112, 4113, 3, 1057, 528, 0, 4113, 4114, 3, 1061, 530, 0, 4114, 690, 1, 0, 0, 0, 4115, 4116, 3, 1089, 544, 0, 4116, 4117, 3, 1061, 530, 0, 4117, 4118, 3, 1089, 544, 0, 4118, 4119, 3, 1089, 544, 0, 4119, 4120, 3, 1069, 534, 0, 4120, 4121, 3, 1081, 540, 0, 4121, 4122, 3, 1079, 539, 0, 4122, 692, 1, 0, 0, 0, 4123, 4124, 3, 1065, 532, 0, 4124, 4125, 3, 1093, 546, 0, 4125, 4126, 3, 1061, 530, 0, 4126, 4127, 3, 1089, 544, 0, 4127, 4128, 3, 1091, 545, 0, 4128, 694, 1, 0, 0, 0, 4129, 4130, 3, 1083, 541, 0, 4130, 4131, 3, 1053, 526, 0, 4131, 4132, 3, 1065, 532, 0, 4132, 4133, 3, 1069, 534, 0, 4133, 4134, 3, 1079, 539, 0, 4134, 4135, 3, 1065, 532, 0, 4135, 696, 1, 0, 0, 0, 4136, 4137, 3, 1079, 539, 0, 4137, 4138, 3, 1081, 540, 0, 4138, 4139, 3, 1091, 545, 0, 4139, 4140, 5, 95, 0, 0, 4140, 4141, 3, 1089, 544, 0, 4141, 4142, 3, 1093, 546, 0, 4142, 4143, 3, 1083, 541, 0, 4143, 4144, 3, 1083, 541, 0, 4144, 4145, 3, 1081, 540, 0, 4145, 4146, 3, 1087, 543, 0, 4146, 4147, 3, 1091, 545, 0, 4147, 4148, 3, 1061, 530, 0, 4148, 4149, 3, 1059, 529, 0, 4149, 698, 1, 0, 0, 0, 4150, 4151, 3, 1093, 546, 0, 4151, 4152, 3, 1089, 544, 0, 4152, 4153, 3, 1061, 530, 0, 4153, 4154, 3, 1087, 543, 0, 4154, 4155, 3, 1079, 539, 0, 4155, 4156, 3, 1053, 526, 0, 4156, 4157, 3, 1077, 538, 0, 4157, 4158, 3, 1061, 530, 0, 4158, 700, 1, 0, 0, 0, 4159, 4160, 3, 1083, 541, 0, 4160, 4161, 3, 1053, 526, 0, 4161, 4162, 3, 1089, 544, 0, 4162, 4163, 3, 1089, 544, 0, 4163, 4164, 3, 1097, 548, 0, 4164, 4165, 3, 1081, 540, 0, 4165, 4166, 3, 1087, 543, 0, 4166, 4167, 3, 1059, 529, 0, 4167, 702, 1, 0, 0, 0, 4168, 4169, 3, 1057, 528, 0, 4169, 4170, 3, 1081, 540, 0, 4170, 4171, 3, 1079, 539, 0, 4171, 4172, 3, 1079, 539, 0, 4172, 4173, 3, 1061, 530, 0, 4173, 4174, 3, 1057, 528, 0, 4174, 4175, 3, 1091, 545, 0, 4175, 4176, 3, 1069, 534, 0, 4176, 4177, 3, 1081, 540, 0, 4177, 4178, 3, 1079, 539, 0, 4178, 704, 1, 0, 0, 0, 4179, 4180, 3, 1059, 529, 0, 4180, 4181, 3, 1053, 526, 0, 4181, 4182, 3, 1091, 545, 0, 4182, 4183, 3, 1053, 526, 0, 4183, 4184, 3, 1055, 527, 0, 4184, 4185, 3, 1053, 526, 0, 4185, 4186, 3, 1089, 544, 0, 4186, 4187, 3, 1061, 530, 0, 4187, 706, 1, 0, 0, 0, 4188, 4189, 3, 1085, 542, 0, 4189, 4190, 3, 1093, 546, 0, 4190, 4191, 3, 1061, 530, 0, 4191, 4192, 3, 1087, 543, 0, 4192, 4193, 3, 1101, 550, 0, 4193, 708, 1, 0, 0, 0, 4194, 4195, 3, 1077, 538, 0, 4195, 4196, 3, 1053, 526, 0, 4196, 4197, 3, 1083, 541, 0, 4197, 710, 1, 0, 0, 0, 4198, 4199, 3, 1077, 538, 0, 4199, 4200, 3, 1053, 526, 0, 4200, 4201, 3, 1083, 541, 0, 4201, 4202, 3, 1083, 541, 0, 4202, 4203, 3, 1069, 534, 0, 4203, 4204, 3, 1079, 539, 0, 4204, 4205, 3, 1065, 532, 0, 4205, 712, 1, 0, 0, 0, 4206, 4207, 3, 1069, 534, 0, 4207, 4208, 3, 1077, 538, 0, 4208, 4209, 3, 1083, 541, 0, 4209, 4210, 3, 1081, 540, 0, 4210, 4211, 3, 1087, 543, 0, 4211, 4212, 3, 1091, 545, 0, 4212, 714, 1, 0, 0, 0, 4213, 4214, 3, 1069, 534, 0, 4214, 4215, 3, 1079, 539, 0, 4215, 4216, 3, 1091, 545, 0, 4216, 4217, 3, 1081, 540, 0, 4217, 716, 1, 0, 0, 0, 4218, 4219, 3, 1055, 527, 0, 4219, 4220, 3, 1053, 526, 0, 4220, 4221, 3, 1091, 545, 0, 4221, 4222, 3, 1057, 528, 0, 4222, 4223, 3, 1067, 533, 0, 4223, 718, 1, 0, 0, 0, 4224, 4225, 3, 1075, 537, 0, 4225, 4226, 3, 1069, 534, 0, 4226, 4227, 3, 1079, 539, 0, 4227, 4228, 3, 1073, 536, 0, 4228, 720, 1, 0, 0, 0, 4229, 4230, 3, 1061, 530, 0, 4230, 4231, 3, 1099, 549, 0, 4231, 4232, 3, 1083, 541, 0, 4232, 4233, 3, 1081, 540, 0, 4233, 4234, 3, 1087, 543, 0, 4234, 4235, 3, 1091, 545, 0, 4235, 722, 1, 0, 0, 0, 4236, 4237, 3, 1065, 532, 0, 4237, 4238, 3, 1061, 530, 0, 4238, 4239, 3, 1079, 539, 0, 4239, 4240, 3, 1061, 530, 0, 4240, 4241, 3, 1087, 543, 0, 4241, 4242, 3, 1053, 526, 0, 4242, 4243, 3, 1091, 545, 0, 4243, 4244, 3, 1061, 530, 0, 4244, 724, 1, 0, 0, 0, 4245, 4246, 3, 1057, 528, 0, 4246, 4247, 3, 1081, 540, 0, 4247, 4248, 3, 1079, 539, 0, 4248, 4249, 3, 1079, 539, 0, 4249, 4250, 3, 1061, 530, 0, 4250, 4251, 3, 1057, 528, 0, 4251, 4252, 3, 1091, 545, 0, 4252, 4253, 3, 1081, 540, 0, 4253, 4254, 3, 1087, 543, 0, 4254, 726, 1, 0, 0, 0, 4255, 4256, 3, 1061, 530, 0, 4256, 4257, 3, 1099, 549, 0, 4257, 4258, 3, 1061, 530, 0, 4258, 4259, 3, 1057, 528, 0, 4259, 728, 1, 0, 0, 0, 4260, 4261, 3, 1091, 545, 0, 4261, 4262, 3, 1053, 526, 0, 4262, 4263, 3, 1055, 527, 0, 4263, 4264, 3, 1075, 537, 0, 4264, 4265, 3, 1061, 530, 0, 4265, 4266, 3, 1089, 544, 0, 4266, 730, 1, 0, 0, 0, 4267, 4268, 3, 1095, 547, 0, 4268, 4269, 3, 1069, 534, 0, 4269, 4270, 3, 1061, 530, 0, 4270, 4271, 3, 1097, 548, 0, 4271, 4272, 3, 1089, 544, 0, 4272, 732, 1, 0, 0, 0, 4273, 4274, 3, 1061, 530, 0, 4274, 4275, 3, 1099, 549, 0, 4275, 4276, 3, 1083, 541, 0, 4276, 4277, 3, 1081, 540, 0, 4277, 4278, 3, 1089, 544, 0, 4278, 4279, 3, 1061, 530, 0, 4279, 4280, 3, 1059, 529, 0, 4280, 734, 1, 0, 0, 0, 4281, 4282, 3, 1083, 541, 0, 4282, 4283, 3, 1053, 526, 0, 4283, 4284, 3, 1087, 543, 0, 4284, 4285, 3, 1053, 526, 0, 4285, 4286, 3, 1077, 538, 0, 4286, 4287, 3, 1061, 530, 0, 4287, 4288, 3, 1091, 545, 0, 4288, 4289, 3, 1061, 530, 0, 4289, 4290, 3, 1087, 543, 0, 4290, 736, 1, 0, 0, 0, 4291, 4292, 3, 1083, 541, 0, 4292, 4293, 3, 1053, 526, 0, 4293, 4294, 3, 1087, 543, 0, 4294, 4295, 3, 1053, 526, 0, 4295, 4296, 3, 1077, 538, 0, 4296, 4297, 3, 1061, 530, 0, 4297, 4298, 3, 1091, 545, 0, 4298, 4299, 3, 1061, 530, 0, 4299, 4300, 3, 1087, 543, 0, 4300, 4301, 3, 1089, 544, 0, 4301, 738, 1, 0, 0, 0, 4302, 4303, 3, 1067, 533, 0, 4303, 4304, 3, 1061, 530, 0, 4304, 4305, 3, 1053, 526, 0, 4305, 4306, 3, 1059, 529, 0, 4306, 4307, 3, 1061, 530, 0, 4307, 4308, 3, 1087, 543, 0, 4308, 4309, 3, 1089, 544, 0, 4309, 740, 1, 0, 0, 0, 4310, 4311, 3, 1079, 539, 0, 4311, 4312, 3, 1053, 526, 0, 4312, 4313, 3, 1095, 547, 0, 4313, 4314, 3, 1069, 534, 0, 4314, 4315, 3, 1065, 532, 0, 4315, 4316, 3, 1053, 526, 0, 4316, 4317, 3, 1091, 545, 0, 4317, 4318, 3, 1069, 534, 0, 4318, 4319, 3, 1081, 540, 0, 4319, 4320, 3, 1079, 539, 0, 4320, 742, 1, 0, 0, 0, 4321, 4322, 3, 1077, 538, 0, 4322, 4323, 3, 1061, 530, 0, 4323, 4324, 3, 1079, 539, 0, 4324, 4325, 3, 1093, 546, 0, 4325, 744, 1, 0, 0, 0, 4326, 4327, 3, 1067, 533, 0, 4327, 4328, 3, 1081, 540, 0, 4328, 4329, 3, 1077, 538, 0, 4329, 4330, 3, 1061, 530, 0, 4330, 4331, 3, 1089, 544, 0, 4331, 746, 1, 0, 0, 0, 4332, 4333, 3, 1067, 533, 0, 4333, 4334, 3, 1081, 540, 0, 4334, 4335, 3, 1077, 538, 0, 4335, 4336, 3, 1061, 530, 0, 4336, 748, 1, 0, 0, 0, 4337, 4338, 3, 1075, 537, 0, 4338, 4339, 3, 1081, 540, 0, 4339, 4340, 3, 1065, 532, 0, 4340, 4341, 3, 1069, 534, 0, 4341, 4342, 3, 1079, 539, 0, 4342, 750, 1, 0, 0, 0, 4343, 4344, 3, 1063, 531, 0, 4344, 4345, 3, 1081, 540, 0, 4345, 4346, 3, 1093, 546, 0, 4346, 4347, 3, 1079, 539, 0, 4347, 4348, 3, 1059, 529, 0, 4348, 752, 1, 0, 0, 0, 4349, 4350, 3, 1077, 538, 0, 4350, 4351, 3, 1081, 540, 0, 4351, 4352, 3, 1059, 529, 0, 4352, 4353, 3, 1093, 546, 0, 4353, 4354, 3, 1075, 537, 0, 4354, 4355, 3, 1061, 530, 0, 4355, 4356, 3, 1089, 544, 0, 4356, 754, 1, 0, 0, 0, 4357, 4358, 3, 1061, 530, 0, 4358, 4359, 3, 1079, 539, 0, 4359, 4360, 3, 1091, 545, 0, 4360, 4361, 3, 1069, 534, 0, 4361, 4362, 3, 1091, 545, 0, 4362, 4363, 3, 1069, 534, 0, 4363, 4364, 3, 1061, 530, 0, 4364, 4365, 3, 1089, 544, 0, 4365, 756, 1, 0, 0, 0, 4366, 4367, 3, 1053, 526, 0, 4367, 4368, 3, 1089, 544, 0, 4368, 4369, 3, 1089, 544, 0, 4369, 4370, 3, 1081, 540, 0, 4370, 4371, 3, 1057, 528, 0, 4371, 4372, 3, 1069, 534, 0, 4372, 4373, 3, 1053, 526, 0, 4373, 4374, 3, 1091, 545, 0, 4374, 4375, 3, 1069, 534, 0, 4375, 4376, 3, 1081, 540, 0, 4376, 4377, 3, 1079, 539, 0, 4377, 4378, 3, 1089, 544, 0, 4378, 758, 1, 0, 0, 0, 4379, 4380, 3, 1077, 538, 0, 4380, 4381, 3, 1069, 534, 0, 4381, 4382, 3, 1057, 528, 0, 4382, 4383, 3, 1087, 543, 0, 4383, 4384, 3, 1081, 540, 0, 4384, 4385, 3, 1063, 531, 0, 4385, 4386, 3, 1075, 537, 0, 4386, 4387, 3, 1081, 540, 0, 4387, 4388, 3, 1097, 548, 0, 4388, 4389, 3, 1089, 544, 0, 4389, 760, 1, 0, 0, 0, 4390, 4391, 3, 1079, 539, 0, 4391, 4392, 3, 1053, 526, 0, 4392, 4393, 3, 1079, 539, 0, 4393, 4394, 3, 1081, 540, 0, 4394, 4395, 3, 1063, 531, 0, 4395, 4396, 3, 1075, 537, 0, 4396, 4397, 3, 1081, 540, 0, 4397, 4398, 3, 1097, 548, 0, 4398, 4399, 3, 1089, 544, 0, 4399, 762, 1, 0, 0, 0, 4400, 4401, 3, 1097, 548, 0, 4401, 4402, 3, 1081, 540, 0, 4402, 4403, 3, 1087, 543, 0, 4403, 4404, 3, 1073, 536, 0, 4404, 4405, 3, 1063, 531, 0, 4405, 4406, 3, 1075, 537, 0, 4406, 4407, 3, 1081, 540, 0, 4407, 4408, 3, 1097, 548, 0, 4408, 4409, 3, 1089, 544, 0, 4409, 764, 1, 0, 0, 0, 4410, 4411, 3, 1061, 530, 0, 4411, 4412, 3, 1079, 539, 0, 4412, 4413, 3, 1093, 546, 0, 4413, 4414, 3, 1077, 538, 0, 4414, 4415, 3, 1061, 530, 0, 4415, 4416, 3, 1087, 543, 0, 4416, 4417, 3, 1053, 526, 0, 4417, 4418, 3, 1091, 545, 0, 4418, 4419, 3, 1069, 534, 0, 4419, 4420, 3, 1081, 540, 0, 4420, 4421, 3, 1079, 539, 0, 4421, 4422, 3, 1089, 544, 0, 4422, 766, 1, 0, 0, 0, 4423, 4424, 3, 1057, 528, 0, 4424, 4425, 3, 1081, 540, 0, 4425, 4426, 3, 1079, 539, 0, 4426, 4427, 3, 1089, 544, 0, 4427, 4428, 3, 1091, 545, 0, 4428, 4429, 3, 1053, 526, 0, 4429, 4430, 3, 1079, 539, 0, 4430, 4431, 3, 1091, 545, 0, 4431, 4432, 3, 1089, 544, 0, 4432, 768, 1, 0, 0, 0, 4433, 4434, 3, 1057, 528, 0, 4434, 4435, 3, 1081, 540, 0, 4435, 4436, 3, 1079, 539, 0, 4436, 4437, 3, 1079, 539, 0, 4437, 4438, 3, 1061, 530, 0, 4438, 4439, 3, 1057, 528, 0, 4439, 4440, 3, 1091, 545, 0, 4440, 4441, 3, 1069, 534, 0, 4441, 4442, 3, 1081, 540, 0, 4442, 4443, 3, 1079, 539, 0, 4443, 4444, 3, 1089, 544, 0, 4444, 770, 1, 0, 0, 0, 4445, 4446, 3, 1059, 529, 0, 4446, 4447, 3, 1061, 530, 0, 4447, 4448, 3, 1063, 531, 0, 4448, 4449, 3, 1069, 534, 0, 4449, 4450, 3, 1079, 539, 0, 4450, 4451, 3, 1061, 530, 0, 4451, 772, 1, 0, 0, 0, 4452, 4453, 3, 1063, 531, 0, 4453, 4454, 3, 1087, 543, 0, 4454, 4455, 3, 1053, 526, 0, 4455, 4456, 3, 1065, 532, 0, 4456, 4457, 3, 1077, 538, 0, 4457, 4458, 3, 1061, 530, 0, 4458, 4459, 3, 1079, 539, 0, 4459, 4460, 3, 1091, 545, 0, 4460, 774, 1, 0, 0, 0, 4461, 4462, 3, 1063, 531, 0, 4462, 4463, 3, 1087, 543, 0, 4463, 4464, 3, 1053, 526, 0, 4464, 4465, 3, 1065, 532, 0, 4465, 4466, 3, 1077, 538, 0, 4466, 4467, 3, 1061, 530, 0, 4467, 4468, 3, 1079, 539, 0, 4468, 4469, 3, 1091, 545, 0, 4469, 4470, 3, 1089, 544, 0, 4470, 776, 1, 0, 0, 0, 4471, 4472, 3, 1075, 537, 0, 4472, 4473, 3, 1053, 526, 0, 4473, 4474, 3, 1079, 539, 0, 4474, 4475, 3, 1065, 532, 0, 4475, 4476, 3, 1093, 546, 0, 4476, 4477, 3, 1053, 526, 0, 4477, 4478, 3, 1065, 532, 0, 4478, 4479, 3, 1061, 530, 0, 4479, 4480, 3, 1089, 544, 0, 4480, 778, 1, 0, 0, 0, 4481, 4482, 3, 1069, 534, 0, 4482, 4483, 3, 1079, 539, 0, 4483, 4484, 3, 1089, 544, 0, 4484, 4485, 3, 1061, 530, 0, 4485, 4486, 3, 1087, 543, 0, 4486, 4487, 3, 1091, 545, 0, 4487, 780, 1, 0, 0, 0, 4488, 4489, 3, 1055, 527, 0, 4489, 4490, 3, 1061, 530, 0, 4490, 4491, 3, 1063, 531, 0, 4491, 4492, 3, 1081, 540, 0, 4492, 4493, 3, 1087, 543, 0, 4493, 4494, 3, 1061, 530, 0, 4494, 782, 1, 0, 0, 0, 4495, 4496, 3, 1053, 526, 0, 4496, 4497, 3, 1063, 531, 0, 4497, 4498, 3, 1091, 545, 0, 4498, 4499, 3, 1061, 530, 0, 4499, 4500, 3, 1087, 543, 0, 4500, 784, 1, 0, 0, 0, 4501, 4502, 3, 1093, 546, 0, 4502, 4503, 3, 1083, 541, 0, 4503, 4504, 3, 1059, 529, 0, 4504, 4505, 3, 1053, 526, 0, 4505, 4506, 3, 1091, 545, 0, 4506, 4507, 3, 1061, 530, 0, 4507, 786, 1, 0, 0, 0, 4508, 4509, 3, 1087, 543, 0, 4509, 4510, 3, 1061, 530, 0, 4510, 4511, 3, 1063, 531, 0, 4511, 4512, 3, 1087, 543, 0, 4512, 4513, 3, 1061, 530, 0, 4513, 4514, 3, 1089, 544, 0, 4514, 4515, 3, 1067, 533, 0, 4515, 788, 1, 0, 0, 0, 4516, 4517, 3, 1057, 528, 0, 4517, 4518, 3, 1067, 533, 0, 4518, 4519, 3, 1061, 530, 0, 4519, 4520, 3, 1057, 528, 0, 4520, 4521, 3, 1073, 536, 0, 4521, 790, 1, 0, 0, 0, 4522, 4523, 3, 1055, 527, 0, 4523, 4524, 3, 1093, 546, 0, 4524, 4525, 3, 1069, 534, 0, 4525, 4526, 3, 1075, 537, 0, 4526, 4527, 3, 1059, 529, 0, 4527, 792, 1, 0, 0, 0, 4528, 4529, 3, 1061, 530, 0, 4529, 4530, 3, 1099, 549, 0, 4530, 4531, 3, 1061, 530, 0, 4531, 4532, 3, 1057, 528, 0, 4532, 4533, 3, 1093, 546, 0, 4533, 4534, 3, 1091, 545, 0, 4534, 4535, 3, 1061, 530, 0, 4535, 794, 1, 0, 0, 0, 4536, 4537, 3, 1089, 544, 0, 4537, 4538, 3, 1057, 528, 0, 4538, 4539, 3, 1087, 543, 0, 4539, 4540, 3, 1069, 534, 0, 4540, 4541, 3, 1083, 541, 0, 4541, 4542, 3, 1091, 545, 0, 4542, 796, 1, 0, 0, 0, 4543, 4544, 3, 1075, 537, 0, 4544, 4545, 3, 1069, 534, 0, 4545, 4546, 3, 1079, 539, 0, 4546, 4547, 3, 1091, 545, 0, 4547, 798, 1, 0, 0, 0, 4548, 4549, 3, 1087, 543, 0, 4549, 4550, 3, 1093, 546, 0, 4550, 4551, 3, 1075, 537, 0, 4551, 4552, 3, 1061, 530, 0, 4552, 4553, 3, 1089, 544, 0, 4553, 800, 1, 0, 0, 0, 4554, 4555, 3, 1091, 545, 0, 4555, 4556, 3, 1061, 530, 0, 4556, 4557, 3, 1099, 549, 0, 4557, 4558, 3, 1091, 545, 0, 4558, 802, 1, 0, 0, 0, 4559, 4560, 3, 1089, 544, 0, 4560, 4561, 3, 1053, 526, 0, 4561, 4562, 3, 1087, 543, 0, 4562, 4563, 3, 1069, 534, 0, 4563, 4564, 3, 1063, 531, 0, 4564, 804, 1, 0, 0, 0, 4565, 4566, 3, 1077, 538, 0, 4566, 4567, 3, 1061, 530, 0, 4567, 4568, 3, 1089, 544, 0, 4568, 4569, 3, 1089, 544, 0, 4569, 4570, 3, 1053, 526, 0, 4570, 4571, 3, 1065, 532, 0, 4571, 4572, 3, 1061, 530, 0, 4572, 806, 1, 0, 0, 0, 4573, 4574, 3, 1077, 538, 0, 4574, 4575, 3, 1061, 530, 0, 4575, 4576, 3, 1089, 544, 0, 4576, 4577, 3, 1089, 544, 0, 4577, 4578, 3, 1053, 526, 0, 4578, 4579, 3, 1065, 532, 0, 4579, 4580, 3, 1061, 530, 0, 4580, 4581, 3, 1089, 544, 0, 4581, 808, 1, 0, 0, 0, 4582, 4583, 3, 1057, 528, 0, 4583, 4584, 3, 1067, 533, 0, 4584, 4585, 3, 1053, 526, 0, 4585, 4586, 3, 1079, 539, 0, 4586, 4587, 3, 1079, 539, 0, 4587, 4588, 3, 1061, 530, 0, 4588, 4589, 3, 1075, 537, 0, 4589, 4590, 3, 1089, 544, 0, 4590, 810, 1, 0, 0, 0, 4591, 4592, 3, 1057, 528, 0, 4592, 4593, 3, 1081, 540, 0, 4593, 4594, 3, 1077, 538, 0, 4594, 4595, 3, 1077, 538, 0, 4595, 4596, 3, 1061, 530, 0, 4596, 4597, 3, 1079, 539, 0, 4597, 4598, 3, 1091, 545, 0, 4598, 812, 1, 0, 0, 0, 4599, 4600, 3, 1057, 528, 0, 4600, 4601, 3, 1093, 546, 0, 4601, 4602, 3, 1089, 544, 0, 4602, 4603, 3, 1091, 545, 0, 4603, 4604, 3, 1081, 540, 0, 4604, 4606, 3, 1077, 538, 0, 4605, 4607, 3, 1, 0, 0, 4606, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4609, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4611, 3, 1079, 539, 0, 4611, 4612, 3, 1053, 526, 0, 4612, 4613, 3, 1077, 538, 0, 4613, 4615, 3, 1061, 530, 0, 4614, 4616, 3, 1, 0, 0, 4615, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 4620, 3, 1077, 538, 0, 4620, 4621, 3, 1053, 526, 0, 4621, 4622, 3, 1083, 541, 0, 4622, 814, 1, 0, 0, 0, 4623, 4624, 3, 1057, 528, 0, 4624, 4625, 3, 1053, 526, 0, 4625, 4626, 3, 1091, 545, 0, 4626, 4627, 3, 1053, 526, 0, 4627, 4628, 3, 1075, 537, 0, 4628, 4629, 3, 1081, 540, 0, 4629, 4630, 3, 1065, 532, 0, 4630, 816, 1, 0, 0, 0, 4631, 4632, 3, 1063, 531, 0, 4632, 4633, 3, 1081, 540, 0, 4633, 4634, 3, 1087, 543, 0, 4634, 4635, 3, 1057, 528, 0, 4635, 4636, 3, 1061, 530, 0, 4636, 818, 1, 0, 0, 0, 4637, 4638, 3, 1055, 527, 0, 4638, 4639, 3, 1053, 526, 0, 4639, 4640, 3, 1057, 528, 0, 4640, 4641, 3, 1073, 536, 0, 4641, 4642, 3, 1065, 532, 0, 4642, 4643, 3, 1087, 543, 0, 4643, 4644, 3, 1081, 540, 0, 4644, 4645, 3, 1093, 546, 0, 4645, 4646, 3, 1079, 539, 0, 4646, 4647, 3, 1059, 529, 0, 4647, 820, 1, 0, 0, 0, 4648, 4649, 3, 1057, 528, 0, 4649, 4650, 3, 1053, 526, 0, 4650, 4651, 3, 1075, 537, 0, 4651, 4652, 3, 1075, 537, 0, 4652, 4653, 3, 1061, 530, 0, 4653, 4654, 3, 1087, 543, 0, 4654, 4655, 3, 1089, 544, 0, 4655, 822, 1, 0, 0, 0, 4656, 4657, 3, 1057, 528, 0, 4657, 4658, 3, 1053, 526, 0, 4658, 4659, 3, 1075, 537, 0, 4659, 4660, 3, 1075, 537, 0, 4660, 4661, 3, 1061, 530, 0, 4661, 4662, 3, 1061, 530, 0, 4662, 4663, 3, 1089, 544, 0, 4663, 824, 1, 0, 0, 0, 4664, 4665, 3, 1087, 543, 0, 4665, 4666, 3, 1061, 530, 0, 4666, 4667, 3, 1063, 531, 0, 4667, 4668, 3, 1061, 530, 0, 4668, 4669, 3, 1087, 543, 0, 4669, 4670, 3, 1061, 530, 0, 4670, 4671, 3, 1079, 539, 0, 4671, 4672, 3, 1057, 528, 0, 4672, 4673, 3, 1061, 530, 0, 4673, 4674, 3, 1089, 544, 0, 4674, 826, 1, 0, 0, 0, 4675, 4676, 3, 1091, 545, 0, 4676, 4677, 3, 1087, 543, 0, 4677, 4678, 3, 1053, 526, 0, 4678, 4679, 3, 1079, 539, 0, 4679, 4680, 3, 1089, 544, 0, 4680, 4681, 3, 1069, 534, 0, 4681, 4682, 3, 1091, 545, 0, 4682, 4683, 3, 1069, 534, 0, 4683, 4684, 3, 1095, 547, 0, 4684, 4685, 3, 1061, 530, 0, 4685, 828, 1, 0, 0, 0, 4686, 4687, 3, 1069, 534, 0, 4687, 4688, 3, 1077, 538, 0, 4688, 4689, 3, 1083, 541, 0, 4689, 4690, 3, 1053, 526, 0, 4690, 4691, 3, 1057, 528, 0, 4691, 4692, 3, 1091, 545, 0, 4692, 830, 1, 0, 0, 0, 4693, 4694, 3, 1059, 529, 0, 4694, 4695, 3, 1061, 530, 0, 4695, 4696, 3, 1083, 541, 0, 4696, 4697, 3, 1091, 545, 0, 4697, 4698, 3, 1067, 533, 0, 4698, 832, 1, 0, 0, 0, 4699, 4700, 3, 1089, 544, 0, 4700, 4701, 3, 1091, 545, 0, 4701, 4702, 3, 1087, 543, 0, 4702, 4703, 3, 1093, 546, 0, 4703, 4704, 3, 1057, 528, 0, 4704, 4705, 3, 1091, 545, 0, 4705, 4706, 3, 1093, 546, 0, 4706, 4707, 3, 1087, 543, 0, 4707, 4708, 3, 1061, 530, 0, 4708, 834, 1, 0, 0, 0, 4709, 4710, 3, 1089, 544, 0, 4710, 4711, 3, 1091, 545, 0, 4711, 4712, 3, 1087, 543, 0, 4712, 4713, 3, 1093, 546, 0, 4713, 4714, 3, 1057, 528, 0, 4714, 4715, 3, 1091, 545, 0, 4715, 4716, 3, 1093, 546, 0, 4716, 4717, 3, 1087, 543, 0, 4717, 4718, 3, 1061, 530, 0, 4718, 4719, 3, 1089, 544, 0, 4719, 836, 1, 0, 0, 0, 4720, 4721, 3, 1091, 545, 0, 4721, 4722, 3, 1101, 550, 0, 4722, 4723, 3, 1083, 541, 0, 4723, 4724, 3, 1061, 530, 0, 4724, 838, 1, 0, 0, 0, 4725, 4726, 3, 1095, 547, 0, 4726, 4727, 3, 1053, 526, 0, 4727, 4728, 3, 1075, 537, 0, 4728, 4729, 3, 1093, 546, 0, 4729, 4730, 3, 1061, 530, 0, 4730, 840, 1, 0, 0, 0, 4731, 4732, 3, 1095, 547, 0, 4732, 4733, 3, 1053, 526, 0, 4733, 4734, 3, 1075, 537, 0, 4734, 4735, 3, 1093, 546, 0, 4735, 4736, 3, 1061, 530, 0, 4736, 4737, 3, 1089, 544, 0, 4737, 842, 1, 0, 0, 0, 4738, 4739, 3, 1089, 544, 0, 4739, 4740, 3, 1069, 534, 0, 4740, 4741, 3, 1079, 539, 0, 4741, 4742, 3, 1065, 532, 0, 4742, 4743, 3, 1075, 537, 0, 4743, 4744, 3, 1061, 530, 0, 4744, 844, 1, 0, 0, 0, 4745, 4746, 3, 1077, 538, 0, 4746, 4747, 3, 1093, 546, 0, 4747, 4748, 3, 1075, 537, 0, 4748, 4749, 3, 1091, 545, 0, 4749, 4750, 3, 1069, 534, 0, 4750, 4751, 3, 1083, 541, 0, 4751, 4752, 3, 1075, 537, 0, 4752, 4753, 3, 1061, 530, 0, 4753, 846, 1, 0, 0, 0, 4754, 4755, 3, 1079, 539, 0, 4755, 4756, 3, 1081, 540, 0, 4756, 4757, 3, 1079, 539, 0, 4757, 4758, 3, 1061, 530, 0, 4758, 848, 1, 0, 0, 0, 4759, 4760, 3, 1055, 527, 0, 4760, 4761, 3, 1081, 540, 0, 4761, 4762, 3, 1091, 545, 0, 4762, 4763, 3, 1067, 533, 0, 4763, 850, 1, 0, 0, 0, 4764, 4765, 3, 1091, 545, 0, 4765, 4766, 3, 1081, 540, 0, 4766, 852, 1, 0, 0, 0, 4767, 4768, 3, 1081, 540, 0, 4768, 4769, 3, 1063, 531, 0, 4769, 854, 1, 0, 0, 0, 4770, 4771, 3, 1081, 540, 0, 4771, 4772, 3, 1095, 547, 0, 4772, 4773, 3, 1061, 530, 0, 4773, 4774, 3, 1087, 543, 0, 4774, 856, 1, 0, 0, 0, 4775, 4776, 3, 1063, 531, 0, 4776, 4777, 3, 1081, 540, 0, 4777, 4778, 3, 1087, 543, 0, 4778, 858, 1, 0, 0, 0, 4779, 4780, 3, 1087, 543, 0, 4780, 4781, 3, 1061, 530, 0, 4781, 4782, 3, 1083, 541, 0, 4782, 4783, 3, 1075, 537, 0, 4783, 4784, 3, 1053, 526, 0, 4784, 4785, 3, 1057, 528, 0, 4785, 4786, 3, 1061, 530, 0, 4786, 860, 1, 0, 0, 0, 4787, 4788, 3, 1077, 538, 0, 4788, 4789, 3, 1061, 530, 0, 4789, 4790, 3, 1077, 538, 0, 4790, 4791, 3, 1055, 527, 0, 4791, 4792, 3, 1061, 530, 0, 4792, 4793, 3, 1087, 543, 0, 4793, 4794, 3, 1089, 544, 0, 4794, 862, 1, 0, 0, 0, 4795, 4796, 3, 1053, 526, 0, 4796, 4797, 3, 1091, 545, 0, 4797, 4798, 3, 1091, 545, 0, 4798, 4799, 3, 1087, 543, 0, 4799, 4800, 3, 1069, 534, 0, 4800, 4801, 3, 1055, 527, 0, 4801, 4802, 3, 1093, 546, 0, 4802, 4803, 3, 1091, 545, 0, 4803, 4804, 3, 1061, 530, 0, 4804, 4805, 3, 1079, 539, 0, 4805, 4806, 3, 1053, 526, 0, 4806, 4807, 3, 1077, 538, 0, 4807, 4808, 3, 1061, 530, 0, 4808, 864, 1, 0, 0, 0, 4809, 4810, 3, 1063, 531, 0, 4810, 4811, 3, 1081, 540, 0, 4811, 4812, 3, 1087, 543, 0, 4812, 4813, 3, 1077, 538, 0, 4813, 4814, 3, 1053, 526, 0, 4814, 4815, 3, 1091, 545, 0, 4815, 866, 1, 0, 0, 0, 4816, 4817, 3, 1089, 544, 0, 4817, 4818, 3, 1085, 542, 0, 4818, 4819, 3, 1075, 537, 0, 4819, 868, 1, 0, 0, 0, 4820, 4821, 3, 1097, 548, 0, 4821, 4822, 3, 1069, 534, 0, 4822, 4823, 3, 1091, 545, 0, 4823, 4824, 3, 1067, 533, 0, 4824, 4825, 3, 1081, 540, 0, 4825, 4826, 3, 1093, 546, 0, 4826, 4827, 3, 1091, 545, 0, 4827, 870, 1, 0, 0, 0, 4828, 4829, 3, 1059, 529, 0, 4829, 4830, 3, 1087, 543, 0, 4830, 4831, 3, 1101, 550, 0, 4831, 872, 1, 0, 0, 0, 4832, 4833, 3, 1087, 543, 0, 4833, 4834, 3, 1093, 546, 0, 4834, 4835, 3, 1079, 539, 0, 4835, 874, 1, 0, 0, 0, 4836, 4837, 3, 1097, 548, 0, 4837, 4838, 3, 1069, 534, 0, 4838, 4839, 3, 1059, 529, 0, 4839, 4840, 3, 1065, 532, 0, 4840, 4841, 3, 1061, 530, 0, 4841, 4842, 3, 1091, 545, 0, 4842, 4843, 3, 1091, 545, 0, 4843, 4844, 3, 1101, 550, 0, 4844, 4845, 3, 1083, 541, 0, 4845, 4846, 3, 1061, 530, 0, 4846, 876, 1, 0, 0, 0, 4847, 4848, 3, 1095, 547, 0, 4848, 4849, 5, 51, 0, 0, 4849, 878, 1, 0, 0, 0, 4850, 4851, 3, 1055, 527, 0, 4851, 4852, 3, 1093, 546, 0, 4852, 4853, 3, 1089, 544, 0, 4853, 4854, 3, 1069, 534, 0, 4854, 4855, 3, 1079, 539, 0, 4855, 4856, 3, 1061, 530, 0, 4856, 4857, 3, 1089, 544, 0, 4857, 4858, 3, 1089, 544, 0, 4858, 880, 1, 0, 0, 0, 4859, 4860, 3, 1061, 530, 0, 4860, 4861, 3, 1095, 547, 0, 4861, 4862, 3, 1061, 530, 0, 4862, 4863, 3, 1079, 539, 0, 4863, 4864, 3, 1091, 545, 0, 4864, 882, 1, 0, 0, 0, 4865, 4866, 3, 1089, 544, 0, 4866, 4867, 3, 1093, 546, 0, 4867, 4868, 3, 1055, 527, 0, 4868, 4869, 3, 1089, 544, 0, 4869, 4870, 3, 1057, 528, 0, 4870, 4871, 3, 1087, 543, 0, 4871, 4872, 3, 1069, 534, 0, 4872, 4873, 3, 1055, 527, 0, 4873, 4874, 3, 1061, 530, 0, 4874, 884, 1, 0, 0, 0, 4875, 4876, 3, 1089, 544, 0, 4876, 4877, 3, 1061, 530, 0, 4877, 4878, 3, 1091, 545, 0, 4878, 4879, 3, 1091, 545, 0, 4879, 4880, 3, 1069, 534, 0, 4880, 4881, 3, 1079, 539, 0, 4881, 4882, 3, 1065, 532, 0, 4882, 4883, 3, 1089, 544, 0, 4883, 886, 1, 0, 0, 0, 4884, 4885, 3, 1057, 528, 0, 4885, 4886, 3, 1081, 540, 0, 4886, 4887, 3, 1079, 539, 0, 4887, 4888, 3, 1063, 531, 0, 4888, 4889, 3, 1069, 534, 0, 4889, 4890, 3, 1065, 532, 0, 4890, 4891, 3, 1093, 546, 0, 4891, 4892, 3, 1087, 543, 0, 4892, 4893, 3, 1053, 526, 0, 4893, 4894, 3, 1091, 545, 0, 4894, 4895, 3, 1069, 534, 0, 4895, 4896, 3, 1081, 540, 0, 4896, 4897, 3, 1079, 539, 0, 4897, 888, 1, 0, 0, 0, 4898, 4899, 3, 1063, 531, 0, 4899, 4900, 3, 1061, 530, 0, 4900, 4901, 3, 1053, 526, 0, 4901, 4902, 3, 1091, 545, 0, 4902, 4903, 3, 1093, 546, 0, 4903, 4904, 3, 1087, 543, 0, 4904, 4905, 3, 1061, 530, 0, 4905, 4906, 3, 1089, 544, 0, 4906, 890, 1, 0, 0, 0, 4907, 4908, 3, 1053, 526, 0, 4908, 4909, 3, 1059, 529, 0, 4909, 4910, 3, 1059, 529, 0, 4910, 4911, 3, 1061, 530, 0, 4911, 4912, 3, 1059, 529, 0, 4912, 892, 1, 0, 0, 0, 4913, 4914, 3, 1089, 544, 0, 4914, 4915, 3, 1069, 534, 0, 4915, 4916, 3, 1079, 539, 0, 4916, 4917, 3, 1057, 528, 0, 4917, 4918, 3, 1061, 530, 0, 4918, 894, 1, 0, 0, 0, 4919, 4920, 3, 1089, 544, 0, 4920, 4921, 3, 1061, 530, 0, 4921, 4922, 3, 1057, 528, 0, 4922, 4923, 3, 1093, 546, 0, 4923, 4924, 3, 1087, 543, 0, 4924, 4925, 3, 1069, 534, 0, 4925, 4926, 3, 1091, 545, 0, 4926, 4927, 3, 1101, 550, 0, 4927, 896, 1, 0, 0, 0, 4928, 4929, 3, 1087, 543, 0, 4929, 4930, 3, 1081, 540, 0, 4930, 4931, 3, 1075, 537, 0, 4931, 4932, 3, 1061, 530, 0, 4932, 898, 1, 0, 0, 0, 4933, 4934, 3, 1087, 543, 0, 4934, 4935, 3, 1081, 540, 0, 4935, 4936, 3, 1075, 537, 0, 4936, 4937, 3, 1061, 530, 0, 4937, 4938, 3, 1089, 544, 0, 4938, 900, 1, 0, 0, 0, 4939, 4940, 3, 1065, 532, 0, 4940, 4941, 3, 1087, 543, 0, 4941, 4942, 3, 1053, 526, 0, 4942, 4943, 3, 1079, 539, 0, 4943, 4944, 3, 1091, 545, 0, 4944, 902, 1, 0, 0, 0, 4945, 4946, 3, 1087, 543, 0, 4946, 4947, 3, 1061, 530, 0, 4947, 4948, 3, 1095, 547, 0, 4948, 4949, 3, 1081, 540, 0, 4949, 4950, 3, 1073, 536, 0, 4950, 4951, 3, 1061, 530, 0, 4951, 904, 1, 0, 0, 0, 4952, 4953, 3, 1083, 541, 0, 4953, 4954, 3, 1087, 543, 0, 4954, 4955, 3, 1081, 540, 0, 4955, 4956, 3, 1059, 529, 0, 4956, 4957, 3, 1093, 546, 0, 4957, 4958, 3, 1057, 528, 0, 4958, 4959, 3, 1091, 545, 0, 4959, 4960, 3, 1069, 534, 0, 4960, 4961, 3, 1081, 540, 0, 4961, 4962, 3, 1079, 539, 0, 4962, 906, 1, 0, 0, 0, 4963, 4964, 3, 1083, 541, 0, 4964, 4965, 3, 1087, 543, 0, 4965, 4966, 3, 1081, 540, 0, 4966, 4967, 3, 1091, 545, 0, 4967, 4968, 3, 1081, 540, 0, 4968, 4969, 3, 1091, 545, 0, 4969, 4970, 3, 1101, 550, 0, 4970, 4971, 3, 1083, 541, 0, 4971, 4972, 3, 1061, 530, 0, 4972, 908, 1, 0, 0, 0, 4973, 4974, 3, 1077, 538, 0, 4974, 4975, 3, 1053, 526, 0, 4975, 4976, 3, 1079, 539, 0, 4976, 4977, 3, 1053, 526, 0, 4977, 4978, 3, 1065, 532, 0, 4978, 4979, 3, 1061, 530, 0, 4979, 910, 1, 0, 0, 0, 4980, 4981, 3, 1059, 529, 0, 4981, 4982, 3, 1061, 530, 0, 4982, 4983, 3, 1077, 538, 0, 4983, 4984, 3, 1081, 540, 0, 4984, 912, 1, 0, 0, 0, 4985, 4986, 3, 1077, 538, 0, 4986, 4987, 3, 1053, 526, 0, 4987, 4988, 3, 1091, 545, 0, 4988, 4989, 3, 1087, 543, 0, 4989, 4990, 3, 1069, 534, 0, 4990, 4991, 3, 1099, 549, 0, 4991, 914, 1, 0, 0, 0, 4992, 4993, 3, 1053, 526, 0, 4993, 4994, 3, 1083, 541, 0, 4994, 4995, 3, 1083, 541, 0, 4995, 4996, 3, 1075, 537, 0, 4996, 4997, 3, 1101, 550, 0, 4997, 916, 1, 0, 0, 0, 4998, 4999, 3, 1053, 526, 0, 4999, 5000, 3, 1057, 528, 0, 5000, 5001, 3, 1057, 528, 0, 5001, 5002, 3, 1061, 530, 0, 5002, 5003, 3, 1089, 544, 0, 5003, 5004, 3, 1089, 544, 0, 5004, 918, 1, 0, 0, 0, 5005, 5006, 3, 1075, 537, 0, 5006, 5007, 3, 1061, 530, 0, 5007, 5008, 3, 1095, 547, 0, 5008, 5009, 3, 1061, 530, 0, 5009, 5010, 3, 1075, 537, 0, 5010, 920, 1, 0, 0, 0, 5011, 5012, 3, 1093, 546, 0, 5012, 5013, 3, 1089, 544, 0, 5013, 5014, 3, 1061, 530, 0, 5014, 5015, 3, 1087, 543, 0, 5015, 922, 1, 0, 0, 0, 5016, 5017, 3, 1091, 545, 0, 5017, 5018, 3, 1053, 526, 0, 5018, 5019, 3, 1089, 544, 0, 5019, 5020, 3, 1073, 536, 0, 5020, 924, 1, 0, 0, 0, 5021, 5022, 3, 1059, 529, 0, 5022, 5023, 3, 1061, 530, 0, 5023, 5024, 3, 1057, 528, 0, 5024, 5025, 3, 1069, 534, 0, 5025, 5026, 3, 1089, 544, 0, 5026, 5027, 3, 1069, 534, 0, 5027, 5028, 3, 1081, 540, 0, 5028, 5029, 3, 1079, 539, 0, 5029, 926, 1, 0, 0, 0, 5030, 5031, 3, 1089, 544, 0, 5031, 5032, 3, 1083, 541, 0, 5032, 5033, 3, 1075, 537, 0, 5033, 5034, 3, 1069, 534, 0, 5034, 5035, 3, 1091, 545, 0, 5035, 928, 1, 0, 0, 0, 5036, 5037, 3, 1081, 540, 0, 5037, 5038, 3, 1093, 546, 0, 5038, 5039, 3, 1091, 545, 0, 5039, 5040, 3, 1057, 528, 0, 5040, 5041, 3, 1081, 540, 0, 5041, 5042, 3, 1077, 538, 0, 5042, 5043, 3, 1061, 530, 0, 5043, 5044, 3, 1089, 544, 0, 5044, 930, 1, 0, 0, 0, 5045, 5046, 3, 1091, 545, 0, 5046, 5047, 3, 1053, 526, 0, 5047, 5048, 3, 1087, 543, 0, 5048, 5049, 3, 1065, 532, 0, 5049, 5050, 3, 1061, 530, 0, 5050, 5051, 3, 1091, 545, 0, 5051, 5052, 3, 1069, 534, 0, 5052, 5053, 3, 1079, 539, 0, 5053, 5054, 3, 1065, 532, 0, 5054, 932, 1, 0, 0, 0, 5055, 5056, 3, 1079, 539, 0, 5056, 5057, 3, 1081, 540, 0, 5057, 5058, 3, 1091, 545, 0, 5058, 5059, 3, 1069, 534, 0, 5059, 5060, 3, 1063, 531, 0, 5060, 5061, 3, 1069, 534, 0, 5061, 5062, 3, 1057, 528, 0, 5062, 5063, 3, 1053, 526, 0, 5063, 5064, 3, 1091, 545, 0, 5064, 5065, 3, 1069, 534, 0, 5065, 5066, 3, 1081, 540, 0, 5066, 5067, 3, 1079, 539, 0, 5067, 934, 1, 0, 0, 0, 5068, 5069, 3, 1091, 545, 0, 5069, 5070, 3, 1069, 534, 0, 5070, 5071, 3, 1077, 538, 0, 5071, 5072, 3, 1061, 530, 0, 5072, 5073, 3, 1087, 543, 0, 5073, 936, 1, 0, 0, 0, 5074, 5075, 3, 1071, 535, 0, 5075, 5076, 3, 1093, 546, 0, 5076, 5077, 3, 1077, 538, 0, 5077, 5078, 3, 1083, 541, 0, 5078, 938, 1, 0, 0, 0, 5079, 5080, 3, 1059, 529, 0, 5080, 5081, 3, 1093, 546, 0, 5081, 5082, 3, 1061, 530, 0, 5082, 940, 1, 0, 0, 0, 5083, 5084, 3, 1081, 540, 0, 5084, 5085, 3, 1095, 547, 0, 5085, 5086, 3, 1061, 530, 0, 5086, 5087, 3, 1087, 543, 0, 5087, 5088, 3, 1095, 547, 0, 5088, 5089, 3, 1069, 534, 0, 5089, 5090, 3, 1061, 530, 0, 5090, 5091, 3, 1097, 548, 0, 5091, 942, 1, 0, 0, 0, 5092, 5093, 3, 1059, 529, 0, 5093, 5094, 3, 1053, 526, 0, 5094, 5095, 3, 1091, 545, 0, 5095, 5096, 3, 1061, 530, 0, 5096, 944, 1, 0, 0, 0, 5097, 5098, 3, 1083, 541, 0, 5098, 5099, 3, 1053, 526, 0, 5099, 5100, 3, 1087, 543, 0, 5100, 5101, 3, 1053, 526, 0, 5101, 5102, 3, 1075, 537, 0, 5102, 5103, 3, 1075, 537, 0, 5103, 5104, 3, 1061, 530, 0, 5104, 5105, 3, 1075, 537, 0, 5105, 946, 1, 0, 0, 0, 5106, 5107, 3, 1097, 548, 0, 5107, 5108, 3, 1053, 526, 0, 5108, 5109, 3, 1069, 534, 0, 5109, 5110, 3, 1091, 545, 0, 5110, 948, 1, 0, 0, 0, 5111, 5112, 3, 1053, 526, 0, 5112, 5113, 3, 1079, 539, 0, 5113, 5114, 3, 1079, 539, 0, 5114, 5115, 3, 1081, 540, 0, 5115, 5116, 3, 1091, 545, 0, 5116, 5117, 3, 1053, 526, 0, 5117, 5118, 3, 1091, 545, 0, 5118, 5119, 3, 1069, 534, 0, 5119, 5120, 3, 1081, 540, 0, 5120, 5121, 3, 1079, 539, 0, 5121, 950, 1, 0, 0, 0, 5122, 5123, 3, 1055, 527, 0, 5123, 5124, 3, 1081, 540, 0, 5124, 5125, 3, 1093, 546, 0, 5125, 5126, 3, 1079, 539, 0, 5126, 5127, 3, 1059, 529, 0, 5127, 5128, 3, 1053, 526, 0, 5128, 5129, 3, 1087, 543, 0, 5129, 5130, 3, 1101, 550, 0, 5130, 952, 1, 0, 0, 0, 5131, 5132, 3, 1069, 534, 0, 5132, 5133, 3, 1079, 539, 0, 5133, 5134, 3, 1091, 545, 0, 5134, 5135, 3, 1061, 530, 0, 5135, 5136, 3, 1087, 543, 0, 5136, 5137, 3, 1087, 543, 0, 5137, 5138, 3, 1093, 546, 0, 5138, 5139, 3, 1083, 541, 0, 5139, 5140, 3, 1091, 545, 0, 5140, 5141, 3, 1069, 534, 0, 5141, 5142, 3, 1079, 539, 0, 5142, 5143, 3, 1065, 532, 0, 5143, 954, 1, 0, 0, 0, 5144, 5145, 3, 1079, 539, 0, 5145, 5146, 3, 1081, 540, 0, 5146, 5147, 3, 1079, 539, 0, 5147, 956, 1, 0, 0, 0, 5148, 5149, 3, 1077, 538, 0, 5149, 5150, 3, 1093, 546, 0, 5150, 5151, 3, 1075, 537, 0, 5151, 5152, 3, 1091, 545, 0, 5152, 5153, 3, 1069, 534, 0, 5153, 958, 1, 0, 0, 0, 5154, 5155, 3, 1055, 527, 0, 5155, 5156, 3, 1101, 550, 0, 5156, 960, 1, 0, 0, 0, 5157, 5158, 3, 1087, 543, 0, 5158, 5159, 3, 1061, 530, 0, 5159, 5160, 3, 1053, 526, 0, 5160, 5161, 3, 1059, 529, 0, 5161, 962, 1, 0, 0, 0, 5162, 5163, 3, 1097, 548, 0, 5163, 5164, 3, 1087, 543, 0, 5164, 5165, 3, 1069, 534, 0, 5165, 5166, 3, 1091, 545, 0, 5166, 5167, 3, 1061, 530, 0, 5167, 964, 1, 0, 0, 0, 5168, 5169, 3, 1059, 529, 0, 5169, 5170, 3, 1061, 530, 0, 5170, 5171, 3, 1089, 544, 0, 5171, 5172, 3, 1057, 528, 0, 5172, 5173, 3, 1087, 543, 0, 5173, 5174, 3, 1069, 534, 0, 5174, 5175, 3, 1083, 541, 0, 5175, 5176, 3, 1091, 545, 0, 5176, 5177, 3, 1069, 534, 0, 5177, 5178, 3, 1081, 540, 0, 5178, 5179, 3, 1079, 539, 0, 5179, 966, 1, 0, 0, 0, 5180, 5181, 3, 1059, 529, 0, 5181, 5182, 3, 1069, 534, 0, 5182, 5183, 3, 1089, 544, 0, 5183, 5184, 3, 1083, 541, 0, 5184, 5185, 3, 1075, 537, 0, 5185, 5186, 3, 1053, 526, 0, 5186, 5187, 3, 1101, 550, 0, 5187, 968, 1, 0, 0, 0, 5188, 5189, 3, 1081, 540, 0, 5189, 5190, 3, 1063, 531, 0, 5190, 5191, 3, 1063, 531, 0, 5191, 970, 1, 0, 0, 0, 5192, 5193, 3, 1093, 546, 0, 5193, 5194, 3, 1089, 544, 0, 5194, 5195, 3, 1061, 530, 0, 5195, 5196, 3, 1087, 543, 0, 5196, 5197, 3, 1089, 544, 0, 5197, 972, 1, 0, 0, 0, 5198, 5199, 5, 60, 0, 0, 5199, 5203, 5, 62, 0, 0, 5200, 5201, 5, 33, 0, 0, 5201, 5203, 5, 61, 0, 0, 5202, 5198, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5203, 974, 1, 0, 0, 0, 5204, 5205, 5, 60, 0, 0, 5205, 5206, 5, 61, 0, 0, 5206, 976, 1, 0, 0, 0, 5207, 5208, 5, 62, 0, 0, 5208, 5209, 5, 61, 0, 0, 5209, 978, 1, 0, 0, 0, 5210, 5211, 5, 61, 0, 0, 5211, 980, 1, 0, 0, 0, 5212, 5213, 5, 60, 0, 0, 5213, 982, 1, 0, 0, 0, 5214, 5215, 5, 62, 0, 0, 5215, 984, 1, 0, 0, 0, 5216, 5217, 5, 43, 0, 0, 5217, 986, 1, 0, 0, 0, 5218, 5219, 5, 45, 0, 0, 5219, 988, 1, 0, 0, 0, 5220, 5221, 5, 42, 0, 0, 5221, 990, 1, 0, 0, 0, 5222, 5223, 5, 47, 0, 0, 5223, 992, 1, 0, 0, 0, 5224, 5225, 5, 37, 0, 0, 5225, 994, 1, 0, 0, 0, 5226, 5227, 3, 1077, 538, 0, 5227, 5228, 3, 1081, 540, 0, 5228, 5229, 3, 1059, 529, 0, 5229, 996, 1, 0, 0, 0, 5230, 5231, 3, 1059, 529, 0, 5231, 5232, 3, 1069, 534, 0, 5232, 5233, 3, 1095, 547, 0, 5233, 998, 1, 0, 0, 0, 5234, 5235, 5, 59, 0, 0, 5235, 1000, 1, 0, 0, 0, 5236, 5237, 5, 44, 0, 0, 5237, 1002, 1, 0, 0, 0, 5238, 5239, 5, 46, 0, 0, 5239, 1004, 1, 0, 0, 0, 5240, 5241, 5, 40, 0, 0, 5241, 1006, 1, 0, 0, 0, 5242, 5243, 5, 41, 0, 0, 5243, 1008, 1, 0, 0, 0, 5244, 5245, 5, 123, 0, 0, 5245, 1010, 1, 0, 0, 0, 5246, 5247, 5, 125, 0, 0, 5247, 1012, 1, 0, 0, 0, 5248, 5249, 5, 91, 0, 0, 5249, 1014, 1, 0, 0, 0, 5250, 5251, 5, 93, 0, 0, 5251, 1016, 1, 0, 0, 0, 5252, 5253, 5, 58, 0, 0, 5253, 1018, 1, 0, 0, 0, 5254, 5255, 5, 64, 0, 0, 5255, 1020, 1, 0, 0, 0, 5256, 5257, 5, 124, 0, 0, 5257, 1022, 1, 0, 0, 0, 5258, 5259, 5, 58, 0, 0, 5259, 5260, 5, 58, 0, 0, 5260, 1024, 1, 0, 0, 0, 5261, 5262, 5, 45, 0, 0, 5262, 5263, 5, 62, 0, 0, 5263, 1026, 1, 0, 0, 0, 5264, 5265, 5, 63, 0, 0, 5265, 1028, 1, 0, 0, 0, 5266, 5267, 5, 35, 0, 0, 5267, 1030, 1, 0, 0, 0, 5268, 5269, 5, 91, 0, 0, 5269, 5270, 5, 37, 0, 0, 5270, 5274, 1, 0, 0, 0, 5271, 5273, 9, 0, 0, 0, 5272, 5271, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5275, 5277, 1, 0, 0, 0, 5276, 5274, 1, 0, 0, 0, 5277, 5278, 5, 37, 0, 0, 5278, 5279, 5, 93, 0, 0, 5279, 1032, 1, 0, 0, 0, 5280, 5288, 5, 39, 0, 0, 5281, 5287, 8, 2, 0, 0, 5282, 5283, 5, 92, 0, 0, 5283, 5287, 9, 0, 0, 0, 5284, 5285, 5, 39, 0, 0, 5285, 5287, 5, 39, 0, 0, 5286, 5281, 1, 0, 0, 0, 5286, 5282, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5287, 5290, 1, 0, 0, 0, 5288, 5286, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5291, 1, 0, 0, 0, 5290, 5288, 1, 0, 0, 0, 5291, 5292, 5, 39, 0, 0, 5292, 1034, 1, 0, 0, 0, 5293, 5294, 5, 36, 0, 0, 5294, 5295, 5, 36, 0, 0, 5295, 5299, 1, 0, 0, 0, 5296, 5298, 9, 0, 0, 0, 5297, 5296, 1, 0, 0, 0, 5298, 5301, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5299, 5297, 1, 0, 0, 0, 5300, 5302, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5303, 5, 36, 0, 0, 5303, 5304, 5, 36, 0, 0, 5304, 1036, 1, 0, 0, 0, 5305, 5307, 5, 45, 0, 0, 5306, 5305, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5309, 1, 0, 0, 0, 5308, 5310, 3, 1051, 525, 0, 5309, 5308, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, 5309, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5319, 1, 0, 0, 0, 5313, 5315, 5, 46, 0, 0, 5314, 5316, 3, 1051, 525, 0, 5315, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5315, 1, 0, 0, 0, 5317, 5318, 1, 0, 0, 0, 5318, 5320, 1, 0, 0, 0, 5319, 5313, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5330, 1, 0, 0, 0, 5321, 5323, 7, 3, 0, 0, 5322, 5324, 7, 4, 0, 0, 5323, 5322, 1, 0, 0, 0, 5323, 5324, 1, 0, 0, 0, 5324, 5326, 1, 0, 0, 0, 5325, 5327, 3, 1051, 525, 0, 5326, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5326, 1, 0, 0, 0, 5328, 5329, 1, 0, 0, 0, 5329, 5331, 1, 0, 0, 0, 5330, 5321, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 1038, 1, 0, 0, 0, 5332, 5334, 5, 36, 0, 0, 5333, 5335, 3, 1049, 524, 0, 5334, 5333, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5334, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 1040, 1, 0, 0, 0, 5338, 5342, 3, 1047, 523, 0, 5339, 5341, 3, 1049, 524, 0, 5340, 5339, 1, 0, 0, 0, 5341, 5344, 1, 0, 0, 0, 5342, 5340, 1, 0, 0, 0, 5342, 5343, 1, 0, 0, 0, 5343, 1042, 1, 0, 0, 0, 5344, 5342, 1, 0, 0, 0, 5345, 5353, 3, 1047, 523, 0, 5346, 5348, 3, 1049, 524, 0, 5347, 5346, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5352, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5354, 5, 45, 0, 0, 5353, 5349, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5353, 1, 0, 0, 0, 5355, 5356, 1, 0, 0, 0, 5356, 5360, 1, 0, 0, 0, 5357, 5359, 3, 1049, 524, 0, 5358, 5357, 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 1044, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5367, 5, 34, 0, 0, 5364, 5366, 8, 5, 0, 0, 5365, 5364, 1, 0, 0, 0, 5366, 5369, 1, 0, 0, 0, 5367, 5365, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5370, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5370, 5380, 5, 34, 0, 0, 5371, 5375, 5, 96, 0, 0, 5372, 5374, 8, 6, 0, 0, 5373, 5372, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 5, 96, 0, 0, 5379, 5363, 1, 0, 0, 0, 5379, 5371, 1, 0, 0, 0, 5380, 1046, 1, 0, 0, 0, 5381, 5382, 7, 7, 0, 0, 5382, 1048, 1, 0, 0, 0, 5383, 5384, 7, 8, 0, 0, 5384, 1050, 1, 0, 0, 0, 5385, 5386, 7, 9, 0, 0, 5386, 1052, 1, 0, 0, 0, 5387, 5388, 7, 10, 0, 0, 5388, 1054, 1, 0, 0, 0, 5389, 5390, 7, 11, 0, 0, 5390, 1056, 1, 0, 0, 0, 5391, 5392, 7, 12, 0, 0, 5392, 1058, 1, 0, 0, 0, 5393, 5394, 7, 13, 0, 0, 5394, 1060, 1, 0, 0, 0, 5395, 5396, 7, 3, 0, 0, 5396, 1062, 1, 0, 0, 0, 5397, 5398, 7, 14, 0, 0, 5398, 1064, 1, 0, 0, 0, 5399, 5400, 7, 15, 0, 0, 5400, 1066, 1, 0, 0, 0, 5401, 5402, 7, 16, 0, 0, 5402, 1068, 1, 0, 0, 0, 5403, 5404, 7, 17, 0, 0, 5404, 1070, 1, 0, 0, 0, 5405, 5406, 7, 18, 0, 0, 5406, 1072, 1, 0, 0, 0, 5407, 5408, 7, 19, 0, 0, 5408, 1074, 1, 0, 0, 0, 5409, 5410, 7, 20, 0, 0, 5410, 1076, 1, 0, 0, 0, 5411, 5412, 7, 21, 0, 0, 5412, 1078, 1, 0, 0, 0, 5413, 5414, 7, 22, 0, 0, 5414, 1080, 1, 0, 0, 0, 5415, 5416, 7, 23, 0, 0, 5416, 1082, 1, 0, 0, 0, 5417, 5418, 7, 24, 0, 0, 5418, 1084, 1, 0, 0, 0, 5419, 5420, 7, 25, 0, 0, 5420, 1086, 1, 0, 0, 0, 5421, 5422, 7, 26, 0, 0, 5422, 1088, 1, 0, 0, 0, 5423, 5424, 7, 27, 0, 0, 5424, 1090, 1, 0, 0, 0, 5425, 5426, 7, 28, 0, 0, 5426, 1092, 1, 0, 0, 0, 5427, 5428, 7, 29, 0, 0, 5428, 1094, 1, 0, 0, 0, 5429, 5430, 7, 30, 0, 0, 5430, 1096, 1, 0, 0, 0, 5431, 5432, 7, 31, 0, 0, 5432, 1098, 1, 0, 0, 0, 5433, 5434, 7, 32, 0, 0, 5434, 1100, 1, 0, 0, 0, 5435, 5436, 7, 33, 0, 0, 5436, 1102, 1, 0, 0, 0, 5437, 5438, 7, 34, 0, 0, 5438, 1104, 1, 0, 0, 0, 48, 0, 1108, 1119, 1131, 1145, 1155, 1163, 1175, 1188, 1203, 1216, 1228, 1258, 1271, 1285, 1293, 1348, 1359, 1367, 1376, 1440, 1451, 1458, 1465, 1523, 1819, 4608, 4617, 5202, 5274, 5286, 5288, 5299, 5306, 5311, 5317, 5319, 5323, 5328, 5330, 5336, 5342, 5349, 5355, 5360, 5367, 5375, 5379, 1, 6, 0, 0] \ No newline at end of file +[4, 0, 527, 5497, 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, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 2, 471, 7, 471, 2, 472, 7, 472, 2, 473, 7, 473, 2, 474, 7, 474, 2, 475, 7, 475, 2, 476, 7, 476, 2, 477, 7, 477, 2, 478, 7, 478, 2, 479, 7, 479, 2, 480, 7, 480, 2, 481, 7, 481, 2, 482, 7, 482, 2, 483, 7, 483, 2, 484, 7, 484, 2, 485, 7, 485, 2, 486, 7, 486, 2, 487, 7, 487, 2, 488, 7, 488, 2, 489, 7, 489, 2, 490, 7, 490, 2, 491, 7, 491, 2, 492, 7, 492, 2, 493, 7, 493, 2, 494, 7, 494, 2, 495, 7, 495, 2, 496, 7, 496, 2, 497, 7, 497, 2, 498, 7, 498, 2, 499, 7, 499, 2, 500, 7, 500, 2, 501, 7, 501, 2, 502, 7, 502, 2, 503, 7, 503, 2, 504, 7, 504, 2, 505, 7, 505, 2, 506, 7, 506, 2, 507, 7, 507, 2, 508, 7, 508, 2, 509, 7, 509, 2, 510, 7, 510, 2, 511, 7, 511, 2, 512, 7, 512, 2, 513, 7, 513, 2, 514, 7, 514, 2, 515, 7, 515, 2, 516, 7, 516, 2, 517, 7, 517, 2, 518, 7, 518, 2, 519, 7, 519, 2, 520, 7, 520, 2, 521, 7, 521, 2, 522, 7, 522, 2, 523, 7, 523, 2, 524, 7, 524, 2, 525, 7, 525, 2, 526, 7, 526, 2, 527, 7, 527, 2, 528, 7, 528, 2, 529, 7, 529, 2, 530, 7, 530, 2, 531, 7, 531, 2, 532, 7, 532, 2, 533, 7, 533, 2, 534, 7, 534, 2, 535, 7, 535, 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, 2, 554, 7, 554, 2, 555, 7, 555, 1, 0, 4, 0, 1115, 8, 0, 11, 0, 12, 0, 1116, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1126, 8, 1, 10, 1, 12, 1, 1129, 9, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1138, 8, 2, 10, 2, 12, 2, 1141, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 1152, 8, 3, 10, 3, 12, 3, 1155, 9, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 4, 4, 1162, 8, 4, 11, 4, 12, 4, 1163, 1, 4, 1, 4, 1, 4, 1, 4, 4, 4, 1170, 8, 4, 11, 4, 12, 4, 1171, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 4, 5, 1182, 8, 5, 11, 5, 12, 5, 1183, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 4, 6, 1195, 8, 6, 11, 6, 12, 6, 1196, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 4, 7, 1210, 8, 7, 11, 7, 12, 7, 1211, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1223, 8, 8, 11, 8, 12, 8, 1224, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 4, 9, 1235, 8, 9, 11, 9, 12, 9, 1236, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1267, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 4, 12, 1278, 8, 12, 11, 12, 12, 12, 1279, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1292, 8, 13, 11, 13, 12, 13, 1293, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1300, 8, 13, 11, 13, 12, 13, 1301, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1357, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1366, 8, 14, 11, 14, 12, 14, 1367, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1374, 8, 14, 11, 14, 12, 14, 1375, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1383, 8, 14, 11, 14, 12, 14, 1384, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1449, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 4, 15, 1458, 8, 15, 11, 15, 12, 15, 1459, 1, 15, 1, 15, 1, 15, 4, 15, 1465, 8, 15, 11, 15, 12, 15, 1466, 1, 15, 1, 15, 1, 15, 4, 15, 1472, 8, 15, 11, 15, 12, 15, 1473, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1532, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 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, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 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, 29, 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, 30, 1, 31, 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, 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, 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, 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, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 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, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1828, 8, 52, 1, 52, 1, 52, 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, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 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, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 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, 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, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 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, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 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, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 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, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 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, 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, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 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, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 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, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 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, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 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, 127, 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, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 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, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 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, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 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, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 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, 152, 1, 152, 1, 152, 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, 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, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 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, 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, 160, 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, 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, 164, 1, 164, 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, 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, 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, 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, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 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, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 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, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 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, 177, 1, 177, 1, 177, 1, 178, 1, 178, 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, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 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, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 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, 188, 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, 189, 1, 189, 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, 192, 1, 192, 1, 192, 1, 192, 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, 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, 198, 1, 198, 1, 198, 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, 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, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 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, 204, 1, 204, 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, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 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, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 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, 210, 1, 210, 1, 210, 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, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 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, 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, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 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, 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, 225, 1, 225, 1, 226, 1, 226, 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, 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, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 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, 233, 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, 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, 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, 239, 1, 239, 1, 239, 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, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 4, 410, 4665, 8, 410, 11, 410, 12, 410, 4666, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 4, 410, 4674, 8, 410, 11, 410, 12, 410, 4675, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, 1, 490, 1, 490, 3, 490, 5261, 8, 490, 1, 491, 1, 491, 1, 491, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 496, 1, 496, 1, 497, 1, 497, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, 503, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 519, 1, 519, 5, 519, 5331, 8, 519, 10, 519, 12, 519, 5334, 9, 519, 1, 519, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 5, 520, 5345, 8, 520, 10, 520, 12, 520, 5348, 9, 520, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 5, 521, 5356, 8, 521, 10, 521, 12, 521, 5359, 9, 521, 1, 521, 1, 521, 1, 521, 1, 522, 3, 522, 5365, 8, 522, 1, 522, 4, 522, 5368, 8, 522, 11, 522, 12, 522, 5369, 1, 522, 1, 522, 4, 522, 5374, 8, 522, 11, 522, 12, 522, 5375, 3, 522, 5378, 8, 522, 1, 522, 1, 522, 3, 522, 5382, 8, 522, 1, 522, 4, 522, 5385, 8, 522, 11, 522, 12, 522, 5386, 3, 522, 5389, 8, 522, 1, 523, 1, 523, 4, 523, 5393, 8, 523, 11, 523, 12, 523, 5394, 1, 524, 1, 524, 5, 524, 5399, 8, 524, 10, 524, 12, 524, 5402, 9, 524, 1, 525, 1, 525, 5, 525, 5406, 8, 525, 10, 525, 12, 525, 5409, 9, 525, 1, 525, 4, 525, 5412, 8, 525, 11, 525, 12, 525, 5413, 1, 525, 5, 525, 5417, 8, 525, 10, 525, 12, 525, 5420, 9, 525, 1, 526, 1, 526, 5, 526, 5424, 8, 526, 10, 526, 12, 526, 5427, 9, 526, 1, 526, 1, 526, 1, 526, 5, 526, 5432, 8, 526, 10, 526, 12, 526, 5435, 9, 526, 1, 526, 3, 526, 5438, 8, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 537, 1, 537, 1, 538, 1, 538, 1, 539, 1, 539, 1, 540, 1, 540, 1, 541, 1, 541, 1, 542, 1, 542, 1, 543, 1, 543, 1, 544, 1, 544, 1, 545, 1, 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 548, 1, 548, 1, 549, 1, 549, 1, 550, 1, 550, 1, 551, 1, 551, 1, 552, 1, 552, 1, 553, 1, 553, 1, 554, 1, 554, 1, 555, 1, 555, 4, 1127, 1139, 5332, 5357, 0, 556, 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, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, 1055, 0, 1057, 0, 1059, 0, 1061, 0, 1063, 0, 1065, 0, 1067, 0, 1069, 0, 1071, 0, 1073, 0, 1075, 0, 1077, 0, 1079, 0, 1081, 0, 1083, 0, 1085, 0, 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, 1103, 0, 1105, 0, 1107, 0, 1109, 0, 1111, 0, 1, 0, 35, 2, 0, 9, 13, 32, 32, 2, 0, 10, 10, 13, 13, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 2, 0, 69, 69, 101, 101, 2, 0, 43, 43, 45, 45, 3, 0, 10, 10, 13, 13, 34, 34, 3, 0, 10, 10, 13, 13, 96, 96, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 5518, 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, 483, 1, 0, 0, 0, 0, 485, 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, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 1, 1114, 1, 0, 0, 0, 3, 1120, 1, 0, 0, 0, 5, 1133, 1, 0, 0, 0, 7, 1147, 1, 0, 0, 0, 9, 1158, 1, 0, 0, 0, 11, 1178, 1, 0, 0, 0, 13, 1190, 1, 0, 0, 0, 15, 1203, 1, 0, 0, 0, 17, 1216, 1, 0, 0, 0, 19, 1229, 1, 0, 0, 0, 21, 1241, 1, 0, 0, 0, 23, 1256, 1, 0, 0, 0, 25, 1272, 1, 0, 0, 0, 27, 1356, 1, 0, 0, 0, 29, 1448, 1, 0, 0, 0, 31, 1531, 1, 0, 0, 0, 33, 1533, 1, 0, 0, 0, 35, 1540, 1, 0, 0, 0, 37, 1546, 1, 0, 0, 0, 39, 1551, 1, 0, 0, 0, 41, 1558, 1, 0, 0, 0, 43, 1563, 1, 0, 0, 0, 45, 1570, 1, 0, 0, 0, 47, 1577, 1, 0, 0, 0, 49, 1588, 1, 0, 0, 0, 51, 1593, 1, 0, 0, 0, 53, 1602, 1, 0, 0, 0, 55, 1614, 1, 0, 0, 0, 57, 1626, 1, 0, 0, 0, 59, 1633, 1, 0, 0, 0, 61, 1643, 1, 0, 0, 0, 63, 1652, 1, 0, 0, 0, 65, 1661, 1, 0, 0, 0, 67, 1666, 1, 0, 0, 0, 69, 1674, 1, 0, 0, 0, 71, 1681, 1, 0, 0, 0, 73, 1690, 1, 0, 0, 0, 75, 1699, 1, 0, 0, 0, 77, 1709, 1, 0, 0, 0, 79, 1716, 1, 0, 0, 0, 81, 1724, 1, 0, 0, 0, 83, 1730, 1, 0, 0, 0, 85, 1736, 1, 0, 0, 0, 87, 1742, 1, 0, 0, 0, 89, 1752, 1, 0, 0, 0, 91, 1767, 1, 0, 0, 0, 93, 1775, 1, 0, 0, 0, 95, 1779, 1, 0, 0, 0, 97, 1783, 1, 0, 0, 0, 99, 1792, 1, 0, 0, 0, 101, 1806, 1, 0, 0, 0, 103, 1814, 1, 0, 0, 0, 105, 1820, 1, 0, 0, 0, 107, 1838, 1, 0, 0, 0, 109, 1846, 1, 0, 0, 0, 111, 1854, 1, 0, 0, 0, 113, 1862, 1, 0, 0, 0, 115, 1873, 1, 0, 0, 0, 117, 1879, 1, 0, 0, 0, 119, 1887, 1, 0, 0, 0, 121, 1895, 1, 0, 0, 0, 123, 1902, 1, 0, 0, 0, 125, 1908, 1, 0, 0, 0, 127, 1913, 1, 0, 0, 0, 129, 1918, 1, 0, 0, 0, 131, 1923, 1, 0, 0, 0, 133, 1932, 1, 0, 0, 0, 135, 1936, 1, 0, 0, 0, 137, 1947, 1, 0, 0, 0, 139, 1953, 1, 0, 0, 0, 141, 1960, 1, 0, 0, 0, 143, 1965, 1, 0, 0, 0, 145, 1971, 1, 0, 0, 0, 147, 1978, 1, 0, 0, 0, 149, 1985, 1, 0, 0, 0, 151, 1991, 1, 0, 0, 0, 153, 1994, 1, 0, 0, 0, 155, 2002, 1, 0, 0, 0, 157, 2012, 1, 0, 0, 0, 159, 2017, 1, 0, 0, 0, 161, 2022, 1, 0, 0, 0, 163, 2027, 1, 0, 0, 0, 165, 2032, 1, 0, 0, 0, 167, 2036, 1, 0, 0, 0, 169, 2045, 1, 0, 0, 0, 171, 2049, 1, 0, 0, 0, 173, 2054, 1, 0, 0, 0, 175, 2059, 1, 0, 0, 0, 177, 2065, 1, 0, 0, 0, 179, 2071, 1, 0, 0, 0, 181, 2077, 1, 0, 0, 0, 183, 2082, 1, 0, 0, 0, 185, 2088, 1, 0, 0, 0, 187, 2091, 1, 0, 0, 0, 189, 2095, 1, 0, 0, 0, 191, 2100, 1, 0, 0, 0, 193, 2106, 1, 0, 0, 0, 195, 2114, 1, 0, 0, 0, 197, 2121, 1, 0, 0, 0, 199, 2130, 1, 0, 0, 0, 201, 2137, 1, 0, 0, 0, 203, 2144, 1, 0, 0, 0, 205, 2153, 1, 0, 0, 0, 207, 2158, 1, 0, 0, 0, 209, 2164, 1, 0, 0, 0, 211, 2167, 1, 0, 0, 0, 213, 2173, 1, 0, 0, 0, 215, 2180, 1, 0, 0, 0, 217, 2189, 1, 0, 0, 0, 219, 2195, 1, 0, 0, 0, 221, 2202, 1, 0, 0, 0, 223, 2208, 1, 0, 0, 0, 225, 2212, 1, 0, 0, 0, 227, 2217, 1, 0, 0, 0, 229, 2222, 1, 0, 0, 0, 231, 2233, 1, 0, 0, 0, 233, 2240, 1, 0, 0, 0, 235, 2248, 1, 0, 0, 0, 237, 2254, 1, 0, 0, 0, 239, 2259, 1, 0, 0, 0, 241, 2266, 1, 0, 0, 0, 243, 2271, 1, 0, 0, 0, 245, 2276, 1, 0, 0, 0, 247, 2281, 1, 0, 0, 0, 249, 2286, 1, 0, 0, 0, 251, 2292, 1, 0, 0, 0, 253, 2302, 1, 0, 0, 0, 255, 2311, 1, 0, 0, 0, 257, 2320, 1, 0, 0, 0, 259, 2328, 1, 0, 0, 0, 261, 2336, 1, 0, 0, 0, 263, 2344, 1, 0, 0, 0, 265, 2349, 1, 0, 0, 0, 267, 2356, 1, 0, 0, 0, 269, 2363, 1, 0, 0, 0, 271, 2368, 1, 0, 0, 0, 273, 2376, 1, 0, 0, 0, 275, 2382, 1, 0, 0, 0, 277, 2391, 1, 0, 0, 0, 279, 2396, 1, 0, 0, 0, 281, 2402, 1, 0, 0, 0, 283, 2409, 1, 0, 0, 0, 285, 2417, 1, 0, 0, 0, 287, 2423, 1, 0, 0, 0, 289, 2431, 1, 0, 0, 0, 291, 2440, 1, 0, 0, 0, 293, 2450, 1, 0, 0, 0, 295, 2462, 1, 0, 0, 0, 297, 2474, 1, 0, 0, 0, 299, 2485, 1, 0, 0, 0, 301, 2494, 1, 0, 0, 0, 303, 2503, 1, 0, 0, 0, 305, 2512, 1, 0, 0, 0, 307, 2520, 1, 0, 0, 0, 309, 2530, 1, 0, 0, 0, 311, 2534, 1, 0, 0, 0, 313, 2539, 1, 0, 0, 0, 315, 2550, 1, 0, 0, 0, 317, 2557, 1, 0, 0, 0, 319, 2567, 1, 0, 0, 0, 321, 2582, 1, 0, 0, 0, 323, 2595, 1, 0, 0, 0, 325, 2606, 1, 0, 0, 0, 327, 2613, 1, 0, 0, 0, 329, 2619, 1, 0, 0, 0, 331, 2631, 1, 0, 0, 0, 333, 2639, 1, 0, 0, 0, 335, 2650, 1, 0, 0, 0, 337, 2656, 1, 0, 0, 0, 339, 2664, 1, 0, 0, 0, 341, 2673, 1, 0, 0, 0, 343, 2684, 1, 0, 0, 0, 345, 2697, 1, 0, 0, 0, 347, 2706, 1, 0, 0, 0, 349, 2715, 1, 0, 0, 0, 351, 2724, 1, 0, 0, 0, 353, 2742, 1, 0, 0, 0, 355, 2768, 1, 0, 0, 0, 357, 2778, 1, 0, 0, 0, 359, 2789, 1, 0, 0, 0, 361, 2802, 1, 0, 0, 0, 363, 2818, 1, 0, 0, 0, 365, 2829, 1, 0, 0, 0, 367, 2842, 1, 0, 0, 0, 369, 2857, 1, 0, 0, 0, 371, 2868, 1, 0, 0, 0, 373, 2881, 1, 0, 0, 0, 375, 2888, 1, 0, 0, 0, 377, 2895, 1, 0, 0, 0, 379, 2903, 1, 0, 0, 0, 381, 2911, 1, 0, 0, 0, 383, 2916, 1, 0, 0, 0, 385, 2924, 1, 0, 0, 0, 387, 2935, 1, 0, 0, 0, 389, 2942, 1, 0, 0, 0, 391, 2952, 1, 0, 0, 0, 393, 2959, 1, 0, 0, 0, 395, 2966, 1, 0, 0, 0, 397, 2974, 1, 0, 0, 0, 399, 2985, 1, 0, 0, 0, 401, 2991, 1, 0, 0, 0, 403, 2996, 1, 0, 0, 0, 405, 3010, 1, 0, 0, 0, 407, 3024, 1, 0, 0, 0, 409, 3031, 1, 0, 0, 0, 411, 3041, 1, 0, 0, 0, 413, 3054, 1, 0, 0, 0, 415, 3066, 1, 0, 0, 0, 417, 3077, 1, 0, 0, 0, 419, 3083, 1, 0, 0, 0, 421, 3089, 1, 0, 0, 0, 423, 3101, 1, 0, 0, 0, 425, 3108, 1, 0, 0, 0, 427, 3119, 1, 0, 0, 0, 429, 3136, 1, 0, 0, 0, 431, 3144, 1, 0, 0, 0, 433, 3150, 1, 0, 0, 0, 435, 3156, 1, 0, 0, 0, 437, 3163, 1, 0, 0, 0, 439, 3172, 1, 0, 0, 0, 441, 3176, 1, 0, 0, 0, 443, 3183, 1, 0, 0, 0, 445, 3191, 1, 0, 0, 0, 447, 3199, 1, 0, 0, 0, 449, 3208, 1, 0, 0, 0, 451, 3217, 1, 0, 0, 0, 453, 3228, 1, 0, 0, 0, 455, 3239, 1, 0, 0, 0, 457, 3245, 1, 0, 0, 0, 459, 3256, 1, 0, 0, 0, 461, 3268, 1, 0, 0, 0, 463, 3281, 1, 0, 0, 0, 465, 3297, 1, 0, 0, 0, 467, 3310, 1, 0, 0, 0, 469, 3318, 1, 0, 0, 0, 471, 3327, 1, 0, 0, 0, 473, 3335, 1, 0, 0, 0, 475, 3347, 1, 0, 0, 0, 477, 3360, 1, 0, 0, 0, 479, 3375, 1, 0, 0, 0, 481, 3386, 1, 0, 0, 0, 483, 3396, 1, 0, 0, 0, 485, 3410, 1, 0, 0, 0, 487, 3424, 1, 0, 0, 0, 489, 3438, 1, 0, 0, 0, 491, 3453, 1, 0, 0, 0, 493, 3467, 1, 0, 0, 0, 495, 3477, 1, 0, 0, 0, 497, 3486, 1, 0, 0, 0, 499, 3493, 1, 0, 0, 0, 501, 3501, 1, 0, 0, 0, 503, 3509, 1, 0, 0, 0, 505, 3516, 1, 0, 0, 0, 507, 3524, 1, 0, 0, 0, 509, 3529, 1, 0, 0, 0, 511, 3538, 1, 0, 0, 0, 513, 3546, 1, 0, 0, 0, 515, 3555, 1, 0, 0, 0, 517, 3564, 1, 0, 0, 0, 519, 3567, 1, 0, 0, 0, 521, 3570, 1, 0, 0, 0, 523, 3573, 1, 0, 0, 0, 525, 3576, 1, 0, 0, 0, 527, 3579, 1, 0, 0, 0, 529, 3582, 1, 0, 0, 0, 531, 3592, 1, 0, 0, 0, 533, 3599, 1, 0, 0, 0, 535, 3607, 1, 0, 0, 0, 537, 3612, 1, 0, 0, 0, 539, 3620, 1, 0, 0, 0, 541, 3628, 1, 0, 0, 0, 543, 3637, 1, 0, 0, 0, 545, 3642, 1, 0, 0, 0, 547, 3653, 1, 0, 0, 0, 549, 3660, 1, 0, 0, 0, 551, 3673, 1, 0, 0, 0, 553, 3682, 1, 0, 0, 0, 555, 3688, 1, 0, 0, 0, 557, 3703, 1, 0, 0, 0, 559, 3708, 1, 0, 0, 0, 561, 3714, 1, 0, 0, 0, 563, 3718, 1, 0, 0, 0, 565, 3722, 1, 0, 0, 0, 567, 3726, 1, 0, 0, 0, 569, 3730, 1, 0, 0, 0, 571, 3737, 1, 0, 0, 0, 573, 3742, 1, 0, 0, 0, 575, 3751, 1, 0, 0, 0, 577, 3756, 1, 0, 0, 0, 579, 3760, 1, 0, 0, 0, 581, 3763, 1, 0, 0, 0, 583, 3767, 1, 0, 0, 0, 585, 3772, 1, 0, 0, 0, 587, 3775, 1, 0, 0, 0, 589, 3783, 1, 0, 0, 0, 591, 3788, 1, 0, 0, 0, 593, 3794, 1, 0, 0, 0, 595, 3801, 1, 0, 0, 0, 597, 3808, 1, 0, 0, 0, 599, 3816, 1, 0, 0, 0, 601, 3821, 1, 0, 0, 0, 603, 3827, 1, 0, 0, 0, 605, 3838, 1, 0, 0, 0, 607, 3847, 1, 0, 0, 0, 609, 3852, 1, 0, 0, 0, 611, 3861, 1, 0, 0, 0, 613, 3867, 1, 0, 0, 0, 615, 3873, 1, 0, 0, 0, 617, 3879, 1, 0, 0, 0, 619, 3885, 1, 0, 0, 0, 621, 3893, 1, 0, 0, 0, 623, 3904, 1, 0, 0, 0, 625, 3910, 1, 0, 0, 0, 627, 3921, 1, 0, 0, 0, 629, 3932, 1, 0, 0, 0, 631, 3937, 1, 0, 0, 0, 633, 3945, 1, 0, 0, 0, 635, 3954, 1, 0, 0, 0, 637, 3960, 1, 0, 0, 0, 639, 3965, 1, 0, 0, 0, 641, 3970, 1, 0, 0, 0, 643, 3985, 1, 0, 0, 0, 645, 3991, 1, 0, 0, 0, 647, 3999, 1, 0, 0, 0, 649, 4005, 1, 0, 0, 0, 651, 4015, 1, 0, 0, 0, 653, 4022, 1, 0, 0, 0, 655, 4027, 1, 0, 0, 0, 657, 4035, 1, 0, 0, 0, 659, 4040, 1, 0, 0, 0, 661, 4049, 1, 0, 0, 0, 663, 4057, 1, 0, 0, 0, 665, 4062, 1, 0, 0, 0, 667, 4067, 1, 0, 0, 0, 669, 4071, 1, 0, 0, 0, 671, 4078, 1, 0, 0, 0, 673, 4083, 1, 0, 0, 0, 675, 4091, 1, 0, 0, 0, 677, 4095, 1, 0, 0, 0, 679, 4100, 1, 0, 0, 0, 681, 4104, 1, 0, 0, 0, 683, 4110, 1, 0, 0, 0, 685, 4114, 1, 0, 0, 0, 687, 4121, 1, 0, 0, 0, 689, 4129, 1, 0, 0, 0, 691, 4137, 1, 0, 0, 0, 693, 4147, 1, 0, 0, 0, 695, 4154, 1, 0, 0, 0, 697, 4163, 1, 0, 0, 0, 699, 4173, 1, 0, 0, 0, 701, 4181, 1, 0, 0, 0, 703, 4187, 1, 0, 0, 0, 705, 4194, 1, 0, 0, 0, 707, 4208, 1, 0, 0, 0, 709, 4217, 1, 0, 0, 0, 711, 4226, 1, 0, 0, 0, 713, 4237, 1, 0, 0, 0, 715, 4246, 1, 0, 0, 0, 717, 4252, 1, 0, 0, 0, 719, 4256, 1, 0, 0, 0, 721, 4264, 1, 0, 0, 0, 723, 4271, 1, 0, 0, 0, 725, 4276, 1, 0, 0, 0, 727, 4282, 1, 0, 0, 0, 729, 4287, 1, 0, 0, 0, 731, 4294, 1, 0, 0, 0, 733, 4303, 1, 0, 0, 0, 735, 4313, 1, 0, 0, 0, 737, 4318, 1, 0, 0, 0, 739, 4325, 1, 0, 0, 0, 741, 4331, 1, 0, 0, 0, 743, 4339, 1, 0, 0, 0, 745, 4349, 1, 0, 0, 0, 747, 4360, 1, 0, 0, 0, 749, 4368, 1, 0, 0, 0, 751, 4379, 1, 0, 0, 0, 753, 4384, 1, 0, 0, 0, 755, 4390, 1, 0, 0, 0, 757, 4395, 1, 0, 0, 0, 759, 4401, 1, 0, 0, 0, 761, 4407, 1, 0, 0, 0, 763, 4415, 1, 0, 0, 0, 765, 4424, 1, 0, 0, 0, 767, 4437, 1, 0, 0, 0, 769, 4448, 1, 0, 0, 0, 771, 4458, 1, 0, 0, 0, 773, 4468, 1, 0, 0, 0, 775, 4481, 1, 0, 0, 0, 777, 4491, 1, 0, 0, 0, 779, 4503, 1, 0, 0, 0, 781, 4510, 1, 0, 0, 0, 783, 4519, 1, 0, 0, 0, 785, 4529, 1, 0, 0, 0, 787, 4539, 1, 0, 0, 0, 789, 4546, 1, 0, 0, 0, 791, 4553, 1, 0, 0, 0, 793, 4559, 1, 0, 0, 0, 795, 4566, 1, 0, 0, 0, 797, 4574, 1, 0, 0, 0, 799, 4580, 1, 0, 0, 0, 801, 4586, 1, 0, 0, 0, 803, 4594, 1, 0, 0, 0, 805, 4601, 1, 0, 0, 0, 807, 4606, 1, 0, 0, 0, 809, 4612, 1, 0, 0, 0, 811, 4617, 1, 0, 0, 0, 813, 4623, 1, 0, 0, 0, 815, 4631, 1, 0, 0, 0, 817, 4640, 1, 0, 0, 0, 819, 4649, 1, 0, 0, 0, 821, 4657, 1, 0, 0, 0, 823, 4681, 1, 0, 0, 0, 825, 4689, 1, 0, 0, 0, 827, 4695, 1, 0, 0, 0, 829, 4706, 1, 0, 0, 0, 831, 4714, 1, 0, 0, 0, 833, 4722, 1, 0, 0, 0, 835, 4733, 1, 0, 0, 0, 837, 4744, 1, 0, 0, 0, 839, 4751, 1, 0, 0, 0, 841, 4757, 1, 0, 0, 0, 843, 4767, 1, 0, 0, 0, 845, 4778, 1, 0, 0, 0, 847, 4783, 1, 0, 0, 0, 849, 4789, 1, 0, 0, 0, 851, 4796, 1, 0, 0, 0, 853, 4803, 1, 0, 0, 0, 855, 4812, 1, 0, 0, 0, 857, 4817, 1, 0, 0, 0, 859, 4822, 1, 0, 0, 0, 861, 4825, 1, 0, 0, 0, 863, 4828, 1, 0, 0, 0, 865, 4833, 1, 0, 0, 0, 867, 4837, 1, 0, 0, 0, 869, 4845, 1, 0, 0, 0, 871, 4853, 1, 0, 0, 0, 873, 4867, 1, 0, 0, 0, 875, 4874, 1, 0, 0, 0, 877, 4878, 1, 0, 0, 0, 879, 4886, 1, 0, 0, 0, 881, 4890, 1, 0, 0, 0, 883, 4894, 1, 0, 0, 0, 885, 4905, 1, 0, 0, 0, 887, 4908, 1, 0, 0, 0, 889, 4917, 1, 0, 0, 0, 891, 4923, 1, 0, 0, 0, 893, 4933, 1, 0, 0, 0, 895, 4942, 1, 0, 0, 0, 897, 4956, 1, 0, 0, 0, 899, 4965, 1, 0, 0, 0, 901, 4971, 1, 0, 0, 0, 903, 4977, 1, 0, 0, 0, 905, 4986, 1, 0, 0, 0, 907, 4991, 1, 0, 0, 0, 909, 4997, 1, 0, 0, 0, 911, 5003, 1, 0, 0, 0, 913, 5010, 1, 0, 0, 0, 915, 5021, 1, 0, 0, 0, 917, 5031, 1, 0, 0, 0, 919, 5038, 1, 0, 0, 0, 921, 5043, 1, 0, 0, 0, 923, 5050, 1, 0, 0, 0, 925, 5056, 1, 0, 0, 0, 927, 5063, 1, 0, 0, 0, 929, 5069, 1, 0, 0, 0, 931, 5074, 1, 0, 0, 0, 933, 5079, 1, 0, 0, 0, 935, 5088, 1, 0, 0, 0, 937, 5094, 1, 0, 0, 0, 939, 5103, 1, 0, 0, 0, 941, 5113, 1, 0, 0, 0, 943, 5126, 1, 0, 0, 0, 945, 5132, 1, 0, 0, 0, 947, 5137, 1, 0, 0, 0, 949, 5141, 1, 0, 0, 0, 951, 5150, 1, 0, 0, 0, 953, 5155, 1, 0, 0, 0, 955, 5164, 1, 0, 0, 0, 957, 5169, 1, 0, 0, 0, 959, 5180, 1, 0, 0, 0, 961, 5189, 1, 0, 0, 0, 963, 5202, 1, 0, 0, 0, 965, 5206, 1, 0, 0, 0, 967, 5212, 1, 0, 0, 0, 969, 5215, 1, 0, 0, 0, 971, 5220, 1, 0, 0, 0, 973, 5226, 1, 0, 0, 0, 975, 5238, 1, 0, 0, 0, 977, 5246, 1, 0, 0, 0, 979, 5250, 1, 0, 0, 0, 981, 5260, 1, 0, 0, 0, 983, 5262, 1, 0, 0, 0, 985, 5265, 1, 0, 0, 0, 987, 5268, 1, 0, 0, 0, 989, 5270, 1, 0, 0, 0, 991, 5272, 1, 0, 0, 0, 993, 5274, 1, 0, 0, 0, 995, 5276, 1, 0, 0, 0, 997, 5278, 1, 0, 0, 0, 999, 5280, 1, 0, 0, 0, 1001, 5282, 1, 0, 0, 0, 1003, 5284, 1, 0, 0, 0, 1005, 5288, 1, 0, 0, 0, 1007, 5292, 1, 0, 0, 0, 1009, 5294, 1, 0, 0, 0, 1011, 5296, 1, 0, 0, 0, 1013, 5298, 1, 0, 0, 0, 1015, 5300, 1, 0, 0, 0, 1017, 5302, 1, 0, 0, 0, 1019, 5304, 1, 0, 0, 0, 1021, 5306, 1, 0, 0, 0, 1023, 5308, 1, 0, 0, 0, 1025, 5310, 1, 0, 0, 0, 1027, 5312, 1, 0, 0, 0, 1029, 5314, 1, 0, 0, 0, 1031, 5316, 1, 0, 0, 0, 1033, 5319, 1, 0, 0, 0, 1035, 5322, 1, 0, 0, 0, 1037, 5324, 1, 0, 0, 0, 1039, 5326, 1, 0, 0, 0, 1041, 5338, 1, 0, 0, 0, 1043, 5351, 1, 0, 0, 0, 1045, 5364, 1, 0, 0, 0, 1047, 5390, 1, 0, 0, 0, 1049, 5396, 1, 0, 0, 0, 1051, 5403, 1, 0, 0, 0, 1053, 5437, 1, 0, 0, 0, 1055, 5439, 1, 0, 0, 0, 1057, 5441, 1, 0, 0, 0, 1059, 5443, 1, 0, 0, 0, 1061, 5445, 1, 0, 0, 0, 1063, 5447, 1, 0, 0, 0, 1065, 5449, 1, 0, 0, 0, 1067, 5451, 1, 0, 0, 0, 1069, 5453, 1, 0, 0, 0, 1071, 5455, 1, 0, 0, 0, 1073, 5457, 1, 0, 0, 0, 1075, 5459, 1, 0, 0, 0, 1077, 5461, 1, 0, 0, 0, 1079, 5463, 1, 0, 0, 0, 1081, 5465, 1, 0, 0, 0, 1083, 5467, 1, 0, 0, 0, 1085, 5469, 1, 0, 0, 0, 1087, 5471, 1, 0, 0, 0, 1089, 5473, 1, 0, 0, 0, 1091, 5475, 1, 0, 0, 0, 1093, 5477, 1, 0, 0, 0, 1095, 5479, 1, 0, 0, 0, 1097, 5481, 1, 0, 0, 0, 1099, 5483, 1, 0, 0, 0, 1101, 5485, 1, 0, 0, 0, 1103, 5487, 1, 0, 0, 0, 1105, 5489, 1, 0, 0, 0, 1107, 5491, 1, 0, 0, 0, 1109, 5493, 1, 0, 0, 0, 1111, 5495, 1, 0, 0, 0, 1113, 1115, 7, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 6, 0, 0, 0, 1119, 2, 1, 0, 0, 0, 1120, 1121, 5, 47, 0, 0, 1121, 1122, 5, 42, 0, 0, 1122, 1123, 5, 42, 0, 0, 1123, 1127, 1, 0, 0, 0, 1124, 1126, 9, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1129, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1130, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1131, 5, 42, 0, 0, 1131, 1132, 5, 47, 0, 0, 1132, 4, 1, 0, 0, 0, 1133, 1134, 5, 47, 0, 0, 1134, 1135, 5, 42, 0, 0, 1135, 1139, 1, 0, 0, 0, 1136, 1138, 9, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1142, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1142, 1143, 5, 42, 0, 0, 1143, 1144, 5, 47, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 6, 2, 0, 0, 1146, 6, 1, 0, 0, 0, 1147, 1148, 5, 45, 0, 0, 1148, 1149, 5, 45, 0, 0, 1149, 1153, 1, 0, 0, 0, 1150, 1152, 8, 1, 0, 0, 1151, 1150, 1, 0, 0, 0, 1152, 1155, 1, 0, 0, 0, 1153, 1151, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1156, 1157, 6, 3, 0, 0, 1157, 8, 1, 0, 0, 0, 1158, 1159, 3, 1077, 538, 0, 1159, 1161, 3, 1097, 548, 0, 1160, 1162, 3, 1, 0, 0, 1161, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 3, 1087, 543, 0, 1166, 1167, 3, 1089, 544, 0, 1167, 1169, 3, 1099, 549, 0, 1168, 1170, 3, 1, 0, 0, 1169, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 3, 1087, 543, 0, 1174, 1175, 3, 1101, 550, 0, 1175, 1176, 3, 1083, 541, 0, 1176, 1177, 3, 1083, 541, 0, 1177, 10, 1, 0, 0, 0, 1178, 1179, 3, 1077, 538, 0, 1179, 1181, 3, 1097, 548, 0, 1180, 1182, 3, 1, 0, 0, 1181, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1186, 3, 1087, 543, 0, 1186, 1187, 3, 1101, 550, 0, 1187, 1188, 3, 1083, 541, 0, 1188, 1189, 3, 1083, 541, 0, 1189, 12, 1, 0, 0, 0, 1190, 1191, 3, 1087, 543, 0, 1191, 1192, 3, 1089, 544, 0, 1192, 1194, 3, 1099, 549, 0, 1193, 1195, 3, 1, 0, 0, 1194, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 3, 1087, 543, 0, 1199, 1200, 3, 1101, 550, 0, 1200, 1201, 3, 1083, 541, 0, 1201, 1202, 3, 1083, 541, 0, 1202, 14, 1, 0, 0, 0, 1203, 1204, 3, 1073, 536, 0, 1204, 1205, 3, 1095, 547, 0, 1205, 1206, 3, 1089, 544, 0, 1206, 1207, 3, 1101, 550, 0, 1207, 1209, 3, 1091, 545, 0, 1208, 1210, 3, 1, 0, 0, 1209, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 3, 1063, 531, 0, 1214, 1215, 3, 1109, 554, 0, 1215, 16, 1, 0, 0, 0, 1216, 1217, 3, 1089, 544, 0, 1217, 1218, 3, 1095, 547, 0, 1218, 1219, 3, 1067, 533, 0, 1219, 1220, 3, 1069, 534, 0, 1220, 1222, 3, 1095, 547, 0, 1221, 1223, 3, 1, 0, 0, 1222, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 1063, 531, 0, 1227, 1228, 3, 1109, 554, 0, 1228, 18, 1, 0, 0, 0, 1229, 1230, 3, 1097, 548, 0, 1230, 1231, 3, 1089, 544, 0, 1231, 1232, 3, 1095, 547, 0, 1232, 1234, 3, 1099, 549, 0, 1233, 1235, 3, 1, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 3, 1063, 531, 0, 1239, 1240, 3, 1109, 554, 0, 1240, 20, 1, 0, 0, 0, 1241, 1242, 3, 1087, 543, 0, 1242, 1243, 3, 1089, 544, 0, 1243, 1244, 3, 1087, 543, 0, 1244, 1245, 5, 45, 0, 0, 1245, 1246, 3, 1091, 545, 0, 1246, 1247, 3, 1069, 534, 0, 1247, 1248, 3, 1095, 547, 0, 1248, 1249, 3, 1097, 548, 0, 1249, 1250, 3, 1077, 538, 0, 1250, 1251, 3, 1097, 548, 0, 1251, 1252, 3, 1099, 549, 0, 1252, 1253, 3, 1069, 534, 0, 1253, 1254, 3, 1087, 543, 0, 1254, 1255, 3, 1099, 549, 0, 1255, 22, 1, 0, 0, 0, 1256, 1257, 3, 1095, 547, 0, 1257, 1258, 3, 1069, 534, 0, 1258, 1259, 3, 1071, 535, 0, 1259, 1260, 3, 1069, 534, 0, 1260, 1261, 3, 1095, 547, 0, 1261, 1262, 3, 1069, 534, 0, 1262, 1263, 3, 1087, 543, 0, 1263, 1264, 3, 1065, 532, 0, 1264, 1266, 3, 1069, 534, 0, 1265, 1267, 5, 95, 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 3, 1097, 548, 0, 1269, 1270, 3, 1069, 534, 0, 1270, 1271, 3, 1099, 549, 0, 1271, 24, 1, 0, 0, 0, 1272, 1273, 3, 1083, 541, 0, 1273, 1274, 3, 1077, 538, 0, 1274, 1275, 3, 1097, 548, 0, 1275, 1277, 3, 1099, 549, 0, 1276, 1278, 3, 1, 0, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 3, 1089, 544, 0, 1282, 1283, 3, 1071, 535, 0, 1283, 26, 1, 0, 0, 0, 1284, 1285, 3, 1067, 533, 0, 1285, 1286, 3, 1069, 534, 0, 1286, 1287, 3, 1083, 541, 0, 1287, 1288, 3, 1069, 534, 0, 1288, 1289, 3, 1099, 549, 0, 1289, 1291, 3, 1069, 534, 0, 1290, 1292, 3, 1, 0, 0, 1291, 1290, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 3, 1061, 530, 0, 1296, 1297, 3, 1087, 543, 0, 1297, 1299, 3, 1067, 533, 0, 1298, 1300, 3, 1, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 3, 1095, 547, 0, 1304, 1305, 3, 1069, 534, 0, 1305, 1306, 3, 1071, 535, 0, 1306, 1307, 3, 1069, 534, 0, 1307, 1308, 3, 1095, 547, 0, 1308, 1309, 3, 1069, 534, 0, 1309, 1310, 3, 1087, 543, 0, 1310, 1311, 3, 1065, 532, 0, 1311, 1312, 3, 1069, 534, 0, 1312, 1313, 3, 1097, 548, 0, 1313, 1357, 1, 0, 0, 0, 1314, 1315, 3, 1067, 533, 0, 1315, 1316, 3, 1069, 534, 0, 1316, 1317, 3, 1083, 541, 0, 1317, 1318, 3, 1069, 534, 0, 1318, 1319, 3, 1099, 549, 0, 1319, 1320, 3, 1069, 534, 0, 1320, 1321, 5, 95, 0, 0, 1321, 1322, 3, 1061, 530, 0, 1322, 1323, 3, 1087, 543, 0, 1323, 1324, 3, 1067, 533, 0, 1324, 1325, 5, 95, 0, 0, 1325, 1326, 3, 1095, 547, 0, 1326, 1327, 3, 1069, 534, 0, 1327, 1328, 3, 1071, 535, 0, 1328, 1329, 3, 1069, 534, 0, 1329, 1330, 3, 1095, 547, 0, 1330, 1331, 3, 1069, 534, 0, 1331, 1332, 3, 1087, 543, 0, 1332, 1333, 3, 1065, 532, 0, 1333, 1334, 3, 1069, 534, 0, 1334, 1335, 3, 1097, 548, 0, 1335, 1357, 1, 0, 0, 0, 1336, 1337, 3, 1067, 533, 0, 1337, 1338, 3, 1069, 534, 0, 1338, 1339, 3, 1083, 541, 0, 1339, 1340, 3, 1069, 534, 0, 1340, 1341, 3, 1099, 549, 0, 1341, 1342, 3, 1069, 534, 0, 1342, 1343, 3, 1061, 530, 0, 1343, 1344, 3, 1087, 543, 0, 1344, 1345, 3, 1067, 533, 0, 1345, 1346, 3, 1095, 547, 0, 1346, 1347, 3, 1069, 534, 0, 1347, 1348, 3, 1071, 535, 0, 1348, 1349, 3, 1069, 534, 0, 1349, 1350, 3, 1095, 547, 0, 1350, 1351, 3, 1069, 534, 0, 1351, 1352, 3, 1087, 543, 0, 1352, 1353, 3, 1065, 532, 0, 1353, 1354, 3, 1069, 534, 0, 1354, 1355, 3, 1097, 548, 0, 1355, 1357, 1, 0, 0, 0, 1356, 1284, 1, 0, 0, 0, 1356, 1314, 1, 0, 0, 0, 1356, 1336, 1, 0, 0, 0, 1357, 28, 1, 0, 0, 0, 1358, 1359, 3, 1067, 533, 0, 1359, 1360, 3, 1069, 534, 0, 1360, 1361, 3, 1083, 541, 0, 1361, 1362, 3, 1069, 534, 0, 1362, 1363, 3, 1099, 549, 0, 1363, 1365, 3, 1069, 534, 0, 1364, 1366, 3, 1, 0, 0, 1365, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 3, 1063, 531, 0, 1370, 1371, 3, 1101, 550, 0, 1371, 1373, 3, 1099, 549, 0, 1372, 1374, 3, 1, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 3, 1081, 540, 0, 1378, 1379, 3, 1069, 534, 0, 1379, 1380, 3, 1069, 534, 0, 1380, 1382, 3, 1091, 545, 0, 1381, 1383, 3, 1, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 3, 1095, 547, 0, 1387, 1388, 3, 1069, 534, 0, 1388, 1389, 3, 1071, 535, 0, 1389, 1390, 3, 1069, 534, 0, 1390, 1391, 3, 1095, 547, 0, 1391, 1392, 3, 1069, 534, 0, 1392, 1393, 3, 1087, 543, 0, 1393, 1394, 3, 1065, 532, 0, 1394, 1395, 3, 1069, 534, 0, 1395, 1396, 3, 1097, 548, 0, 1396, 1449, 1, 0, 0, 0, 1397, 1398, 3, 1067, 533, 0, 1398, 1399, 3, 1069, 534, 0, 1399, 1400, 3, 1083, 541, 0, 1400, 1401, 3, 1069, 534, 0, 1401, 1402, 3, 1099, 549, 0, 1402, 1403, 3, 1069, 534, 0, 1403, 1404, 5, 95, 0, 0, 1404, 1405, 3, 1063, 531, 0, 1405, 1406, 3, 1101, 550, 0, 1406, 1407, 3, 1099, 549, 0, 1407, 1408, 5, 95, 0, 0, 1408, 1409, 3, 1081, 540, 0, 1409, 1410, 3, 1069, 534, 0, 1410, 1411, 3, 1069, 534, 0, 1411, 1412, 3, 1091, 545, 0, 1412, 1413, 5, 95, 0, 0, 1413, 1414, 3, 1095, 547, 0, 1414, 1415, 3, 1069, 534, 0, 1415, 1416, 3, 1071, 535, 0, 1416, 1417, 3, 1069, 534, 0, 1417, 1418, 3, 1095, 547, 0, 1418, 1419, 3, 1069, 534, 0, 1419, 1420, 3, 1087, 543, 0, 1420, 1421, 3, 1065, 532, 0, 1421, 1422, 3, 1069, 534, 0, 1422, 1423, 3, 1097, 548, 0, 1423, 1449, 1, 0, 0, 0, 1424, 1425, 3, 1067, 533, 0, 1425, 1426, 3, 1069, 534, 0, 1426, 1427, 3, 1083, 541, 0, 1427, 1428, 3, 1069, 534, 0, 1428, 1429, 3, 1099, 549, 0, 1429, 1430, 3, 1069, 534, 0, 1430, 1431, 3, 1063, 531, 0, 1431, 1432, 3, 1101, 550, 0, 1432, 1433, 3, 1099, 549, 0, 1433, 1434, 3, 1081, 540, 0, 1434, 1435, 3, 1069, 534, 0, 1435, 1436, 3, 1069, 534, 0, 1436, 1437, 3, 1091, 545, 0, 1437, 1438, 3, 1095, 547, 0, 1438, 1439, 3, 1069, 534, 0, 1439, 1440, 3, 1071, 535, 0, 1440, 1441, 3, 1069, 534, 0, 1441, 1442, 3, 1095, 547, 0, 1442, 1443, 3, 1069, 534, 0, 1443, 1444, 3, 1087, 543, 0, 1444, 1445, 3, 1065, 532, 0, 1445, 1446, 3, 1069, 534, 0, 1446, 1447, 3, 1097, 548, 0, 1447, 1449, 1, 0, 0, 0, 1448, 1358, 1, 0, 0, 0, 1448, 1397, 1, 0, 0, 0, 1448, 1424, 1, 0, 0, 0, 1449, 30, 1, 0, 0, 0, 1450, 1451, 3, 1067, 533, 0, 1451, 1452, 3, 1069, 534, 0, 1452, 1453, 3, 1083, 541, 0, 1453, 1454, 3, 1069, 534, 0, 1454, 1455, 3, 1099, 549, 0, 1455, 1457, 3, 1069, 534, 0, 1456, 1458, 3, 1, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 3, 1077, 538, 0, 1462, 1464, 3, 1071, 535, 0, 1463, 1465, 3, 1, 0, 0, 1464, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 1087, 543, 0, 1469, 1471, 3, 1089, 544, 0, 1470, 1472, 3, 1, 0, 0, 1471, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 3, 1095, 547, 0, 1476, 1477, 3, 1069, 534, 0, 1477, 1478, 3, 1071, 535, 0, 1478, 1479, 3, 1069, 534, 0, 1479, 1480, 3, 1095, 547, 0, 1480, 1481, 3, 1069, 534, 0, 1481, 1482, 3, 1087, 543, 0, 1482, 1483, 3, 1065, 532, 0, 1483, 1484, 3, 1069, 534, 0, 1484, 1485, 3, 1097, 548, 0, 1485, 1532, 1, 0, 0, 0, 1486, 1487, 3, 1067, 533, 0, 1487, 1488, 3, 1069, 534, 0, 1488, 1489, 3, 1083, 541, 0, 1489, 1490, 3, 1069, 534, 0, 1490, 1491, 3, 1099, 549, 0, 1491, 1492, 3, 1069, 534, 0, 1492, 1493, 5, 95, 0, 0, 1493, 1494, 3, 1077, 538, 0, 1494, 1495, 3, 1071, 535, 0, 1495, 1496, 5, 95, 0, 0, 1496, 1497, 3, 1087, 543, 0, 1497, 1498, 3, 1089, 544, 0, 1498, 1499, 5, 95, 0, 0, 1499, 1500, 3, 1095, 547, 0, 1500, 1501, 3, 1069, 534, 0, 1501, 1502, 3, 1071, 535, 0, 1502, 1503, 3, 1069, 534, 0, 1503, 1504, 3, 1095, 547, 0, 1504, 1505, 3, 1069, 534, 0, 1505, 1506, 3, 1087, 543, 0, 1506, 1507, 3, 1065, 532, 0, 1507, 1508, 3, 1069, 534, 0, 1508, 1509, 3, 1097, 548, 0, 1509, 1532, 1, 0, 0, 0, 1510, 1511, 3, 1067, 533, 0, 1511, 1512, 3, 1069, 534, 0, 1512, 1513, 3, 1083, 541, 0, 1513, 1514, 3, 1069, 534, 0, 1514, 1515, 3, 1099, 549, 0, 1515, 1516, 3, 1069, 534, 0, 1516, 1517, 3, 1077, 538, 0, 1517, 1518, 3, 1071, 535, 0, 1518, 1519, 3, 1087, 543, 0, 1519, 1520, 3, 1089, 544, 0, 1520, 1521, 3, 1095, 547, 0, 1521, 1522, 3, 1069, 534, 0, 1522, 1523, 3, 1071, 535, 0, 1523, 1524, 3, 1069, 534, 0, 1524, 1525, 3, 1095, 547, 0, 1525, 1526, 3, 1069, 534, 0, 1526, 1527, 3, 1087, 543, 0, 1527, 1528, 3, 1065, 532, 0, 1528, 1529, 3, 1069, 534, 0, 1529, 1530, 3, 1097, 548, 0, 1530, 1532, 1, 0, 0, 0, 1531, 1450, 1, 0, 0, 0, 1531, 1486, 1, 0, 0, 0, 1531, 1510, 1, 0, 0, 0, 1532, 32, 1, 0, 0, 0, 1533, 1534, 3, 1065, 532, 0, 1534, 1535, 3, 1095, 547, 0, 1535, 1536, 3, 1069, 534, 0, 1536, 1537, 3, 1061, 530, 0, 1537, 1538, 3, 1099, 549, 0, 1538, 1539, 3, 1069, 534, 0, 1539, 34, 1, 0, 0, 0, 1540, 1541, 3, 1061, 530, 0, 1541, 1542, 3, 1083, 541, 0, 1542, 1543, 3, 1099, 549, 0, 1543, 1544, 3, 1069, 534, 0, 1544, 1545, 3, 1095, 547, 0, 1545, 36, 1, 0, 0, 0, 1546, 1547, 3, 1067, 533, 0, 1547, 1548, 3, 1095, 547, 0, 1548, 1549, 3, 1089, 544, 0, 1549, 1550, 3, 1091, 545, 0, 1550, 38, 1, 0, 0, 0, 1551, 1552, 3, 1095, 547, 0, 1552, 1553, 3, 1069, 534, 0, 1553, 1554, 3, 1087, 543, 0, 1554, 1555, 3, 1061, 530, 0, 1555, 1556, 3, 1085, 542, 0, 1556, 1557, 3, 1069, 534, 0, 1557, 40, 1, 0, 0, 0, 1558, 1559, 3, 1085, 542, 0, 1559, 1560, 3, 1089, 544, 0, 1560, 1561, 3, 1103, 551, 0, 1561, 1562, 3, 1069, 534, 0, 1562, 42, 1, 0, 0, 0, 1563, 1564, 3, 1085, 542, 0, 1564, 1565, 3, 1089, 544, 0, 1565, 1566, 3, 1067, 533, 0, 1566, 1567, 3, 1077, 538, 0, 1567, 1568, 3, 1071, 535, 0, 1568, 1569, 3, 1109, 554, 0, 1569, 44, 1, 0, 0, 0, 1570, 1571, 3, 1069, 534, 0, 1571, 1572, 3, 1087, 543, 0, 1572, 1573, 3, 1099, 549, 0, 1573, 1574, 3, 1077, 538, 0, 1574, 1575, 3, 1099, 549, 0, 1575, 1576, 3, 1109, 554, 0, 1576, 46, 1, 0, 0, 0, 1577, 1578, 3, 1091, 545, 0, 1578, 1579, 3, 1069, 534, 0, 1579, 1580, 3, 1095, 547, 0, 1580, 1581, 3, 1097, 548, 0, 1581, 1582, 3, 1077, 538, 0, 1582, 1583, 3, 1097, 548, 0, 1583, 1584, 3, 1099, 549, 0, 1584, 1585, 3, 1069, 534, 0, 1585, 1586, 3, 1087, 543, 0, 1586, 1587, 3, 1099, 549, 0, 1587, 48, 1, 0, 0, 0, 1588, 1589, 3, 1103, 551, 0, 1589, 1590, 3, 1077, 538, 0, 1590, 1591, 3, 1069, 534, 0, 1591, 1592, 3, 1105, 552, 0, 1592, 50, 1, 0, 0, 0, 1593, 1594, 3, 1069, 534, 0, 1594, 1595, 3, 1107, 553, 0, 1595, 1596, 3, 1099, 549, 0, 1596, 1597, 3, 1069, 534, 0, 1597, 1598, 3, 1095, 547, 0, 1598, 1599, 3, 1087, 543, 0, 1599, 1600, 3, 1061, 530, 0, 1600, 1601, 3, 1083, 541, 0, 1601, 52, 1, 0, 0, 0, 1602, 1603, 3, 1061, 530, 0, 1603, 1604, 3, 1097, 548, 0, 1604, 1605, 3, 1097, 548, 0, 1605, 1606, 3, 1089, 544, 0, 1606, 1607, 3, 1065, 532, 0, 1607, 1608, 3, 1077, 538, 0, 1608, 1609, 3, 1061, 530, 0, 1609, 1610, 3, 1099, 549, 0, 1610, 1611, 3, 1077, 538, 0, 1611, 1612, 3, 1089, 544, 0, 1612, 1613, 3, 1087, 543, 0, 1613, 54, 1, 0, 0, 0, 1614, 1615, 3, 1069, 534, 0, 1615, 1616, 3, 1087, 543, 0, 1616, 1617, 3, 1101, 550, 0, 1617, 1618, 3, 1085, 542, 0, 1618, 1619, 3, 1069, 534, 0, 1619, 1620, 3, 1095, 547, 0, 1620, 1621, 3, 1061, 530, 0, 1621, 1622, 3, 1099, 549, 0, 1622, 1623, 3, 1077, 538, 0, 1623, 1624, 3, 1089, 544, 0, 1624, 1625, 3, 1087, 543, 0, 1625, 56, 1, 0, 0, 0, 1626, 1627, 3, 1085, 542, 0, 1627, 1628, 3, 1089, 544, 0, 1628, 1629, 3, 1067, 533, 0, 1629, 1630, 3, 1101, 550, 0, 1630, 1631, 3, 1083, 541, 0, 1631, 1632, 3, 1069, 534, 0, 1632, 58, 1, 0, 0, 0, 1633, 1634, 3, 1085, 542, 0, 1634, 1635, 3, 1077, 538, 0, 1635, 1636, 3, 1065, 532, 0, 1636, 1637, 3, 1095, 547, 0, 1637, 1638, 3, 1089, 544, 0, 1638, 1639, 3, 1071, 535, 0, 1639, 1640, 3, 1083, 541, 0, 1640, 1641, 3, 1089, 544, 0, 1641, 1642, 3, 1105, 552, 0, 1642, 60, 1, 0, 0, 0, 1643, 1644, 3, 1087, 543, 0, 1644, 1645, 3, 1061, 530, 0, 1645, 1646, 3, 1087, 543, 0, 1646, 1647, 3, 1089, 544, 0, 1647, 1648, 3, 1071, 535, 0, 1648, 1649, 3, 1083, 541, 0, 1649, 1650, 3, 1089, 544, 0, 1650, 1651, 3, 1105, 552, 0, 1651, 62, 1, 0, 0, 0, 1652, 1653, 3, 1105, 552, 0, 1653, 1654, 3, 1089, 544, 0, 1654, 1655, 3, 1095, 547, 0, 1655, 1656, 3, 1081, 540, 0, 1656, 1657, 3, 1071, 535, 0, 1657, 1658, 3, 1083, 541, 0, 1658, 1659, 3, 1089, 544, 0, 1659, 1660, 3, 1105, 552, 0, 1660, 64, 1, 0, 0, 0, 1661, 1662, 3, 1091, 545, 0, 1662, 1663, 3, 1061, 530, 0, 1663, 1664, 3, 1073, 536, 0, 1664, 1665, 3, 1069, 534, 0, 1665, 66, 1, 0, 0, 0, 1666, 1667, 3, 1097, 548, 0, 1667, 1668, 3, 1087, 543, 0, 1668, 1669, 3, 1077, 538, 0, 1669, 1670, 3, 1091, 545, 0, 1670, 1671, 3, 1091, 545, 0, 1671, 1672, 3, 1069, 534, 0, 1672, 1673, 3, 1099, 549, 0, 1673, 68, 1, 0, 0, 0, 1674, 1675, 3, 1083, 541, 0, 1675, 1676, 3, 1061, 530, 0, 1676, 1677, 3, 1109, 554, 0, 1677, 1678, 3, 1089, 544, 0, 1678, 1679, 3, 1101, 550, 0, 1679, 1680, 3, 1099, 549, 0, 1680, 70, 1, 0, 0, 0, 1681, 1682, 3, 1087, 543, 0, 1682, 1683, 3, 1089, 544, 0, 1683, 1684, 3, 1099, 549, 0, 1684, 1685, 3, 1069, 534, 0, 1685, 1686, 3, 1063, 531, 0, 1686, 1687, 3, 1089, 544, 0, 1687, 1688, 3, 1089, 544, 0, 1688, 1689, 3, 1081, 540, 0, 1689, 72, 1, 0, 0, 0, 1690, 1691, 3, 1065, 532, 0, 1691, 1692, 3, 1089, 544, 0, 1692, 1693, 3, 1087, 543, 0, 1693, 1694, 3, 1097, 548, 0, 1694, 1695, 3, 1099, 549, 0, 1695, 1696, 3, 1061, 530, 0, 1696, 1697, 3, 1087, 543, 0, 1697, 1698, 3, 1099, 549, 0, 1698, 74, 1, 0, 0, 0, 1699, 1700, 3, 1061, 530, 0, 1700, 1701, 3, 1099, 549, 0, 1701, 1702, 3, 1099, 549, 0, 1702, 1703, 3, 1095, 547, 0, 1703, 1704, 3, 1077, 538, 0, 1704, 1705, 3, 1063, 531, 0, 1705, 1706, 3, 1101, 550, 0, 1706, 1707, 3, 1099, 549, 0, 1707, 1708, 3, 1069, 534, 0, 1708, 76, 1, 0, 0, 0, 1709, 1710, 3, 1065, 532, 0, 1710, 1711, 3, 1089, 544, 0, 1711, 1712, 3, 1083, 541, 0, 1712, 1713, 3, 1101, 550, 0, 1713, 1714, 3, 1085, 542, 0, 1714, 1715, 3, 1087, 543, 0, 1715, 78, 1, 0, 0, 0, 1716, 1717, 3, 1065, 532, 0, 1717, 1718, 3, 1089, 544, 0, 1718, 1719, 3, 1083, 541, 0, 1719, 1720, 3, 1101, 550, 0, 1720, 1721, 3, 1085, 542, 0, 1721, 1722, 3, 1087, 543, 0, 1722, 1723, 3, 1097, 548, 0, 1723, 80, 1, 0, 0, 0, 1724, 1725, 3, 1077, 538, 0, 1725, 1726, 3, 1087, 543, 0, 1726, 1727, 3, 1067, 533, 0, 1727, 1728, 3, 1069, 534, 0, 1728, 1729, 3, 1107, 553, 0, 1729, 82, 1, 0, 0, 0, 1730, 1731, 3, 1089, 544, 0, 1731, 1732, 3, 1105, 552, 0, 1732, 1733, 3, 1087, 543, 0, 1733, 1734, 3, 1069, 534, 0, 1734, 1735, 3, 1095, 547, 0, 1735, 84, 1, 0, 0, 0, 1736, 1737, 3, 1097, 548, 0, 1737, 1738, 3, 1099, 549, 0, 1738, 1739, 3, 1089, 544, 0, 1739, 1740, 3, 1095, 547, 0, 1740, 1741, 3, 1069, 534, 0, 1741, 86, 1, 0, 0, 0, 1742, 1743, 3, 1095, 547, 0, 1743, 1744, 3, 1069, 534, 0, 1744, 1745, 3, 1071, 535, 0, 1745, 1746, 3, 1069, 534, 0, 1746, 1747, 3, 1095, 547, 0, 1747, 1748, 3, 1069, 534, 0, 1748, 1749, 3, 1087, 543, 0, 1749, 1750, 3, 1065, 532, 0, 1750, 1751, 3, 1069, 534, 0, 1751, 88, 1, 0, 0, 0, 1752, 1753, 3, 1073, 536, 0, 1753, 1754, 3, 1069, 534, 0, 1754, 1755, 3, 1087, 543, 0, 1755, 1756, 3, 1069, 534, 0, 1756, 1757, 3, 1095, 547, 0, 1757, 1758, 3, 1061, 530, 0, 1758, 1759, 3, 1083, 541, 0, 1759, 1760, 3, 1077, 538, 0, 1760, 1761, 3, 1111, 555, 0, 1761, 1762, 3, 1061, 530, 0, 1762, 1763, 3, 1099, 549, 0, 1763, 1764, 3, 1077, 538, 0, 1764, 1765, 3, 1089, 544, 0, 1765, 1766, 3, 1087, 543, 0, 1766, 90, 1, 0, 0, 0, 1767, 1768, 3, 1069, 534, 0, 1768, 1769, 3, 1107, 553, 0, 1769, 1770, 3, 1099, 549, 0, 1770, 1771, 3, 1069, 534, 0, 1771, 1772, 3, 1087, 543, 0, 1772, 1773, 3, 1067, 533, 0, 1773, 1774, 3, 1097, 548, 0, 1774, 92, 1, 0, 0, 0, 1775, 1776, 3, 1061, 530, 0, 1776, 1777, 3, 1067, 533, 0, 1777, 1778, 3, 1067, 533, 0, 1778, 94, 1, 0, 0, 0, 1779, 1780, 3, 1097, 548, 0, 1780, 1781, 3, 1069, 534, 0, 1781, 1782, 3, 1099, 549, 0, 1782, 96, 1, 0, 0, 0, 1783, 1784, 3, 1091, 545, 0, 1784, 1785, 3, 1089, 544, 0, 1785, 1786, 3, 1097, 548, 0, 1786, 1787, 3, 1077, 538, 0, 1787, 1788, 3, 1099, 549, 0, 1788, 1789, 3, 1077, 538, 0, 1789, 1790, 3, 1089, 544, 0, 1790, 1791, 3, 1087, 543, 0, 1791, 98, 1, 0, 0, 0, 1792, 1793, 3, 1067, 533, 0, 1793, 1794, 3, 1089, 544, 0, 1794, 1795, 3, 1065, 532, 0, 1795, 1796, 3, 1101, 550, 0, 1796, 1797, 3, 1085, 542, 0, 1797, 1798, 3, 1069, 534, 0, 1798, 1799, 3, 1087, 543, 0, 1799, 1800, 3, 1099, 549, 0, 1800, 1801, 3, 1061, 530, 0, 1801, 1802, 3, 1099, 549, 0, 1802, 1803, 3, 1077, 538, 0, 1803, 1804, 3, 1089, 544, 0, 1804, 1805, 3, 1087, 543, 0, 1805, 100, 1, 0, 0, 0, 1806, 1807, 3, 1097, 548, 0, 1807, 1808, 3, 1099, 549, 0, 1808, 1809, 3, 1089, 544, 0, 1809, 1810, 3, 1095, 547, 0, 1810, 1811, 3, 1061, 530, 0, 1811, 1812, 3, 1073, 536, 0, 1812, 1813, 3, 1069, 534, 0, 1813, 102, 1, 0, 0, 0, 1814, 1815, 3, 1099, 549, 0, 1815, 1816, 3, 1061, 530, 0, 1816, 1817, 3, 1063, 531, 0, 1817, 1818, 3, 1083, 541, 0, 1818, 1819, 3, 1069, 534, 0, 1819, 104, 1, 0, 0, 0, 1820, 1821, 3, 1067, 533, 0, 1821, 1822, 3, 1069, 534, 0, 1822, 1823, 3, 1083, 541, 0, 1823, 1824, 3, 1069, 534, 0, 1824, 1825, 3, 1099, 549, 0, 1825, 1827, 3, 1069, 534, 0, 1826, 1828, 5, 95, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 3, 1063, 531, 0, 1830, 1831, 3, 1069, 534, 0, 1831, 1832, 3, 1075, 537, 0, 1832, 1833, 3, 1061, 530, 0, 1833, 1834, 3, 1103, 551, 0, 1834, 1835, 3, 1077, 538, 0, 1835, 1836, 3, 1089, 544, 0, 1836, 1837, 3, 1095, 547, 0, 1837, 106, 1, 0, 0, 0, 1838, 1839, 3, 1065, 532, 0, 1839, 1840, 3, 1061, 530, 0, 1840, 1841, 3, 1097, 548, 0, 1841, 1842, 3, 1065, 532, 0, 1842, 1843, 3, 1061, 530, 0, 1843, 1844, 3, 1067, 533, 0, 1844, 1845, 3, 1069, 534, 0, 1845, 108, 1, 0, 0, 0, 1846, 1847, 3, 1091, 545, 0, 1847, 1848, 3, 1095, 547, 0, 1848, 1849, 3, 1069, 534, 0, 1849, 1850, 3, 1103, 551, 0, 1850, 1851, 3, 1069, 534, 0, 1851, 1852, 3, 1087, 543, 0, 1852, 1853, 3, 1099, 549, 0, 1853, 110, 1, 0, 0, 0, 1854, 1855, 3, 1065, 532, 0, 1855, 1856, 3, 1089, 544, 0, 1856, 1857, 3, 1087, 543, 0, 1857, 1858, 3, 1087, 543, 0, 1858, 1859, 3, 1069, 534, 0, 1859, 1860, 3, 1065, 532, 0, 1860, 1861, 3, 1099, 549, 0, 1861, 112, 1, 0, 0, 0, 1862, 1863, 3, 1067, 533, 0, 1863, 1864, 3, 1077, 538, 0, 1864, 1865, 3, 1097, 548, 0, 1865, 1866, 3, 1065, 532, 0, 1866, 1867, 3, 1089, 544, 0, 1867, 1868, 3, 1087, 543, 0, 1868, 1869, 3, 1087, 543, 0, 1869, 1870, 3, 1069, 534, 0, 1870, 1871, 3, 1065, 532, 0, 1871, 1872, 3, 1099, 549, 0, 1872, 114, 1, 0, 0, 0, 1873, 1874, 3, 1083, 541, 0, 1874, 1875, 3, 1089, 544, 0, 1875, 1876, 3, 1065, 532, 0, 1876, 1877, 3, 1061, 530, 0, 1877, 1878, 3, 1083, 541, 0, 1878, 116, 1, 0, 0, 0, 1879, 1880, 3, 1091, 545, 0, 1880, 1881, 3, 1095, 547, 0, 1881, 1882, 3, 1089, 544, 0, 1882, 1883, 3, 1079, 539, 0, 1883, 1884, 3, 1069, 534, 0, 1884, 1885, 3, 1065, 532, 0, 1885, 1886, 3, 1099, 549, 0, 1886, 118, 1, 0, 0, 0, 1887, 1888, 3, 1095, 547, 0, 1888, 1889, 3, 1101, 550, 0, 1889, 1890, 3, 1087, 543, 0, 1890, 1891, 3, 1099, 549, 0, 1891, 1892, 3, 1077, 538, 0, 1892, 1893, 3, 1085, 542, 0, 1893, 1894, 3, 1069, 534, 0, 1894, 120, 1, 0, 0, 0, 1895, 1896, 3, 1063, 531, 0, 1896, 1897, 3, 1095, 547, 0, 1897, 1898, 3, 1061, 530, 0, 1898, 1899, 3, 1087, 543, 0, 1899, 1900, 3, 1065, 532, 0, 1900, 1901, 3, 1075, 537, 0, 1901, 122, 1, 0, 0, 0, 1902, 1903, 3, 1099, 549, 0, 1903, 1904, 3, 1089, 544, 0, 1904, 1905, 3, 1081, 540, 0, 1905, 1906, 3, 1069, 534, 0, 1906, 1907, 3, 1087, 543, 0, 1907, 124, 1, 0, 0, 0, 1908, 1909, 3, 1075, 537, 0, 1909, 1910, 3, 1089, 544, 0, 1910, 1911, 3, 1097, 548, 0, 1911, 1912, 3, 1099, 549, 0, 1912, 126, 1, 0, 0, 0, 1913, 1914, 3, 1091, 545, 0, 1914, 1915, 3, 1089, 544, 0, 1915, 1916, 3, 1095, 547, 0, 1916, 1917, 3, 1099, 549, 0, 1917, 128, 1, 0, 0, 0, 1918, 1919, 3, 1097, 548, 0, 1919, 1920, 3, 1075, 537, 0, 1920, 1921, 3, 1089, 544, 0, 1921, 1922, 3, 1105, 552, 0, 1922, 130, 1, 0, 0, 0, 1923, 1924, 3, 1067, 533, 0, 1924, 1925, 3, 1069, 534, 0, 1925, 1926, 3, 1097, 548, 0, 1926, 1927, 3, 1065, 532, 0, 1927, 1928, 3, 1095, 547, 0, 1928, 1929, 3, 1077, 538, 0, 1929, 1930, 3, 1063, 531, 0, 1930, 1931, 3, 1069, 534, 0, 1931, 132, 1, 0, 0, 0, 1932, 1933, 3, 1101, 550, 0, 1933, 1934, 3, 1097, 548, 0, 1934, 1935, 3, 1069, 534, 0, 1935, 134, 1, 0, 0, 0, 1936, 1937, 3, 1077, 538, 0, 1937, 1938, 3, 1087, 543, 0, 1938, 1939, 3, 1099, 549, 0, 1939, 1940, 3, 1095, 547, 0, 1940, 1941, 3, 1089, 544, 0, 1941, 1942, 3, 1097, 548, 0, 1942, 1943, 3, 1091, 545, 0, 1943, 1944, 3, 1069, 534, 0, 1944, 1945, 3, 1065, 532, 0, 1945, 1946, 3, 1099, 549, 0, 1946, 136, 1, 0, 0, 0, 1947, 1948, 3, 1067, 533, 0, 1948, 1949, 3, 1069, 534, 0, 1949, 1950, 3, 1063, 531, 0, 1950, 1951, 3, 1101, 550, 0, 1951, 1952, 3, 1073, 536, 0, 1952, 138, 1, 0, 0, 0, 1953, 1954, 3, 1097, 548, 0, 1954, 1955, 3, 1069, 534, 0, 1955, 1956, 3, 1083, 541, 0, 1956, 1957, 3, 1069, 534, 0, 1957, 1958, 3, 1065, 532, 0, 1958, 1959, 3, 1099, 549, 0, 1959, 140, 1, 0, 0, 0, 1960, 1961, 3, 1071, 535, 0, 1961, 1962, 3, 1095, 547, 0, 1962, 1963, 3, 1089, 544, 0, 1963, 1964, 3, 1085, 542, 0, 1964, 142, 1, 0, 0, 0, 1965, 1966, 3, 1105, 552, 0, 1966, 1967, 3, 1075, 537, 0, 1967, 1968, 3, 1069, 534, 0, 1968, 1969, 3, 1095, 547, 0, 1969, 1970, 3, 1069, 534, 0, 1970, 144, 1, 0, 0, 0, 1971, 1972, 3, 1075, 537, 0, 1972, 1973, 3, 1061, 530, 0, 1973, 1974, 3, 1103, 551, 0, 1974, 1975, 3, 1077, 538, 0, 1975, 1976, 3, 1087, 543, 0, 1976, 1977, 3, 1073, 536, 0, 1977, 146, 1, 0, 0, 0, 1978, 1979, 3, 1089, 544, 0, 1979, 1980, 3, 1071, 535, 0, 1980, 1981, 3, 1071, 535, 0, 1981, 1982, 3, 1097, 548, 0, 1982, 1983, 3, 1069, 534, 0, 1983, 1984, 3, 1099, 549, 0, 1984, 148, 1, 0, 0, 0, 1985, 1986, 3, 1083, 541, 0, 1986, 1987, 3, 1077, 538, 0, 1987, 1988, 3, 1085, 542, 0, 1988, 1989, 3, 1077, 538, 0, 1989, 1990, 3, 1099, 549, 0, 1990, 150, 1, 0, 0, 0, 1991, 1992, 3, 1061, 530, 0, 1992, 1993, 3, 1097, 548, 0, 1993, 152, 1, 0, 0, 0, 1994, 1995, 3, 1095, 547, 0, 1995, 1996, 3, 1069, 534, 0, 1996, 1997, 3, 1099, 549, 0, 1997, 1998, 3, 1101, 550, 0, 1998, 1999, 3, 1095, 547, 0, 1999, 2000, 3, 1087, 543, 0, 2000, 2001, 3, 1097, 548, 0, 2001, 154, 1, 0, 0, 0, 2002, 2003, 3, 1095, 547, 0, 2003, 2004, 3, 1069, 534, 0, 2004, 2005, 3, 1099, 549, 0, 2005, 2006, 3, 1101, 550, 0, 2006, 2007, 3, 1095, 547, 0, 2007, 2008, 3, 1087, 543, 0, 2008, 2009, 3, 1077, 538, 0, 2009, 2010, 3, 1087, 543, 0, 2010, 2011, 3, 1073, 536, 0, 2011, 156, 1, 0, 0, 0, 2012, 2013, 3, 1065, 532, 0, 2013, 2014, 3, 1061, 530, 0, 2014, 2015, 3, 1097, 548, 0, 2015, 2016, 3, 1069, 534, 0, 2016, 158, 1, 0, 0, 0, 2017, 2018, 3, 1105, 552, 0, 2018, 2019, 3, 1075, 537, 0, 2019, 2020, 3, 1069, 534, 0, 2020, 2021, 3, 1087, 543, 0, 2021, 160, 1, 0, 0, 0, 2022, 2023, 3, 1099, 549, 0, 2023, 2024, 3, 1075, 537, 0, 2024, 2025, 3, 1069, 534, 0, 2025, 2026, 3, 1087, 543, 0, 2026, 162, 1, 0, 0, 0, 2027, 2028, 3, 1069, 534, 0, 2028, 2029, 3, 1083, 541, 0, 2029, 2030, 3, 1097, 548, 0, 2030, 2031, 3, 1069, 534, 0, 2031, 164, 1, 0, 0, 0, 2032, 2033, 3, 1069, 534, 0, 2033, 2034, 3, 1087, 543, 0, 2034, 2035, 3, 1067, 533, 0, 2035, 166, 1, 0, 0, 0, 2036, 2037, 3, 1067, 533, 0, 2037, 2038, 3, 1077, 538, 0, 2038, 2039, 3, 1097, 548, 0, 2039, 2040, 3, 1099, 549, 0, 2040, 2041, 3, 1077, 538, 0, 2041, 2042, 3, 1087, 543, 0, 2042, 2043, 3, 1065, 532, 0, 2043, 2044, 3, 1099, 549, 0, 2044, 168, 1, 0, 0, 0, 2045, 2046, 3, 1061, 530, 0, 2046, 2047, 3, 1083, 541, 0, 2047, 2048, 3, 1083, 541, 0, 2048, 170, 1, 0, 0, 0, 2049, 2050, 3, 1079, 539, 0, 2050, 2051, 3, 1089, 544, 0, 2051, 2052, 3, 1077, 538, 0, 2052, 2053, 3, 1087, 543, 0, 2053, 172, 1, 0, 0, 0, 2054, 2055, 3, 1083, 541, 0, 2055, 2056, 3, 1069, 534, 0, 2056, 2057, 3, 1071, 535, 0, 2057, 2058, 3, 1099, 549, 0, 2058, 174, 1, 0, 0, 0, 2059, 2060, 3, 1095, 547, 0, 2060, 2061, 3, 1077, 538, 0, 2061, 2062, 3, 1073, 536, 0, 2062, 2063, 3, 1075, 537, 0, 2063, 2064, 3, 1099, 549, 0, 2064, 176, 1, 0, 0, 0, 2065, 2066, 3, 1077, 538, 0, 2066, 2067, 3, 1087, 543, 0, 2067, 2068, 3, 1087, 543, 0, 2068, 2069, 3, 1069, 534, 0, 2069, 2070, 3, 1095, 547, 0, 2070, 178, 1, 0, 0, 0, 2071, 2072, 3, 1089, 544, 0, 2072, 2073, 3, 1101, 550, 0, 2073, 2074, 3, 1099, 549, 0, 2074, 2075, 3, 1069, 534, 0, 2075, 2076, 3, 1095, 547, 0, 2076, 180, 1, 0, 0, 0, 2077, 2078, 3, 1071, 535, 0, 2078, 2079, 3, 1101, 550, 0, 2079, 2080, 3, 1083, 541, 0, 2080, 2081, 3, 1083, 541, 0, 2081, 182, 1, 0, 0, 0, 2082, 2083, 3, 1065, 532, 0, 2083, 2084, 3, 1095, 547, 0, 2084, 2085, 3, 1089, 544, 0, 2085, 2086, 3, 1097, 548, 0, 2086, 2087, 3, 1097, 548, 0, 2087, 184, 1, 0, 0, 0, 2088, 2089, 3, 1089, 544, 0, 2089, 2090, 3, 1087, 543, 0, 2090, 186, 1, 0, 0, 0, 2091, 2092, 3, 1061, 530, 0, 2092, 2093, 3, 1097, 548, 0, 2093, 2094, 3, 1065, 532, 0, 2094, 188, 1, 0, 0, 0, 2095, 2096, 3, 1067, 533, 0, 2096, 2097, 3, 1069, 534, 0, 2097, 2098, 3, 1097, 548, 0, 2098, 2099, 3, 1065, 532, 0, 2099, 190, 1, 0, 0, 0, 2100, 2101, 3, 1063, 531, 0, 2101, 2102, 3, 1069, 534, 0, 2102, 2103, 3, 1073, 536, 0, 2103, 2104, 3, 1077, 538, 0, 2104, 2105, 3, 1087, 543, 0, 2105, 192, 1, 0, 0, 0, 2106, 2107, 3, 1067, 533, 0, 2107, 2108, 3, 1069, 534, 0, 2108, 2109, 3, 1065, 532, 0, 2109, 2110, 3, 1083, 541, 0, 2110, 2111, 3, 1061, 530, 0, 2111, 2112, 3, 1095, 547, 0, 2112, 2113, 3, 1069, 534, 0, 2113, 194, 1, 0, 0, 0, 2114, 2115, 3, 1065, 532, 0, 2115, 2116, 3, 1075, 537, 0, 2116, 2117, 3, 1061, 530, 0, 2117, 2118, 3, 1087, 543, 0, 2118, 2119, 3, 1073, 536, 0, 2119, 2120, 3, 1069, 534, 0, 2120, 196, 1, 0, 0, 0, 2121, 2122, 3, 1095, 547, 0, 2122, 2123, 3, 1069, 534, 0, 2123, 2124, 3, 1099, 549, 0, 2124, 2125, 3, 1095, 547, 0, 2125, 2126, 3, 1077, 538, 0, 2126, 2127, 3, 1069, 534, 0, 2127, 2128, 3, 1103, 551, 0, 2128, 2129, 3, 1069, 534, 0, 2129, 198, 1, 0, 0, 0, 2130, 2131, 3, 1067, 533, 0, 2131, 2132, 3, 1069, 534, 0, 2132, 2133, 3, 1083, 541, 0, 2133, 2134, 3, 1069, 534, 0, 2134, 2135, 3, 1099, 549, 0, 2135, 2136, 3, 1069, 534, 0, 2136, 200, 1, 0, 0, 0, 2137, 2138, 3, 1065, 532, 0, 2138, 2139, 3, 1089, 544, 0, 2139, 2140, 3, 1085, 542, 0, 2140, 2141, 3, 1085, 542, 0, 2141, 2142, 3, 1077, 538, 0, 2142, 2143, 3, 1099, 549, 0, 2143, 202, 1, 0, 0, 0, 2144, 2145, 3, 1095, 547, 0, 2145, 2146, 3, 1089, 544, 0, 2146, 2147, 3, 1083, 541, 0, 2147, 2148, 3, 1083, 541, 0, 2148, 2149, 3, 1063, 531, 0, 2149, 2150, 3, 1061, 530, 0, 2150, 2151, 3, 1065, 532, 0, 2151, 2152, 3, 1081, 540, 0, 2152, 204, 1, 0, 0, 0, 2153, 2154, 3, 1083, 541, 0, 2154, 2155, 3, 1089, 544, 0, 2155, 2156, 3, 1089, 544, 0, 2156, 2157, 3, 1091, 545, 0, 2157, 206, 1, 0, 0, 0, 2158, 2159, 3, 1105, 552, 0, 2159, 2160, 3, 1075, 537, 0, 2160, 2161, 3, 1077, 538, 0, 2161, 2162, 3, 1083, 541, 0, 2162, 2163, 3, 1069, 534, 0, 2163, 208, 1, 0, 0, 0, 2164, 2165, 3, 1077, 538, 0, 2165, 2166, 3, 1071, 535, 0, 2166, 210, 1, 0, 0, 0, 2167, 2168, 3, 1069, 534, 0, 2168, 2169, 3, 1083, 541, 0, 2169, 2170, 3, 1097, 548, 0, 2170, 2171, 3, 1077, 538, 0, 2171, 2172, 3, 1071, 535, 0, 2172, 212, 1, 0, 0, 0, 2173, 2174, 3, 1069, 534, 0, 2174, 2175, 3, 1083, 541, 0, 2175, 2176, 3, 1097, 548, 0, 2176, 2177, 3, 1069, 534, 0, 2177, 2178, 3, 1077, 538, 0, 2178, 2179, 3, 1071, 535, 0, 2179, 214, 1, 0, 0, 0, 2180, 2181, 3, 1065, 532, 0, 2181, 2182, 3, 1089, 544, 0, 2182, 2183, 3, 1087, 543, 0, 2183, 2184, 3, 1099, 549, 0, 2184, 2185, 3, 1077, 538, 0, 2185, 2186, 3, 1087, 543, 0, 2186, 2187, 3, 1101, 550, 0, 2187, 2188, 3, 1069, 534, 0, 2188, 216, 1, 0, 0, 0, 2189, 2190, 3, 1063, 531, 0, 2190, 2191, 3, 1095, 547, 0, 2191, 2192, 3, 1069, 534, 0, 2192, 2193, 3, 1061, 530, 0, 2193, 2194, 3, 1081, 540, 0, 2194, 218, 1, 0, 0, 0, 2195, 2196, 3, 1095, 547, 0, 2196, 2197, 3, 1069, 534, 0, 2197, 2198, 3, 1099, 549, 0, 2198, 2199, 3, 1101, 550, 0, 2199, 2200, 3, 1095, 547, 0, 2200, 2201, 3, 1087, 543, 0, 2201, 220, 1, 0, 0, 0, 2202, 2203, 3, 1099, 549, 0, 2203, 2204, 3, 1075, 537, 0, 2204, 2205, 3, 1095, 547, 0, 2205, 2206, 3, 1089, 544, 0, 2206, 2207, 3, 1105, 552, 0, 2207, 222, 1, 0, 0, 0, 2208, 2209, 3, 1083, 541, 0, 2209, 2210, 3, 1089, 544, 0, 2210, 2211, 3, 1073, 536, 0, 2211, 224, 1, 0, 0, 0, 2212, 2213, 3, 1065, 532, 0, 2213, 2214, 3, 1061, 530, 0, 2214, 2215, 3, 1083, 541, 0, 2215, 2216, 3, 1083, 541, 0, 2216, 226, 1, 0, 0, 0, 2217, 2218, 3, 1079, 539, 0, 2218, 2219, 3, 1061, 530, 0, 2219, 2220, 3, 1103, 551, 0, 2220, 2221, 3, 1061, 530, 0, 2221, 228, 1, 0, 0, 0, 2222, 2223, 3, 1079, 539, 0, 2223, 2224, 3, 1061, 530, 0, 2224, 2225, 3, 1103, 551, 0, 2225, 2226, 3, 1061, 530, 0, 2226, 2227, 3, 1097, 548, 0, 2227, 2228, 3, 1065, 532, 0, 2228, 2229, 3, 1095, 547, 0, 2229, 2230, 3, 1077, 538, 0, 2230, 2231, 3, 1091, 545, 0, 2231, 2232, 3, 1099, 549, 0, 2232, 230, 1, 0, 0, 0, 2233, 2234, 3, 1061, 530, 0, 2234, 2235, 3, 1065, 532, 0, 2235, 2236, 3, 1099, 549, 0, 2236, 2237, 3, 1077, 538, 0, 2237, 2238, 3, 1089, 544, 0, 2238, 2239, 3, 1087, 543, 0, 2239, 232, 1, 0, 0, 0, 2240, 2241, 3, 1061, 530, 0, 2241, 2242, 3, 1065, 532, 0, 2242, 2243, 3, 1099, 549, 0, 2243, 2244, 3, 1077, 538, 0, 2244, 2245, 3, 1089, 544, 0, 2245, 2246, 3, 1087, 543, 0, 2246, 2247, 3, 1097, 548, 0, 2247, 234, 1, 0, 0, 0, 2248, 2249, 3, 1065, 532, 0, 2249, 2250, 3, 1083, 541, 0, 2250, 2251, 3, 1089, 544, 0, 2251, 2252, 3, 1097, 548, 0, 2252, 2253, 3, 1069, 534, 0, 2253, 236, 1, 0, 0, 0, 2254, 2255, 3, 1087, 543, 0, 2255, 2256, 3, 1089, 544, 0, 2256, 2257, 3, 1067, 533, 0, 2257, 2258, 3, 1069, 534, 0, 2258, 238, 1, 0, 0, 0, 2259, 2260, 3, 1069, 534, 0, 2260, 2261, 3, 1103, 551, 0, 2261, 2262, 3, 1069, 534, 0, 2262, 2263, 3, 1087, 543, 0, 2263, 2264, 3, 1099, 549, 0, 2264, 2265, 3, 1097, 548, 0, 2265, 240, 1, 0, 0, 0, 2266, 2267, 3, 1075, 537, 0, 2267, 2268, 3, 1069, 534, 0, 2268, 2269, 3, 1061, 530, 0, 2269, 2270, 3, 1067, 533, 0, 2270, 242, 1, 0, 0, 0, 2271, 2272, 3, 1099, 549, 0, 2272, 2273, 3, 1061, 530, 0, 2273, 2274, 3, 1077, 538, 0, 2274, 2275, 3, 1083, 541, 0, 2275, 244, 1, 0, 0, 0, 2276, 2277, 3, 1071, 535, 0, 2277, 2278, 3, 1077, 538, 0, 2278, 2279, 3, 1087, 543, 0, 2279, 2280, 3, 1067, 533, 0, 2280, 246, 1, 0, 0, 0, 2281, 2282, 3, 1097, 548, 0, 2282, 2283, 3, 1089, 544, 0, 2283, 2284, 3, 1095, 547, 0, 2284, 2285, 3, 1099, 549, 0, 2285, 248, 1, 0, 0, 0, 2286, 2287, 3, 1101, 550, 0, 2287, 2288, 3, 1087, 543, 0, 2288, 2289, 3, 1077, 538, 0, 2289, 2290, 3, 1089, 544, 0, 2290, 2291, 3, 1087, 543, 0, 2291, 250, 1, 0, 0, 0, 2292, 2293, 3, 1077, 538, 0, 2293, 2294, 3, 1087, 543, 0, 2294, 2295, 3, 1099, 549, 0, 2295, 2296, 3, 1069, 534, 0, 2296, 2297, 3, 1095, 547, 0, 2297, 2298, 3, 1097, 548, 0, 2298, 2299, 3, 1069, 534, 0, 2299, 2300, 3, 1065, 532, 0, 2300, 2301, 3, 1099, 549, 0, 2301, 252, 1, 0, 0, 0, 2302, 2303, 3, 1097, 548, 0, 2303, 2304, 3, 1101, 550, 0, 2304, 2305, 3, 1063, 531, 0, 2305, 2306, 3, 1099, 549, 0, 2306, 2307, 3, 1095, 547, 0, 2307, 2308, 3, 1061, 530, 0, 2308, 2309, 3, 1065, 532, 0, 2309, 2310, 3, 1099, 549, 0, 2310, 254, 1, 0, 0, 0, 2311, 2312, 3, 1065, 532, 0, 2312, 2313, 3, 1089, 544, 0, 2313, 2314, 3, 1087, 543, 0, 2314, 2315, 3, 1099, 549, 0, 2315, 2316, 3, 1061, 530, 0, 2316, 2317, 3, 1077, 538, 0, 2317, 2318, 3, 1087, 543, 0, 2318, 2319, 3, 1097, 548, 0, 2319, 256, 1, 0, 0, 0, 2320, 2321, 3, 1061, 530, 0, 2321, 2322, 3, 1103, 551, 0, 2322, 2323, 3, 1069, 534, 0, 2323, 2324, 3, 1095, 547, 0, 2324, 2325, 3, 1061, 530, 0, 2325, 2326, 3, 1073, 536, 0, 2326, 2327, 3, 1069, 534, 0, 2327, 258, 1, 0, 0, 0, 2328, 2329, 3, 1085, 542, 0, 2329, 2330, 3, 1077, 538, 0, 2330, 2331, 3, 1087, 543, 0, 2331, 2332, 3, 1077, 538, 0, 2332, 2333, 3, 1085, 542, 0, 2333, 2334, 3, 1101, 550, 0, 2334, 2335, 3, 1085, 542, 0, 2335, 260, 1, 0, 0, 0, 2336, 2337, 3, 1085, 542, 0, 2337, 2338, 3, 1061, 530, 0, 2338, 2339, 3, 1107, 553, 0, 2339, 2340, 3, 1077, 538, 0, 2340, 2341, 3, 1085, 542, 0, 2341, 2342, 3, 1101, 550, 0, 2342, 2343, 3, 1085, 542, 0, 2343, 262, 1, 0, 0, 0, 2344, 2345, 3, 1083, 541, 0, 2345, 2346, 3, 1077, 538, 0, 2346, 2347, 3, 1097, 548, 0, 2347, 2348, 3, 1099, 549, 0, 2348, 264, 1, 0, 0, 0, 2349, 2350, 3, 1095, 547, 0, 2350, 2351, 3, 1069, 534, 0, 2351, 2352, 3, 1085, 542, 0, 2352, 2353, 3, 1089, 544, 0, 2353, 2354, 3, 1103, 551, 0, 2354, 2355, 3, 1069, 534, 0, 2355, 266, 1, 0, 0, 0, 2356, 2357, 3, 1069, 534, 0, 2357, 2358, 3, 1093, 546, 0, 2358, 2359, 3, 1101, 550, 0, 2359, 2360, 3, 1061, 530, 0, 2360, 2361, 3, 1083, 541, 0, 2361, 2362, 3, 1097, 548, 0, 2362, 268, 1, 0, 0, 0, 2363, 2364, 3, 1077, 538, 0, 2364, 2365, 3, 1087, 543, 0, 2365, 2366, 3, 1071, 535, 0, 2366, 2367, 3, 1089, 544, 0, 2367, 270, 1, 0, 0, 0, 2368, 2369, 3, 1105, 552, 0, 2369, 2370, 3, 1061, 530, 0, 2370, 2371, 3, 1095, 547, 0, 2371, 2372, 3, 1087, 543, 0, 2372, 2373, 3, 1077, 538, 0, 2373, 2374, 3, 1087, 543, 0, 2374, 2375, 3, 1073, 536, 0, 2375, 272, 1, 0, 0, 0, 2376, 2377, 3, 1099, 549, 0, 2377, 2378, 3, 1095, 547, 0, 2378, 2379, 3, 1061, 530, 0, 2379, 2380, 3, 1065, 532, 0, 2380, 2381, 3, 1069, 534, 0, 2381, 274, 1, 0, 0, 0, 2382, 2383, 3, 1065, 532, 0, 2383, 2384, 3, 1095, 547, 0, 2384, 2385, 3, 1077, 538, 0, 2385, 2386, 3, 1099, 549, 0, 2386, 2387, 3, 1077, 538, 0, 2387, 2388, 3, 1065, 532, 0, 2388, 2389, 3, 1061, 530, 0, 2389, 2390, 3, 1083, 541, 0, 2390, 276, 1, 0, 0, 0, 2391, 2392, 3, 1105, 552, 0, 2392, 2393, 3, 1077, 538, 0, 2393, 2394, 3, 1099, 549, 0, 2394, 2395, 3, 1075, 537, 0, 2395, 278, 1, 0, 0, 0, 2396, 2397, 3, 1069, 534, 0, 2397, 2398, 3, 1085, 542, 0, 2398, 2399, 3, 1091, 545, 0, 2399, 2400, 3, 1099, 549, 0, 2400, 2401, 3, 1109, 554, 0, 2401, 280, 1, 0, 0, 0, 2402, 2403, 3, 1089, 544, 0, 2403, 2404, 3, 1063, 531, 0, 2404, 2405, 3, 1079, 539, 0, 2405, 2406, 3, 1069, 534, 0, 2406, 2407, 3, 1065, 532, 0, 2407, 2408, 3, 1099, 549, 0, 2408, 282, 1, 0, 0, 0, 2409, 2410, 3, 1089, 544, 0, 2410, 2411, 3, 1063, 531, 0, 2411, 2412, 3, 1079, 539, 0, 2412, 2413, 3, 1069, 534, 0, 2413, 2414, 3, 1065, 532, 0, 2414, 2415, 3, 1099, 549, 0, 2415, 2416, 3, 1097, 548, 0, 2416, 284, 1, 0, 0, 0, 2417, 2418, 3, 1091, 545, 0, 2418, 2419, 3, 1061, 530, 0, 2419, 2420, 3, 1073, 536, 0, 2420, 2421, 3, 1069, 534, 0, 2421, 2422, 3, 1097, 548, 0, 2422, 286, 1, 0, 0, 0, 2423, 2424, 3, 1083, 541, 0, 2424, 2425, 3, 1061, 530, 0, 2425, 2426, 3, 1109, 554, 0, 2426, 2427, 3, 1089, 544, 0, 2427, 2428, 3, 1101, 550, 0, 2428, 2429, 3, 1099, 549, 0, 2429, 2430, 3, 1097, 548, 0, 2430, 288, 1, 0, 0, 0, 2431, 2432, 3, 1097, 548, 0, 2432, 2433, 3, 1087, 543, 0, 2433, 2434, 3, 1077, 538, 0, 2434, 2435, 3, 1091, 545, 0, 2435, 2436, 3, 1091, 545, 0, 2436, 2437, 3, 1069, 534, 0, 2437, 2438, 3, 1099, 549, 0, 2438, 2439, 3, 1097, 548, 0, 2439, 290, 1, 0, 0, 0, 2440, 2441, 3, 1087, 543, 0, 2441, 2442, 3, 1089, 544, 0, 2442, 2443, 3, 1099, 549, 0, 2443, 2444, 3, 1069, 534, 0, 2444, 2445, 3, 1063, 531, 0, 2445, 2446, 3, 1089, 544, 0, 2446, 2447, 3, 1089, 544, 0, 2447, 2448, 3, 1081, 540, 0, 2448, 2449, 3, 1097, 548, 0, 2449, 292, 1, 0, 0, 0, 2450, 2451, 3, 1091, 545, 0, 2451, 2452, 3, 1083, 541, 0, 2452, 2453, 3, 1061, 530, 0, 2453, 2454, 3, 1065, 532, 0, 2454, 2455, 3, 1069, 534, 0, 2455, 2456, 3, 1075, 537, 0, 2456, 2457, 3, 1089, 544, 0, 2457, 2458, 3, 1083, 541, 0, 2458, 2459, 3, 1067, 533, 0, 2459, 2460, 3, 1069, 534, 0, 2460, 2461, 3, 1095, 547, 0, 2461, 294, 1, 0, 0, 0, 2462, 2463, 3, 1097, 548, 0, 2463, 2464, 3, 1087, 543, 0, 2464, 2465, 3, 1077, 538, 0, 2465, 2466, 3, 1091, 545, 0, 2466, 2467, 3, 1091, 545, 0, 2467, 2468, 3, 1069, 534, 0, 2468, 2469, 3, 1099, 549, 0, 2469, 2470, 3, 1065, 532, 0, 2470, 2471, 3, 1061, 530, 0, 2471, 2472, 3, 1083, 541, 0, 2472, 2473, 3, 1083, 541, 0, 2473, 296, 1, 0, 0, 0, 2474, 2475, 3, 1083, 541, 0, 2475, 2476, 3, 1061, 530, 0, 2476, 2477, 3, 1109, 554, 0, 2477, 2478, 3, 1089, 544, 0, 2478, 2479, 3, 1101, 550, 0, 2479, 2480, 3, 1099, 549, 0, 2480, 2481, 3, 1073, 536, 0, 2481, 2482, 3, 1095, 547, 0, 2482, 2483, 3, 1077, 538, 0, 2483, 2484, 3, 1067, 533, 0, 2484, 298, 1, 0, 0, 0, 2485, 2486, 3, 1067, 533, 0, 2486, 2487, 3, 1061, 530, 0, 2487, 2488, 3, 1099, 549, 0, 2488, 2489, 3, 1061, 530, 0, 2489, 2490, 3, 1073, 536, 0, 2490, 2491, 3, 1095, 547, 0, 2491, 2492, 3, 1077, 538, 0, 2492, 2493, 3, 1067, 533, 0, 2493, 300, 1, 0, 0, 0, 2494, 2495, 3, 1067, 533, 0, 2495, 2496, 3, 1061, 530, 0, 2496, 2497, 3, 1099, 549, 0, 2497, 2498, 3, 1061, 530, 0, 2498, 2499, 3, 1103, 551, 0, 2499, 2500, 3, 1077, 538, 0, 2500, 2501, 3, 1069, 534, 0, 2501, 2502, 3, 1105, 552, 0, 2502, 302, 1, 0, 0, 0, 2503, 2504, 3, 1083, 541, 0, 2504, 2505, 3, 1077, 538, 0, 2505, 2506, 3, 1097, 548, 0, 2506, 2507, 3, 1099, 549, 0, 2507, 2508, 3, 1103, 551, 0, 2508, 2509, 3, 1077, 538, 0, 2509, 2510, 3, 1069, 534, 0, 2510, 2511, 3, 1105, 552, 0, 2511, 304, 1, 0, 0, 0, 2512, 2513, 3, 1073, 536, 0, 2513, 2514, 3, 1061, 530, 0, 2514, 2515, 3, 1083, 541, 0, 2515, 2516, 3, 1083, 541, 0, 2516, 2517, 3, 1069, 534, 0, 2517, 2518, 3, 1095, 547, 0, 2518, 2519, 3, 1109, 554, 0, 2519, 306, 1, 0, 0, 0, 2520, 2521, 3, 1065, 532, 0, 2521, 2522, 3, 1089, 544, 0, 2522, 2523, 3, 1087, 543, 0, 2523, 2524, 3, 1099, 549, 0, 2524, 2525, 3, 1061, 530, 0, 2525, 2526, 3, 1077, 538, 0, 2526, 2527, 3, 1087, 543, 0, 2527, 2528, 3, 1069, 534, 0, 2528, 2529, 3, 1095, 547, 0, 2529, 308, 1, 0, 0, 0, 2530, 2531, 3, 1095, 547, 0, 2531, 2532, 3, 1089, 544, 0, 2532, 2533, 3, 1105, 552, 0, 2533, 310, 1, 0, 0, 0, 2534, 2535, 3, 1077, 538, 0, 2535, 2536, 3, 1099, 549, 0, 2536, 2537, 3, 1069, 534, 0, 2537, 2538, 3, 1085, 542, 0, 2538, 312, 1, 0, 0, 0, 2539, 2540, 3, 1065, 532, 0, 2540, 2541, 3, 1089, 544, 0, 2541, 2542, 3, 1087, 543, 0, 2542, 2543, 3, 1099, 549, 0, 2543, 2544, 3, 1095, 547, 0, 2544, 2545, 3, 1089, 544, 0, 2545, 2546, 3, 1083, 541, 0, 2546, 2547, 3, 1063, 531, 0, 2547, 2548, 3, 1061, 530, 0, 2548, 2549, 3, 1095, 547, 0, 2549, 314, 1, 0, 0, 0, 2550, 2551, 3, 1097, 548, 0, 2551, 2552, 3, 1069, 534, 0, 2552, 2553, 3, 1061, 530, 0, 2553, 2554, 3, 1095, 547, 0, 2554, 2555, 3, 1065, 532, 0, 2555, 2556, 3, 1075, 537, 0, 2556, 316, 1, 0, 0, 0, 2557, 2558, 3, 1097, 548, 0, 2558, 2559, 3, 1069, 534, 0, 2559, 2560, 3, 1061, 530, 0, 2560, 2561, 3, 1095, 547, 0, 2561, 2562, 3, 1065, 532, 0, 2562, 2563, 3, 1075, 537, 0, 2563, 2564, 3, 1063, 531, 0, 2564, 2565, 3, 1061, 530, 0, 2565, 2566, 3, 1095, 547, 0, 2566, 318, 1, 0, 0, 0, 2567, 2568, 3, 1087, 543, 0, 2568, 2569, 3, 1061, 530, 0, 2569, 2570, 3, 1103, 551, 0, 2570, 2571, 3, 1077, 538, 0, 2571, 2572, 3, 1073, 536, 0, 2572, 2573, 3, 1061, 530, 0, 2573, 2574, 3, 1099, 549, 0, 2574, 2575, 3, 1077, 538, 0, 2575, 2576, 3, 1089, 544, 0, 2576, 2577, 3, 1087, 543, 0, 2577, 2578, 3, 1083, 541, 0, 2578, 2579, 3, 1077, 538, 0, 2579, 2580, 3, 1097, 548, 0, 2580, 2581, 3, 1099, 549, 0, 2581, 320, 1, 0, 0, 0, 2582, 2583, 3, 1061, 530, 0, 2583, 2584, 3, 1065, 532, 0, 2584, 2585, 3, 1099, 549, 0, 2585, 2586, 3, 1077, 538, 0, 2586, 2587, 3, 1089, 544, 0, 2587, 2588, 3, 1087, 543, 0, 2588, 2589, 3, 1063, 531, 0, 2589, 2590, 3, 1101, 550, 0, 2590, 2591, 3, 1099, 549, 0, 2591, 2592, 3, 1099, 549, 0, 2592, 2593, 3, 1089, 544, 0, 2593, 2594, 3, 1087, 543, 0, 2594, 322, 1, 0, 0, 0, 2595, 2596, 3, 1083, 541, 0, 2596, 2597, 3, 1077, 538, 0, 2597, 2598, 3, 1087, 543, 0, 2598, 2599, 3, 1081, 540, 0, 2599, 2600, 3, 1063, 531, 0, 2600, 2601, 3, 1101, 550, 0, 2601, 2602, 3, 1099, 549, 0, 2602, 2603, 3, 1099, 549, 0, 2603, 2604, 3, 1089, 544, 0, 2604, 2605, 3, 1087, 543, 0, 2605, 324, 1, 0, 0, 0, 2606, 2607, 3, 1063, 531, 0, 2607, 2608, 3, 1101, 550, 0, 2608, 2609, 3, 1099, 549, 0, 2609, 2610, 3, 1099, 549, 0, 2610, 2611, 3, 1089, 544, 0, 2611, 2612, 3, 1087, 543, 0, 2612, 326, 1, 0, 0, 0, 2613, 2614, 3, 1099, 549, 0, 2614, 2615, 3, 1077, 538, 0, 2615, 2616, 3, 1099, 549, 0, 2616, 2617, 3, 1083, 541, 0, 2617, 2618, 3, 1069, 534, 0, 2618, 328, 1, 0, 0, 0, 2619, 2620, 3, 1067, 533, 0, 2620, 2621, 3, 1109, 554, 0, 2621, 2622, 3, 1087, 543, 0, 2622, 2623, 3, 1061, 530, 0, 2623, 2624, 3, 1085, 542, 0, 2624, 2625, 3, 1077, 538, 0, 2625, 2626, 3, 1065, 532, 0, 2626, 2627, 3, 1099, 549, 0, 2627, 2628, 3, 1069, 534, 0, 2628, 2629, 3, 1107, 553, 0, 2629, 2630, 3, 1099, 549, 0, 2630, 330, 1, 0, 0, 0, 2631, 2632, 3, 1067, 533, 0, 2632, 2633, 3, 1109, 554, 0, 2633, 2634, 3, 1087, 543, 0, 2634, 2635, 3, 1061, 530, 0, 2635, 2636, 3, 1085, 542, 0, 2636, 2637, 3, 1077, 538, 0, 2637, 2638, 3, 1065, 532, 0, 2638, 332, 1, 0, 0, 0, 2639, 2640, 3, 1097, 548, 0, 2640, 2641, 3, 1099, 549, 0, 2641, 2642, 3, 1061, 530, 0, 2642, 2643, 3, 1099, 549, 0, 2643, 2644, 3, 1077, 538, 0, 2644, 2645, 3, 1065, 532, 0, 2645, 2646, 3, 1099, 549, 0, 2646, 2647, 3, 1069, 534, 0, 2647, 2648, 3, 1107, 553, 0, 2648, 2649, 3, 1099, 549, 0, 2649, 334, 1, 0, 0, 0, 2650, 2651, 3, 1083, 541, 0, 2651, 2652, 3, 1061, 530, 0, 2652, 2653, 3, 1063, 531, 0, 2653, 2654, 3, 1069, 534, 0, 2654, 2655, 3, 1083, 541, 0, 2655, 336, 1, 0, 0, 0, 2656, 2657, 3, 1099, 549, 0, 2657, 2658, 3, 1069, 534, 0, 2658, 2659, 3, 1107, 553, 0, 2659, 2660, 3, 1099, 549, 0, 2660, 2661, 3, 1063, 531, 0, 2661, 2662, 3, 1089, 544, 0, 2662, 2663, 3, 1107, 553, 0, 2663, 338, 1, 0, 0, 0, 2664, 2665, 3, 1099, 549, 0, 2665, 2666, 3, 1069, 534, 0, 2666, 2667, 3, 1107, 553, 0, 2667, 2668, 3, 1099, 549, 0, 2668, 2669, 3, 1061, 530, 0, 2669, 2670, 3, 1095, 547, 0, 2670, 2671, 3, 1069, 534, 0, 2671, 2672, 3, 1061, 530, 0, 2672, 340, 1, 0, 0, 0, 2673, 2674, 3, 1067, 533, 0, 2674, 2675, 3, 1061, 530, 0, 2675, 2676, 3, 1099, 549, 0, 2676, 2677, 3, 1069, 534, 0, 2677, 2678, 3, 1091, 545, 0, 2678, 2679, 3, 1077, 538, 0, 2679, 2680, 3, 1065, 532, 0, 2680, 2681, 3, 1081, 540, 0, 2681, 2682, 3, 1069, 534, 0, 2682, 2683, 3, 1095, 547, 0, 2683, 342, 1, 0, 0, 0, 2684, 2685, 3, 1095, 547, 0, 2685, 2686, 3, 1061, 530, 0, 2686, 2687, 3, 1067, 533, 0, 2687, 2688, 3, 1077, 538, 0, 2688, 2689, 3, 1089, 544, 0, 2689, 2690, 3, 1063, 531, 0, 2690, 2691, 3, 1101, 550, 0, 2691, 2692, 3, 1099, 549, 0, 2692, 2693, 3, 1099, 549, 0, 2693, 2694, 3, 1089, 544, 0, 2694, 2695, 3, 1087, 543, 0, 2695, 2696, 3, 1097, 548, 0, 2696, 344, 1, 0, 0, 0, 2697, 2698, 3, 1067, 533, 0, 2698, 2699, 3, 1095, 547, 0, 2699, 2700, 3, 1089, 544, 0, 2700, 2701, 3, 1091, 545, 0, 2701, 2702, 3, 1067, 533, 0, 2702, 2703, 3, 1089, 544, 0, 2703, 2704, 3, 1105, 552, 0, 2704, 2705, 3, 1087, 543, 0, 2705, 346, 1, 0, 0, 0, 2706, 2707, 3, 1065, 532, 0, 2707, 2708, 3, 1089, 544, 0, 2708, 2709, 3, 1085, 542, 0, 2709, 2710, 3, 1063, 531, 0, 2710, 2711, 3, 1089, 544, 0, 2711, 2712, 3, 1063, 531, 0, 2712, 2713, 3, 1089, 544, 0, 2713, 2714, 3, 1107, 553, 0, 2714, 348, 1, 0, 0, 0, 2715, 2716, 3, 1065, 532, 0, 2716, 2717, 3, 1075, 537, 0, 2717, 2718, 3, 1069, 534, 0, 2718, 2719, 3, 1065, 532, 0, 2719, 2720, 3, 1081, 540, 0, 2720, 2721, 3, 1063, 531, 0, 2721, 2722, 3, 1089, 544, 0, 2722, 2723, 3, 1107, 553, 0, 2723, 350, 1, 0, 0, 0, 2724, 2725, 3, 1095, 547, 0, 2725, 2726, 3, 1069, 534, 0, 2726, 2727, 3, 1071, 535, 0, 2727, 2728, 3, 1069, 534, 0, 2728, 2729, 3, 1095, 547, 0, 2729, 2730, 3, 1069, 534, 0, 2730, 2731, 3, 1087, 543, 0, 2731, 2732, 3, 1065, 532, 0, 2732, 2733, 3, 1069, 534, 0, 2733, 2734, 3, 1097, 548, 0, 2734, 2735, 3, 1069, 534, 0, 2735, 2736, 3, 1083, 541, 0, 2736, 2737, 3, 1069, 534, 0, 2737, 2738, 3, 1065, 532, 0, 2738, 2739, 3, 1099, 549, 0, 2739, 2740, 3, 1089, 544, 0, 2740, 2741, 3, 1095, 547, 0, 2741, 352, 1, 0, 0, 0, 2742, 2743, 3, 1077, 538, 0, 2743, 2744, 3, 1087, 543, 0, 2744, 2745, 3, 1091, 545, 0, 2745, 2746, 3, 1101, 550, 0, 2746, 2747, 3, 1099, 549, 0, 2747, 2748, 3, 1095, 547, 0, 2748, 2749, 3, 1069, 534, 0, 2749, 2750, 3, 1071, 535, 0, 2750, 2751, 3, 1069, 534, 0, 2751, 2752, 3, 1095, 547, 0, 2752, 2753, 3, 1069, 534, 0, 2753, 2754, 3, 1087, 543, 0, 2754, 2755, 3, 1065, 532, 0, 2755, 2756, 3, 1069, 534, 0, 2756, 2757, 3, 1097, 548, 0, 2757, 2758, 3, 1069, 534, 0, 2758, 2759, 3, 1099, 549, 0, 2759, 2760, 3, 1097, 548, 0, 2760, 2761, 3, 1069, 534, 0, 2761, 2762, 3, 1083, 541, 0, 2762, 2763, 3, 1069, 534, 0, 2763, 2764, 3, 1065, 532, 0, 2764, 2765, 3, 1099, 549, 0, 2765, 2766, 3, 1089, 544, 0, 2766, 2767, 3, 1095, 547, 0, 2767, 354, 1, 0, 0, 0, 2768, 2769, 3, 1071, 535, 0, 2769, 2770, 3, 1077, 538, 0, 2770, 2771, 3, 1083, 541, 0, 2771, 2772, 3, 1069, 534, 0, 2772, 2773, 3, 1077, 538, 0, 2773, 2774, 3, 1087, 543, 0, 2774, 2775, 3, 1091, 545, 0, 2775, 2776, 3, 1101, 550, 0, 2776, 2777, 3, 1099, 549, 0, 2777, 356, 1, 0, 0, 0, 2778, 2779, 3, 1077, 538, 0, 2779, 2780, 3, 1085, 542, 0, 2780, 2781, 3, 1061, 530, 0, 2781, 2782, 3, 1073, 536, 0, 2782, 2783, 3, 1069, 534, 0, 2783, 2784, 3, 1077, 538, 0, 2784, 2785, 3, 1087, 543, 0, 2785, 2786, 3, 1091, 545, 0, 2786, 2787, 3, 1101, 550, 0, 2787, 2788, 3, 1099, 549, 0, 2788, 358, 1, 0, 0, 0, 2789, 2790, 3, 1065, 532, 0, 2790, 2791, 3, 1101, 550, 0, 2791, 2792, 3, 1097, 548, 0, 2792, 2793, 3, 1099, 549, 0, 2793, 2794, 3, 1089, 544, 0, 2794, 2795, 3, 1085, 542, 0, 2795, 2796, 3, 1105, 552, 0, 2796, 2797, 3, 1077, 538, 0, 2797, 2798, 3, 1067, 533, 0, 2798, 2799, 3, 1073, 536, 0, 2799, 2800, 3, 1069, 534, 0, 2800, 2801, 3, 1099, 549, 0, 2801, 360, 1, 0, 0, 0, 2802, 2803, 3, 1091, 545, 0, 2803, 2804, 3, 1083, 541, 0, 2804, 2805, 3, 1101, 550, 0, 2805, 2806, 3, 1073, 536, 0, 2806, 2807, 3, 1073, 536, 0, 2807, 2808, 3, 1061, 530, 0, 2808, 2809, 3, 1063, 531, 0, 2809, 2810, 3, 1083, 541, 0, 2810, 2811, 3, 1069, 534, 0, 2811, 2812, 3, 1105, 552, 0, 2812, 2813, 3, 1077, 538, 0, 2813, 2814, 3, 1067, 533, 0, 2814, 2815, 3, 1073, 536, 0, 2815, 2816, 3, 1069, 534, 0, 2816, 2817, 3, 1099, 549, 0, 2817, 362, 1, 0, 0, 0, 2818, 2819, 3, 1099, 549, 0, 2819, 2820, 3, 1069, 534, 0, 2820, 2821, 3, 1107, 553, 0, 2821, 2822, 3, 1099, 549, 0, 2822, 2823, 3, 1071, 535, 0, 2823, 2824, 3, 1077, 538, 0, 2824, 2825, 3, 1083, 541, 0, 2825, 2826, 3, 1099, 549, 0, 2826, 2827, 3, 1069, 534, 0, 2827, 2828, 3, 1095, 547, 0, 2828, 364, 1, 0, 0, 0, 2829, 2830, 3, 1087, 543, 0, 2830, 2831, 3, 1101, 550, 0, 2831, 2832, 3, 1085, 542, 0, 2832, 2833, 3, 1063, 531, 0, 2833, 2834, 3, 1069, 534, 0, 2834, 2835, 3, 1095, 547, 0, 2835, 2836, 3, 1071, 535, 0, 2836, 2837, 3, 1077, 538, 0, 2837, 2838, 3, 1083, 541, 0, 2838, 2839, 3, 1099, 549, 0, 2839, 2840, 3, 1069, 534, 0, 2840, 2841, 3, 1095, 547, 0, 2841, 366, 1, 0, 0, 0, 2842, 2843, 3, 1067, 533, 0, 2843, 2844, 3, 1095, 547, 0, 2844, 2845, 3, 1089, 544, 0, 2845, 2846, 3, 1091, 545, 0, 2846, 2847, 3, 1067, 533, 0, 2847, 2848, 3, 1089, 544, 0, 2848, 2849, 3, 1105, 552, 0, 2849, 2850, 3, 1087, 543, 0, 2850, 2851, 3, 1071, 535, 0, 2851, 2852, 3, 1077, 538, 0, 2852, 2853, 3, 1083, 541, 0, 2853, 2854, 3, 1099, 549, 0, 2854, 2855, 3, 1069, 534, 0, 2855, 2856, 3, 1095, 547, 0, 2856, 368, 1, 0, 0, 0, 2857, 2858, 3, 1067, 533, 0, 2858, 2859, 3, 1061, 530, 0, 2859, 2860, 3, 1099, 549, 0, 2860, 2861, 3, 1069, 534, 0, 2861, 2862, 3, 1071, 535, 0, 2862, 2863, 3, 1077, 538, 0, 2863, 2864, 3, 1083, 541, 0, 2864, 2865, 3, 1099, 549, 0, 2865, 2866, 3, 1069, 534, 0, 2866, 2867, 3, 1095, 547, 0, 2867, 370, 1, 0, 0, 0, 2868, 2869, 3, 1067, 533, 0, 2869, 2870, 3, 1095, 547, 0, 2870, 2871, 3, 1089, 544, 0, 2871, 2872, 3, 1091, 545, 0, 2872, 2873, 3, 1067, 533, 0, 2873, 2874, 3, 1089, 544, 0, 2874, 2875, 3, 1105, 552, 0, 2875, 2876, 3, 1087, 543, 0, 2876, 2877, 3, 1097, 548, 0, 2877, 2878, 3, 1089, 544, 0, 2878, 2879, 3, 1095, 547, 0, 2879, 2880, 3, 1099, 549, 0, 2880, 372, 1, 0, 0, 0, 2881, 2882, 3, 1071, 535, 0, 2882, 2883, 3, 1077, 538, 0, 2883, 2884, 3, 1083, 541, 0, 2884, 2885, 3, 1099, 549, 0, 2885, 2886, 3, 1069, 534, 0, 2886, 2887, 3, 1095, 547, 0, 2887, 374, 1, 0, 0, 0, 2888, 2889, 3, 1105, 552, 0, 2889, 2890, 3, 1077, 538, 0, 2890, 2891, 3, 1067, 533, 0, 2891, 2892, 3, 1073, 536, 0, 2892, 2893, 3, 1069, 534, 0, 2893, 2894, 3, 1099, 549, 0, 2894, 376, 1, 0, 0, 0, 2895, 2896, 3, 1105, 552, 0, 2896, 2897, 3, 1077, 538, 0, 2897, 2898, 3, 1067, 533, 0, 2898, 2899, 3, 1073, 536, 0, 2899, 2900, 3, 1069, 534, 0, 2900, 2901, 3, 1099, 549, 0, 2901, 2902, 3, 1097, 548, 0, 2902, 378, 1, 0, 0, 0, 2903, 2904, 3, 1065, 532, 0, 2904, 2905, 3, 1061, 530, 0, 2905, 2906, 3, 1091, 545, 0, 2906, 2907, 3, 1099, 549, 0, 2907, 2908, 3, 1077, 538, 0, 2908, 2909, 3, 1089, 544, 0, 2909, 2910, 3, 1087, 543, 0, 2910, 380, 1, 0, 0, 0, 2911, 2912, 3, 1077, 538, 0, 2912, 2913, 3, 1065, 532, 0, 2913, 2914, 3, 1089, 544, 0, 2914, 2915, 3, 1087, 543, 0, 2915, 382, 1, 0, 0, 0, 2916, 2917, 3, 1099, 549, 0, 2917, 2918, 3, 1089, 544, 0, 2918, 2919, 3, 1089, 544, 0, 2919, 2920, 3, 1083, 541, 0, 2920, 2921, 3, 1099, 549, 0, 2921, 2922, 3, 1077, 538, 0, 2922, 2923, 3, 1091, 545, 0, 2923, 384, 1, 0, 0, 0, 2924, 2925, 3, 1067, 533, 0, 2925, 2926, 3, 1061, 530, 0, 2926, 2927, 3, 1099, 549, 0, 2927, 2928, 3, 1061, 530, 0, 2928, 2929, 3, 1097, 548, 0, 2929, 2930, 3, 1089, 544, 0, 2930, 2931, 3, 1101, 550, 0, 2931, 2932, 3, 1095, 547, 0, 2932, 2933, 3, 1065, 532, 0, 2933, 2934, 3, 1069, 534, 0, 2934, 386, 1, 0, 0, 0, 2935, 2936, 3, 1097, 548, 0, 2936, 2937, 3, 1089, 544, 0, 2937, 2938, 3, 1101, 550, 0, 2938, 2939, 3, 1095, 547, 0, 2939, 2940, 3, 1065, 532, 0, 2940, 2941, 3, 1069, 534, 0, 2941, 388, 1, 0, 0, 0, 2942, 2943, 3, 1097, 548, 0, 2943, 2944, 3, 1069, 534, 0, 2944, 2945, 3, 1083, 541, 0, 2945, 2946, 3, 1069, 534, 0, 2946, 2947, 3, 1065, 532, 0, 2947, 2948, 3, 1099, 549, 0, 2948, 2949, 3, 1077, 538, 0, 2949, 2950, 3, 1089, 544, 0, 2950, 2951, 3, 1087, 543, 0, 2951, 390, 1, 0, 0, 0, 2952, 2953, 3, 1071, 535, 0, 2953, 2954, 3, 1089, 544, 0, 2954, 2955, 3, 1089, 544, 0, 2955, 2956, 3, 1099, 549, 0, 2956, 2957, 3, 1069, 534, 0, 2957, 2958, 3, 1095, 547, 0, 2958, 392, 1, 0, 0, 0, 2959, 2960, 3, 1075, 537, 0, 2960, 2961, 3, 1069, 534, 0, 2961, 2962, 3, 1061, 530, 0, 2962, 2963, 3, 1067, 533, 0, 2963, 2964, 3, 1069, 534, 0, 2964, 2965, 3, 1095, 547, 0, 2965, 394, 1, 0, 0, 0, 2966, 2967, 3, 1065, 532, 0, 2967, 2968, 3, 1089, 544, 0, 2968, 2969, 3, 1087, 543, 0, 2969, 2970, 3, 1099, 549, 0, 2970, 2971, 3, 1069, 534, 0, 2971, 2972, 3, 1087, 543, 0, 2972, 2973, 3, 1099, 549, 0, 2973, 396, 1, 0, 0, 0, 2974, 2975, 3, 1095, 547, 0, 2975, 2976, 3, 1069, 534, 0, 2976, 2977, 3, 1087, 543, 0, 2977, 2978, 3, 1067, 533, 0, 2978, 2979, 3, 1069, 534, 0, 2979, 2980, 3, 1095, 547, 0, 2980, 2981, 3, 1085, 542, 0, 2981, 2982, 3, 1089, 544, 0, 2982, 2983, 3, 1067, 533, 0, 2983, 2984, 3, 1069, 534, 0, 2984, 398, 1, 0, 0, 0, 2985, 2986, 3, 1063, 531, 0, 2986, 2987, 3, 1077, 538, 0, 2987, 2988, 3, 1087, 543, 0, 2988, 2989, 3, 1067, 533, 0, 2989, 2990, 3, 1097, 548, 0, 2990, 400, 1, 0, 0, 0, 2991, 2992, 3, 1061, 530, 0, 2992, 2993, 3, 1099, 549, 0, 2993, 2994, 3, 1099, 549, 0, 2994, 2995, 3, 1095, 547, 0, 2995, 402, 1, 0, 0, 0, 2996, 2997, 3, 1065, 532, 0, 2997, 2998, 3, 1089, 544, 0, 2998, 2999, 3, 1087, 543, 0, 2999, 3000, 3, 1099, 549, 0, 3000, 3001, 3, 1069, 534, 0, 3001, 3002, 3, 1087, 543, 0, 3002, 3003, 3, 1099, 549, 0, 3003, 3004, 3, 1091, 545, 0, 3004, 3005, 3, 1061, 530, 0, 3005, 3006, 3, 1095, 547, 0, 3006, 3007, 3, 1061, 530, 0, 3007, 3008, 3, 1085, 542, 0, 3008, 3009, 3, 1097, 548, 0, 3009, 404, 1, 0, 0, 0, 3010, 3011, 3, 1065, 532, 0, 3011, 3012, 3, 1061, 530, 0, 3012, 3013, 3, 1091, 545, 0, 3013, 3014, 3, 1099, 549, 0, 3014, 3015, 3, 1077, 538, 0, 3015, 3016, 3, 1089, 544, 0, 3016, 3017, 3, 1087, 543, 0, 3017, 3018, 3, 1091, 545, 0, 3018, 3019, 3, 1061, 530, 0, 3019, 3020, 3, 1095, 547, 0, 3020, 3021, 3, 1061, 530, 0, 3021, 3022, 3, 1085, 542, 0, 3022, 3023, 3, 1097, 548, 0, 3023, 406, 1, 0, 0, 0, 3024, 3025, 3, 1091, 545, 0, 3025, 3026, 3, 1061, 530, 0, 3026, 3027, 3, 1095, 547, 0, 3027, 3028, 3, 1061, 530, 0, 3028, 3029, 3, 1085, 542, 0, 3029, 3030, 3, 1097, 548, 0, 3030, 408, 1, 0, 0, 0, 3031, 3032, 3, 1103, 551, 0, 3032, 3033, 3, 1061, 530, 0, 3033, 3034, 3, 1095, 547, 0, 3034, 3035, 3, 1077, 538, 0, 3035, 3036, 3, 1061, 530, 0, 3036, 3037, 3, 1063, 531, 0, 3037, 3038, 3, 1083, 541, 0, 3038, 3039, 3, 1069, 534, 0, 3039, 3040, 3, 1097, 548, 0, 3040, 410, 1, 0, 0, 0, 3041, 3042, 3, 1067, 533, 0, 3042, 3043, 3, 1069, 534, 0, 3043, 3044, 3, 1097, 548, 0, 3044, 3045, 3, 1081, 540, 0, 3045, 3046, 3, 1099, 549, 0, 3046, 3047, 3, 1089, 544, 0, 3047, 3048, 3, 1091, 545, 0, 3048, 3049, 3, 1105, 552, 0, 3049, 3050, 3, 1077, 538, 0, 3050, 3051, 3, 1067, 533, 0, 3051, 3052, 3, 1099, 549, 0, 3052, 3053, 3, 1075, 537, 0, 3053, 412, 1, 0, 0, 0, 3054, 3055, 3, 1099, 549, 0, 3055, 3056, 3, 1061, 530, 0, 3056, 3057, 3, 1063, 531, 0, 3057, 3058, 3, 1083, 541, 0, 3058, 3059, 3, 1069, 534, 0, 3059, 3060, 3, 1099, 549, 0, 3060, 3061, 3, 1105, 552, 0, 3061, 3062, 3, 1077, 538, 0, 3062, 3063, 3, 1067, 533, 0, 3063, 3064, 3, 1099, 549, 0, 3064, 3065, 3, 1075, 537, 0, 3065, 414, 1, 0, 0, 0, 3066, 3067, 3, 1091, 545, 0, 3067, 3068, 3, 1075, 537, 0, 3068, 3069, 3, 1089, 544, 0, 3069, 3070, 3, 1087, 543, 0, 3070, 3071, 3, 1069, 534, 0, 3071, 3072, 3, 1105, 552, 0, 3072, 3073, 3, 1077, 538, 0, 3073, 3074, 3, 1067, 533, 0, 3074, 3075, 3, 1099, 549, 0, 3075, 3076, 3, 1075, 537, 0, 3076, 416, 1, 0, 0, 0, 3077, 3078, 3, 1065, 532, 0, 3078, 3079, 3, 1083, 541, 0, 3079, 3080, 3, 1061, 530, 0, 3080, 3081, 3, 1097, 548, 0, 3081, 3082, 3, 1097, 548, 0, 3082, 418, 1, 0, 0, 0, 3083, 3084, 3, 1097, 548, 0, 3084, 3085, 3, 1099, 549, 0, 3085, 3086, 3, 1109, 554, 0, 3086, 3087, 3, 1083, 541, 0, 3087, 3088, 3, 1069, 534, 0, 3088, 420, 1, 0, 0, 0, 3089, 3090, 3, 1063, 531, 0, 3090, 3091, 3, 1101, 550, 0, 3091, 3092, 3, 1099, 549, 0, 3092, 3093, 3, 1099, 549, 0, 3093, 3094, 3, 1089, 544, 0, 3094, 3095, 3, 1087, 543, 0, 3095, 3096, 3, 1097, 548, 0, 3096, 3097, 3, 1099, 549, 0, 3097, 3098, 3, 1109, 554, 0, 3098, 3099, 3, 1083, 541, 0, 3099, 3100, 3, 1069, 534, 0, 3100, 422, 1, 0, 0, 0, 3101, 3102, 3, 1067, 533, 0, 3102, 3103, 3, 1069, 534, 0, 3103, 3104, 3, 1097, 548, 0, 3104, 3105, 3, 1077, 538, 0, 3105, 3106, 3, 1073, 536, 0, 3106, 3107, 3, 1087, 543, 0, 3107, 424, 1, 0, 0, 0, 3108, 3109, 3, 1091, 545, 0, 3109, 3110, 3, 1095, 547, 0, 3110, 3111, 3, 1089, 544, 0, 3111, 3112, 3, 1091, 545, 0, 3112, 3113, 3, 1069, 534, 0, 3113, 3114, 3, 1095, 547, 0, 3114, 3115, 3, 1099, 549, 0, 3115, 3116, 3, 1077, 538, 0, 3116, 3117, 3, 1069, 534, 0, 3117, 3118, 3, 1097, 548, 0, 3118, 426, 1, 0, 0, 0, 3119, 3120, 3, 1067, 533, 0, 3120, 3121, 3, 1069, 534, 0, 3121, 3122, 3, 1097, 548, 0, 3122, 3123, 3, 1077, 538, 0, 3123, 3124, 3, 1073, 536, 0, 3124, 3125, 3, 1087, 543, 0, 3125, 3126, 3, 1091, 545, 0, 3126, 3127, 3, 1095, 547, 0, 3127, 3128, 3, 1089, 544, 0, 3128, 3129, 3, 1091, 545, 0, 3129, 3130, 3, 1069, 534, 0, 3130, 3131, 3, 1095, 547, 0, 3131, 3132, 3, 1099, 549, 0, 3132, 3133, 3, 1077, 538, 0, 3133, 3134, 3, 1069, 534, 0, 3134, 3135, 3, 1097, 548, 0, 3135, 428, 1, 0, 0, 0, 3136, 3137, 3, 1097, 548, 0, 3137, 3138, 3, 1099, 549, 0, 3138, 3139, 3, 1109, 554, 0, 3139, 3140, 3, 1083, 541, 0, 3140, 3141, 3, 1077, 538, 0, 3141, 3142, 3, 1087, 543, 0, 3142, 3143, 3, 1073, 536, 0, 3143, 430, 1, 0, 0, 0, 3144, 3145, 3, 1065, 532, 0, 3145, 3146, 3, 1083, 541, 0, 3146, 3147, 3, 1069, 534, 0, 3147, 3148, 3, 1061, 530, 0, 3148, 3149, 3, 1095, 547, 0, 3149, 432, 1, 0, 0, 0, 3150, 3151, 3, 1105, 552, 0, 3151, 3152, 3, 1077, 538, 0, 3152, 3153, 3, 1067, 533, 0, 3153, 3154, 3, 1099, 549, 0, 3154, 3155, 3, 1075, 537, 0, 3155, 434, 1, 0, 0, 0, 3156, 3157, 3, 1075, 537, 0, 3157, 3158, 3, 1069, 534, 0, 3158, 3159, 3, 1077, 538, 0, 3159, 3160, 3, 1073, 536, 0, 3160, 3161, 3, 1075, 537, 0, 3161, 3162, 3, 1099, 549, 0, 3162, 436, 1, 0, 0, 0, 3163, 3164, 3, 1061, 530, 0, 3164, 3165, 3, 1101, 550, 0, 3165, 3166, 3, 1099, 549, 0, 3166, 3167, 3, 1089, 544, 0, 3167, 3168, 3, 1071, 535, 0, 3168, 3169, 3, 1077, 538, 0, 3169, 3170, 3, 1083, 541, 0, 3170, 3171, 3, 1083, 541, 0, 3171, 438, 1, 0, 0, 0, 3172, 3173, 3, 1101, 550, 0, 3173, 3174, 3, 1095, 547, 0, 3174, 3175, 3, 1083, 541, 0, 3175, 440, 1, 0, 0, 0, 3176, 3177, 3, 1071, 535, 0, 3177, 3178, 3, 1089, 544, 0, 3178, 3179, 3, 1083, 541, 0, 3179, 3180, 3, 1067, 533, 0, 3180, 3181, 3, 1069, 534, 0, 3181, 3182, 3, 1095, 547, 0, 3182, 442, 1, 0, 0, 0, 3183, 3184, 3, 1091, 545, 0, 3184, 3185, 3, 1061, 530, 0, 3185, 3186, 3, 1097, 548, 0, 3186, 3187, 3, 1097, 548, 0, 3187, 3188, 3, 1077, 538, 0, 3188, 3189, 3, 1087, 543, 0, 3189, 3190, 3, 1073, 536, 0, 3190, 444, 1, 0, 0, 0, 3191, 3192, 3, 1065, 532, 0, 3192, 3193, 3, 1089, 544, 0, 3193, 3194, 3, 1087, 543, 0, 3194, 3195, 3, 1099, 549, 0, 3195, 3196, 3, 1069, 534, 0, 3196, 3197, 3, 1107, 553, 0, 3197, 3198, 3, 1099, 549, 0, 3198, 446, 1, 0, 0, 0, 3199, 3200, 3, 1069, 534, 0, 3200, 3201, 3, 1067, 533, 0, 3201, 3202, 3, 1077, 538, 0, 3202, 3203, 3, 1099, 549, 0, 3203, 3204, 3, 1061, 530, 0, 3204, 3205, 3, 1063, 531, 0, 3205, 3206, 3, 1083, 541, 0, 3206, 3207, 3, 1069, 534, 0, 3207, 448, 1, 0, 0, 0, 3208, 3209, 3, 1095, 547, 0, 3209, 3210, 3, 1069, 534, 0, 3210, 3211, 3, 1061, 530, 0, 3211, 3212, 3, 1067, 533, 0, 3212, 3213, 3, 1089, 544, 0, 3213, 3214, 3, 1087, 543, 0, 3214, 3215, 3, 1083, 541, 0, 3215, 3216, 3, 1109, 554, 0, 3216, 450, 1, 0, 0, 0, 3217, 3218, 3, 1061, 530, 0, 3218, 3219, 3, 1099, 549, 0, 3219, 3220, 3, 1099, 549, 0, 3220, 3221, 3, 1095, 547, 0, 3221, 3222, 3, 1077, 538, 0, 3222, 3223, 3, 1063, 531, 0, 3223, 3224, 3, 1101, 550, 0, 3224, 3225, 3, 1099, 549, 0, 3225, 3226, 3, 1069, 534, 0, 3226, 3227, 3, 1097, 548, 0, 3227, 452, 1, 0, 0, 0, 3228, 3229, 3, 1071, 535, 0, 3229, 3230, 3, 1077, 538, 0, 3230, 3231, 3, 1083, 541, 0, 3231, 3232, 3, 1099, 549, 0, 3232, 3233, 3, 1069, 534, 0, 3233, 3234, 3, 1095, 547, 0, 3234, 3235, 3, 1099, 549, 0, 3235, 3236, 3, 1109, 554, 0, 3236, 3237, 3, 1091, 545, 0, 3237, 3238, 3, 1069, 534, 0, 3238, 454, 1, 0, 0, 0, 3239, 3240, 3, 1077, 538, 0, 3240, 3241, 3, 1085, 542, 0, 3241, 3242, 3, 1061, 530, 0, 3242, 3243, 3, 1073, 536, 0, 3243, 3244, 3, 1069, 534, 0, 3244, 456, 1, 0, 0, 0, 3245, 3246, 3, 1065, 532, 0, 3246, 3247, 3, 1089, 544, 0, 3247, 3248, 3, 1083, 541, 0, 3248, 3249, 3, 1083, 541, 0, 3249, 3250, 3, 1069, 534, 0, 3250, 3251, 3, 1065, 532, 0, 3251, 3252, 3, 1099, 549, 0, 3252, 3253, 3, 1077, 538, 0, 3253, 3254, 3, 1089, 544, 0, 3254, 3255, 3, 1087, 543, 0, 3255, 458, 1, 0, 0, 0, 3256, 3257, 3, 1097, 548, 0, 3257, 3258, 3, 1099, 549, 0, 3258, 3259, 3, 1061, 530, 0, 3259, 3260, 3, 1099, 549, 0, 3260, 3261, 3, 1077, 538, 0, 3261, 3262, 3, 1065, 532, 0, 3262, 3263, 3, 1077, 538, 0, 3263, 3264, 3, 1085, 542, 0, 3264, 3265, 3, 1061, 530, 0, 3265, 3266, 3, 1073, 536, 0, 3266, 3267, 3, 1069, 534, 0, 3267, 460, 1, 0, 0, 0, 3268, 3269, 3, 1067, 533, 0, 3269, 3270, 3, 1109, 554, 0, 3270, 3271, 3, 1087, 543, 0, 3271, 3272, 3, 1061, 530, 0, 3272, 3273, 3, 1085, 542, 0, 3273, 3274, 3, 1077, 538, 0, 3274, 3275, 3, 1065, 532, 0, 3275, 3276, 3, 1077, 538, 0, 3276, 3277, 3, 1085, 542, 0, 3277, 3278, 3, 1061, 530, 0, 3278, 3279, 3, 1073, 536, 0, 3279, 3280, 3, 1069, 534, 0, 3280, 462, 1, 0, 0, 0, 3281, 3282, 3, 1065, 532, 0, 3282, 3283, 3, 1101, 550, 0, 3283, 3284, 3, 1097, 548, 0, 3284, 3285, 3, 1099, 549, 0, 3285, 3286, 3, 1089, 544, 0, 3286, 3287, 3, 1085, 542, 0, 3287, 3288, 3, 1065, 532, 0, 3288, 3289, 3, 1089, 544, 0, 3289, 3290, 3, 1087, 543, 0, 3290, 3291, 3, 1099, 549, 0, 3291, 3292, 3, 1061, 530, 0, 3292, 3293, 3, 1077, 538, 0, 3293, 3294, 3, 1087, 543, 0, 3294, 3295, 3, 1069, 534, 0, 3295, 3296, 3, 1095, 547, 0, 3296, 464, 1, 0, 0, 0, 3297, 3298, 3, 1099, 549, 0, 3298, 3299, 3, 1061, 530, 0, 3299, 3300, 3, 1063, 531, 0, 3300, 3301, 3, 1065, 532, 0, 3301, 3302, 3, 1089, 544, 0, 3302, 3303, 3, 1087, 543, 0, 3303, 3304, 3, 1099, 549, 0, 3304, 3305, 3, 1061, 530, 0, 3305, 3306, 3, 1077, 538, 0, 3306, 3307, 3, 1087, 543, 0, 3307, 3308, 3, 1069, 534, 0, 3308, 3309, 3, 1095, 547, 0, 3309, 466, 1, 0, 0, 0, 3310, 3311, 3, 1099, 549, 0, 3311, 3312, 3, 1061, 530, 0, 3312, 3313, 3, 1063, 531, 0, 3313, 3314, 3, 1091, 545, 0, 3314, 3315, 3, 1061, 530, 0, 3315, 3316, 3, 1073, 536, 0, 3316, 3317, 3, 1069, 534, 0, 3317, 468, 1, 0, 0, 0, 3318, 3319, 3, 1073, 536, 0, 3319, 3320, 3, 1095, 547, 0, 3320, 3321, 3, 1089, 544, 0, 3321, 3322, 3, 1101, 550, 0, 3322, 3323, 3, 1091, 545, 0, 3323, 3324, 3, 1063, 531, 0, 3324, 3325, 3, 1089, 544, 0, 3325, 3326, 3, 1107, 553, 0, 3326, 470, 1, 0, 0, 0, 3327, 3328, 3, 1103, 551, 0, 3328, 3329, 3, 1077, 538, 0, 3329, 3330, 3, 1097, 548, 0, 3330, 3331, 3, 1077, 538, 0, 3331, 3332, 3, 1063, 531, 0, 3332, 3333, 3, 1083, 541, 0, 3333, 3334, 3, 1069, 534, 0, 3334, 472, 1, 0, 0, 0, 3335, 3336, 3, 1097, 548, 0, 3336, 3337, 3, 1061, 530, 0, 3337, 3338, 3, 1103, 551, 0, 3338, 3339, 3, 1069, 534, 0, 3339, 3340, 3, 1065, 532, 0, 3340, 3341, 3, 1075, 537, 0, 3341, 3342, 3, 1061, 530, 0, 3342, 3343, 3, 1087, 543, 0, 3343, 3344, 3, 1073, 536, 0, 3344, 3345, 3, 1069, 534, 0, 3345, 3346, 3, 1097, 548, 0, 3346, 474, 1, 0, 0, 0, 3347, 3348, 3, 1097, 548, 0, 3348, 3349, 3, 1061, 530, 0, 3349, 3350, 3, 1103, 551, 0, 3350, 3351, 3, 1069, 534, 0, 3351, 3352, 5, 95, 0, 0, 3352, 3353, 3, 1065, 532, 0, 3353, 3354, 3, 1075, 537, 0, 3354, 3355, 3, 1061, 530, 0, 3355, 3356, 3, 1087, 543, 0, 3356, 3357, 3, 1073, 536, 0, 3357, 3358, 3, 1069, 534, 0, 3358, 3359, 3, 1097, 548, 0, 3359, 476, 1, 0, 0, 0, 3360, 3361, 3, 1065, 532, 0, 3361, 3362, 3, 1061, 530, 0, 3362, 3363, 3, 1087, 543, 0, 3363, 3364, 3, 1065, 532, 0, 3364, 3365, 3, 1069, 534, 0, 3365, 3366, 3, 1083, 541, 0, 3366, 3367, 5, 95, 0, 0, 3367, 3368, 3, 1065, 532, 0, 3368, 3369, 3, 1075, 537, 0, 3369, 3370, 3, 1061, 530, 0, 3370, 3371, 3, 1087, 543, 0, 3371, 3372, 3, 1073, 536, 0, 3372, 3373, 3, 1069, 534, 0, 3373, 3374, 3, 1097, 548, 0, 3374, 478, 1, 0, 0, 0, 3375, 3376, 3, 1065, 532, 0, 3376, 3377, 3, 1083, 541, 0, 3377, 3378, 3, 1089, 544, 0, 3378, 3379, 3, 1097, 548, 0, 3379, 3380, 3, 1069, 534, 0, 3380, 3381, 5, 95, 0, 0, 3381, 3382, 3, 1091, 545, 0, 3382, 3383, 3, 1061, 530, 0, 3383, 3384, 3, 1073, 536, 0, 3384, 3385, 3, 1069, 534, 0, 3385, 480, 1, 0, 0, 0, 3386, 3387, 3, 1097, 548, 0, 3387, 3388, 3, 1075, 537, 0, 3388, 3389, 3, 1089, 544, 0, 3389, 3390, 3, 1105, 552, 0, 3390, 3391, 5, 95, 0, 0, 3391, 3392, 3, 1091, 545, 0, 3392, 3393, 3, 1061, 530, 0, 3393, 3394, 3, 1073, 536, 0, 3394, 3395, 3, 1069, 534, 0, 3395, 482, 1, 0, 0, 0, 3396, 3397, 3, 1067, 533, 0, 3397, 3398, 3, 1069, 534, 0, 3398, 3399, 3, 1083, 541, 0, 3399, 3400, 3, 1069, 534, 0, 3400, 3401, 3, 1099, 549, 0, 3401, 3402, 3, 1069, 534, 0, 3402, 3403, 5, 95, 0, 0, 3403, 3404, 3, 1061, 530, 0, 3404, 3405, 3, 1065, 532, 0, 3405, 3406, 3, 1099, 549, 0, 3406, 3407, 3, 1077, 538, 0, 3407, 3408, 3, 1089, 544, 0, 3408, 3409, 3, 1087, 543, 0, 3409, 484, 1, 0, 0, 0, 3410, 3411, 3, 1067, 533, 0, 3411, 3412, 3, 1069, 534, 0, 3412, 3413, 3, 1083, 541, 0, 3413, 3414, 3, 1069, 534, 0, 3414, 3415, 3, 1099, 549, 0, 3415, 3416, 3, 1069, 534, 0, 3416, 3417, 5, 95, 0, 0, 3417, 3418, 3, 1089, 544, 0, 3418, 3419, 3, 1063, 531, 0, 3419, 3420, 3, 1079, 539, 0, 3420, 3421, 3, 1069, 534, 0, 3421, 3422, 3, 1065, 532, 0, 3422, 3423, 3, 1099, 549, 0, 3423, 486, 1, 0, 0, 0, 3424, 3425, 3, 1065, 532, 0, 3425, 3426, 3, 1095, 547, 0, 3426, 3427, 3, 1069, 534, 0, 3427, 3428, 3, 1061, 530, 0, 3428, 3429, 3, 1099, 549, 0, 3429, 3430, 3, 1069, 534, 0, 3430, 3431, 5, 95, 0, 0, 3431, 3432, 3, 1089, 544, 0, 3432, 3433, 3, 1063, 531, 0, 3433, 3434, 3, 1079, 539, 0, 3434, 3435, 3, 1069, 534, 0, 3435, 3436, 3, 1065, 532, 0, 3436, 3437, 3, 1099, 549, 0, 3437, 488, 1, 0, 0, 0, 3438, 3439, 3, 1065, 532, 0, 3439, 3440, 3, 1061, 530, 0, 3440, 3441, 3, 1083, 541, 0, 3441, 3442, 3, 1083, 541, 0, 3442, 3443, 5, 95, 0, 0, 3443, 3444, 3, 1085, 542, 0, 3444, 3445, 3, 1077, 538, 0, 3445, 3446, 3, 1065, 532, 0, 3446, 3447, 3, 1095, 547, 0, 3447, 3448, 3, 1089, 544, 0, 3448, 3449, 3, 1071, 535, 0, 3449, 3450, 3, 1083, 541, 0, 3450, 3451, 3, 1089, 544, 0, 3451, 3452, 3, 1105, 552, 0, 3452, 490, 1, 0, 0, 0, 3453, 3454, 3, 1065, 532, 0, 3454, 3455, 3, 1061, 530, 0, 3455, 3456, 3, 1083, 541, 0, 3456, 3457, 3, 1083, 541, 0, 3457, 3458, 5, 95, 0, 0, 3458, 3459, 3, 1087, 543, 0, 3459, 3460, 3, 1061, 530, 0, 3460, 3461, 3, 1087, 543, 0, 3461, 3462, 3, 1089, 544, 0, 3462, 3463, 3, 1071, 535, 0, 3463, 3464, 3, 1083, 541, 0, 3464, 3465, 3, 1089, 544, 0, 3465, 3466, 3, 1105, 552, 0, 3466, 492, 1, 0, 0, 0, 3467, 3468, 3, 1089, 544, 0, 3468, 3469, 3, 1091, 545, 0, 3469, 3470, 3, 1069, 534, 0, 3470, 3471, 3, 1087, 543, 0, 3471, 3472, 5, 95, 0, 0, 3472, 3473, 3, 1083, 541, 0, 3473, 3474, 3, 1077, 538, 0, 3474, 3475, 3, 1087, 543, 0, 3475, 3476, 3, 1081, 540, 0, 3476, 494, 1, 0, 0, 0, 3477, 3478, 3, 1097, 548, 0, 3478, 3479, 3, 1077, 538, 0, 3479, 3480, 3, 1073, 536, 0, 3480, 3481, 3, 1087, 543, 0, 3481, 3482, 5, 95, 0, 0, 3482, 3483, 3, 1089, 544, 0, 3483, 3484, 3, 1101, 550, 0, 3484, 3485, 3, 1099, 549, 0, 3485, 496, 1, 0, 0, 0, 3486, 3487, 3, 1065, 532, 0, 3487, 3488, 3, 1061, 530, 0, 3488, 3489, 3, 1087, 543, 0, 3489, 3490, 3, 1065, 532, 0, 3490, 3491, 3, 1069, 534, 0, 3491, 3492, 3, 1083, 541, 0, 3492, 498, 1, 0, 0, 0, 3493, 3494, 3, 1091, 545, 0, 3494, 3495, 3, 1095, 547, 0, 3495, 3496, 3, 1077, 538, 0, 3496, 3497, 3, 1085, 542, 0, 3497, 3498, 3, 1061, 530, 0, 3498, 3499, 3, 1095, 547, 0, 3499, 3500, 3, 1109, 554, 0, 3500, 500, 1, 0, 0, 0, 3501, 3502, 3, 1097, 548, 0, 3502, 3503, 3, 1101, 550, 0, 3503, 3504, 3, 1065, 532, 0, 3504, 3505, 3, 1065, 532, 0, 3505, 3506, 3, 1069, 534, 0, 3506, 3507, 3, 1097, 548, 0, 3507, 3508, 3, 1097, 548, 0, 3508, 502, 1, 0, 0, 0, 3509, 3510, 3, 1067, 533, 0, 3510, 3511, 3, 1061, 530, 0, 3511, 3512, 3, 1087, 543, 0, 3512, 3513, 3, 1073, 536, 0, 3513, 3514, 3, 1069, 534, 0, 3514, 3515, 3, 1095, 547, 0, 3515, 504, 1, 0, 0, 0, 3516, 3517, 3, 1105, 552, 0, 3517, 3518, 3, 1061, 530, 0, 3518, 3519, 3, 1095, 547, 0, 3519, 3520, 3, 1087, 543, 0, 3520, 3521, 3, 1077, 538, 0, 3521, 3522, 3, 1087, 543, 0, 3522, 3523, 3, 1073, 536, 0, 3523, 506, 1, 0, 0, 0, 3524, 3525, 3, 1077, 538, 0, 3525, 3526, 3, 1087, 543, 0, 3526, 3527, 3, 1071, 535, 0, 3527, 3528, 3, 1089, 544, 0, 3528, 508, 1, 0, 0, 0, 3529, 3530, 3, 1099, 549, 0, 3530, 3531, 3, 1069, 534, 0, 3531, 3532, 3, 1085, 542, 0, 3532, 3533, 3, 1091, 545, 0, 3533, 3534, 3, 1083, 541, 0, 3534, 3535, 3, 1061, 530, 0, 3535, 3536, 3, 1099, 549, 0, 3536, 3537, 3, 1069, 534, 0, 3537, 510, 1, 0, 0, 0, 3538, 3539, 3, 1089, 544, 0, 3539, 3540, 3, 1087, 543, 0, 3540, 3541, 3, 1065, 532, 0, 3541, 3542, 3, 1083, 541, 0, 3542, 3543, 3, 1077, 538, 0, 3543, 3544, 3, 1065, 532, 0, 3544, 3545, 3, 1081, 540, 0, 3545, 512, 1, 0, 0, 0, 3546, 3547, 3, 1089, 544, 0, 3547, 3548, 3, 1087, 543, 0, 3548, 3549, 3, 1065, 532, 0, 3549, 3550, 3, 1075, 537, 0, 3550, 3551, 3, 1061, 530, 0, 3551, 3552, 3, 1087, 543, 0, 3552, 3553, 3, 1073, 536, 0, 3553, 3554, 3, 1069, 534, 0, 3554, 514, 1, 0, 0, 0, 3555, 3556, 3, 1099, 549, 0, 3556, 3557, 3, 1061, 530, 0, 3557, 3558, 3, 1063, 531, 0, 3558, 3559, 3, 1077, 538, 0, 3559, 3560, 3, 1087, 543, 0, 3560, 3561, 3, 1067, 533, 0, 3561, 3562, 3, 1069, 534, 0, 3562, 3563, 3, 1107, 553, 0, 3563, 516, 1, 0, 0, 0, 3564, 3565, 3, 1075, 537, 0, 3565, 3566, 5, 49, 0, 0, 3566, 518, 1, 0, 0, 0, 3567, 3568, 3, 1075, 537, 0, 3568, 3569, 5, 50, 0, 0, 3569, 520, 1, 0, 0, 0, 3570, 3571, 3, 1075, 537, 0, 3571, 3572, 5, 51, 0, 0, 3572, 522, 1, 0, 0, 0, 3573, 3574, 3, 1075, 537, 0, 3574, 3575, 5, 52, 0, 0, 3575, 524, 1, 0, 0, 0, 3576, 3577, 3, 1075, 537, 0, 3577, 3578, 5, 53, 0, 0, 3578, 526, 1, 0, 0, 0, 3579, 3580, 3, 1075, 537, 0, 3580, 3581, 5, 54, 0, 0, 3581, 528, 1, 0, 0, 0, 3582, 3583, 3, 1091, 545, 0, 3583, 3584, 3, 1061, 530, 0, 3584, 3585, 3, 1095, 547, 0, 3585, 3586, 3, 1061, 530, 0, 3586, 3587, 3, 1073, 536, 0, 3587, 3588, 3, 1095, 547, 0, 3588, 3589, 3, 1061, 530, 0, 3589, 3590, 3, 1091, 545, 0, 3590, 3591, 3, 1075, 537, 0, 3591, 530, 1, 0, 0, 0, 3592, 3593, 3, 1097, 548, 0, 3593, 3594, 3, 1099, 549, 0, 3594, 3595, 3, 1095, 547, 0, 3595, 3596, 3, 1077, 538, 0, 3596, 3597, 3, 1087, 543, 0, 3597, 3598, 3, 1073, 536, 0, 3598, 532, 1, 0, 0, 0, 3599, 3600, 3, 1077, 538, 0, 3600, 3601, 3, 1087, 543, 0, 3601, 3602, 3, 1099, 549, 0, 3602, 3603, 3, 1069, 534, 0, 3603, 3604, 3, 1073, 536, 0, 3604, 3605, 3, 1069, 534, 0, 3605, 3606, 3, 1095, 547, 0, 3606, 534, 1, 0, 0, 0, 3607, 3608, 3, 1083, 541, 0, 3608, 3609, 3, 1089, 544, 0, 3609, 3610, 3, 1087, 543, 0, 3610, 3611, 3, 1073, 536, 0, 3611, 536, 1, 0, 0, 0, 3612, 3613, 3, 1067, 533, 0, 3613, 3614, 3, 1069, 534, 0, 3614, 3615, 3, 1065, 532, 0, 3615, 3616, 3, 1077, 538, 0, 3616, 3617, 3, 1085, 542, 0, 3617, 3618, 3, 1061, 530, 0, 3618, 3619, 3, 1083, 541, 0, 3619, 538, 1, 0, 0, 0, 3620, 3621, 3, 1063, 531, 0, 3621, 3622, 3, 1089, 544, 0, 3622, 3623, 3, 1089, 544, 0, 3623, 3624, 3, 1083, 541, 0, 3624, 3625, 3, 1069, 534, 0, 3625, 3626, 3, 1061, 530, 0, 3626, 3627, 3, 1087, 543, 0, 3627, 540, 1, 0, 0, 0, 3628, 3629, 3, 1067, 533, 0, 3629, 3630, 3, 1061, 530, 0, 3630, 3631, 3, 1099, 549, 0, 3631, 3632, 3, 1069, 534, 0, 3632, 3633, 3, 1099, 549, 0, 3633, 3634, 3, 1077, 538, 0, 3634, 3635, 3, 1085, 542, 0, 3635, 3636, 3, 1069, 534, 0, 3636, 542, 1, 0, 0, 0, 3637, 3638, 3, 1067, 533, 0, 3638, 3639, 3, 1061, 530, 0, 3639, 3640, 3, 1099, 549, 0, 3640, 3641, 3, 1069, 534, 0, 3641, 544, 1, 0, 0, 0, 3642, 3643, 3, 1061, 530, 0, 3643, 3644, 3, 1101, 550, 0, 3644, 3645, 3, 1099, 549, 0, 3645, 3646, 3, 1089, 544, 0, 3646, 3647, 3, 1087, 543, 0, 3647, 3648, 3, 1101, 550, 0, 3648, 3649, 3, 1085, 542, 0, 3649, 3650, 3, 1063, 531, 0, 3650, 3651, 3, 1069, 534, 0, 3651, 3652, 3, 1095, 547, 0, 3652, 546, 1, 0, 0, 0, 3653, 3654, 3, 1063, 531, 0, 3654, 3655, 3, 1077, 538, 0, 3655, 3656, 3, 1087, 543, 0, 3656, 3657, 3, 1061, 530, 0, 3657, 3658, 3, 1095, 547, 0, 3658, 3659, 3, 1109, 554, 0, 3659, 548, 1, 0, 0, 0, 3660, 3661, 3, 1075, 537, 0, 3661, 3662, 3, 1061, 530, 0, 3662, 3663, 3, 1097, 548, 0, 3663, 3664, 3, 1075, 537, 0, 3664, 3665, 3, 1069, 534, 0, 3665, 3666, 3, 1067, 533, 0, 3666, 3667, 3, 1097, 548, 0, 3667, 3668, 3, 1099, 549, 0, 3668, 3669, 3, 1095, 547, 0, 3669, 3670, 3, 1077, 538, 0, 3670, 3671, 3, 1087, 543, 0, 3671, 3672, 3, 1073, 536, 0, 3672, 550, 1, 0, 0, 0, 3673, 3674, 3, 1065, 532, 0, 3674, 3675, 3, 1101, 550, 0, 3675, 3676, 3, 1095, 547, 0, 3676, 3677, 3, 1095, 547, 0, 3677, 3678, 3, 1069, 534, 0, 3678, 3679, 3, 1087, 543, 0, 3679, 3680, 3, 1065, 532, 0, 3680, 3681, 3, 1109, 554, 0, 3681, 552, 1, 0, 0, 0, 3682, 3683, 3, 1071, 535, 0, 3683, 3684, 3, 1083, 541, 0, 3684, 3685, 3, 1089, 544, 0, 3685, 3686, 3, 1061, 530, 0, 3686, 3687, 3, 1099, 549, 0, 3687, 554, 1, 0, 0, 0, 3688, 3689, 3, 1097, 548, 0, 3689, 3690, 3, 1099, 549, 0, 3690, 3691, 3, 1095, 547, 0, 3691, 3692, 3, 1077, 538, 0, 3692, 3693, 3, 1087, 543, 0, 3693, 3694, 3, 1073, 536, 0, 3694, 3695, 3, 1099, 549, 0, 3695, 3696, 3, 1069, 534, 0, 3696, 3697, 3, 1085, 542, 0, 3697, 3698, 3, 1091, 545, 0, 3698, 3699, 3, 1083, 541, 0, 3699, 3700, 3, 1061, 530, 0, 3700, 3701, 3, 1099, 549, 0, 3701, 3702, 3, 1069, 534, 0, 3702, 556, 1, 0, 0, 0, 3703, 3704, 3, 1069, 534, 0, 3704, 3705, 3, 1087, 543, 0, 3705, 3706, 3, 1101, 550, 0, 3706, 3707, 3, 1085, 542, 0, 3707, 558, 1, 0, 0, 0, 3708, 3709, 3, 1065, 532, 0, 3709, 3710, 3, 1089, 544, 0, 3710, 3711, 3, 1101, 550, 0, 3711, 3712, 3, 1087, 543, 0, 3712, 3713, 3, 1099, 549, 0, 3713, 560, 1, 0, 0, 0, 3714, 3715, 3, 1097, 548, 0, 3715, 3716, 3, 1101, 550, 0, 3716, 3717, 3, 1085, 542, 0, 3717, 562, 1, 0, 0, 0, 3718, 3719, 3, 1061, 530, 0, 3719, 3720, 3, 1103, 551, 0, 3720, 3721, 3, 1073, 536, 0, 3721, 564, 1, 0, 0, 0, 3722, 3723, 3, 1085, 542, 0, 3723, 3724, 3, 1077, 538, 0, 3724, 3725, 3, 1087, 543, 0, 3725, 566, 1, 0, 0, 0, 3726, 3727, 3, 1085, 542, 0, 3727, 3728, 3, 1061, 530, 0, 3728, 3729, 3, 1107, 553, 0, 3729, 568, 1, 0, 0, 0, 3730, 3731, 3, 1083, 541, 0, 3731, 3732, 3, 1069, 534, 0, 3732, 3733, 3, 1087, 543, 0, 3733, 3734, 3, 1073, 536, 0, 3734, 3735, 3, 1099, 549, 0, 3735, 3736, 3, 1075, 537, 0, 3736, 570, 1, 0, 0, 0, 3737, 3738, 3, 1099, 549, 0, 3738, 3739, 3, 1095, 547, 0, 3739, 3740, 3, 1077, 538, 0, 3740, 3741, 3, 1085, 542, 0, 3741, 572, 1, 0, 0, 0, 3742, 3743, 3, 1065, 532, 0, 3743, 3744, 3, 1089, 544, 0, 3744, 3745, 3, 1061, 530, 0, 3745, 3746, 3, 1083, 541, 0, 3746, 3747, 3, 1069, 534, 0, 3747, 3748, 3, 1097, 548, 0, 3748, 3749, 3, 1065, 532, 0, 3749, 3750, 3, 1069, 534, 0, 3750, 574, 1, 0, 0, 0, 3751, 3752, 3, 1065, 532, 0, 3752, 3753, 3, 1061, 530, 0, 3753, 3754, 3, 1097, 548, 0, 3754, 3755, 3, 1099, 549, 0, 3755, 576, 1, 0, 0, 0, 3756, 3757, 3, 1061, 530, 0, 3757, 3758, 3, 1087, 543, 0, 3758, 3759, 3, 1067, 533, 0, 3759, 578, 1, 0, 0, 0, 3760, 3761, 3, 1089, 544, 0, 3761, 3762, 3, 1095, 547, 0, 3762, 580, 1, 0, 0, 0, 3763, 3764, 3, 1087, 543, 0, 3764, 3765, 3, 1089, 544, 0, 3765, 3766, 3, 1099, 549, 0, 3766, 582, 1, 0, 0, 0, 3767, 3768, 3, 1087, 543, 0, 3768, 3769, 3, 1101, 550, 0, 3769, 3770, 3, 1083, 541, 0, 3770, 3771, 3, 1083, 541, 0, 3771, 584, 1, 0, 0, 0, 3772, 3773, 3, 1077, 538, 0, 3773, 3774, 3, 1087, 543, 0, 3774, 586, 1, 0, 0, 0, 3775, 3776, 3, 1063, 531, 0, 3776, 3777, 3, 1069, 534, 0, 3777, 3778, 3, 1099, 549, 0, 3778, 3779, 3, 1105, 552, 0, 3779, 3780, 3, 1069, 534, 0, 3780, 3781, 3, 1069, 534, 0, 3781, 3782, 3, 1087, 543, 0, 3782, 588, 1, 0, 0, 0, 3783, 3784, 3, 1083, 541, 0, 3784, 3785, 3, 1077, 538, 0, 3785, 3786, 3, 1081, 540, 0, 3786, 3787, 3, 1069, 534, 0, 3787, 590, 1, 0, 0, 0, 3788, 3789, 3, 1085, 542, 0, 3789, 3790, 3, 1061, 530, 0, 3790, 3791, 3, 1099, 549, 0, 3791, 3792, 3, 1065, 532, 0, 3792, 3793, 3, 1075, 537, 0, 3793, 592, 1, 0, 0, 0, 3794, 3795, 3, 1069, 534, 0, 3795, 3796, 3, 1107, 553, 0, 3796, 3797, 3, 1077, 538, 0, 3797, 3798, 3, 1097, 548, 0, 3798, 3799, 3, 1099, 549, 0, 3799, 3800, 3, 1097, 548, 0, 3800, 594, 1, 0, 0, 0, 3801, 3802, 3, 1101, 550, 0, 3802, 3803, 3, 1087, 543, 0, 3803, 3804, 3, 1077, 538, 0, 3804, 3805, 3, 1093, 546, 0, 3805, 3806, 3, 1101, 550, 0, 3806, 3807, 3, 1069, 534, 0, 3807, 596, 1, 0, 0, 0, 3808, 3809, 3, 1067, 533, 0, 3809, 3810, 3, 1069, 534, 0, 3810, 3811, 3, 1071, 535, 0, 3811, 3812, 3, 1061, 530, 0, 3812, 3813, 3, 1101, 550, 0, 3813, 3814, 3, 1083, 541, 0, 3814, 3815, 3, 1099, 549, 0, 3815, 598, 1, 0, 0, 0, 3816, 3817, 3, 1099, 549, 0, 3817, 3818, 3, 1095, 547, 0, 3818, 3819, 3, 1101, 550, 0, 3819, 3820, 3, 1069, 534, 0, 3820, 600, 1, 0, 0, 0, 3821, 3822, 3, 1071, 535, 0, 3822, 3823, 3, 1061, 530, 0, 3823, 3824, 3, 1083, 541, 0, 3824, 3825, 3, 1097, 548, 0, 3825, 3826, 3, 1069, 534, 0, 3826, 602, 1, 0, 0, 0, 3827, 3828, 3, 1103, 551, 0, 3828, 3829, 3, 1061, 530, 0, 3829, 3830, 3, 1083, 541, 0, 3830, 3831, 3, 1077, 538, 0, 3831, 3832, 3, 1067, 533, 0, 3832, 3833, 3, 1061, 530, 0, 3833, 3834, 3, 1099, 549, 0, 3834, 3835, 3, 1077, 538, 0, 3835, 3836, 3, 1089, 544, 0, 3836, 3837, 3, 1087, 543, 0, 3837, 604, 1, 0, 0, 0, 3838, 3839, 3, 1071, 535, 0, 3839, 3840, 3, 1069, 534, 0, 3840, 3841, 3, 1069, 534, 0, 3841, 3842, 3, 1067, 533, 0, 3842, 3843, 3, 1063, 531, 0, 3843, 3844, 3, 1061, 530, 0, 3844, 3845, 3, 1065, 532, 0, 3845, 3846, 3, 1081, 540, 0, 3846, 606, 1, 0, 0, 0, 3847, 3848, 3, 1095, 547, 0, 3848, 3849, 3, 1101, 550, 0, 3849, 3850, 3, 1083, 541, 0, 3850, 3851, 3, 1069, 534, 0, 3851, 608, 1, 0, 0, 0, 3852, 3853, 3, 1095, 547, 0, 3853, 3854, 3, 1069, 534, 0, 3854, 3855, 3, 1093, 546, 0, 3855, 3856, 3, 1101, 550, 0, 3856, 3857, 3, 1077, 538, 0, 3857, 3858, 3, 1095, 547, 0, 3858, 3859, 3, 1069, 534, 0, 3859, 3860, 3, 1067, 533, 0, 3860, 610, 1, 0, 0, 0, 3861, 3862, 3, 1069, 534, 0, 3862, 3863, 3, 1095, 547, 0, 3863, 3864, 3, 1095, 547, 0, 3864, 3865, 3, 1089, 544, 0, 3865, 3866, 3, 1095, 547, 0, 3866, 612, 1, 0, 0, 0, 3867, 3868, 3, 1095, 547, 0, 3868, 3869, 3, 1061, 530, 0, 3869, 3870, 3, 1077, 538, 0, 3870, 3871, 3, 1097, 548, 0, 3871, 3872, 3, 1069, 534, 0, 3872, 614, 1, 0, 0, 0, 3873, 3874, 3, 1095, 547, 0, 3874, 3875, 3, 1061, 530, 0, 3875, 3876, 3, 1087, 543, 0, 3876, 3877, 3, 1073, 536, 0, 3877, 3878, 3, 1069, 534, 0, 3878, 616, 1, 0, 0, 0, 3879, 3880, 3, 1095, 547, 0, 3880, 3881, 3, 1069, 534, 0, 3881, 3882, 3, 1073, 536, 0, 3882, 3883, 3, 1069, 534, 0, 3883, 3884, 3, 1107, 553, 0, 3884, 618, 1, 0, 0, 0, 3885, 3886, 3, 1091, 545, 0, 3886, 3887, 3, 1061, 530, 0, 3887, 3888, 3, 1099, 549, 0, 3888, 3889, 3, 1099, 549, 0, 3889, 3890, 3, 1069, 534, 0, 3890, 3891, 3, 1095, 547, 0, 3891, 3892, 3, 1087, 543, 0, 3892, 620, 1, 0, 0, 0, 3893, 3894, 3, 1069, 534, 0, 3894, 3895, 3, 1107, 553, 0, 3895, 3896, 3, 1091, 545, 0, 3896, 3897, 3, 1095, 547, 0, 3897, 3898, 3, 1069, 534, 0, 3898, 3899, 3, 1097, 548, 0, 3899, 3900, 3, 1097, 548, 0, 3900, 3901, 3, 1077, 538, 0, 3901, 3902, 3, 1089, 544, 0, 3902, 3903, 3, 1087, 543, 0, 3903, 622, 1, 0, 0, 0, 3904, 3905, 3, 1107, 553, 0, 3905, 3906, 3, 1091, 545, 0, 3906, 3907, 3, 1061, 530, 0, 3907, 3908, 3, 1099, 549, 0, 3908, 3909, 3, 1075, 537, 0, 3909, 624, 1, 0, 0, 0, 3910, 3911, 3, 1065, 532, 0, 3911, 3912, 3, 1089, 544, 0, 3912, 3913, 3, 1087, 543, 0, 3913, 3914, 3, 1097, 548, 0, 3914, 3915, 3, 1099, 549, 0, 3915, 3916, 3, 1095, 547, 0, 3916, 3917, 3, 1061, 530, 0, 3917, 3918, 3, 1077, 538, 0, 3918, 3919, 3, 1087, 543, 0, 3919, 3920, 3, 1099, 549, 0, 3920, 626, 1, 0, 0, 0, 3921, 3922, 3, 1065, 532, 0, 3922, 3923, 3, 1061, 530, 0, 3923, 3924, 3, 1083, 541, 0, 3924, 3925, 3, 1065, 532, 0, 3925, 3926, 3, 1101, 550, 0, 3926, 3927, 3, 1083, 541, 0, 3927, 3928, 3, 1061, 530, 0, 3928, 3929, 3, 1099, 549, 0, 3929, 3930, 3, 1069, 534, 0, 3930, 3931, 3, 1067, 533, 0, 3931, 628, 1, 0, 0, 0, 3932, 3933, 3, 1095, 547, 0, 3933, 3934, 3, 1069, 534, 0, 3934, 3935, 3, 1097, 548, 0, 3935, 3936, 3, 1099, 549, 0, 3936, 630, 1, 0, 0, 0, 3937, 3938, 3, 1097, 548, 0, 3938, 3939, 3, 1069, 534, 0, 3939, 3940, 3, 1095, 547, 0, 3940, 3941, 3, 1103, 551, 0, 3941, 3942, 3, 1077, 538, 0, 3942, 3943, 3, 1065, 532, 0, 3943, 3944, 3, 1069, 534, 0, 3944, 632, 1, 0, 0, 0, 3945, 3946, 3, 1097, 548, 0, 3946, 3947, 3, 1069, 534, 0, 3947, 3948, 3, 1095, 547, 0, 3948, 3949, 3, 1103, 551, 0, 3949, 3950, 3, 1077, 538, 0, 3950, 3951, 3, 1065, 532, 0, 3951, 3952, 3, 1069, 534, 0, 3952, 3953, 3, 1097, 548, 0, 3953, 634, 1, 0, 0, 0, 3954, 3955, 3, 1089, 544, 0, 3955, 3956, 3, 1067, 533, 0, 3956, 3957, 3, 1061, 530, 0, 3957, 3958, 3, 1099, 549, 0, 3958, 3959, 3, 1061, 530, 0, 3959, 636, 1, 0, 0, 0, 3960, 3961, 3, 1063, 531, 0, 3961, 3962, 3, 1061, 530, 0, 3962, 3963, 3, 1097, 548, 0, 3963, 3964, 3, 1069, 534, 0, 3964, 638, 1, 0, 0, 0, 3965, 3966, 3, 1061, 530, 0, 3966, 3967, 3, 1101, 550, 0, 3967, 3968, 3, 1099, 549, 0, 3968, 3969, 3, 1075, 537, 0, 3969, 640, 1, 0, 0, 0, 3970, 3971, 3, 1061, 530, 0, 3971, 3972, 3, 1101, 550, 0, 3972, 3973, 3, 1099, 549, 0, 3973, 3974, 3, 1075, 537, 0, 3974, 3975, 3, 1069, 534, 0, 3975, 3976, 3, 1087, 543, 0, 3976, 3977, 3, 1099, 549, 0, 3977, 3978, 3, 1077, 538, 0, 3978, 3979, 3, 1065, 532, 0, 3979, 3980, 3, 1061, 530, 0, 3980, 3981, 3, 1099, 549, 0, 3981, 3982, 3, 1077, 538, 0, 3982, 3983, 3, 1089, 544, 0, 3983, 3984, 3, 1087, 543, 0, 3984, 642, 1, 0, 0, 0, 3985, 3986, 3, 1063, 531, 0, 3986, 3987, 3, 1061, 530, 0, 3987, 3988, 3, 1097, 548, 0, 3988, 3989, 3, 1077, 538, 0, 3989, 3990, 3, 1065, 532, 0, 3990, 644, 1, 0, 0, 0, 3991, 3992, 3, 1087, 543, 0, 3992, 3993, 3, 1089, 544, 0, 3993, 3994, 3, 1099, 549, 0, 3994, 3995, 3, 1075, 537, 0, 3995, 3996, 3, 1077, 538, 0, 3996, 3997, 3, 1087, 543, 0, 3997, 3998, 3, 1073, 536, 0, 3998, 646, 1, 0, 0, 0, 3999, 4000, 3, 1089, 544, 0, 4000, 4001, 3, 1061, 530, 0, 4001, 4002, 3, 1101, 550, 0, 4002, 4003, 3, 1099, 549, 0, 4003, 4004, 3, 1075, 537, 0, 4004, 648, 1, 0, 0, 0, 4005, 4006, 3, 1089, 544, 0, 4006, 4007, 3, 1091, 545, 0, 4007, 4008, 3, 1069, 534, 0, 4008, 4009, 3, 1095, 547, 0, 4009, 4010, 3, 1061, 530, 0, 4010, 4011, 3, 1099, 549, 0, 4011, 4012, 3, 1077, 538, 0, 4012, 4013, 3, 1089, 544, 0, 4013, 4014, 3, 1087, 543, 0, 4014, 650, 1, 0, 0, 0, 4015, 4016, 3, 1085, 542, 0, 4016, 4017, 3, 1069, 534, 0, 4017, 4018, 3, 1099, 549, 0, 4018, 4019, 3, 1075, 537, 0, 4019, 4020, 3, 1089, 544, 0, 4020, 4021, 3, 1067, 533, 0, 4021, 652, 1, 0, 0, 0, 4022, 4023, 3, 1091, 545, 0, 4023, 4024, 3, 1061, 530, 0, 4024, 4025, 3, 1099, 549, 0, 4025, 4026, 3, 1075, 537, 0, 4026, 654, 1, 0, 0, 0, 4027, 4028, 3, 1099, 549, 0, 4028, 4029, 3, 1077, 538, 0, 4029, 4030, 3, 1085, 542, 0, 4030, 4031, 3, 1069, 534, 0, 4031, 4032, 3, 1089, 544, 0, 4032, 4033, 3, 1101, 550, 0, 4033, 4034, 3, 1099, 549, 0, 4034, 656, 1, 0, 0, 0, 4035, 4036, 3, 1063, 531, 0, 4036, 4037, 3, 1089, 544, 0, 4037, 4038, 3, 1067, 533, 0, 4038, 4039, 3, 1109, 554, 0, 4039, 658, 1, 0, 0, 0, 4040, 4041, 3, 1095, 547, 0, 4041, 4042, 3, 1069, 534, 0, 4042, 4043, 3, 1097, 548, 0, 4043, 4044, 3, 1091, 545, 0, 4044, 4045, 3, 1089, 544, 0, 4045, 4046, 3, 1087, 543, 0, 4046, 4047, 3, 1097, 548, 0, 4047, 4048, 3, 1069, 534, 0, 4048, 660, 1, 0, 0, 0, 4049, 4050, 3, 1095, 547, 0, 4050, 4051, 3, 1069, 534, 0, 4051, 4052, 3, 1093, 546, 0, 4052, 4053, 3, 1101, 550, 0, 4053, 4054, 3, 1069, 534, 0, 4054, 4055, 3, 1097, 548, 0, 4055, 4056, 3, 1099, 549, 0, 4056, 662, 1, 0, 0, 0, 4057, 4058, 3, 1097, 548, 0, 4058, 4059, 3, 1069, 534, 0, 4059, 4060, 3, 1087, 543, 0, 4060, 4061, 3, 1067, 533, 0, 4061, 664, 1, 0, 0, 0, 4062, 4063, 3, 1079, 539, 0, 4063, 4064, 3, 1097, 548, 0, 4064, 4065, 3, 1089, 544, 0, 4065, 4066, 3, 1087, 543, 0, 4066, 666, 1, 0, 0, 0, 4067, 4068, 3, 1107, 553, 0, 4068, 4069, 3, 1085, 542, 0, 4069, 4070, 3, 1083, 541, 0, 4070, 668, 1, 0, 0, 0, 4071, 4072, 3, 1097, 548, 0, 4072, 4073, 3, 1099, 549, 0, 4073, 4074, 3, 1061, 530, 0, 4074, 4075, 3, 1099, 549, 0, 4075, 4076, 3, 1101, 550, 0, 4076, 4077, 3, 1097, 548, 0, 4077, 670, 1, 0, 0, 0, 4078, 4079, 3, 1071, 535, 0, 4079, 4080, 3, 1077, 538, 0, 4080, 4081, 3, 1083, 541, 0, 4081, 4082, 3, 1069, 534, 0, 4082, 672, 1, 0, 0, 0, 4083, 4084, 3, 1103, 551, 0, 4084, 4085, 3, 1069, 534, 0, 4085, 4086, 3, 1095, 547, 0, 4086, 4087, 3, 1097, 548, 0, 4087, 4088, 3, 1077, 538, 0, 4088, 4089, 3, 1089, 544, 0, 4089, 4090, 3, 1087, 543, 0, 4090, 674, 1, 0, 0, 0, 4091, 4092, 3, 1073, 536, 0, 4092, 4093, 3, 1069, 534, 0, 4093, 4094, 3, 1099, 549, 0, 4094, 676, 1, 0, 0, 0, 4095, 4096, 3, 1091, 545, 0, 4096, 4097, 3, 1089, 544, 0, 4097, 4098, 3, 1097, 548, 0, 4098, 4099, 3, 1099, 549, 0, 4099, 678, 1, 0, 0, 0, 4100, 4101, 3, 1091, 545, 0, 4101, 4102, 3, 1101, 550, 0, 4102, 4103, 3, 1099, 549, 0, 4103, 680, 1, 0, 0, 0, 4104, 4105, 3, 1091, 545, 0, 4105, 4106, 3, 1061, 530, 0, 4106, 4107, 3, 1099, 549, 0, 4107, 4108, 3, 1065, 532, 0, 4108, 4109, 3, 1075, 537, 0, 4109, 682, 1, 0, 0, 0, 4110, 4111, 3, 1061, 530, 0, 4111, 4112, 3, 1091, 545, 0, 4112, 4113, 3, 1077, 538, 0, 4113, 684, 1, 0, 0, 0, 4114, 4115, 3, 1065, 532, 0, 4115, 4116, 3, 1083, 541, 0, 4116, 4117, 3, 1077, 538, 0, 4117, 4118, 3, 1069, 534, 0, 4118, 4119, 3, 1087, 543, 0, 4119, 4120, 3, 1099, 549, 0, 4120, 686, 1, 0, 0, 0, 4121, 4122, 3, 1065, 532, 0, 4122, 4123, 3, 1083, 541, 0, 4123, 4124, 3, 1077, 538, 0, 4124, 4125, 3, 1069, 534, 0, 4125, 4126, 3, 1087, 543, 0, 4126, 4127, 3, 1099, 549, 0, 4127, 4128, 3, 1097, 548, 0, 4128, 688, 1, 0, 0, 0, 4129, 4130, 3, 1091, 545, 0, 4130, 4131, 3, 1101, 550, 0, 4131, 4132, 3, 1063, 531, 0, 4132, 4133, 3, 1083, 541, 0, 4133, 4134, 3, 1077, 538, 0, 4134, 4135, 3, 1097, 548, 0, 4135, 4136, 3, 1075, 537, 0, 4136, 690, 1, 0, 0, 0, 4137, 4138, 3, 1091, 545, 0, 4138, 4139, 3, 1101, 550, 0, 4139, 4140, 3, 1063, 531, 0, 4140, 4141, 3, 1083, 541, 0, 4141, 4142, 3, 1077, 538, 0, 4142, 4143, 3, 1097, 548, 0, 4143, 4144, 3, 1075, 537, 0, 4144, 4145, 3, 1069, 534, 0, 4145, 4146, 3, 1067, 533, 0, 4146, 692, 1, 0, 0, 0, 4147, 4148, 3, 1069, 534, 0, 4148, 4149, 3, 1107, 553, 0, 4149, 4150, 3, 1091, 545, 0, 4150, 4151, 3, 1089, 544, 0, 4151, 4152, 3, 1097, 548, 0, 4152, 4153, 3, 1069, 534, 0, 4153, 694, 1, 0, 0, 0, 4154, 4155, 3, 1065, 532, 0, 4155, 4156, 3, 1089, 544, 0, 4156, 4157, 3, 1087, 543, 0, 4157, 4158, 3, 1099, 549, 0, 4158, 4159, 3, 1095, 547, 0, 4159, 4160, 3, 1061, 530, 0, 4160, 4161, 3, 1065, 532, 0, 4161, 4162, 3, 1099, 549, 0, 4162, 696, 1, 0, 0, 0, 4163, 4164, 3, 1087, 543, 0, 4164, 4165, 3, 1061, 530, 0, 4165, 4166, 3, 1085, 542, 0, 4166, 4167, 3, 1069, 534, 0, 4167, 4168, 3, 1097, 548, 0, 4168, 4169, 3, 1091, 545, 0, 4169, 4170, 3, 1061, 530, 0, 4170, 4171, 3, 1065, 532, 0, 4171, 4172, 3, 1069, 534, 0, 4172, 698, 1, 0, 0, 0, 4173, 4174, 3, 1097, 548, 0, 4174, 4175, 3, 1069, 534, 0, 4175, 4176, 3, 1097, 548, 0, 4176, 4177, 3, 1097, 548, 0, 4177, 4178, 3, 1077, 538, 0, 4178, 4179, 3, 1089, 544, 0, 4179, 4180, 3, 1087, 543, 0, 4180, 700, 1, 0, 0, 0, 4181, 4182, 3, 1073, 536, 0, 4182, 4183, 3, 1101, 550, 0, 4183, 4184, 3, 1069, 534, 0, 4184, 4185, 3, 1097, 548, 0, 4185, 4186, 3, 1099, 549, 0, 4186, 702, 1, 0, 0, 0, 4187, 4188, 3, 1091, 545, 0, 4188, 4189, 3, 1061, 530, 0, 4189, 4190, 3, 1073, 536, 0, 4190, 4191, 3, 1077, 538, 0, 4191, 4192, 3, 1087, 543, 0, 4192, 4193, 3, 1073, 536, 0, 4193, 704, 1, 0, 0, 0, 4194, 4195, 3, 1087, 543, 0, 4195, 4196, 3, 1089, 544, 0, 4196, 4197, 3, 1099, 549, 0, 4197, 4198, 5, 95, 0, 0, 4198, 4199, 3, 1097, 548, 0, 4199, 4200, 3, 1101, 550, 0, 4200, 4201, 3, 1091, 545, 0, 4201, 4202, 3, 1091, 545, 0, 4202, 4203, 3, 1089, 544, 0, 4203, 4204, 3, 1095, 547, 0, 4204, 4205, 3, 1099, 549, 0, 4205, 4206, 3, 1069, 534, 0, 4206, 4207, 3, 1067, 533, 0, 4207, 706, 1, 0, 0, 0, 4208, 4209, 3, 1101, 550, 0, 4209, 4210, 3, 1097, 548, 0, 4210, 4211, 3, 1069, 534, 0, 4211, 4212, 3, 1095, 547, 0, 4212, 4213, 3, 1087, 543, 0, 4213, 4214, 3, 1061, 530, 0, 4214, 4215, 3, 1085, 542, 0, 4215, 4216, 3, 1069, 534, 0, 4216, 708, 1, 0, 0, 0, 4217, 4218, 3, 1091, 545, 0, 4218, 4219, 3, 1061, 530, 0, 4219, 4220, 3, 1097, 548, 0, 4220, 4221, 3, 1097, 548, 0, 4221, 4222, 3, 1105, 552, 0, 4222, 4223, 3, 1089, 544, 0, 4223, 4224, 3, 1095, 547, 0, 4224, 4225, 3, 1067, 533, 0, 4225, 710, 1, 0, 0, 0, 4226, 4227, 3, 1065, 532, 0, 4227, 4228, 3, 1089, 544, 0, 4228, 4229, 3, 1087, 543, 0, 4229, 4230, 3, 1087, 543, 0, 4230, 4231, 3, 1069, 534, 0, 4231, 4232, 3, 1065, 532, 0, 4232, 4233, 3, 1099, 549, 0, 4233, 4234, 3, 1077, 538, 0, 4234, 4235, 3, 1089, 544, 0, 4235, 4236, 3, 1087, 543, 0, 4236, 712, 1, 0, 0, 0, 4237, 4238, 3, 1067, 533, 0, 4238, 4239, 3, 1061, 530, 0, 4239, 4240, 3, 1099, 549, 0, 4240, 4241, 3, 1061, 530, 0, 4241, 4242, 3, 1063, 531, 0, 4242, 4243, 3, 1061, 530, 0, 4243, 4244, 3, 1097, 548, 0, 4244, 4245, 3, 1069, 534, 0, 4245, 714, 1, 0, 0, 0, 4246, 4247, 3, 1093, 546, 0, 4247, 4248, 3, 1101, 550, 0, 4248, 4249, 3, 1069, 534, 0, 4249, 4250, 3, 1095, 547, 0, 4250, 4251, 3, 1109, 554, 0, 4251, 716, 1, 0, 0, 0, 4252, 4253, 3, 1085, 542, 0, 4253, 4254, 3, 1061, 530, 0, 4254, 4255, 3, 1091, 545, 0, 4255, 718, 1, 0, 0, 0, 4256, 4257, 3, 1085, 542, 0, 4257, 4258, 3, 1061, 530, 0, 4258, 4259, 3, 1091, 545, 0, 4259, 4260, 3, 1091, 545, 0, 4260, 4261, 3, 1077, 538, 0, 4261, 4262, 3, 1087, 543, 0, 4262, 4263, 3, 1073, 536, 0, 4263, 720, 1, 0, 0, 0, 4264, 4265, 3, 1077, 538, 0, 4265, 4266, 3, 1085, 542, 0, 4266, 4267, 3, 1091, 545, 0, 4267, 4268, 3, 1089, 544, 0, 4268, 4269, 3, 1095, 547, 0, 4269, 4270, 3, 1099, 549, 0, 4270, 722, 1, 0, 0, 0, 4271, 4272, 3, 1077, 538, 0, 4272, 4273, 3, 1087, 543, 0, 4273, 4274, 3, 1099, 549, 0, 4274, 4275, 3, 1089, 544, 0, 4275, 724, 1, 0, 0, 0, 4276, 4277, 3, 1063, 531, 0, 4277, 4278, 3, 1061, 530, 0, 4278, 4279, 3, 1099, 549, 0, 4279, 4280, 3, 1065, 532, 0, 4280, 4281, 3, 1075, 537, 0, 4281, 726, 1, 0, 0, 0, 4282, 4283, 3, 1083, 541, 0, 4283, 4284, 3, 1077, 538, 0, 4284, 4285, 3, 1087, 543, 0, 4285, 4286, 3, 1081, 540, 0, 4286, 728, 1, 0, 0, 0, 4287, 4288, 3, 1069, 534, 0, 4288, 4289, 3, 1107, 553, 0, 4289, 4290, 3, 1091, 545, 0, 4290, 4291, 3, 1089, 544, 0, 4291, 4292, 3, 1095, 547, 0, 4292, 4293, 3, 1099, 549, 0, 4293, 730, 1, 0, 0, 0, 4294, 4295, 3, 1073, 536, 0, 4295, 4296, 3, 1069, 534, 0, 4296, 4297, 3, 1087, 543, 0, 4297, 4298, 3, 1069, 534, 0, 4298, 4299, 3, 1095, 547, 0, 4299, 4300, 3, 1061, 530, 0, 4300, 4301, 3, 1099, 549, 0, 4301, 4302, 3, 1069, 534, 0, 4302, 732, 1, 0, 0, 0, 4303, 4304, 3, 1065, 532, 0, 4304, 4305, 3, 1089, 544, 0, 4305, 4306, 3, 1087, 543, 0, 4306, 4307, 3, 1087, 543, 0, 4307, 4308, 3, 1069, 534, 0, 4308, 4309, 3, 1065, 532, 0, 4309, 4310, 3, 1099, 549, 0, 4310, 4311, 3, 1089, 544, 0, 4311, 4312, 3, 1095, 547, 0, 4312, 734, 1, 0, 0, 0, 4313, 4314, 3, 1069, 534, 0, 4314, 4315, 3, 1107, 553, 0, 4315, 4316, 3, 1069, 534, 0, 4316, 4317, 3, 1065, 532, 0, 4317, 736, 1, 0, 0, 0, 4318, 4319, 3, 1099, 549, 0, 4319, 4320, 3, 1061, 530, 0, 4320, 4321, 3, 1063, 531, 0, 4321, 4322, 3, 1083, 541, 0, 4322, 4323, 3, 1069, 534, 0, 4323, 4324, 3, 1097, 548, 0, 4324, 738, 1, 0, 0, 0, 4325, 4326, 3, 1103, 551, 0, 4326, 4327, 3, 1077, 538, 0, 4327, 4328, 3, 1069, 534, 0, 4328, 4329, 3, 1105, 552, 0, 4329, 4330, 3, 1097, 548, 0, 4330, 740, 1, 0, 0, 0, 4331, 4332, 3, 1069, 534, 0, 4332, 4333, 3, 1107, 553, 0, 4333, 4334, 3, 1091, 545, 0, 4334, 4335, 3, 1089, 544, 0, 4335, 4336, 3, 1097, 548, 0, 4336, 4337, 3, 1069, 534, 0, 4337, 4338, 3, 1067, 533, 0, 4338, 742, 1, 0, 0, 0, 4339, 4340, 3, 1091, 545, 0, 4340, 4341, 3, 1061, 530, 0, 4341, 4342, 3, 1095, 547, 0, 4342, 4343, 3, 1061, 530, 0, 4343, 4344, 3, 1085, 542, 0, 4344, 4345, 3, 1069, 534, 0, 4345, 4346, 3, 1099, 549, 0, 4346, 4347, 3, 1069, 534, 0, 4347, 4348, 3, 1095, 547, 0, 4348, 744, 1, 0, 0, 0, 4349, 4350, 3, 1091, 545, 0, 4350, 4351, 3, 1061, 530, 0, 4351, 4352, 3, 1095, 547, 0, 4352, 4353, 3, 1061, 530, 0, 4353, 4354, 3, 1085, 542, 0, 4354, 4355, 3, 1069, 534, 0, 4355, 4356, 3, 1099, 549, 0, 4356, 4357, 3, 1069, 534, 0, 4357, 4358, 3, 1095, 547, 0, 4358, 4359, 3, 1097, 548, 0, 4359, 746, 1, 0, 0, 0, 4360, 4361, 3, 1075, 537, 0, 4361, 4362, 3, 1069, 534, 0, 4362, 4363, 3, 1061, 530, 0, 4363, 4364, 3, 1067, 533, 0, 4364, 4365, 3, 1069, 534, 0, 4365, 4366, 3, 1095, 547, 0, 4366, 4367, 3, 1097, 548, 0, 4367, 748, 1, 0, 0, 0, 4368, 4369, 3, 1087, 543, 0, 4369, 4370, 3, 1061, 530, 0, 4370, 4371, 3, 1103, 551, 0, 4371, 4372, 3, 1077, 538, 0, 4372, 4373, 3, 1073, 536, 0, 4373, 4374, 3, 1061, 530, 0, 4374, 4375, 3, 1099, 549, 0, 4375, 4376, 3, 1077, 538, 0, 4376, 4377, 3, 1089, 544, 0, 4377, 4378, 3, 1087, 543, 0, 4378, 750, 1, 0, 0, 0, 4379, 4380, 3, 1085, 542, 0, 4380, 4381, 3, 1069, 534, 0, 4381, 4382, 3, 1087, 543, 0, 4382, 4383, 3, 1101, 550, 0, 4383, 752, 1, 0, 0, 0, 4384, 4385, 3, 1075, 537, 0, 4385, 4386, 3, 1089, 544, 0, 4386, 4387, 3, 1085, 542, 0, 4387, 4388, 3, 1069, 534, 0, 4388, 4389, 3, 1097, 548, 0, 4389, 754, 1, 0, 0, 0, 4390, 4391, 3, 1075, 537, 0, 4391, 4392, 3, 1089, 544, 0, 4392, 4393, 3, 1085, 542, 0, 4393, 4394, 3, 1069, 534, 0, 4394, 756, 1, 0, 0, 0, 4395, 4396, 3, 1083, 541, 0, 4396, 4397, 3, 1089, 544, 0, 4397, 4398, 3, 1073, 536, 0, 4398, 4399, 3, 1077, 538, 0, 4399, 4400, 3, 1087, 543, 0, 4400, 758, 1, 0, 0, 0, 4401, 4402, 3, 1071, 535, 0, 4402, 4403, 3, 1089, 544, 0, 4403, 4404, 3, 1101, 550, 0, 4404, 4405, 3, 1087, 543, 0, 4405, 4406, 3, 1067, 533, 0, 4406, 760, 1, 0, 0, 0, 4407, 4408, 3, 1085, 542, 0, 4408, 4409, 3, 1089, 544, 0, 4409, 4410, 3, 1067, 533, 0, 4410, 4411, 3, 1101, 550, 0, 4411, 4412, 3, 1083, 541, 0, 4412, 4413, 3, 1069, 534, 0, 4413, 4414, 3, 1097, 548, 0, 4414, 762, 1, 0, 0, 0, 4415, 4416, 3, 1069, 534, 0, 4416, 4417, 3, 1087, 543, 0, 4417, 4418, 3, 1099, 549, 0, 4418, 4419, 3, 1077, 538, 0, 4419, 4420, 3, 1099, 549, 0, 4420, 4421, 3, 1077, 538, 0, 4421, 4422, 3, 1069, 534, 0, 4422, 4423, 3, 1097, 548, 0, 4423, 764, 1, 0, 0, 0, 4424, 4425, 3, 1061, 530, 0, 4425, 4426, 3, 1097, 548, 0, 4426, 4427, 3, 1097, 548, 0, 4427, 4428, 3, 1089, 544, 0, 4428, 4429, 3, 1065, 532, 0, 4429, 4430, 3, 1077, 538, 0, 4430, 4431, 3, 1061, 530, 0, 4431, 4432, 3, 1099, 549, 0, 4432, 4433, 3, 1077, 538, 0, 4433, 4434, 3, 1089, 544, 0, 4434, 4435, 3, 1087, 543, 0, 4435, 4436, 3, 1097, 548, 0, 4436, 766, 1, 0, 0, 0, 4437, 4438, 3, 1085, 542, 0, 4438, 4439, 3, 1077, 538, 0, 4439, 4440, 3, 1065, 532, 0, 4440, 4441, 3, 1095, 547, 0, 4441, 4442, 3, 1089, 544, 0, 4442, 4443, 3, 1071, 535, 0, 4443, 4444, 3, 1083, 541, 0, 4444, 4445, 3, 1089, 544, 0, 4445, 4446, 3, 1105, 552, 0, 4446, 4447, 3, 1097, 548, 0, 4447, 768, 1, 0, 0, 0, 4448, 4449, 3, 1087, 543, 0, 4449, 4450, 3, 1061, 530, 0, 4450, 4451, 3, 1087, 543, 0, 4451, 4452, 3, 1089, 544, 0, 4452, 4453, 3, 1071, 535, 0, 4453, 4454, 3, 1083, 541, 0, 4454, 4455, 3, 1089, 544, 0, 4455, 4456, 3, 1105, 552, 0, 4456, 4457, 3, 1097, 548, 0, 4457, 770, 1, 0, 0, 0, 4458, 4459, 3, 1105, 552, 0, 4459, 4460, 3, 1089, 544, 0, 4460, 4461, 3, 1095, 547, 0, 4461, 4462, 3, 1081, 540, 0, 4462, 4463, 3, 1071, 535, 0, 4463, 4464, 3, 1083, 541, 0, 4464, 4465, 3, 1089, 544, 0, 4465, 4466, 3, 1105, 552, 0, 4466, 4467, 3, 1097, 548, 0, 4467, 772, 1, 0, 0, 0, 4468, 4469, 3, 1069, 534, 0, 4469, 4470, 3, 1087, 543, 0, 4470, 4471, 3, 1101, 550, 0, 4471, 4472, 3, 1085, 542, 0, 4472, 4473, 3, 1069, 534, 0, 4473, 4474, 3, 1095, 547, 0, 4474, 4475, 3, 1061, 530, 0, 4475, 4476, 3, 1099, 549, 0, 4476, 4477, 3, 1077, 538, 0, 4477, 4478, 3, 1089, 544, 0, 4478, 4479, 3, 1087, 543, 0, 4479, 4480, 3, 1097, 548, 0, 4480, 774, 1, 0, 0, 0, 4481, 4482, 3, 1065, 532, 0, 4482, 4483, 3, 1089, 544, 0, 4483, 4484, 3, 1087, 543, 0, 4484, 4485, 3, 1097, 548, 0, 4485, 4486, 3, 1099, 549, 0, 4486, 4487, 3, 1061, 530, 0, 4487, 4488, 3, 1087, 543, 0, 4488, 4489, 3, 1099, 549, 0, 4489, 4490, 3, 1097, 548, 0, 4490, 776, 1, 0, 0, 0, 4491, 4492, 3, 1065, 532, 0, 4492, 4493, 3, 1089, 544, 0, 4493, 4494, 3, 1087, 543, 0, 4494, 4495, 3, 1087, 543, 0, 4495, 4496, 3, 1069, 534, 0, 4496, 4497, 3, 1065, 532, 0, 4497, 4498, 3, 1099, 549, 0, 4498, 4499, 3, 1077, 538, 0, 4499, 4500, 3, 1089, 544, 0, 4500, 4501, 3, 1087, 543, 0, 4501, 4502, 3, 1097, 548, 0, 4502, 778, 1, 0, 0, 0, 4503, 4504, 3, 1067, 533, 0, 4504, 4505, 3, 1069, 534, 0, 4505, 4506, 3, 1071, 535, 0, 4506, 4507, 3, 1077, 538, 0, 4507, 4508, 3, 1087, 543, 0, 4508, 4509, 3, 1069, 534, 0, 4509, 780, 1, 0, 0, 0, 4510, 4511, 3, 1071, 535, 0, 4511, 4512, 3, 1095, 547, 0, 4512, 4513, 3, 1061, 530, 0, 4513, 4514, 3, 1073, 536, 0, 4514, 4515, 3, 1085, 542, 0, 4515, 4516, 3, 1069, 534, 0, 4516, 4517, 3, 1087, 543, 0, 4517, 4518, 3, 1099, 549, 0, 4518, 782, 1, 0, 0, 0, 4519, 4520, 3, 1071, 535, 0, 4520, 4521, 3, 1095, 547, 0, 4521, 4522, 3, 1061, 530, 0, 4522, 4523, 3, 1073, 536, 0, 4523, 4524, 3, 1085, 542, 0, 4524, 4525, 3, 1069, 534, 0, 4525, 4526, 3, 1087, 543, 0, 4526, 4527, 3, 1099, 549, 0, 4527, 4528, 3, 1097, 548, 0, 4528, 784, 1, 0, 0, 0, 4529, 4530, 3, 1083, 541, 0, 4530, 4531, 3, 1061, 530, 0, 4531, 4532, 3, 1087, 543, 0, 4532, 4533, 3, 1073, 536, 0, 4533, 4534, 3, 1101, 550, 0, 4534, 4535, 3, 1061, 530, 0, 4535, 4536, 3, 1073, 536, 0, 4536, 4537, 3, 1069, 534, 0, 4537, 4538, 3, 1097, 548, 0, 4538, 786, 1, 0, 0, 0, 4539, 4540, 3, 1077, 538, 0, 4540, 4541, 3, 1087, 543, 0, 4541, 4542, 3, 1097, 548, 0, 4542, 4543, 3, 1069, 534, 0, 4543, 4544, 3, 1095, 547, 0, 4544, 4545, 3, 1099, 549, 0, 4545, 788, 1, 0, 0, 0, 4546, 4547, 3, 1063, 531, 0, 4547, 4548, 3, 1069, 534, 0, 4548, 4549, 3, 1071, 535, 0, 4549, 4550, 3, 1089, 544, 0, 4550, 4551, 3, 1095, 547, 0, 4551, 4552, 3, 1069, 534, 0, 4552, 790, 1, 0, 0, 0, 4553, 4554, 3, 1061, 530, 0, 4554, 4555, 3, 1071, 535, 0, 4555, 4556, 3, 1099, 549, 0, 4556, 4557, 3, 1069, 534, 0, 4557, 4558, 3, 1095, 547, 0, 4558, 792, 1, 0, 0, 0, 4559, 4560, 3, 1101, 550, 0, 4560, 4561, 3, 1091, 545, 0, 4561, 4562, 3, 1067, 533, 0, 4562, 4563, 3, 1061, 530, 0, 4563, 4564, 3, 1099, 549, 0, 4564, 4565, 3, 1069, 534, 0, 4565, 794, 1, 0, 0, 0, 4566, 4567, 3, 1095, 547, 0, 4567, 4568, 3, 1069, 534, 0, 4568, 4569, 3, 1071, 535, 0, 4569, 4570, 3, 1095, 547, 0, 4570, 4571, 3, 1069, 534, 0, 4571, 4572, 3, 1097, 548, 0, 4572, 4573, 3, 1075, 537, 0, 4573, 796, 1, 0, 0, 0, 4574, 4575, 3, 1065, 532, 0, 4575, 4576, 3, 1075, 537, 0, 4576, 4577, 3, 1069, 534, 0, 4577, 4578, 3, 1065, 532, 0, 4578, 4579, 3, 1081, 540, 0, 4579, 798, 1, 0, 0, 0, 4580, 4581, 3, 1063, 531, 0, 4581, 4582, 3, 1101, 550, 0, 4582, 4583, 3, 1077, 538, 0, 4583, 4584, 3, 1083, 541, 0, 4584, 4585, 3, 1067, 533, 0, 4585, 800, 1, 0, 0, 0, 4586, 4587, 3, 1069, 534, 0, 4587, 4588, 3, 1107, 553, 0, 4588, 4589, 3, 1069, 534, 0, 4589, 4590, 3, 1065, 532, 0, 4590, 4591, 3, 1101, 550, 0, 4591, 4592, 3, 1099, 549, 0, 4592, 4593, 3, 1069, 534, 0, 4593, 802, 1, 0, 0, 0, 4594, 4595, 3, 1097, 548, 0, 4595, 4596, 3, 1065, 532, 0, 4596, 4597, 3, 1095, 547, 0, 4597, 4598, 3, 1077, 538, 0, 4598, 4599, 3, 1091, 545, 0, 4599, 4600, 3, 1099, 549, 0, 4600, 804, 1, 0, 0, 0, 4601, 4602, 3, 1083, 541, 0, 4602, 4603, 3, 1077, 538, 0, 4603, 4604, 3, 1087, 543, 0, 4604, 4605, 3, 1099, 549, 0, 4605, 806, 1, 0, 0, 0, 4606, 4607, 3, 1095, 547, 0, 4607, 4608, 3, 1101, 550, 0, 4608, 4609, 3, 1083, 541, 0, 4609, 4610, 3, 1069, 534, 0, 4610, 4611, 3, 1097, 548, 0, 4611, 808, 1, 0, 0, 0, 4612, 4613, 3, 1099, 549, 0, 4613, 4614, 3, 1069, 534, 0, 4614, 4615, 3, 1107, 553, 0, 4615, 4616, 3, 1099, 549, 0, 4616, 810, 1, 0, 0, 0, 4617, 4618, 3, 1097, 548, 0, 4618, 4619, 3, 1061, 530, 0, 4619, 4620, 3, 1095, 547, 0, 4620, 4621, 3, 1077, 538, 0, 4621, 4622, 3, 1071, 535, 0, 4622, 812, 1, 0, 0, 0, 4623, 4624, 3, 1085, 542, 0, 4624, 4625, 3, 1069, 534, 0, 4625, 4626, 3, 1097, 548, 0, 4626, 4627, 3, 1097, 548, 0, 4627, 4628, 3, 1061, 530, 0, 4628, 4629, 3, 1073, 536, 0, 4629, 4630, 3, 1069, 534, 0, 4630, 814, 1, 0, 0, 0, 4631, 4632, 3, 1085, 542, 0, 4632, 4633, 3, 1069, 534, 0, 4633, 4634, 3, 1097, 548, 0, 4634, 4635, 3, 1097, 548, 0, 4635, 4636, 3, 1061, 530, 0, 4636, 4637, 3, 1073, 536, 0, 4637, 4638, 3, 1069, 534, 0, 4638, 4639, 3, 1097, 548, 0, 4639, 816, 1, 0, 0, 0, 4640, 4641, 3, 1065, 532, 0, 4641, 4642, 3, 1075, 537, 0, 4642, 4643, 3, 1061, 530, 0, 4643, 4644, 3, 1087, 543, 0, 4644, 4645, 3, 1087, 543, 0, 4645, 4646, 3, 1069, 534, 0, 4646, 4647, 3, 1083, 541, 0, 4647, 4648, 3, 1097, 548, 0, 4648, 818, 1, 0, 0, 0, 4649, 4650, 3, 1065, 532, 0, 4650, 4651, 3, 1089, 544, 0, 4651, 4652, 3, 1085, 542, 0, 4652, 4653, 3, 1085, 542, 0, 4653, 4654, 3, 1069, 534, 0, 4654, 4655, 3, 1087, 543, 0, 4655, 4656, 3, 1099, 549, 0, 4656, 820, 1, 0, 0, 0, 4657, 4658, 3, 1065, 532, 0, 4658, 4659, 3, 1101, 550, 0, 4659, 4660, 3, 1097, 548, 0, 4660, 4661, 3, 1099, 549, 0, 4661, 4662, 3, 1089, 544, 0, 4662, 4664, 3, 1085, 542, 0, 4663, 4665, 3, 1, 0, 0, 4664, 4663, 1, 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4669, 3, 1087, 543, 0, 4669, 4670, 3, 1061, 530, 0, 4670, 4671, 3, 1085, 542, 0, 4671, 4673, 3, 1069, 534, 0, 4672, 4674, 3, 1, 0, 0, 4673, 4672, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4673, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 4677, 1, 0, 0, 0, 4677, 4678, 3, 1085, 542, 0, 4678, 4679, 3, 1061, 530, 0, 4679, 4680, 3, 1091, 545, 0, 4680, 822, 1, 0, 0, 0, 4681, 4682, 3, 1065, 532, 0, 4682, 4683, 3, 1061, 530, 0, 4683, 4684, 3, 1099, 549, 0, 4684, 4685, 3, 1061, 530, 0, 4685, 4686, 3, 1083, 541, 0, 4686, 4687, 3, 1089, 544, 0, 4687, 4688, 3, 1073, 536, 0, 4688, 824, 1, 0, 0, 0, 4689, 4690, 3, 1071, 535, 0, 4690, 4691, 3, 1089, 544, 0, 4691, 4692, 3, 1095, 547, 0, 4692, 4693, 3, 1065, 532, 0, 4693, 4694, 3, 1069, 534, 0, 4694, 826, 1, 0, 0, 0, 4695, 4696, 3, 1063, 531, 0, 4696, 4697, 3, 1061, 530, 0, 4697, 4698, 3, 1065, 532, 0, 4698, 4699, 3, 1081, 540, 0, 4699, 4700, 3, 1073, 536, 0, 4700, 4701, 3, 1095, 547, 0, 4701, 4702, 3, 1089, 544, 0, 4702, 4703, 3, 1101, 550, 0, 4703, 4704, 3, 1087, 543, 0, 4704, 4705, 3, 1067, 533, 0, 4705, 828, 1, 0, 0, 0, 4706, 4707, 3, 1065, 532, 0, 4707, 4708, 3, 1061, 530, 0, 4708, 4709, 3, 1083, 541, 0, 4709, 4710, 3, 1083, 541, 0, 4710, 4711, 3, 1069, 534, 0, 4711, 4712, 3, 1095, 547, 0, 4712, 4713, 3, 1097, 548, 0, 4713, 830, 1, 0, 0, 0, 4714, 4715, 3, 1065, 532, 0, 4715, 4716, 3, 1061, 530, 0, 4716, 4717, 3, 1083, 541, 0, 4717, 4718, 3, 1083, 541, 0, 4718, 4719, 3, 1069, 534, 0, 4719, 4720, 3, 1069, 534, 0, 4720, 4721, 3, 1097, 548, 0, 4721, 832, 1, 0, 0, 0, 4722, 4723, 3, 1095, 547, 0, 4723, 4724, 3, 1069, 534, 0, 4724, 4725, 3, 1071, 535, 0, 4725, 4726, 3, 1069, 534, 0, 4726, 4727, 3, 1095, 547, 0, 4727, 4728, 3, 1069, 534, 0, 4728, 4729, 3, 1087, 543, 0, 4729, 4730, 3, 1065, 532, 0, 4730, 4731, 3, 1069, 534, 0, 4731, 4732, 3, 1097, 548, 0, 4732, 834, 1, 0, 0, 0, 4733, 4734, 3, 1099, 549, 0, 4734, 4735, 3, 1095, 547, 0, 4735, 4736, 3, 1061, 530, 0, 4736, 4737, 3, 1087, 543, 0, 4737, 4738, 3, 1097, 548, 0, 4738, 4739, 3, 1077, 538, 0, 4739, 4740, 3, 1099, 549, 0, 4740, 4741, 3, 1077, 538, 0, 4741, 4742, 3, 1103, 551, 0, 4742, 4743, 3, 1069, 534, 0, 4743, 836, 1, 0, 0, 0, 4744, 4745, 3, 1077, 538, 0, 4745, 4746, 3, 1085, 542, 0, 4746, 4747, 3, 1091, 545, 0, 4747, 4748, 3, 1061, 530, 0, 4748, 4749, 3, 1065, 532, 0, 4749, 4750, 3, 1099, 549, 0, 4750, 838, 1, 0, 0, 0, 4751, 4752, 3, 1067, 533, 0, 4752, 4753, 3, 1069, 534, 0, 4753, 4754, 3, 1091, 545, 0, 4754, 4755, 3, 1099, 549, 0, 4755, 4756, 3, 1075, 537, 0, 4756, 840, 1, 0, 0, 0, 4757, 4758, 3, 1097, 548, 0, 4758, 4759, 3, 1099, 549, 0, 4759, 4760, 3, 1095, 547, 0, 4760, 4761, 3, 1101, 550, 0, 4761, 4762, 3, 1065, 532, 0, 4762, 4763, 3, 1099, 549, 0, 4763, 4764, 3, 1101, 550, 0, 4764, 4765, 3, 1095, 547, 0, 4765, 4766, 3, 1069, 534, 0, 4766, 842, 1, 0, 0, 0, 4767, 4768, 3, 1097, 548, 0, 4768, 4769, 3, 1099, 549, 0, 4769, 4770, 3, 1095, 547, 0, 4770, 4771, 3, 1101, 550, 0, 4771, 4772, 3, 1065, 532, 0, 4772, 4773, 3, 1099, 549, 0, 4773, 4774, 3, 1101, 550, 0, 4774, 4775, 3, 1095, 547, 0, 4775, 4776, 3, 1069, 534, 0, 4776, 4777, 3, 1097, 548, 0, 4777, 844, 1, 0, 0, 0, 4778, 4779, 3, 1099, 549, 0, 4779, 4780, 3, 1109, 554, 0, 4780, 4781, 3, 1091, 545, 0, 4781, 4782, 3, 1069, 534, 0, 4782, 846, 1, 0, 0, 0, 4783, 4784, 3, 1103, 551, 0, 4784, 4785, 3, 1061, 530, 0, 4785, 4786, 3, 1083, 541, 0, 4786, 4787, 3, 1101, 550, 0, 4787, 4788, 3, 1069, 534, 0, 4788, 848, 1, 0, 0, 0, 4789, 4790, 3, 1103, 551, 0, 4790, 4791, 3, 1061, 530, 0, 4791, 4792, 3, 1083, 541, 0, 4792, 4793, 3, 1101, 550, 0, 4793, 4794, 3, 1069, 534, 0, 4794, 4795, 3, 1097, 548, 0, 4795, 850, 1, 0, 0, 0, 4796, 4797, 3, 1097, 548, 0, 4797, 4798, 3, 1077, 538, 0, 4798, 4799, 3, 1087, 543, 0, 4799, 4800, 3, 1073, 536, 0, 4800, 4801, 3, 1083, 541, 0, 4801, 4802, 3, 1069, 534, 0, 4802, 852, 1, 0, 0, 0, 4803, 4804, 3, 1085, 542, 0, 4804, 4805, 3, 1101, 550, 0, 4805, 4806, 3, 1083, 541, 0, 4806, 4807, 3, 1099, 549, 0, 4807, 4808, 3, 1077, 538, 0, 4808, 4809, 3, 1091, 545, 0, 4809, 4810, 3, 1083, 541, 0, 4810, 4811, 3, 1069, 534, 0, 4811, 854, 1, 0, 0, 0, 4812, 4813, 3, 1087, 543, 0, 4813, 4814, 3, 1089, 544, 0, 4814, 4815, 3, 1087, 543, 0, 4815, 4816, 3, 1069, 534, 0, 4816, 856, 1, 0, 0, 0, 4817, 4818, 3, 1063, 531, 0, 4818, 4819, 3, 1089, 544, 0, 4819, 4820, 3, 1099, 549, 0, 4820, 4821, 3, 1075, 537, 0, 4821, 858, 1, 0, 0, 0, 4822, 4823, 3, 1099, 549, 0, 4823, 4824, 3, 1089, 544, 0, 4824, 860, 1, 0, 0, 0, 4825, 4826, 3, 1089, 544, 0, 4826, 4827, 3, 1071, 535, 0, 4827, 862, 1, 0, 0, 0, 4828, 4829, 3, 1089, 544, 0, 4829, 4830, 3, 1103, 551, 0, 4830, 4831, 3, 1069, 534, 0, 4831, 4832, 3, 1095, 547, 0, 4832, 864, 1, 0, 0, 0, 4833, 4834, 3, 1071, 535, 0, 4834, 4835, 3, 1089, 544, 0, 4835, 4836, 3, 1095, 547, 0, 4836, 866, 1, 0, 0, 0, 4837, 4838, 3, 1095, 547, 0, 4838, 4839, 3, 1069, 534, 0, 4839, 4840, 3, 1091, 545, 0, 4840, 4841, 3, 1083, 541, 0, 4841, 4842, 3, 1061, 530, 0, 4842, 4843, 3, 1065, 532, 0, 4843, 4844, 3, 1069, 534, 0, 4844, 868, 1, 0, 0, 0, 4845, 4846, 3, 1085, 542, 0, 4846, 4847, 3, 1069, 534, 0, 4847, 4848, 3, 1085, 542, 0, 4848, 4849, 3, 1063, 531, 0, 4849, 4850, 3, 1069, 534, 0, 4850, 4851, 3, 1095, 547, 0, 4851, 4852, 3, 1097, 548, 0, 4852, 870, 1, 0, 0, 0, 4853, 4854, 3, 1061, 530, 0, 4854, 4855, 3, 1099, 549, 0, 4855, 4856, 3, 1099, 549, 0, 4856, 4857, 3, 1095, 547, 0, 4857, 4858, 3, 1077, 538, 0, 4858, 4859, 3, 1063, 531, 0, 4859, 4860, 3, 1101, 550, 0, 4860, 4861, 3, 1099, 549, 0, 4861, 4862, 3, 1069, 534, 0, 4862, 4863, 3, 1087, 543, 0, 4863, 4864, 3, 1061, 530, 0, 4864, 4865, 3, 1085, 542, 0, 4865, 4866, 3, 1069, 534, 0, 4866, 872, 1, 0, 0, 0, 4867, 4868, 3, 1071, 535, 0, 4868, 4869, 3, 1089, 544, 0, 4869, 4870, 3, 1095, 547, 0, 4870, 4871, 3, 1085, 542, 0, 4871, 4872, 3, 1061, 530, 0, 4872, 4873, 3, 1099, 549, 0, 4873, 874, 1, 0, 0, 0, 4874, 4875, 3, 1097, 548, 0, 4875, 4876, 3, 1093, 546, 0, 4876, 4877, 3, 1083, 541, 0, 4877, 876, 1, 0, 0, 0, 4878, 4879, 3, 1105, 552, 0, 4879, 4880, 3, 1077, 538, 0, 4880, 4881, 3, 1099, 549, 0, 4881, 4882, 3, 1075, 537, 0, 4882, 4883, 3, 1089, 544, 0, 4883, 4884, 3, 1101, 550, 0, 4884, 4885, 3, 1099, 549, 0, 4885, 878, 1, 0, 0, 0, 4886, 4887, 3, 1067, 533, 0, 4887, 4888, 3, 1095, 547, 0, 4888, 4889, 3, 1109, 554, 0, 4889, 880, 1, 0, 0, 0, 4890, 4891, 3, 1095, 547, 0, 4891, 4892, 3, 1101, 550, 0, 4892, 4893, 3, 1087, 543, 0, 4893, 882, 1, 0, 0, 0, 4894, 4895, 3, 1105, 552, 0, 4895, 4896, 3, 1077, 538, 0, 4896, 4897, 3, 1067, 533, 0, 4897, 4898, 3, 1073, 536, 0, 4898, 4899, 3, 1069, 534, 0, 4899, 4900, 3, 1099, 549, 0, 4900, 4901, 3, 1099, 549, 0, 4901, 4902, 3, 1109, 554, 0, 4902, 4903, 3, 1091, 545, 0, 4903, 4904, 3, 1069, 534, 0, 4904, 884, 1, 0, 0, 0, 4905, 4906, 3, 1103, 551, 0, 4906, 4907, 5, 51, 0, 0, 4907, 886, 1, 0, 0, 0, 4908, 4909, 3, 1063, 531, 0, 4909, 4910, 3, 1101, 550, 0, 4910, 4911, 3, 1097, 548, 0, 4911, 4912, 3, 1077, 538, 0, 4912, 4913, 3, 1087, 543, 0, 4913, 4914, 3, 1069, 534, 0, 4914, 4915, 3, 1097, 548, 0, 4915, 4916, 3, 1097, 548, 0, 4916, 888, 1, 0, 0, 0, 4917, 4918, 3, 1069, 534, 0, 4918, 4919, 3, 1103, 551, 0, 4919, 4920, 3, 1069, 534, 0, 4920, 4921, 3, 1087, 543, 0, 4921, 4922, 3, 1099, 549, 0, 4922, 890, 1, 0, 0, 0, 4923, 4924, 3, 1097, 548, 0, 4924, 4925, 3, 1101, 550, 0, 4925, 4926, 3, 1063, 531, 0, 4926, 4927, 3, 1097, 548, 0, 4927, 4928, 3, 1065, 532, 0, 4928, 4929, 3, 1095, 547, 0, 4929, 4930, 3, 1077, 538, 0, 4930, 4931, 3, 1063, 531, 0, 4931, 4932, 3, 1069, 534, 0, 4932, 892, 1, 0, 0, 0, 4933, 4934, 3, 1097, 548, 0, 4934, 4935, 3, 1069, 534, 0, 4935, 4936, 3, 1099, 549, 0, 4936, 4937, 3, 1099, 549, 0, 4937, 4938, 3, 1077, 538, 0, 4938, 4939, 3, 1087, 543, 0, 4939, 4940, 3, 1073, 536, 0, 4940, 4941, 3, 1097, 548, 0, 4941, 894, 1, 0, 0, 0, 4942, 4943, 3, 1065, 532, 0, 4943, 4944, 3, 1089, 544, 0, 4944, 4945, 3, 1087, 543, 0, 4945, 4946, 3, 1071, 535, 0, 4946, 4947, 3, 1077, 538, 0, 4947, 4948, 3, 1073, 536, 0, 4948, 4949, 3, 1101, 550, 0, 4949, 4950, 3, 1095, 547, 0, 4950, 4951, 3, 1061, 530, 0, 4951, 4952, 3, 1099, 549, 0, 4952, 4953, 3, 1077, 538, 0, 4953, 4954, 3, 1089, 544, 0, 4954, 4955, 3, 1087, 543, 0, 4955, 896, 1, 0, 0, 0, 4956, 4957, 3, 1071, 535, 0, 4957, 4958, 3, 1069, 534, 0, 4958, 4959, 3, 1061, 530, 0, 4959, 4960, 3, 1099, 549, 0, 4960, 4961, 3, 1101, 550, 0, 4961, 4962, 3, 1095, 547, 0, 4962, 4963, 3, 1069, 534, 0, 4963, 4964, 3, 1097, 548, 0, 4964, 898, 1, 0, 0, 0, 4965, 4966, 3, 1061, 530, 0, 4966, 4967, 3, 1067, 533, 0, 4967, 4968, 3, 1067, 533, 0, 4968, 4969, 3, 1069, 534, 0, 4969, 4970, 3, 1067, 533, 0, 4970, 900, 1, 0, 0, 0, 4971, 4972, 3, 1097, 548, 0, 4972, 4973, 3, 1077, 538, 0, 4973, 4974, 3, 1087, 543, 0, 4974, 4975, 3, 1065, 532, 0, 4975, 4976, 3, 1069, 534, 0, 4976, 902, 1, 0, 0, 0, 4977, 4978, 3, 1097, 548, 0, 4978, 4979, 3, 1069, 534, 0, 4979, 4980, 3, 1065, 532, 0, 4980, 4981, 3, 1101, 550, 0, 4981, 4982, 3, 1095, 547, 0, 4982, 4983, 3, 1077, 538, 0, 4983, 4984, 3, 1099, 549, 0, 4984, 4985, 3, 1109, 554, 0, 4985, 904, 1, 0, 0, 0, 4986, 4987, 3, 1095, 547, 0, 4987, 4988, 3, 1089, 544, 0, 4988, 4989, 3, 1083, 541, 0, 4989, 4990, 3, 1069, 534, 0, 4990, 906, 1, 0, 0, 0, 4991, 4992, 3, 1095, 547, 0, 4992, 4993, 3, 1089, 544, 0, 4993, 4994, 3, 1083, 541, 0, 4994, 4995, 3, 1069, 534, 0, 4995, 4996, 3, 1097, 548, 0, 4996, 908, 1, 0, 0, 0, 4997, 4998, 3, 1073, 536, 0, 4998, 4999, 3, 1095, 547, 0, 4999, 5000, 3, 1061, 530, 0, 5000, 5001, 3, 1087, 543, 0, 5001, 5002, 3, 1099, 549, 0, 5002, 910, 1, 0, 0, 0, 5003, 5004, 3, 1095, 547, 0, 5004, 5005, 3, 1069, 534, 0, 5005, 5006, 3, 1103, 551, 0, 5006, 5007, 3, 1089, 544, 0, 5007, 5008, 3, 1081, 540, 0, 5008, 5009, 3, 1069, 534, 0, 5009, 912, 1, 0, 0, 0, 5010, 5011, 3, 1091, 545, 0, 5011, 5012, 3, 1095, 547, 0, 5012, 5013, 3, 1089, 544, 0, 5013, 5014, 3, 1067, 533, 0, 5014, 5015, 3, 1101, 550, 0, 5015, 5016, 3, 1065, 532, 0, 5016, 5017, 3, 1099, 549, 0, 5017, 5018, 3, 1077, 538, 0, 5018, 5019, 3, 1089, 544, 0, 5019, 5020, 3, 1087, 543, 0, 5020, 914, 1, 0, 0, 0, 5021, 5022, 3, 1091, 545, 0, 5022, 5023, 3, 1095, 547, 0, 5023, 5024, 3, 1089, 544, 0, 5024, 5025, 3, 1099, 549, 0, 5025, 5026, 3, 1089, 544, 0, 5026, 5027, 3, 1099, 549, 0, 5027, 5028, 3, 1109, 554, 0, 5028, 5029, 3, 1091, 545, 0, 5029, 5030, 3, 1069, 534, 0, 5030, 916, 1, 0, 0, 0, 5031, 5032, 3, 1085, 542, 0, 5032, 5033, 3, 1061, 530, 0, 5033, 5034, 3, 1087, 543, 0, 5034, 5035, 3, 1061, 530, 0, 5035, 5036, 3, 1073, 536, 0, 5036, 5037, 3, 1069, 534, 0, 5037, 918, 1, 0, 0, 0, 5038, 5039, 3, 1067, 533, 0, 5039, 5040, 3, 1069, 534, 0, 5040, 5041, 3, 1085, 542, 0, 5041, 5042, 3, 1089, 544, 0, 5042, 920, 1, 0, 0, 0, 5043, 5044, 3, 1085, 542, 0, 5044, 5045, 3, 1061, 530, 0, 5045, 5046, 3, 1099, 549, 0, 5046, 5047, 3, 1095, 547, 0, 5047, 5048, 3, 1077, 538, 0, 5048, 5049, 3, 1107, 553, 0, 5049, 922, 1, 0, 0, 0, 5050, 5051, 3, 1061, 530, 0, 5051, 5052, 3, 1091, 545, 0, 5052, 5053, 3, 1091, 545, 0, 5053, 5054, 3, 1083, 541, 0, 5054, 5055, 3, 1109, 554, 0, 5055, 924, 1, 0, 0, 0, 5056, 5057, 3, 1061, 530, 0, 5057, 5058, 3, 1065, 532, 0, 5058, 5059, 3, 1065, 532, 0, 5059, 5060, 3, 1069, 534, 0, 5060, 5061, 3, 1097, 548, 0, 5061, 5062, 3, 1097, 548, 0, 5062, 926, 1, 0, 0, 0, 5063, 5064, 3, 1083, 541, 0, 5064, 5065, 3, 1069, 534, 0, 5065, 5066, 3, 1103, 551, 0, 5066, 5067, 3, 1069, 534, 0, 5067, 5068, 3, 1083, 541, 0, 5068, 928, 1, 0, 0, 0, 5069, 5070, 3, 1101, 550, 0, 5070, 5071, 3, 1097, 548, 0, 5071, 5072, 3, 1069, 534, 0, 5072, 5073, 3, 1095, 547, 0, 5073, 930, 1, 0, 0, 0, 5074, 5075, 3, 1099, 549, 0, 5075, 5076, 3, 1061, 530, 0, 5076, 5077, 3, 1097, 548, 0, 5077, 5078, 3, 1081, 540, 0, 5078, 932, 1, 0, 0, 0, 5079, 5080, 3, 1067, 533, 0, 5080, 5081, 3, 1069, 534, 0, 5081, 5082, 3, 1065, 532, 0, 5082, 5083, 3, 1077, 538, 0, 5083, 5084, 3, 1097, 548, 0, 5084, 5085, 3, 1077, 538, 0, 5085, 5086, 3, 1089, 544, 0, 5086, 5087, 3, 1087, 543, 0, 5087, 934, 1, 0, 0, 0, 5088, 5089, 3, 1097, 548, 0, 5089, 5090, 3, 1091, 545, 0, 5090, 5091, 3, 1083, 541, 0, 5091, 5092, 3, 1077, 538, 0, 5092, 5093, 3, 1099, 549, 0, 5093, 936, 1, 0, 0, 0, 5094, 5095, 3, 1089, 544, 0, 5095, 5096, 3, 1101, 550, 0, 5096, 5097, 3, 1099, 549, 0, 5097, 5098, 3, 1065, 532, 0, 5098, 5099, 3, 1089, 544, 0, 5099, 5100, 3, 1085, 542, 0, 5100, 5101, 3, 1069, 534, 0, 5101, 5102, 3, 1097, 548, 0, 5102, 938, 1, 0, 0, 0, 5103, 5104, 3, 1099, 549, 0, 5104, 5105, 3, 1061, 530, 0, 5105, 5106, 3, 1095, 547, 0, 5106, 5107, 3, 1073, 536, 0, 5107, 5108, 3, 1069, 534, 0, 5108, 5109, 3, 1099, 549, 0, 5109, 5110, 3, 1077, 538, 0, 5110, 5111, 3, 1087, 543, 0, 5111, 5112, 3, 1073, 536, 0, 5112, 940, 1, 0, 0, 0, 5113, 5114, 3, 1087, 543, 0, 5114, 5115, 3, 1089, 544, 0, 5115, 5116, 3, 1099, 549, 0, 5116, 5117, 3, 1077, 538, 0, 5117, 5118, 3, 1071, 535, 0, 5118, 5119, 3, 1077, 538, 0, 5119, 5120, 3, 1065, 532, 0, 5120, 5121, 3, 1061, 530, 0, 5121, 5122, 3, 1099, 549, 0, 5122, 5123, 3, 1077, 538, 0, 5123, 5124, 3, 1089, 544, 0, 5124, 5125, 3, 1087, 543, 0, 5125, 942, 1, 0, 0, 0, 5126, 5127, 3, 1099, 549, 0, 5127, 5128, 3, 1077, 538, 0, 5128, 5129, 3, 1085, 542, 0, 5129, 5130, 3, 1069, 534, 0, 5130, 5131, 3, 1095, 547, 0, 5131, 944, 1, 0, 0, 0, 5132, 5133, 3, 1079, 539, 0, 5133, 5134, 3, 1101, 550, 0, 5134, 5135, 3, 1085, 542, 0, 5135, 5136, 3, 1091, 545, 0, 5136, 946, 1, 0, 0, 0, 5137, 5138, 3, 1067, 533, 0, 5138, 5139, 3, 1101, 550, 0, 5139, 5140, 3, 1069, 534, 0, 5140, 948, 1, 0, 0, 0, 5141, 5142, 3, 1089, 544, 0, 5142, 5143, 3, 1103, 551, 0, 5143, 5144, 3, 1069, 534, 0, 5144, 5145, 3, 1095, 547, 0, 5145, 5146, 3, 1103, 551, 0, 5146, 5147, 3, 1077, 538, 0, 5147, 5148, 3, 1069, 534, 0, 5148, 5149, 3, 1105, 552, 0, 5149, 950, 1, 0, 0, 0, 5150, 5151, 3, 1067, 533, 0, 5151, 5152, 3, 1061, 530, 0, 5152, 5153, 3, 1099, 549, 0, 5153, 5154, 3, 1069, 534, 0, 5154, 952, 1, 0, 0, 0, 5155, 5156, 3, 1091, 545, 0, 5156, 5157, 3, 1061, 530, 0, 5157, 5158, 3, 1095, 547, 0, 5158, 5159, 3, 1061, 530, 0, 5159, 5160, 3, 1083, 541, 0, 5160, 5161, 3, 1083, 541, 0, 5161, 5162, 3, 1069, 534, 0, 5162, 5163, 3, 1083, 541, 0, 5163, 954, 1, 0, 0, 0, 5164, 5165, 3, 1105, 552, 0, 5165, 5166, 3, 1061, 530, 0, 5166, 5167, 3, 1077, 538, 0, 5167, 5168, 3, 1099, 549, 0, 5168, 956, 1, 0, 0, 0, 5169, 5170, 3, 1061, 530, 0, 5170, 5171, 3, 1087, 543, 0, 5171, 5172, 3, 1087, 543, 0, 5172, 5173, 3, 1089, 544, 0, 5173, 5174, 3, 1099, 549, 0, 5174, 5175, 3, 1061, 530, 0, 5175, 5176, 3, 1099, 549, 0, 5176, 5177, 3, 1077, 538, 0, 5177, 5178, 3, 1089, 544, 0, 5178, 5179, 3, 1087, 543, 0, 5179, 958, 1, 0, 0, 0, 5180, 5181, 3, 1063, 531, 0, 5181, 5182, 3, 1089, 544, 0, 5182, 5183, 3, 1101, 550, 0, 5183, 5184, 3, 1087, 543, 0, 5184, 5185, 3, 1067, 533, 0, 5185, 5186, 3, 1061, 530, 0, 5186, 5187, 3, 1095, 547, 0, 5187, 5188, 3, 1109, 554, 0, 5188, 960, 1, 0, 0, 0, 5189, 5190, 3, 1077, 538, 0, 5190, 5191, 3, 1087, 543, 0, 5191, 5192, 3, 1099, 549, 0, 5192, 5193, 3, 1069, 534, 0, 5193, 5194, 3, 1095, 547, 0, 5194, 5195, 3, 1095, 547, 0, 5195, 5196, 3, 1101, 550, 0, 5196, 5197, 3, 1091, 545, 0, 5197, 5198, 3, 1099, 549, 0, 5198, 5199, 3, 1077, 538, 0, 5199, 5200, 3, 1087, 543, 0, 5200, 5201, 3, 1073, 536, 0, 5201, 962, 1, 0, 0, 0, 5202, 5203, 3, 1087, 543, 0, 5203, 5204, 3, 1089, 544, 0, 5204, 5205, 3, 1087, 543, 0, 5205, 964, 1, 0, 0, 0, 5206, 5207, 3, 1085, 542, 0, 5207, 5208, 3, 1101, 550, 0, 5208, 5209, 3, 1083, 541, 0, 5209, 5210, 3, 1099, 549, 0, 5210, 5211, 3, 1077, 538, 0, 5211, 966, 1, 0, 0, 0, 5212, 5213, 3, 1063, 531, 0, 5213, 5214, 3, 1109, 554, 0, 5214, 968, 1, 0, 0, 0, 5215, 5216, 3, 1095, 547, 0, 5216, 5217, 3, 1069, 534, 0, 5217, 5218, 3, 1061, 530, 0, 5218, 5219, 3, 1067, 533, 0, 5219, 970, 1, 0, 0, 0, 5220, 5221, 3, 1105, 552, 0, 5221, 5222, 3, 1095, 547, 0, 5222, 5223, 3, 1077, 538, 0, 5223, 5224, 3, 1099, 549, 0, 5224, 5225, 3, 1069, 534, 0, 5225, 972, 1, 0, 0, 0, 5226, 5227, 3, 1067, 533, 0, 5227, 5228, 3, 1069, 534, 0, 5228, 5229, 3, 1097, 548, 0, 5229, 5230, 3, 1065, 532, 0, 5230, 5231, 3, 1095, 547, 0, 5231, 5232, 3, 1077, 538, 0, 5232, 5233, 3, 1091, 545, 0, 5233, 5234, 3, 1099, 549, 0, 5234, 5235, 3, 1077, 538, 0, 5235, 5236, 3, 1089, 544, 0, 5236, 5237, 3, 1087, 543, 0, 5237, 974, 1, 0, 0, 0, 5238, 5239, 3, 1067, 533, 0, 5239, 5240, 3, 1077, 538, 0, 5240, 5241, 3, 1097, 548, 0, 5241, 5242, 3, 1091, 545, 0, 5242, 5243, 3, 1083, 541, 0, 5243, 5244, 3, 1061, 530, 0, 5244, 5245, 3, 1109, 554, 0, 5245, 976, 1, 0, 0, 0, 5246, 5247, 3, 1089, 544, 0, 5247, 5248, 3, 1071, 535, 0, 5248, 5249, 3, 1071, 535, 0, 5249, 978, 1, 0, 0, 0, 5250, 5251, 3, 1101, 550, 0, 5251, 5252, 3, 1097, 548, 0, 5252, 5253, 3, 1069, 534, 0, 5253, 5254, 3, 1095, 547, 0, 5254, 5255, 3, 1097, 548, 0, 5255, 980, 1, 0, 0, 0, 5256, 5257, 5, 60, 0, 0, 5257, 5261, 5, 62, 0, 0, 5258, 5259, 5, 33, 0, 0, 5259, 5261, 5, 61, 0, 0, 5260, 5256, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5261, 982, 1, 0, 0, 0, 5262, 5263, 5, 60, 0, 0, 5263, 5264, 5, 61, 0, 0, 5264, 984, 1, 0, 0, 0, 5265, 5266, 5, 62, 0, 0, 5266, 5267, 5, 61, 0, 0, 5267, 986, 1, 0, 0, 0, 5268, 5269, 5, 61, 0, 0, 5269, 988, 1, 0, 0, 0, 5270, 5271, 5, 60, 0, 0, 5271, 990, 1, 0, 0, 0, 5272, 5273, 5, 62, 0, 0, 5273, 992, 1, 0, 0, 0, 5274, 5275, 5, 43, 0, 0, 5275, 994, 1, 0, 0, 0, 5276, 5277, 5, 45, 0, 0, 5277, 996, 1, 0, 0, 0, 5278, 5279, 5, 42, 0, 0, 5279, 998, 1, 0, 0, 0, 5280, 5281, 5, 47, 0, 0, 5281, 1000, 1, 0, 0, 0, 5282, 5283, 5, 37, 0, 0, 5283, 1002, 1, 0, 0, 0, 5284, 5285, 3, 1085, 542, 0, 5285, 5286, 3, 1089, 544, 0, 5286, 5287, 3, 1067, 533, 0, 5287, 1004, 1, 0, 0, 0, 5288, 5289, 3, 1067, 533, 0, 5289, 5290, 3, 1077, 538, 0, 5290, 5291, 3, 1103, 551, 0, 5291, 1006, 1, 0, 0, 0, 5292, 5293, 5, 59, 0, 0, 5293, 1008, 1, 0, 0, 0, 5294, 5295, 5, 44, 0, 0, 5295, 1010, 1, 0, 0, 0, 5296, 5297, 5, 46, 0, 0, 5297, 1012, 1, 0, 0, 0, 5298, 5299, 5, 40, 0, 0, 5299, 1014, 1, 0, 0, 0, 5300, 5301, 5, 41, 0, 0, 5301, 1016, 1, 0, 0, 0, 5302, 5303, 5, 123, 0, 0, 5303, 1018, 1, 0, 0, 0, 5304, 5305, 5, 125, 0, 0, 5305, 1020, 1, 0, 0, 0, 5306, 5307, 5, 91, 0, 0, 5307, 1022, 1, 0, 0, 0, 5308, 5309, 5, 93, 0, 0, 5309, 1024, 1, 0, 0, 0, 5310, 5311, 5, 58, 0, 0, 5311, 1026, 1, 0, 0, 0, 5312, 5313, 5, 64, 0, 0, 5313, 1028, 1, 0, 0, 0, 5314, 5315, 5, 124, 0, 0, 5315, 1030, 1, 0, 0, 0, 5316, 5317, 5, 58, 0, 0, 5317, 5318, 5, 58, 0, 0, 5318, 1032, 1, 0, 0, 0, 5319, 5320, 5, 45, 0, 0, 5320, 5321, 5, 62, 0, 0, 5321, 1034, 1, 0, 0, 0, 5322, 5323, 5, 63, 0, 0, 5323, 1036, 1, 0, 0, 0, 5324, 5325, 5, 35, 0, 0, 5325, 1038, 1, 0, 0, 0, 5326, 5327, 5, 91, 0, 0, 5327, 5328, 5, 37, 0, 0, 5328, 5332, 1, 0, 0, 0, 5329, 5331, 9, 0, 0, 0, 5330, 5329, 1, 0, 0, 0, 5331, 5334, 1, 0, 0, 0, 5332, 5333, 1, 0, 0, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5332, 1, 0, 0, 0, 5335, 5336, 5, 37, 0, 0, 5336, 5337, 5, 93, 0, 0, 5337, 1040, 1, 0, 0, 0, 5338, 5346, 5, 39, 0, 0, 5339, 5345, 8, 2, 0, 0, 5340, 5341, 5, 92, 0, 0, 5341, 5345, 9, 0, 0, 0, 5342, 5343, 5, 39, 0, 0, 5343, 5345, 5, 39, 0, 0, 5344, 5339, 1, 0, 0, 0, 5344, 5340, 1, 0, 0, 0, 5344, 5342, 1, 0, 0, 0, 5345, 5348, 1, 0, 0, 0, 5346, 5344, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5349, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5349, 5350, 5, 39, 0, 0, 5350, 1042, 1, 0, 0, 0, 5351, 5352, 5, 36, 0, 0, 5352, 5353, 5, 36, 0, 0, 5353, 5357, 1, 0, 0, 0, 5354, 5356, 9, 0, 0, 0, 5355, 5354, 1, 0, 0, 0, 5356, 5359, 1, 0, 0, 0, 5357, 5358, 1, 0, 0, 0, 5357, 5355, 1, 0, 0, 0, 5358, 5360, 1, 0, 0, 0, 5359, 5357, 1, 0, 0, 0, 5360, 5361, 5, 36, 0, 0, 5361, 5362, 5, 36, 0, 0, 5362, 1044, 1, 0, 0, 0, 5363, 5365, 5, 45, 0, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5367, 1, 0, 0, 0, 5366, 5368, 3, 1059, 529, 0, 5367, 5366, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 5377, 1, 0, 0, 0, 5371, 5373, 5, 46, 0, 0, 5372, 5374, 3, 1059, 529, 0, 5373, 5372, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5371, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5388, 1, 0, 0, 0, 5379, 5381, 7, 3, 0, 0, 5380, 5382, 7, 4, 0, 0, 5381, 5380, 1, 0, 0, 0, 5381, 5382, 1, 0, 0, 0, 5382, 5384, 1, 0, 0, 0, 5383, 5385, 3, 1059, 529, 0, 5384, 5383, 1, 0, 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5384, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5389, 1, 0, 0, 0, 5388, 5379, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 1046, 1, 0, 0, 0, 5390, 5392, 5, 36, 0, 0, 5391, 5393, 3, 1057, 528, 0, 5392, 5391, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 1048, 1, 0, 0, 0, 5396, 5400, 3, 1055, 527, 0, 5397, 5399, 3, 1057, 528, 0, 5398, 5397, 1, 0, 0, 0, 5399, 5402, 1, 0, 0, 0, 5400, 5398, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 1050, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5403, 5411, 3, 1055, 527, 0, 5404, 5406, 3, 1057, 528, 0, 5405, 5404, 1, 0, 0, 0, 5406, 5409, 1, 0, 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5410, 1, 0, 0, 0, 5409, 5407, 1, 0, 0, 0, 5410, 5412, 5, 45, 0, 0, 5411, 5407, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5411, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5418, 1, 0, 0, 0, 5415, 5417, 3, 1057, 528, 0, 5416, 5415, 1, 0, 0, 0, 5417, 5420, 1, 0, 0, 0, 5418, 5416, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 1052, 1, 0, 0, 0, 5420, 5418, 1, 0, 0, 0, 5421, 5425, 5, 34, 0, 0, 5422, 5424, 8, 5, 0, 0, 5423, 5422, 1, 0, 0, 0, 5424, 5427, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5428, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5428, 5438, 5, 34, 0, 0, 5429, 5433, 5, 96, 0, 0, 5430, 5432, 8, 6, 0, 0, 5431, 5430, 1, 0, 0, 0, 5432, 5435, 1, 0, 0, 0, 5433, 5431, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5436, 1, 0, 0, 0, 5435, 5433, 1, 0, 0, 0, 5436, 5438, 5, 96, 0, 0, 5437, 5421, 1, 0, 0, 0, 5437, 5429, 1, 0, 0, 0, 5438, 1054, 1, 0, 0, 0, 5439, 5440, 7, 7, 0, 0, 5440, 1056, 1, 0, 0, 0, 5441, 5442, 7, 8, 0, 0, 5442, 1058, 1, 0, 0, 0, 5443, 5444, 7, 9, 0, 0, 5444, 1060, 1, 0, 0, 0, 5445, 5446, 7, 10, 0, 0, 5446, 1062, 1, 0, 0, 0, 5447, 5448, 7, 11, 0, 0, 5448, 1064, 1, 0, 0, 0, 5449, 5450, 7, 12, 0, 0, 5450, 1066, 1, 0, 0, 0, 5451, 5452, 7, 13, 0, 0, 5452, 1068, 1, 0, 0, 0, 5453, 5454, 7, 3, 0, 0, 5454, 1070, 1, 0, 0, 0, 5455, 5456, 7, 14, 0, 0, 5456, 1072, 1, 0, 0, 0, 5457, 5458, 7, 15, 0, 0, 5458, 1074, 1, 0, 0, 0, 5459, 5460, 7, 16, 0, 0, 5460, 1076, 1, 0, 0, 0, 5461, 5462, 7, 17, 0, 0, 5462, 1078, 1, 0, 0, 0, 5463, 5464, 7, 18, 0, 0, 5464, 1080, 1, 0, 0, 0, 5465, 5466, 7, 19, 0, 0, 5466, 1082, 1, 0, 0, 0, 5467, 5468, 7, 20, 0, 0, 5468, 1084, 1, 0, 0, 0, 5469, 5470, 7, 21, 0, 0, 5470, 1086, 1, 0, 0, 0, 5471, 5472, 7, 22, 0, 0, 5472, 1088, 1, 0, 0, 0, 5473, 5474, 7, 23, 0, 0, 5474, 1090, 1, 0, 0, 0, 5475, 5476, 7, 24, 0, 0, 5476, 1092, 1, 0, 0, 0, 5477, 5478, 7, 25, 0, 0, 5478, 1094, 1, 0, 0, 0, 5479, 5480, 7, 26, 0, 0, 5480, 1096, 1, 0, 0, 0, 5481, 5482, 7, 27, 0, 0, 5482, 1098, 1, 0, 0, 0, 5483, 5484, 7, 28, 0, 0, 5484, 1100, 1, 0, 0, 0, 5485, 5486, 7, 29, 0, 0, 5486, 1102, 1, 0, 0, 0, 5487, 5488, 7, 30, 0, 0, 5488, 1104, 1, 0, 0, 0, 5489, 5490, 7, 31, 0, 0, 5490, 1106, 1, 0, 0, 0, 5491, 5492, 7, 32, 0, 0, 5492, 1108, 1, 0, 0, 0, 5493, 5494, 7, 33, 0, 0, 5494, 1110, 1, 0, 0, 0, 5495, 5496, 7, 34, 0, 0, 5496, 1112, 1, 0, 0, 0, 48, 0, 1116, 1127, 1139, 1153, 1163, 1171, 1183, 1196, 1211, 1224, 1236, 1266, 1279, 1293, 1301, 1356, 1367, 1375, 1384, 1448, 1459, 1466, 1473, 1531, 1827, 4666, 4675, 5260, 5332, 5344, 5346, 5357, 5364, 5369, 5375, 5377, 5381, 5386, 5388, 5394, 5400, 5407, 5413, 5418, 5425, 5433, 5437, 1, 6, 0, 0] \ No newline at end of file diff --git a/mdl/grammar/parser/MDLLexer.tokens b/mdl/grammar/parser/MDLLexer.tokens index c1962269..1c2ec91d 100644 --- a/mdl/grammar/parser/MDLLexer.tokens +++ b/mdl/grammar/parser/MDLLexer.tokens @@ -178,372 +178,376 @@ INPUTREFERENCESETSELECTOR=177 FILEINPUT=178 IMAGEINPUT=179 CUSTOMWIDGET=180 -TEXTFILTER=181 -NUMBERFILTER=182 -DROPDOWNFILTER=183 -DATEFILTER=184 -FILTER=185 -WIDGET=186 -WIDGETS=187 -CAPTION=188 -ICON=189 -TOOLTIP=190 -DATASOURCE=191 -SOURCE_KW=192 -SELECTION=193 -FOOTER=194 -HEADER=195 -CONTENT=196 -RENDERMODE=197 -BINDS=198 -ATTR=199 -CONTENTPARAMS=200 -CAPTIONPARAMS=201 -PARAMS=202 -VARIABLES_KW=203 -DESKTOPWIDTH=204 -TABLETWIDTH=205 -PHONEWIDTH=206 -CLASS=207 -STYLE=208 -BUTTONSTYLE=209 -DESIGN=210 -PROPERTIES=211 -DESIGNPROPERTIES=212 -STYLING=213 -CLEAR=214 -WIDTH=215 -HEIGHT=216 -AUTOFILL=217 -URL=218 -FOLDER=219 -PASSING=220 -CONTEXT=221 -EDITABLE=222 -READONLY=223 -ATTRIBUTES=224 -FILTERTYPE=225 -IMAGE=226 -COLLECTION=227 -STATICIMAGE=228 -DYNAMICIMAGE=229 -CUSTOMCONTAINER=230 -GROUPBOX=231 -VISIBLE=232 -SAVECHANGES=233 -SAVE_CHANGES=234 -CANCEL_CHANGES=235 -CLOSE_PAGE=236 -SHOW_PAGE=237 -DELETE_ACTION=238 -DELETE_OBJECT=239 -CREATE_OBJECT=240 -CALL_MICROFLOW=241 -CALL_NANOFLOW=242 -OPEN_LINK=243 -SIGN_OUT=244 -CANCEL=245 -PRIMARY=246 -SUCCESS=247 -DANGER=248 -WARNING_STYLE=249 -INFO_STYLE=250 -TEMPLATE=251 -ONCLICK=252 -ONCHANGE=253 -TABINDEX=254 -H1=255 -H2=256 -H3=257 -H4=258 -H5=259 -H6=260 -PARAGRAPH=261 -STRING_TYPE=262 -INTEGER_TYPE=263 -LONG_TYPE=264 -DECIMAL_TYPE=265 -BOOLEAN_TYPE=266 -DATETIME_TYPE=267 -DATE_TYPE=268 -AUTONUMBER_TYPE=269 -BINARY_TYPE=270 -HASHEDSTRING_TYPE=271 -CURRENCY_TYPE=272 -FLOAT_TYPE=273 -STRINGTEMPLATE_TYPE=274 -ENUM_TYPE=275 -COUNT=276 -SUM=277 -AVG=278 -MIN=279 -MAX=280 -LENGTH=281 -TRIM=282 -COALESCE=283 -CAST=284 -AND=285 -OR=286 -NOT=287 -NULL=288 -IN=289 -BETWEEN=290 -LIKE=291 -MATCH=292 -EXISTS=293 -UNIQUE=294 -DEFAULT=295 -TRUE=296 -FALSE=297 -VALIDATION=298 -FEEDBACK=299 -RULE=300 -REQUIRED=301 -ERROR=302 -RAISE=303 -RANGE=304 -REGEX=305 -PATTERN=306 -EXPRESSION=307 -XPATH=308 -CONSTRAINT=309 -CALCULATED=310 -REST=311 -SERVICE=312 -SERVICES=313 -ODATA=314 -BASE=315 -AUTH=316 -AUTHENTICATION=317 -BASIC=318 -NOTHING=319 -OAUTH=320 -OPERATION=321 -METHOD=322 -PATH=323 -TIMEOUT=324 -BODY=325 -RESPONSE=326 -REQUEST=327 -SEND=328 -JSON=329 -XML=330 -STATUS=331 -FILE_KW=332 -VERSION=333 -GET=334 -POST=335 -PUT=336 -PATCH=337 -API=338 -CLIENT=339 -CLIENTS=340 -PUBLISH=341 -PUBLISHED=342 -EXPOSE=343 -CONTRACT=344 -NAMESPACE_KW=345 -SESSION=346 -GUEST=347 -PAGING=348 -NOT_SUPPORTED=349 -USERNAME=350 -PASSWORD=351 -CONNECTION=352 -DATABASE=353 -QUERY=354 -MAP=355 -MAPPING=356 -IMPORT=357 -INTO=358 -BATCH=359 -LINK=360 -EXPORT=361 -GENERATE=362 -CONNECTOR=363 -EXEC=364 -TABLES=365 -VIEWS=366 -EXPOSED=367 -PARAMETER=368 -PARAMETERS=369 -HEADERS=370 -NAVIGATION=371 -MENU_KW=372 -HOMES=373 -HOME=374 -LOGIN=375 -FOUND=376 -MODULES=377 -ENTITIES=378 -ASSOCIATIONS=379 -MICROFLOWS=380 -NANOFLOWS=381 -WORKFLOWS=382 -ENUMERATIONS=383 -CONSTANTS=384 -CONNECTIONS=385 -DEFINE=386 -FRAGMENT=387 -FRAGMENTS=388 -LANGUAGES=389 -INSERT=390 -BEFORE=391 -AFTER=392 -UPDATE=393 -REFRESH=394 -CHECK=395 -BUILD=396 -EXECUTE=397 -SCRIPT=398 -LINT=399 -RULES=400 -TEXT=401 -SARIF=402 -MESSAGE=403 -MESSAGES=404 -CHANNELS=405 -COMMENT=406 -CUSTOM_NAME_MAP=407 -CATALOG=408 -FORCE=409 -BACKGROUND=410 -CALLERS=411 -CALLEES=412 -REFERENCES=413 -TRANSITIVE=414 -IMPACT=415 -DEPTH=416 -STRUCTURE=417 -STRUCTURES=418 -TYPE=419 -VALUE=420 -VALUES=421 -SINGLE=422 -MULTIPLE=423 -NONE=424 -BOTH=425 -TO=426 -OF=427 -OVER=428 -FOR=429 -REPLACE=430 -MEMBERS=431 -ATTRIBUTE_NAME=432 -FORMAT=433 -SQL=434 -WITHOUT=435 -DRY=436 -RUN=437 -WIDGETTYPE=438 -V3=439 -BUSINESS=440 -EVENT=441 -SUBSCRIBE=442 -SETTINGS=443 -CONFIGURATION=444 -FEATURES=445 -ADDED=446 -SINCE=447 -SECURITY=448 -ROLE=449 -ROLES=450 -GRANT=451 -REVOKE=452 -PRODUCTION=453 -PROTOTYPE=454 -MANAGE=455 -DEMO=456 -MATRIX=457 -APPLY=458 -ACCESS=459 -LEVEL=460 -USER=461 -TASK=462 -DECISION=463 -SPLIT=464 -OUTCOMES=465 -TARGETING=466 -NOTIFICATION=467 -TIMER=468 -JUMP=469 -DUE=470 -OVERVIEW=471 -DATE=472 -PARALLEL=473 -WAIT=474 -ANNOTATION=475 -BOUNDARY=476 -INTERRUPTING=477 -NON=478 -MULTI=479 -BY=480 -READ=481 -WRITE=482 -DESCRIPTION=483 -DISPLAY=484 -OFF=485 -USERS=486 -NOT_EQUALS=487 -LESS_THAN_OR_EQUAL=488 -GREATER_THAN_OR_EQUAL=489 -EQUALS=490 -LESS_THAN=491 -GREATER_THAN=492 -PLUS=493 -MINUS=494 -STAR=495 -SLASH=496 -PERCENT=497 -MOD=498 -DIV=499 -SEMICOLON=500 -COMMA=501 -DOT=502 -LPAREN=503 -RPAREN=504 -LBRACE=505 -RBRACE=506 -LBRACKET=507 -RBRACKET=508 -COLON=509 -AT=510 -PIPE=511 -DOUBLE_COLON=512 -ARROW=513 -QUESTION=514 -HASH=515 -MENDIX_TOKEN=516 -STRING_LITERAL=517 -DOLLAR_STRING=518 -NUMBER_LITERAL=519 -VARIABLE=520 -IDENTIFIER=521 -HYPHENATED_ID=522 -QUOTED_IDENTIFIER=523 -'<='=488 -'>='=489 -'='=490 -'<'=491 -'>'=492 -'+'=493 -'-'=494 -'*'=495 -'/'=496 -'%'=497 -';'=500 -','=501 -'.'=502 -'('=503 -')'=504 -'{'=505 -'}'=506 -'['=507 -']'=508 -':'=509 -'@'=510 -'|'=511 -'::'=512 -'->'=513 -'?'=514 -'#'=515 +PLUGGABLEWIDGET=181 +TEXTFILTER=182 +NUMBERFILTER=183 +DROPDOWNFILTER=184 +DATEFILTER=185 +DROPDOWNSORT=186 +FILTER=187 +WIDGET=188 +WIDGETS=189 +CAPTION=190 +ICON=191 +TOOLTIP=192 +DATASOURCE=193 +SOURCE_KW=194 +SELECTION=195 +FOOTER=196 +HEADER=197 +CONTENT=198 +RENDERMODE=199 +BINDS=200 +ATTR=201 +CONTENTPARAMS=202 +CAPTIONPARAMS=203 +PARAMS=204 +VARIABLES_KW=205 +DESKTOPWIDTH=206 +TABLETWIDTH=207 +PHONEWIDTH=208 +CLASS=209 +STYLE=210 +BUTTONSTYLE=211 +DESIGN=212 +PROPERTIES=213 +DESIGNPROPERTIES=214 +STYLING=215 +CLEAR=216 +WIDTH=217 +HEIGHT=218 +AUTOFILL=219 +URL=220 +FOLDER=221 +PASSING=222 +CONTEXT=223 +EDITABLE=224 +READONLY=225 +ATTRIBUTES=226 +FILTERTYPE=227 +IMAGE=228 +COLLECTION=229 +STATICIMAGE=230 +DYNAMICIMAGE=231 +CUSTOMCONTAINER=232 +TABCONTAINER=233 +TABPAGE=234 +GROUPBOX=235 +VISIBLE=236 +SAVECHANGES=237 +SAVE_CHANGES=238 +CANCEL_CHANGES=239 +CLOSE_PAGE=240 +SHOW_PAGE=241 +DELETE_ACTION=242 +DELETE_OBJECT=243 +CREATE_OBJECT=244 +CALL_MICROFLOW=245 +CALL_NANOFLOW=246 +OPEN_LINK=247 +SIGN_OUT=248 +CANCEL=249 +PRIMARY=250 +SUCCESS=251 +DANGER=252 +WARNING_STYLE=253 +INFO_STYLE=254 +TEMPLATE=255 +ONCLICK=256 +ONCHANGE=257 +TABINDEX=258 +H1=259 +H2=260 +H3=261 +H4=262 +H5=263 +H6=264 +PARAGRAPH=265 +STRING_TYPE=266 +INTEGER_TYPE=267 +LONG_TYPE=268 +DECIMAL_TYPE=269 +BOOLEAN_TYPE=270 +DATETIME_TYPE=271 +DATE_TYPE=272 +AUTONUMBER_TYPE=273 +BINARY_TYPE=274 +HASHEDSTRING_TYPE=275 +CURRENCY_TYPE=276 +FLOAT_TYPE=277 +STRINGTEMPLATE_TYPE=278 +ENUM_TYPE=279 +COUNT=280 +SUM=281 +AVG=282 +MIN=283 +MAX=284 +LENGTH=285 +TRIM=286 +COALESCE=287 +CAST=288 +AND=289 +OR=290 +NOT=291 +NULL=292 +IN=293 +BETWEEN=294 +LIKE=295 +MATCH=296 +EXISTS=297 +UNIQUE=298 +DEFAULT=299 +TRUE=300 +FALSE=301 +VALIDATION=302 +FEEDBACK=303 +RULE=304 +REQUIRED=305 +ERROR=306 +RAISE=307 +RANGE=308 +REGEX=309 +PATTERN=310 +EXPRESSION=311 +XPATH=312 +CONSTRAINT=313 +CALCULATED=314 +REST=315 +SERVICE=316 +SERVICES=317 +ODATA=318 +BASE=319 +AUTH=320 +AUTHENTICATION=321 +BASIC=322 +NOTHING=323 +OAUTH=324 +OPERATION=325 +METHOD=326 +PATH=327 +TIMEOUT=328 +BODY=329 +RESPONSE=330 +REQUEST=331 +SEND=332 +JSON=333 +XML=334 +STATUS=335 +FILE_KW=336 +VERSION=337 +GET=338 +POST=339 +PUT=340 +PATCH=341 +API=342 +CLIENT=343 +CLIENTS=344 +PUBLISH=345 +PUBLISHED=346 +EXPOSE=347 +CONTRACT=348 +NAMESPACE_KW=349 +SESSION=350 +GUEST=351 +PAGING=352 +NOT_SUPPORTED=353 +USERNAME=354 +PASSWORD=355 +CONNECTION=356 +DATABASE=357 +QUERY=358 +MAP=359 +MAPPING=360 +IMPORT=361 +INTO=362 +BATCH=363 +LINK=364 +EXPORT=365 +GENERATE=366 +CONNECTOR=367 +EXEC=368 +TABLES=369 +VIEWS=370 +EXPOSED=371 +PARAMETER=372 +PARAMETERS=373 +HEADERS=374 +NAVIGATION=375 +MENU_KW=376 +HOMES=377 +HOME=378 +LOGIN=379 +FOUND=380 +MODULES=381 +ENTITIES=382 +ASSOCIATIONS=383 +MICROFLOWS=384 +NANOFLOWS=385 +WORKFLOWS=386 +ENUMERATIONS=387 +CONSTANTS=388 +CONNECTIONS=389 +DEFINE=390 +FRAGMENT=391 +FRAGMENTS=392 +LANGUAGES=393 +INSERT=394 +BEFORE=395 +AFTER=396 +UPDATE=397 +REFRESH=398 +CHECK=399 +BUILD=400 +EXECUTE=401 +SCRIPT=402 +LINT=403 +RULES=404 +TEXT=405 +SARIF=406 +MESSAGE=407 +MESSAGES=408 +CHANNELS=409 +COMMENT=410 +CUSTOM_NAME_MAP=411 +CATALOG=412 +FORCE=413 +BACKGROUND=414 +CALLERS=415 +CALLEES=416 +REFERENCES=417 +TRANSITIVE=418 +IMPACT=419 +DEPTH=420 +STRUCTURE=421 +STRUCTURES=422 +TYPE=423 +VALUE=424 +VALUES=425 +SINGLE=426 +MULTIPLE=427 +NONE=428 +BOTH=429 +TO=430 +OF=431 +OVER=432 +FOR=433 +REPLACE=434 +MEMBERS=435 +ATTRIBUTE_NAME=436 +FORMAT=437 +SQL=438 +WITHOUT=439 +DRY=440 +RUN=441 +WIDGETTYPE=442 +V3=443 +BUSINESS=444 +EVENT=445 +SUBSCRIBE=446 +SETTINGS=447 +CONFIGURATION=448 +FEATURES=449 +ADDED=450 +SINCE=451 +SECURITY=452 +ROLE=453 +ROLES=454 +GRANT=455 +REVOKE=456 +PRODUCTION=457 +PROTOTYPE=458 +MANAGE=459 +DEMO=460 +MATRIX=461 +APPLY=462 +ACCESS=463 +LEVEL=464 +USER=465 +TASK=466 +DECISION=467 +SPLIT=468 +OUTCOMES=469 +TARGETING=470 +NOTIFICATION=471 +TIMER=472 +JUMP=473 +DUE=474 +OVERVIEW=475 +DATE=476 +PARALLEL=477 +WAIT=478 +ANNOTATION=479 +BOUNDARY=480 +INTERRUPTING=481 +NON=482 +MULTI=483 +BY=484 +READ=485 +WRITE=486 +DESCRIPTION=487 +DISPLAY=488 +OFF=489 +USERS=490 +NOT_EQUALS=491 +LESS_THAN_OR_EQUAL=492 +GREATER_THAN_OR_EQUAL=493 +EQUALS=494 +LESS_THAN=495 +GREATER_THAN=496 +PLUS=497 +MINUS=498 +STAR=499 +SLASH=500 +PERCENT=501 +MOD=502 +DIV=503 +SEMICOLON=504 +COMMA=505 +DOT=506 +LPAREN=507 +RPAREN=508 +LBRACE=509 +RBRACE=510 +LBRACKET=511 +RBRACKET=512 +COLON=513 +AT=514 +PIPE=515 +DOUBLE_COLON=516 +ARROW=517 +QUESTION=518 +HASH=519 +MENDIX_TOKEN=520 +STRING_LITERAL=521 +DOLLAR_STRING=522 +NUMBER_LITERAL=523 +VARIABLE=524 +IDENTIFIER=525 +HYPHENATED_ID=526 +QUOTED_IDENTIFIER=527 +'<='=492 +'>='=493 +'='=494 +'<'=495 +'>'=496 +'+'=497 +'-'=498 +'*'=499 +'/'=500 +'%'=501 +';'=504 +','=505 +'.'=506 +'('=507 +')'=508 +'{'=509 +'}'=510 +'['=511 +']'=512 +':'=513 +'@'=514 +'|'=515 +'::'=516 +'->'=517 +'?'=518 +'#'=519 diff --git a/mdl/grammar/parser/MDLParser.interp b/mdl/grammar/parser/MDLParser.interp index 2c401440..9a9893d6 100644 --- a/mdl/grammar/parser/MDLParser.interp +++ b/mdl/grammar/parser/MDLParser.interp @@ -487,6 +487,10 @@ null null null null +null +null +null +null '<=' '>=' '=' @@ -706,10 +710,12 @@ INPUTREFERENCESETSELECTOR FILEINPUT IMAGEINPUT CUSTOMWIDGET +PLUGGABLEWIDGET TEXTFILTER NUMBERFILTER DROPDOWNFILTER DATEFILTER +DROPDOWNSORT FILTER WIDGET WIDGETS @@ -756,6 +762,8 @@ COLLECTION STATICIMAGE DYNAMICIMAGE CUSTOMCONTAINER +TABCONTAINER +TABPAGE GROUPBOX VISIBLE SAVECHANGES @@ -1423,4 +1431,4 @@ keyword atn: -[4, 1, 523, 6156, 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, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 1, 0, 5, 0, 740, 8, 0, 10, 0, 12, 0, 743, 9, 0, 1, 0, 1, 0, 1, 1, 3, 1, 748, 8, 1, 1, 1, 1, 1, 1, 1, 3, 1, 753, 8, 1, 1, 1, 3, 1, 756, 8, 1, 1, 1, 3, 1, 759, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 768, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 776, 8, 3, 10, 3, 12, 3, 779, 9, 3, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 785, 8, 3, 10, 3, 12, 3, 788, 9, 3, 1, 3, 1, 3, 1, 3, 3, 3, 793, 8, 3, 3, 3, 795, 8, 3, 1, 3, 1, 3, 3, 3, 799, 8, 3, 1, 4, 3, 4, 802, 8, 4, 1, 4, 5, 4, 805, 8, 4, 10, 4, 12, 4, 808, 9, 4, 1, 4, 1, 4, 1, 4, 3, 4, 813, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 840, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 846, 8, 5, 11, 5, 12, 5, 847, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 854, 8, 5, 11, 5, 12, 5, 855, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 862, 8, 5, 11, 5, 12, 5, 863, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 870, 8, 5, 11, 5, 12, 5, 871, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 882, 8, 5, 10, 5, 12, 5, 885, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 895, 8, 5, 10, 5, 12, 5, 898, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 908, 8, 5, 11, 5, 12, 5, 909, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 920, 8, 5, 11, 5, 12, 5, 921, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 931, 8, 5, 11, 5, 12, 5, 932, 1, 5, 1, 5, 3, 5, 937, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 943, 8, 6, 10, 6, 12, 6, 946, 9, 6, 1, 6, 1, 6, 1, 6, 3, 6, 951, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 968, 8, 7, 1, 8, 1, 8, 3, 8, 972, 8, 8, 1, 8, 1, 8, 3, 8, 976, 8, 8, 1, 8, 1, 8, 3, 8, 980, 8, 8, 1, 8, 1, 8, 3, 8, 984, 8, 8, 1, 8, 1, 8, 3, 8, 988, 8, 8, 1, 8, 1, 8, 3, 8, 992, 8, 8, 3, 8, 994, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1005, 8, 9, 10, 9, 12, 9, 1008, 9, 9, 1, 9, 1, 9, 3, 9, 1012, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1024, 8, 9, 10, 9, 12, 9, 1027, 9, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1035, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1048, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1064, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 1071, 8, 13, 10, 13, 12, 13, 1074, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1096, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1108, 8, 17, 10, 17, 12, 17, 1111, 9, 17, 1, 17, 3, 17, 1114, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1123, 8, 18, 1, 18, 3, 18, 1126, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1132, 8, 18, 10, 18, 12, 18, 1135, 9, 18, 1, 18, 1, 18, 3, 18, 1139, 8, 18, 3, 18, 1141, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1220, 8, 19, 3, 19, 1222, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1235, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1246, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1255, 8, 21, 3, 21, 1257, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1268, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1274, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1282, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1293, 8, 21, 3, 21, 1295, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1303, 8, 21, 3, 21, 1305, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1324, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1332, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1348, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1372, 8, 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, 3, 28, 1388, 8, 28, 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, 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, 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, 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, 3, 38, 1472, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1481, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1487, 8, 39, 10, 39, 12, 39, 1490, 9, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1503, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 1508, 8, 42, 10, 42, 12, 42, 1511, 9, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1516, 8, 43, 10, 43, 12, 43, 1519, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1530, 8, 44, 10, 44, 12, 44, 1533, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1543, 8, 44, 10, 44, 12, 44, 1546, 9, 44, 1, 44, 3, 44, 1549, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1555, 8, 45, 1, 45, 3, 45, 1558, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1564, 8, 45, 1, 45, 3, 45, 1567, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1573, 8, 45, 1, 45, 1, 45, 3, 45, 1577, 8, 45, 1, 45, 1, 45, 3, 45, 1581, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1587, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1592, 8, 45, 1, 45, 3, 45, 1595, 8, 45, 3, 45, 1597, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1603, 8, 46, 1, 47, 1, 47, 3, 47, 1607, 8, 47, 1, 47, 1, 47, 3, 47, 1611, 8, 47, 1, 47, 3, 47, 1614, 8, 47, 1, 48, 1, 48, 3, 48, 1618, 8, 48, 1, 48, 5, 48, 1621, 8, 48, 10, 48, 12, 48, 1624, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1630, 8, 49, 1, 50, 1, 50, 1, 50, 5, 50, 1635, 8, 50, 10, 50, 12, 50, 1638, 9, 50, 1, 51, 3, 51, 1641, 8, 51, 1, 51, 5, 51, 1644, 8, 51, 10, 51, 12, 51, 1647, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1653, 8, 51, 10, 51, 12, 51, 1656, 9, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1661, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1666, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1672, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1677, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1682, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1687, 8, 53, 1, 53, 1, 53, 3, 53, 1691, 8, 53, 1, 53, 3, 53, 1694, 8, 53, 3, 53, 1696, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1702, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1734, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1742, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1763, 8, 56, 1, 57, 3, 57, 1766, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 1775, 8, 58, 10, 58, 12, 58, 1778, 9, 58, 1, 59, 1, 59, 3, 59, 1782, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 1787, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1796, 8, 61, 1, 62, 4, 62, 1799, 8, 62, 11, 62, 12, 62, 1800, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1813, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1839, 8, 65, 1, 65, 1, 65, 5, 65, 1843, 8, 65, 10, 65, 12, 65, 1846, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1852, 8, 65, 1, 65, 1, 65, 5, 65, 1856, 8, 65, 10, 65, 12, 65, 1859, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1889, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1903, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1910, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1923, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1930, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1938, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1943, 8, 69, 1, 70, 4, 70, 1946, 8, 70, 11, 70, 12, 70, 1947, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1954, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1962, 8, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1967, 8, 73, 10, 73, 12, 73, 1970, 9, 73, 1, 74, 3, 74, 1973, 8, 74, 1, 74, 1, 74, 3, 74, 1977, 8, 74, 1, 74, 3, 74, 1980, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1997, 8, 75, 1, 76, 4, 76, 2000, 8, 76, 11, 76, 12, 76, 2001, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2011, 8, 78, 1, 78, 3, 78, 2014, 8, 78, 1, 79, 4, 79, 2017, 8, 79, 11, 79, 12, 79, 2018, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2026, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2032, 8, 81, 10, 81, 12, 81, 2035, 9, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 2048, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2055, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2064, 8, 84, 10, 84, 12, 84, 2067, 9, 84, 1, 84, 1, 84, 3, 84, 2071, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2111, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2126, 8, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2131, 8, 89, 10, 89, 12, 89, 2134, 9, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2139, 8, 90, 10, 90, 12, 90, 2142, 9, 90, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2148, 8, 91, 1, 91, 1, 91, 3, 91, 2152, 8, 91, 1, 91, 3, 91, 2155, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2161, 8, 91, 1, 91, 3, 91, 2164, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2171, 8, 92, 1, 92, 1, 92, 3, 92, 2175, 8, 92, 1, 92, 3, 92, 2178, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2183, 8, 92, 1, 93, 1, 93, 1, 93, 5, 93, 2188, 8, 93, 10, 93, 12, 93, 2191, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2197, 8, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 5, 97, 2211, 8, 97, 10, 97, 12, 97, 2214, 9, 97, 1, 98, 1, 98, 3, 98, 2218, 8, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2226, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2232, 8, 100, 1, 101, 4, 101, 2235, 8, 101, 11, 101, 12, 101, 2236, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2243, 8, 102, 1, 103, 5, 103, 2246, 8, 103, 10, 103, 12, 103, 2249, 9, 103, 1, 104, 5, 104, 2252, 8, 104, 10, 104, 12, 104, 2255, 9, 104, 1, 104, 1, 104, 3, 104, 2259, 8, 104, 1, 104, 5, 104, 2262, 8, 104, 10, 104, 12, 104, 2265, 9, 104, 1, 104, 1, 104, 3, 104, 2269, 8, 104, 1, 104, 5, 104, 2272, 8, 104, 10, 104, 12, 104, 2275, 9, 104, 1, 104, 1, 104, 3, 104, 2279, 8, 104, 1, 104, 5, 104, 2282, 8, 104, 10, 104, 12, 104, 2285, 9, 104, 1, 104, 1, 104, 3, 104, 2289, 8, 104, 1, 104, 5, 104, 2292, 8, 104, 10, 104, 12, 104, 2295, 9, 104, 1, 104, 1, 104, 3, 104, 2299, 8, 104, 1, 104, 5, 104, 2302, 8, 104, 10, 104, 12, 104, 2305, 9, 104, 1, 104, 1, 104, 3, 104, 2309, 8, 104, 1, 104, 5, 104, 2312, 8, 104, 10, 104, 12, 104, 2315, 9, 104, 1, 104, 1, 104, 3, 104, 2319, 8, 104, 1, 104, 5, 104, 2322, 8, 104, 10, 104, 12, 104, 2325, 9, 104, 1, 104, 1, 104, 3, 104, 2329, 8, 104, 1, 104, 5, 104, 2332, 8, 104, 10, 104, 12, 104, 2335, 9, 104, 1, 104, 1, 104, 3, 104, 2339, 8, 104, 1, 104, 5, 104, 2342, 8, 104, 10, 104, 12, 104, 2345, 9, 104, 1, 104, 1, 104, 3, 104, 2349, 8, 104, 1, 104, 5, 104, 2352, 8, 104, 10, 104, 12, 104, 2355, 9, 104, 1, 104, 1, 104, 3, 104, 2359, 8, 104, 1, 104, 5, 104, 2362, 8, 104, 10, 104, 12, 104, 2365, 9, 104, 1, 104, 1, 104, 3, 104, 2369, 8, 104, 1, 104, 5, 104, 2372, 8, 104, 10, 104, 12, 104, 2375, 9, 104, 1, 104, 1, 104, 3, 104, 2379, 8, 104, 1, 104, 5, 104, 2382, 8, 104, 10, 104, 12, 104, 2385, 9, 104, 1, 104, 1, 104, 3, 104, 2389, 8, 104, 1, 104, 5, 104, 2392, 8, 104, 10, 104, 12, 104, 2395, 9, 104, 1, 104, 1, 104, 3, 104, 2399, 8, 104, 1, 104, 5, 104, 2402, 8, 104, 10, 104, 12, 104, 2405, 9, 104, 1, 104, 1, 104, 3, 104, 2409, 8, 104, 1, 104, 5, 104, 2412, 8, 104, 10, 104, 12, 104, 2415, 9, 104, 1, 104, 1, 104, 3, 104, 2419, 8, 104, 1, 104, 5, 104, 2422, 8, 104, 10, 104, 12, 104, 2425, 9, 104, 1, 104, 1, 104, 3, 104, 2429, 8, 104, 1, 104, 5, 104, 2432, 8, 104, 10, 104, 12, 104, 2435, 9, 104, 1, 104, 1, 104, 3, 104, 2439, 8, 104, 1, 104, 5, 104, 2442, 8, 104, 10, 104, 12, 104, 2445, 9, 104, 1, 104, 1, 104, 3, 104, 2449, 8, 104, 1, 104, 5, 104, 2452, 8, 104, 10, 104, 12, 104, 2455, 9, 104, 1, 104, 1, 104, 3, 104, 2459, 8, 104, 1, 104, 5, 104, 2462, 8, 104, 10, 104, 12, 104, 2465, 9, 104, 1, 104, 1, 104, 3, 104, 2469, 8, 104, 1, 104, 5, 104, 2472, 8, 104, 10, 104, 12, 104, 2475, 9, 104, 1, 104, 1, 104, 3, 104, 2479, 8, 104, 1, 104, 5, 104, 2482, 8, 104, 10, 104, 12, 104, 2485, 9, 104, 1, 104, 1, 104, 3, 104, 2489, 8, 104, 1, 104, 5, 104, 2492, 8, 104, 10, 104, 12, 104, 2495, 9, 104, 1, 104, 1, 104, 3, 104, 2499, 8, 104, 1, 104, 5, 104, 2502, 8, 104, 10, 104, 12, 104, 2505, 9, 104, 1, 104, 1, 104, 3, 104, 2509, 8, 104, 1, 104, 5, 104, 2512, 8, 104, 10, 104, 12, 104, 2515, 9, 104, 1, 104, 1, 104, 3, 104, 2519, 8, 104, 1, 104, 5, 104, 2522, 8, 104, 10, 104, 12, 104, 2525, 9, 104, 1, 104, 1, 104, 3, 104, 2529, 8, 104, 1, 104, 5, 104, 2532, 8, 104, 10, 104, 12, 104, 2535, 9, 104, 1, 104, 1, 104, 3, 104, 2539, 8, 104, 1, 104, 5, 104, 2542, 8, 104, 10, 104, 12, 104, 2545, 9, 104, 1, 104, 1, 104, 3, 104, 2549, 8, 104, 1, 104, 5, 104, 2552, 8, 104, 10, 104, 12, 104, 2555, 9, 104, 1, 104, 1, 104, 3, 104, 2559, 8, 104, 1, 104, 5, 104, 2562, 8, 104, 10, 104, 12, 104, 2565, 9, 104, 1, 104, 1, 104, 3, 104, 2569, 8, 104, 1, 104, 5, 104, 2572, 8, 104, 10, 104, 12, 104, 2575, 9, 104, 1, 104, 1, 104, 3, 104, 2579, 8, 104, 3, 104, 2581, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2588, 8, 105, 1, 106, 1, 106, 1, 106, 3, 106, 2593, 8, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 3, 107, 2600, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2606, 8, 107, 1, 107, 3, 107, 2609, 8, 107, 1, 107, 3, 107, 2612, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 2618, 8, 108, 1, 108, 3, 108, 2621, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2627, 8, 109, 4, 109, 2629, 8, 109, 11, 109, 12, 109, 2630, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2637, 8, 110, 1, 110, 3, 110, 2640, 8, 110, 1, 110, 3, 110, 2643, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2648, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2653, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2662, 8, 113, 3, 113, 2664, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2670, 8, 113, 10, 113, 12, 113, 2673, 9, 113, 3, 113, 2675, 8, 113, 1, 113, 1, 113, 3, 113, 2679, 8, 113, 1, 113, 1, 113, 3, 113, 2683, 8, 113, 1, 113, 3, 113, 2686, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2698, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2720, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2731, 8, 116, 10, 116, 12, 116, 2734, 9, 116, 1, 116, 1, 116, 3, 116, 2738, 8, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2748, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 2758, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2763, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2771, 8, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 2778, 8, 123, 1, 123, 1, 123, 3, 123, 2782, 8, 123, 1, 123, 1, 123, 3, 123, 2786, 8, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2795, 8, 125, 10, 125, 12, 125, 2798, 9, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2804, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2818, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 2825, 8, 129, 1, 129, 1, 129, 3, 129, 2829, 8, 129, 1, 130, 1, 130, 3, 130, 2833, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2841, 8, 130, 1, 130, 1, 130, 3, 130, 2845, 8, 130, 1, 131, 1, 131, 3, 131, 2849, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2859, 8, 131, 3, 131, 2861, 8, 131, 1, 131, 1, 131, 3, 131, 2865, 8, 131, 1, 131, 3, 131, 2868, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2873, 8, 131, 1, 131, 3, 131, 2876, 8, 131, 1, 131, 3, 131, 2879, 8, 131, 1, 132, 1, 132, 3, 132, 2883, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2891, 8, 132, 1, 132, 1, 132, 3, 132, 2895, 8, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2900, 8, 133, 10, 133, 12, 133, 2903, 9, 133, 1, 134, 1, 134, 3, 134, 2907, 8, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2917, 8, 135, 1, 135, 3, 135, 2920, 8, 135, 1, 135, 1, 135, 3, 135, 2924, 8, 135, 1, 135, 1, 135, 3, 135, 2928, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 2933, 8, 136, 10, 136, 12, 136, 2936, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2942, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2948, 8, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2962, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2969, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2984, 8, 142, 1, 143, 1, 143, 3, 143, 2988, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2995, 8, 143, 1, 143, 5, 143, 2998, 8, 143, 10, 143, 12, 143, 3001, 9, 143, 1, 143, 3, 143, 3004, 8, 143, 1, 143, 3, 143, 3007, 8, 143, 1, 143, 3, 143, 3010, 8, 143, 1, 143, 1, 143, 3, 143, 3014, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 3020, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3038, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3043, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3051, 8, 149, 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, 3, 151, 3070, 8, 151, 1, 152, 1, 152, 3, 152, 3074, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3081, 8, 152, 1, 152, 3, 152, 3084, 8, 152, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3152, 8, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3157, 8, 156, 10, 156, 12, 156, 3160, 9, 156, 1, 157, 1, 157, 3, 157, 3164, 8, 157, 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, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3194, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3215, 8, 163, 10, 163, 12, 163, 3218, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3228, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3233, 8, 166, 10, 166, 12, 166, 3236, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 3, 169, 3252, 8, 169, 1, 169, 3, 169, 3255, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 4, 170, 3262, 8, 170, 11, 170, 12, 170, 3263, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3272, 8, 172, 10, 172, 12, 172, 3275, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3284, 8, 174, 10, 174, 12, 174, 3287, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3296, 8, 176, 10, 176, 12, 176, 3299, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 3309, 8, 178, 1, 178, 3, 178, 3312, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3323, 8, 181, 10, 181, 12, 181, 3326, 9, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3331, 8, 182, 10, 182, 12, 182, 3334, 9, 182, 1, 183, 1, 183, 1, 183, 3, 183, 3339, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3345, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3353, 8, 185, 1, 186, 1, 186, 1, 186, 5, 186, 3358, 8, 186, 10, 186, 12, 186, 3361, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3368, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3375, 8, 188, 1, 189, 1, 189, 1, 189, 5, 189, 3380, 8, 189, 10, 189, 12, 189, 3383, 9, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 3392, 8, 191, 10, 191, 12, 191, 3395, 9, 191, 3, 191, 3397, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 3407, 8, 193, 10, 193, 12, 193, 3410, 9, 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, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3433, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3441, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 3447, 8, 195, 10, 195, 12, 195, 3450, 9, 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, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 3469, 8, 196, 1, 197, 1, 197, 5, 197, 3473, 8, 197, 10, 197, 12, 197, 3476, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 3483, 8, 198, 1, 199, 1, 199, 1, 199, 3, 199, 3488, 8, 199, 1, 199, 3, 199, 3491, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 3499, 8, 201, 10, 201, 12, 201, 3502, 9, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3596, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 5, 204, 3604, 8, 204, 10, 204, 12, 204, 3607, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 3, 205, 3614, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3622, 8, 205, 10, 205, 12, 205, 3625, 9, 205, 1, 205, 3, 205, 3628, 8, 205, 3, 205, 3630, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3636, 8, 205, 10, 205, 12, 205, 3639, 9, 205, 3, 205, 3641, 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3646, 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3651, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3657, 8, 205, 1, 206, 1, 206, 3, 206, 3661, 8, 206, 1, 206, 1, 206, 3, 206, 3665, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3671, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3677, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3682, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3687, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3692, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3697, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 3703, 8, 207, 10, 207, 12, 207, 3706, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3716, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3721, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3727, 8, 209, 5, 209, 3729, 8, 209, 10, 209, 12, 209, 3732, 9, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3740, 8, 210, 3, 210, 3742, 8, 210, 3, 210, 3744, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 3750, 8, 211, 10, 211, 12, 211, 3753, 9, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3786, 8, 217, 10, 217, 12, 217, 3789, 9, 217, 3, 217, 3791, 8, 217, 1, 217, 3, 217, 3794, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 3800, 8, 218, 10, 218, 12, 218, 3803, 9, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3809, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3820, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3829, 8, 221, 1, 221, 1, 221, 5, 221, 3833, 8, 221, 10, 221, 12, 221, 3836, 9, 221, 1, 221, 1, 221, 1, 222, 4, 222, 3841, 8, 222, 11, 222, 12, 222, 3842, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 3852, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3858, 8, 225, 11, 225, 12, 225, 3859, 1, 225, 1, 225, 5, 225, 3864, 8, 225, 10, 225, 12, 225, 3867, 9, 225, 1, 225, 3, 225, 3870, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3879, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3891, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3897, 8, 226, 3, 226, 3899, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3912, 8, 227, 5, 227, 3914, 8, 227, 10, 227, 12, 227, 3917, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 3926, 8, 227, 10, 227, 12, 227, 3929, 9, 227, 1, 227, 1, 227, 3, 227, 3933, 8, 227, 3, 227, 3935, 8, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3950, 8, 229, 1, 230, 4, 230, 3953, 8, 230, 11, 230, 12, 230, 3954, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3964, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 3971, 8, 232, 10, 232, 12, 232, 3974, 9, 232, 3, 232, 3976, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3985, 8, 233, 10, 233, 12, 233, 3988, 9, 233, 1, 233, 1, 233, 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, 3, 235, 4010, 8, 235, 1, 236, 1, 236, 1, 237, 3, 237, 4015, 8, 237, 1, 237, 1, 237, 1, 237, 3, 237, 4020, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 5, 237, 4027, 8, 237, 10, 237, 12, 237, 4030, 9, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4056, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 4063, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 4078, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 4095, 8, 243, 10, 243, 12, 243, 4098, 9, 243, 1, 243, 1, 243, 3, 243, 4102, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 4111, 8, 244, 10, 244, 12, 244, 4114, 9, 244, 1, 244, 1, 244, 3, 244, 4118, 8, 244, 1, 244, 1, 244, 5, 244, 4122, 8, 244, 10, 244, 12, 244, 4125, 9, 244, 1, 244, 3, 244, 4128, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 4136, 8, 245, 1, 245, 3, 245, 4139, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 4153, 8, 248, 10, 248, 12, 248, 4156, 9, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 4163, 8, 249, 1, 249, 3, 249, 4166, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4173, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 4179, 8, 250, 10, 250, 12, 250, 4182, 9, 250, 1, 250, 1, 250, 3, 250, 4186, 8, 250, 1, 250, 3, 250, 4189, 8, 250, 1, 250, 3, 250, 4192, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 4200, 8, 251, 10, 251, 12, 251, 4203, 9, 251, 3, 251, 4205, 8, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 4212, 8, 252, 1, 252, 3, 252, 4215, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 4221, 8, 253, 10, 253, 12, 253, 4224, 9, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 5, 254, 4239, 8, 254, 10, 254, 12, 254, 4242, 9, 254, 1, 254, 1, 254, 1, 254, 3, 254, 4247, 8, 254, 1, 254, 3, 254, 4250, 8, 254, 1, 255, 1, 255, 1, 255, 3, 255, 4255, 8, 255, 1, 255, 5, 255, 4258, 8, 255, 10, 255, 12, 255, 4261, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 4268, 8, 256, 10, 256, 12, 256, 4271, 9, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 5, 258, 4287, 8, 258, 10, 258, 12, 258, 4290, 9, 258, 1, 258, 1, 258, 1, 258, 4, 258, 4295, 8, 258, 11, 258, 12, 258, 4296, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 4307, 8, 259, 10, 259, 12, 259, 4310, 9, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4316, 8, 259, 1, 259, 1, 259, 3, 259, 4320, 8, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4334, 8, 261, 1, 261, 1, 261, 3, 261, 4338, 8, 261, 1, 261, 1, 261, 3, 261, 4342, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4347, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4352, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4357, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4364, 8, 261, 1, 261, 3, 261, 4367, 8, 261, 1, 262, 5, 262, 4370, 8, 262, 10, 262, 12, 262, 4373, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4402, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4410, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4415, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4420, 8, 264, 1, 264, 1, 264, 3, 264, 4424, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4429, 8, 264, 1, 264, 1, 264, 3, 264, 4433, 8, 264, 1, 264, 1, 264, 4, 264, 4437, 8, 264, 11, 264, 12, 264, 4438, 3, 264, 4441, 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4446, 8, 264, 11, 264, 12, 264, 4447, 3, 264, 4450, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4459, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4464, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4469, 8, 264, 1, 264, 1, 264, 3, 264, 4473, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4478, 8, 264, 1, 264, 1, 264, 3, 264, 4482, 8, 264, 1, 264, 1, 264, 4, 264, 4486, 8, 264, 11, 264, 12, 264, 4487, 3, 264, 4490, 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4495, 8, 264, 11, 264, 12, 264, 4496, 3, 264, 4499, 8, 264, 3, 264, 4501, 8, 264, 1, 265, 1, 265, 1, 265, 3, 265, 4506, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4512, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4518, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4524, 8, 265, 1, 265, 1, 265, 3, 265, 4528, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4534, 8, 265, 3, 265, 4536, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4548, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 4555, 8, 267, 10, 267, 12, 267, 4558, 9, 267, 1, 267, 1, 267, 3, 267, 4562, 8, 267, 1, 267, 1, 267, 4, 267, 4566, 8, 267, 11, 267, 12, 267, 4567, 3, 267, 4570, 8, 267, 1, 267, 1, 267, 1, 267, 4, 267, 4575, 8, 267, 11, 267, 12, 267, 4576, 3, 267, 4579, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4590, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 4597, 8, 269, 10, 269, 12, 269, 4600, 9, 269, 1, 269, 1, 269, 3, 269, 4604, 8, 269, 1, 270, 1, 270, 3, 270, 4608, 8, 270, 1, 270, 1, 270, 3, 270, 4612, 8, 270, 1, 270, 1, 270, 4, 270, 4616, 8, 270, 11, 270, 12, 270, 4617, 3, 270, 4620, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 4632, 8, 272, 1, 272, 4, 272, 4635, 8, 272, 11, 272, 12, 272, 4636, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4650, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4656, 8, 275, 1, 275, 1, 275, 3, 275, 4660, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 4667, 8, 276, 1, 276, 1, 276, 1, 276, 4, 276, 4672, 8, 276, 11, 276, 12, 276, 4673, 3, 276, 4676, 8, 276, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4685, 8, 278, 10, 278, 12, 278, 4688, 9, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4695, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4700, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4708, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4715, 8, 278, 10, 278, 12, 278, 4718, 9, 278, 3, 278, 4720, 8, 278, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4732, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4738, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4767, 8, 283, 3, 283, 4769, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4776, 8, 283, 3, 283, 4778, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4785, 8, 283, 3, 283, 4787, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4794, 8, 283, 3, 283, 4796, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4803, 8, 283, 3, 283, 4805, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4812, 8, 283, 3, 283, 4814, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4821, 8, 283, 3, 283, 4823, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4830, 8, 283, 3, 283, 4832, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4839, 8, 283, 3, 283, 4841, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4849, 8, 283, 3, 283, 4851, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4858, 8, 283, 3, 283, 4860, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4867, 8, 283, 3, 283, 4869, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4877, 8, 283, 3, 283, 4879, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4887, 8, 283, 3, 283, 4889, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4897, 8, 283, 3, 283, 4899, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4907, 8, 283, 3, 283, 4909, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4937, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4944, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4960, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4965, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4976, 8, 283, 3, 283, 4978, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5011, 8, 283, 3, 283, 5013, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5021, 8, 283, 3, 283, 5023, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5031, 8, 283, 3, 283, 5033, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5041, 8, 283, 3, 283, 5043, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5051, 8, 283, 3, 283, 5053, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5062, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5072, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5078, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5083, 8, 283, 3, 283, 5085, 8, 283, 1, 283, 3, 283, 5088, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5097, 8, 283, 3, 283, 5099, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5108, 8, 283, 3, 283, 5110, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5118, 8, 283, 3, 283, 5120, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5132, 8, 283, 3, 283, 5134, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5142, 8, 283, 3, 283, 5144, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5153, 8, 283, 3, 283, 5155, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5163, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5175, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 5181, 8, 284, 10, 284, 12, 284, 5184, 9, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5189, 8, 284, 3, 284, 5191, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5196, 8, 284, 3, 284, 5198, 8, 284, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5208, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5218, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5226, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5234, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5283, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5313, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5322, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5375, 8, 289, 1, 290, 1, 290, 3, 290, 5379, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5387, 8, 290, 1, 290, 3, 290, 5390, 8, 290, 1, 290, 5, 290, 5393, 8, 290, 10, 290, 12, 290, 5396, 9, 290, 1, 290, 1, 290, 3, 290, 5400, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5406, 8, 290, 3, 290, 5408, 8, 290, 1, 290, 1, 290, 3, 290, 5412, 8, 290, 1, 290, 1, 290, 3, 290, 5416, 8, 290, 1, 290, 1, 290, 3, 290, 5420, 8, 290, 1, 291, 3, 291, 5423, 8, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 5430, 8, 291, 1, 291, 3, 291, 5433, 8, 291, 1, 291, 1, 291, 3, 291, 5437, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 3, 293, 5444, 8, 293, 1, 293, 5, 293, 5447, 8, 293, 10, 293, 12, 293, 5450, 9, 293, 1, 294, 1, 294, 3, 294, 5454, 8, 294, 1, 294, 3, 294, 5457, 8, 294, 1, 294, 3, 294, 5460, 8, 294, 1, 294, 3, 294, 5463, 8, 294, 1, 294, 3, 294, 5466, 8, 294, 1, 294, 3, 294, 5469, 8, 294, 1, 294, 1, 294, 3, 294, 5473, 8, 294, 1, 294, 3, 294, 5476, 8, 294, 1, 294, 3, 294, 5479, 8, 294, 1, 294, 1, 294, 3, 294, 5483, 8, 294, 1, 294, 3, 294, 5486, 8, 294, 3, 294, 5488, 8, 294, 1, 295, 1, 295, 3, 295, 5492, 8, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 5, 296, 5500, 8, 296, 10, 296, 12, 296, 5503, 9, 296, 3, 296, 5505, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 5510, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5515, 8, 297, 3, 297, 5517, 8, 297, 1, 298, 1, 298, 3, 298, 5521, 8, 298, 1, 299, 1, 299, 1, 299, 5, 299, 5526, 8, 299, 10, 299, 12, 299, 5529, 9, 299, 1, 300, 1, 300, 3, 300, 5533, 8, 300, 1, 300, 3, 300, 5536, 8, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5542, 8, 300, 1, 300, 3, 300, 5545, 8, 300, 3, 300, 5547, 8, 300, 1, 301, 3, 301, 5550, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5556, 8, 301, 1, 301, 3, 301, 5559, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5564, 8, 301, 1, 301, 3, 301, 5567, 8, 301, 3, 301, 5569, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 5581, 8, 302, 1, 303, 1, 303, 3, 303, 5585, 8, 303, 1, 303, 1, 303, 3, 303, 5589, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5594, 8, 303, 1, 303, 3, 303, 5597, 8, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 5614, 8, 308, 10, 308, 12, 308, 5617, 9, 308, 1, 309, 1, 309, 3, 309, 5621, 8, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5626, 8, 310, 10, 310, 12, 310, 5629, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5635, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5641, 8, 311, 3, 311, 5643, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 5661, 8, 312, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5672, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5687, 8, 314, 3, 314, 5689, 8, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5697, 8, 316, 1, 316, 3, 316, 5700, 8, 316, 1, 316, 3, 316, 5703, 8, 316, 1, 316, 3, 316, 5706, 8, 316, 1, 316, 3, 316, 5709, 8, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 5725, 8, 321, 1, 321, 1, 321, 3, 321, 5729, 8, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5734, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 5742, 8, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 5750, 8, 324, 1, 325, 1, 325, 1, 325, 5, 325, 5755, 8, 325, 10, 325, 12, 325, 5758, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 5801, 8, 329, 10, 329, 12, 329, 5804, 9, 329, 1, 329, 1, 329, 3, 329, 5808, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 5815, 8, 329, 10, 329, 12, 329, 5818, 9, 329, 1, 329, 1, 329, 3, 329, 5822, 8, 329, 1, 329, 3, 329, 5825, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 5830, 8, 329, 1, 330, 4, 330, 5833, 8, 330, 11, 330, 12, 330, 5834, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5849, 8, 331, 10, 331, 12, 331, 5852, 9, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5860, 8, 331, 10, 331, 12, 331, 5863, 9, 331, 1, 331, 1, 331, 3, 331, 5867, 8, 331, 1, 331, 1, 331, 3, 331, 5871, 8, 331, 1, 331, 1, 331, 3, 331, 5875, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 5891, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 5, 337, 5908, 8, 337, 10, 337, 12, 337, 5911, 9, 337, 1, 338, 1, 338, 1, 338, 5, 338, 5916, 8, 338, 10, 338, 12, 338, 5919, 9, 338, 1, 339, 3, 339, 5922, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5936, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5941, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5949, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5955, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 5962, 8, 342, 10, 342, 12, 342, 5965, 9, 342, 1, 343, 1, 343, 1, 343, 5, 343, 5970, 8, 343, 10, 343, 12, 343, 5973, 9, 343, 1, 344, 3, 344, 5976, 8, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6001, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 6009, 8, 346, 11, 346, 12, 346, 6010, 1, 346, 1, 346, 3, 346, 6015, 8, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 6038, 8, 350, 1, 350, 1, 350, 3, 350, 6042, 8, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6049, 8, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 5, 353, 6058, 8, 353, 10, 353, 12, 353, 6061, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 6067, 8, 354, 10, 354, 12, 354, 6070, 9, 354, 1, 354, 1, 354, 1, 354, 3, 354, 6075, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 6080, 8, 355, 10, 355, 12, 355, 6083, 9, 355, 1, 356, 1, 356, 1, 356, 5, 356, 6088, 8, 356, 10, 356, 12, 356, 6091, 9, 356, 1, 357, 1, 357, 1, 357, 3, 357, 6096, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6103, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 5, 359, 6109, 8, 359, 10, 359, 12, 359, 6112, 9, 359, 3, 359, 6114, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6129, 8, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 5, 364, 6136, 8, 364, 10, 364, 12, 364, 6139, 9, 364, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6145, 8, 365, 1, 366, 1, 366, 1, 366, 3, 366, 6150, 8, 366, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 0, 0, 369, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 0, 49, 2, 0, 22, 22, 430, 430, 1, 0, 33, 34, 2, 0, 30, 30, 33, 33, 2, 0, 453, 454, 485, 485, 2, 0, 93, 93, 485, 485, 2, 0, 401, 401, 434, 434, 1, 0, 94, 95, 2, 0, 12, 12, 44, 44, 2, 0, 295, 295, 425, 425, 2, 0, 39, 39, 52, 52, 2, 0, 14, 16, 54, 55, 1, 0, 517, 518, 2, 0, 496, 496, 502, 502, 3, 0, 69, 69, 135, 138, 302, 302, 2, 0, 100, 100, 334, 337, 2, 0, 517, 517, 521, 521, 1, 0, 520, 521, 1, 0, 285, 286, 6, 0, 285, 287, 487, 492, 496, 496, 500, 504, 507, 508, 516, 520, 4, 0, 128, 128, 287, 287, 296, 297, 521, 522, 11, 0, 39, 39, 148, 157, 160, 162, 164, 165, 167, 167, 169, 176, 180, 185, 194, 195, 226, 226, 228, 231, 251, 251, 3, 0, 128, 128, 140, 140, 521, 521, 3, 0, 255, 261, 401, 401, 521, 521, 4, 0, 135, 136, 246, 250, 295, 295, 521, 521, 2, 0, 217, 217, 519, 519, 1, 0, 422, 424, 2, 0, 517, 517, 520, 520, 2, 0, 329, 329, 332, 332, 2, 0, 341, 341, 442, 442, 2, 0, 338, 338, 521, 521, 2, 0, 295, 297, 517, 517, 2, 0, 382, 382, 521, 521, 8, 0, 148, 154, 160, 162, 165, 165, 169, 176, 194, 195, 226, 226, 228, 231, 521, 521, 2, 0, 291, 291, 490, 490, 1, 0, 84, 85, 8, 0, 143, 145, 187, 187, 192, 192, 224, 224, 314, 314, 377, 378, 380, 383, 521, 521, 2, 0, 329, 329, 401, 402, 1, 0, 521, 522, 2, 1, 496, 496, 500, 500, 1, 0, 487, 492, 1, 0, 493, 494, 2, 0, 495, 499, 509, 509, 1, 0, 262, 267, 1, 0, 276, 280, 7, 0, 123, 123, 128, 128, 140, 140, 185, 185, 276, 282, 296, 297, 521, 522, 1, 0, 296, 297, 7, 0, 49, 49, 188, 189, 219, 219, 301, 301, 406, 406, 475, 475, 521, 521, 40, 0, 41, 42, 44, 44, 49, 49, 51, 52, 54, 54, 69, 69, 116, 116, 124, 124, 135, 136, 138, 138, 164, 164, 168, 168, 188, 188, 191, 193, 196, 196, 205, 208, 215, 216, 218, 219, 222, 222, 232, 232, 247, 247, 276, 280, 302, 302, 304, 304, 331, 331, 333, 333, 350, 351, 371, 371, 374, 374, 395, 395, 401, 401, 403, 403, 419, 420, 422, 425, 433, 433, 449, 449, 453, 454, 459, 461, 483, 483, 485, 485, 60, 0, 8, 9, 17, 21, 23, 30, 32, 35, 38, 44, 48, 49, 51, 52, 54, 54, 56, 59, 65, 67, 69, 76, 81, 90, 93, 93, 96, 101, 103, 106, 110, 110, 112, 114, 116, 118, 120, 120, 124, 124, 132, 132, 135, 136, 138, 139, 141, 146, 148, 153, 156, 166, 168, 172, 174, 175, 179, 179, 187, 188, 191, 196, 207, 216, 218, 219, 221, 222, 226, 232, 245, 248, 251, 251, 262, 270, 276, 280, 285, 291, 294, 302, 304, 307, 311, 333, 338, 366, 368, 384, 386, 388, 390, 399, 401, 401, 403, 405, 408, 409, 411, 420, 422, 431, 433, 433, 435, 435, 438, 438, 440, 444, 448, 474, 480, 483, 485, 486, 498, 499, 6979, 0, 741, 1, 0, 0, 0, 2, 747, 1, 0, 0, 0, 4, 767, 1, 0, 0, 0, 6, 769, 1, 0, 0, 0, 8, 801, 1, 0, 0, 0, 10, 936, 1, 0, 0, 0, 12, 950, 1, 0, 0, 0, 14, 967, 1, 0, 0, 0, 16, 993, 1, 0, 0, 0, 18, 1034, 1, 0, 0, 0, 20, 1036, 1, 0, 0, 0, 22, 1047, 1, 0, 0, 0, 24, 1063, 1, 0, 0, 0, 26, 1065, 1, 0, 0, 0, 28, 1075, 1, 0, 0, 0, 30, 1082, 1, 0, 0, 0, 32, 1086, 1, 0, 0, 0, 34, 1113, 1, 0, 0, 0, 36, 1140, 1, 0, 0, 0, 38, 1221, 1, 0, 0, 0, 40, 1234, 1, 0, 0, 0, 42, 1304, 1, 0, 0, 0, 44, 1323, 1, 0, 0, 0, 46, 1325, 1, 0, 0, 0, 48, 1333, 1, 0, 0, 0, 50, 1338, 1, 0, 0, 0, 52, 1371, 1, 0, 0, 0, 54, 1373, 1, 0, 0, 0, 56, 1378, 1, 0, 0, 0, 58, 1389, 1, 0, 0, 0, 60, 1394, 1, 0, 0, 0, 62, 1402, 1, 0, 0, 0, 64, 1410, 1, 0, 0, 0, 66, 1418, 1, 0, 0, 0, 68, 1426, 1, 0, 0, 0, 70, 1434, 1, 0, 0, 0, 72, 1442, 1, 0, 0, 0, 74, 1451, 1, 0, 0, 0, 76, 1471, 1, 0, 0, 0, 78, 1473, 1, 0, 0, 0, 80, 1493, 1, 0, 0, 0, 82, 1498, 1, 0, 0, 0, 84, 1504, 1, 0, 0, 0, 86, 1512, 1, 0, 0, 0, 88, 1548, 1, 0, 0, 0, 90, 1596, 1, 0, 0, 0, 92, 1602, 1, 0, 0, 0, 94, 1613, 1, 0, 0, 0, 96, 1615, 1, 0, 0, 0, 98, 1629, 1, 0, 0, 0, 100, 1631, 1, 0, 0, 0, 102, 1640, 1, 0, 0, 0, 104, 1660, 1, 0, 0, 0, 106, 1695, 1, 0, 0, 0, 108, 1733, 1, 0, 0, 0, 110, 1735, 1, 0, 0, 0, 112, 1762, 1, 0, 0, 0, 114, 1765, 1, 0, 0, 0, 116, 1771, 1, 0, 0, 0, 118, 1779, 1, 0, 0, 0, 120, 1786, 1, 0, 0, 0, 122, 1788, 1, 0, 0, 0, 124, 1798, 1, 0, 0, 0, 126, 1812, 1, 0, 0, 0, 128, 1814, 1, 0, 0, 0, 130, 1888, 1, 0, 0, 0, 132, 1902, 1, 0, 0, 0, 134, 1922, 1, 0, 0, 0, 136, 1937, 1, 0, 0, 0, 138, 1939, 1, 0, 0, 0, 140, 1945, 1, 0, 0, 0, 142, 1953, 1, 0, 0, 0, 144, 1955, 1, 0, 0, 0, 146, 1963, 1, 0, 0, 0, 148, 1972, 1, 0, 0, 0, 150, 1996, 1, 0, 0, 0, 152, 1999, 1, 0, 0, 0, 154, 2003, 1, 0, 0, 0, 156, 2006, 1, 0, 0, 0, 158, 2016, 1, 0, 0, 0, 160, 2025, 1, 0, 0, 0, 162, 2027, 1, 0, 0, 0, 164, 2038, 1, 0, 0, 0, 166, 2047, 1, 0, 0, 0, 168, 2049, 1, 0, 0, 0, 170, 2072, 1, 0, 0, 0, 172, 2076, 1, 0, 0, 0, 174, 2110, 1, 0, 0, 0, 176, 2125, 1, 0, 0, 0, 178, 2127, 1, 0, 0, 0, 180, 2135, 1, 0, 0, 0, 182, 2143, 1, 0, 0, 0, 184, 2165, 1, 0, 0, 0, 186, 2184, 1, 0, 0, 0, 188, 2192, 1, 0, 0, 0, 190, 2198, 1, 0, 0, 0, 192, 2201, 1, 0, 0, 0, 194, 2207, 1, 0, 0, 0, 196, 2217, 1, 0, 0, 0, 198, 2225, 1, 0, 0, 0, 200, 2227, 1, 0, 0, 0, 202, 2234, 1, 0, 0, 0, 204, 2242, 1, 0, 0, 0, 206, 2247, 1, 0, 0, 0, 208, 2580, 1, 0, 0, 0, 210, 2582, 1, 0, 0, 0, 212, 2589, 1, 0, 0, 0, 214, 2599, 1, 0, 0, 0, 216, 2613, 1, 0, 0, 0, 218, 2622, 1, 0, 0, 0, 220, 2632, 1, 0, 0, 0, 222, 2644, 1, 0, 0, 0, 224, 2649, 1, 0, 0, 0, 226, 2654, 1, 0, 0, 0, 228, 2697, 1, 0, 0, 0, 230, 2719, 1, 0, 0, 0, 232, 2721, 1, 0, 0, 0, 234, 2742, 1, 0, 0, 0, 236, 2754, 1, 0, 0, 0, 238, 2764, 1, 0, 0, 0, 240, 2766, 1, 0, 0, 0, 242, 2768, 1, 0, 0, 0, 244, 2772, 1, 0, 0, 0, 246, 2775, 1, 0, 0, 0, 248, 2787, 1, 0, 0, 0, 250, 2803, 1, 0, 0, 0, 252, 2805, 1, 0, 0, 0, 254, 2811, 1, 0, 0, 0, 256, 2813, 1, 0, 0, 0, 258, 2817, 1, 0, 0, 0, 260, 2832, 1, 0, 0, 0, 262, 2848, 1, 0, 0, 0, 264, 2882, 1, 0, 0, 0, 266, 2896, 1, 0, 0, 0, 268, 2906, 1, 0, 0, 0, 270, 2911, 1, 0, 0, 0, 272, 2929, 1, 0, 0, 0, 274, 2947, 1, 0, 0, 0, 276, 2949, 1, 0, 0, 0, 278, 2952, 1, 0, 0, 0, 280, 2956, 1, 0, 0, 0, 282, 2970, 1, 0, 0, 0, 284, 2973, 1, 0, 0, 0, 286, 2987, 1, 0, 0, 0, 288, 3015, 1, 0, 0, 0, 290, 3019, 1, 0, 0, 0, 292, 3021, 1, 0, 0, 0, 294, 3023, 1, 0, 0, 0, 296, 3028, 1, 0, 0, 0, 298, 3050, 1, 0, 0, 0, 300, 3052, 1, 0, 0, 0, 302, 3069, 1, 0, 0, 0, 304, 3073, 1, 0, 0, 0, 306, 3085, 1, 0, 0, 0, 308, 3088, 1, 0, 0, 0, 310, 3151, 1, 0, 0, 0, 312, 3153, 1, 0, 0, 0, 314, 3161, 1, 0, 0, 0, 316, 3165, 1, 0, 0, 0, 318, 3193, 1, 0, 0, 0, 320, 3195, 1, 0, 0, 0, 322, 3201, 1, 0, 0, 0, 324, 3206, 1, 0, 0, 0, 326, 3211, 1, 0, 0, 0, 328, 3219, 1, 0, 0, 0, 330, 3227, 1, 0, 0, 0, 332, 3229, 1, 0, 0, 0, 334, 3237, 1, 0, 0, 0, 336, 3241, 1, 0, 0, 0, 338, 3248, 1, 0, 0, 0, 340, 3261, 1, 0, 0, 0, 342, 3265, 1, 0, 0, 0, 344, 3268, 1, 0, 0, 0, 346, 3276, 1, 0, 0, 0, 348, 3280, 1, 0, 0, 0, 350, 3288, 1, 0, 0, 0, 352, 3292, 1, 0, 0, 0, 354, 3300, 1, 0, 0, 0, 356, 3308, 1, 0, 0, 0, 358, 3313, 1, 0, 0, 0, 360, 3317, 1, 0, 0, 0, 362, 3319, 1, 0, 0, 0, 364, 3327, 1, 0, 0, 0, 366, 3338, 1, 0, 0, 0, 368, 3340, 1, 0, 0, 0, 370, 3352, 1, 0, 0, 0, 372, 3354, 1, 0, 0, 0, 374, 3362, 1, 0, 0, 0, 376, 3374, 1, 0, 0, 0, 378, 3376, 1, 0, 0, 0, 380, 3384, 1, 0, 0, 0, 382, 3386, 1, 0, 0, 0, 384, 3400, 1, 0, 0, 0, 386, 3402, 1, 0, 0, 0, 388, 3440, 1, 0, 0, 0, 390, 3442, 1, 0, 0, 0, 392, 3468, 1, 0, 0, 0, 394, 3474, 1, 0, 0, 0, 396, 3477, 1, 0, 0, 0, 398, 3484, 1, 0, 0, 0, 400, 3492, 1, 0, 0, 0, 402, 3494, 1, 0, 0, 0, 404, 3595, 1, 0, 0, 0, 406, 3597, 1, 0, 0, 0, 408, 3599, 1, 0, 0, 0, 410, 3656, 1, 0, 0, 0, 412, 3696, 1, 0, 0, 0, 414, 3698, 1, 0, 0, 0, 416, 3715, 1, 0, 0, 0, 418, 3720, 1, 0, 0, 0, 420, 3743, 1, 0, 0, 0, 422, 3745, 1, 0, 0, 0, 424, 3756, 1, 0, 0, 0, 426, 3762, 1, 0, 0, 0, 428, 3764, 1, 0, 0, 0, 430, 3766, 1, 0, 0, 0, 432, 3768, 1, 0, 0, 0, 434, 3793, 1, 0, 0, 0, 436, 3808, 1, 0, 0, 0, 438, 3819, 1, 0, 0, 0, 440, 3821, 1, 0, 0, 0, 442, 3825, 1, 0, 0, 0, 444, 3840, 1, 0, 0, 0, 446, 3844, 1, 0, 0, 0, 448, 3847, 1, 0, 0, 0, 450, 3853, 1, 0, 0, 0, 452, 3898, 1, 0, 0, 0, 454, 3900, 1, 0, 0, 0, 456, 3938, 1, 0, 0, 0, 458, 3942, 1, 0, 0, 0, 460, 3952, 1, 0, 0, 0, 462, 3963, 1, 0, 0, 0, 464, 3965, 1, 0, 0, 0, 466, 3977, 1, 0, 0, 0, 468, 3991, 1, 0, 0, 0, 470, 4009, 1, 0, 0, 0, 472, 4011, 1, 0, 0, 0, 474, 4014, 1, 0, 0, 0, 476, 4035, 1, 0, 0, 0, 478, 4055, 1, 0, 0, 0, 480, 4062, 1, 0, 0, 0, 482, 4077, 1, 0, 0, 0, 484, 4079, 1, 0, 0, 0, 486, 4087, 1, 0, 0, 0, 488, 4103, 1, 0, 0, 0, 490, 4138, 1, 0, 0, 0, 492, 4140, 1, 0, 0, 0, 494, 4144, 1, 0, 0, 0, 496, 4148, 1, 0, 0, 0, 498, 4165, 1, 0, 0, 0, 500, 4167, 1, 0, 0, 0, 502, 4193, 1, 0, 0, 0, 504, 4208, 1, 0, 0, 0, 506, 4216, 1, 0, 0, 0, 508, 4227, 1, 0, 0, 0, 510, 4251, 1, 0, 0, 0, 512, 4262, 1, 0, 0, 0, 514, 4274, 1, 0, 0, 0, 516, 4278, 1, 0, 0, 0, 518, 4300, 1, 0, 0, 0, 520, 4323, 1, 0, 0, 0, 522, 4327, 1, 0, 0, 0, 524, 4371, 1, 0, 0, 0, 526, 4401, 1, 0, 0, 0, 528, 4500, 1, 0, 0, 0, 530, 4535, 1, 0, 0, 0, 532, 4537, 1, 0, 0, 0, 534, 4542, 1, 0, 0, 0, 536, 4580, 1, 0, 0, 0, 538, 4584, 1, 0, 0, 0, 540, 4605, 1, 0, 0, 0, 542, 4621, 1, 0, 0, 0, 544, 4627, 1, 0, 0, 0, 546, 4638, 1, 0, 0, 0, 548, 4644, 1, 0, 0, 0, 550, 4651, 1, 0, 0, 0, 552, 4661, 1, 0, 0, 0, 554, 4677, 1, 0, 0, 0, 556, 4719, 1, 0, 0, 0, 558, 4721, 1, 0, 0, 0, 560, 4723, 1, 0, 0, 0, 562, 4731, 1, 0, 0, 0, 564, 4737, 1, 0, 0, 0, 566, 5174, 1, 0, 0, 0, 568, 5197, 1, 0, 0, 0, 570, 5199, 1, 0, 0, 0, 572, 5207, 1, 0, 0, 0, 574, 5209, 1, 0, 0, 0, 576, 5217, 1, 0, 0, 0, 578, 5374, 1, 0, 0, 0, 580, 5376, 1, 0, 0, 0, 582, 5422, 1, 0, 0, 0, 584, 5438, 1, 0, 0, 0, 586, 5440, 1, 0, 0, 0, 588, 5487, 1, 0, 0, 0, 590, 5489, 1, 0, 0, 0, 592, 5504, 1, 0, 0, 0, 594, 5516, 1, 0, 0, 0, 596, 5520, 1, 0, 0, 0, 598, 5522, 1, 0, 0, 0, 600, 5546, 1, 0, 0, 0, 602, 5568, 1, 0, 0, 0, 604, 5580, 1, 0, 0, 0, 606, 5596, 1, 0, 0, 0, 608, 5598, 1, 0, 0, 0, 610, 5601, 1, 0, 0, 0, 612, 5604, 1, 0, 0, 0, 614, 5607, 1, 0, 0, 0, 616, 5610, 1, 0, 0, 0, 618, 5618, 1, 0, 0, 0, 620, 5622, 1, 0, 0, 0, 622, 5642, 1, 0, 0, 0, 624, 5660, 1, 0, 0, 0, 626, 5662, 1, 0, 0, 0, 628, 5688, 1, 0, 0, 0, 630, 5690, 1, 0, 0, 0, 632, 5708, 1, 0, 0, 0, 634, 5710, 1, 0, 0, 0, 636, 5712, 1, 0, 0, 0, 638, 5714, 1, 0, 0, 0, 640, 5718, 1, 0, 0, 0, 642, 5733, 1, 0, 0, 0, 644, 5741, 1, 0, 0, 0, 646, 5743, 1, 0, 0, 0, 648, 5749, 1, 0, 0, 0, 650, 5751, 1, 0, 0, 0, 652, 5759, 1, 0, 0, 0, 654, 5761, 1, 0, 0, 0, 656, 5764, 1, 0, 0, 0, 658, 5829, 1, 0, 0, 0, 660, 5832, 1, 0, 0, 0, 662, 5836, 1, 0, 0, 0, 664, 5876, 1, 0, 0, 0, 666, 5890, 1, 0, 0, 0, 668, 5892, 1, 0, 0, 0, 670, 5894, 1, 0, 0, 0, 672, 5902, 1, 0, 0, 0, 674, 5904, 1, 0, 0, 0, 676, 5912, 1, 0, 0, 0, 678, 5921, 1, 0, 0, 0, 680, 5925, 1, 0, 0, 0, 682, 5956, 1, 0, 0, 0, 684, 5958, 1, 0, 0, 0, 686, 5966, 1, 0, 0, 0, 688, 5975, 1, 0, 0, 0, 690, 6000, 1, 0, 0, 0, 692, 6002, 1, 0, 0, 0, 694, 6018, 1, 0, 0, 0, 696, 6025, 1, 0, 0, 0, 698, 6032, 1, 0, 0, 0, 700, 6034, 1, 0, 0, 0, 702, 6045, 1, 0, 0, 0, 704, 6052, 1, 0, 0, 0, 706, 6054, 1, 0, 0, 0, 708, 6074, 1, 0, 0, 0, 710, 6076, 1, 0, 0, 0, 712, 6084, 1, 0, 0, 0, 714, 6095, 1, 0, 0, 0, 716, 6102, 1, 0, 0, 0, 718, 6104, 1, 0, 0, 0, 720, 6117, 1, 0, 0, 0, 722, 6119, 1, 0, 0, 0, 724, 6121, 1, 0, 0, 0, 726, 6130, 1, 0, 0, 0, 728, 6132, 1, 0, 0, 0, 730, 6144, 1, 0, 0, 0, 732, 6149, 1, 0, 0, 0, 734, 6151, 1, 0, 0, 0, 736, 6153, 1, 0, 0, 0, 738, 740, 3, 2, 1, 0, 739, 738, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 745, 5, 0, 0, 1, 745, 1, 1, 0, 0, 0, 746, 748, 3, 722, 361, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 752, 1, 0, 0, 0, 749, 753, 3, 4, 2, 0, 750, 753, 3, 564, 282, 0, 751, 753, 3, 624, 312, 0, 752, 749, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 751, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 756, 5, 500, 0, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 5, 496, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 3, 1, 0, 0, 0, 760, 768, 3, 8, 4, 0, 761, 768, 3, 10, 5, 0, 762, 768, 3, 38, 19, 0, 763, 768, 3, 40, 20, 0, 764, 768, 3, 42, 21, 0, 765, 768, 3, 6, 3, 0, 766, 768, 3, 44, 22, 0, 767, 760, 1, 0, 0, 0, 767, 761, 1, 0, 0, 0, 767, 762, 1, 0, 0, 0, 767, 763, 1, 0, 0, 0, 767, 764, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 767, 766, 1, 0, 0, 0, 768, 5, 1, 0, 0, 0, 769, 770, 5, 393, 0, 0, 770, 771, 5, 187, 0, 0, 771, 772, 5, 48, 0, 0, 772, 777, 3, 574, 287, 0, 773, 774, 5, 501, 0, 0, 774, 776, 3, 574, 287, 0, 775, 773, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 72, 0, 0, 781, 786, 3, 572, 286, 0, 782, 783, 5, 285, 0, 0, 783, 785, 3, 572, 286, 0, 784, 782, 1, 0, 0, 0, 785, 788, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 794, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 792, 5, 289, 0, 0, 790, 793, 3, 712, 356, 0, 791, 793, 5, 521, 0, 0, 792, 790, 1, 0, 0, 0, 792, 791, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 789, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 436, 0, 0, 797, 799, 5, 437, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 7, 1, 0, 0, 0, 800, 802, 3, 722, 361, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 806, 1, 0, 0, 0, 803, 805, 3, 724, 362, 0, 804, 803, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 812, 5, 17, 0, 0, 810, 811, 5, 286, 0, 0, 811, 813, 7, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 839, 1, 0, 0, 0, 814, 840, 3, 90, 45, 0, 815, 840, 3, 122, 61, 0, 816, 840, 3, 138, 69, 0, 817, 840, 3, 182, 91, 0, 818, 840, 3, 184, 92, 0, 819, 840, 3, 336, 168, 0, 820, 840, 3, 338, 169, 0, 821, 840, 3, 144, 72, 0, 822, 840, 3, 172, 86, 0, 823, 840, 3, 442, 221, 0, 824, 840, 3, 450, 225, 0, 825, 840, 3, 458, 229, 0, 826, 840, 3, 466, 233, 0, 827, 840, 3, 484, 242, 0, 828, 840, 3, 486, 243, 0, 829, 840, 3, 488, 244, 0, 830, 840, 3, 508, 254, 0, 831, 840, 3, 510, 255, 0, 832, 840, 3, 516, 258, 0, 833, 840, 3, 522, 261, 0, 834, 840, 3, 50, 25, 0, 835, 840, 3, 78, 39, 0, 836, 840, 3, 156, 78, 0, 837, 840, 3, 168, 84, 0, 838, 840, 3, 464, 232, 0, 839, 814, 1, 0, 0, 0, 839, 815, 1, 0, 0, 0, 839, 816, 1, 0, 0, 0, 839, 817, 1, 0, 0, 0, 839, 818, 1, 0, 0, 0, 839, 819, 1, 0, 0, 0, 839, 820, 1, 0, 0, 0, 839, 821, 1, 0, 0, 0, 839, 822, 1, 0, 0, 0, 839, 823, 1, 0, 0, 0, 839, 824, 1, 0, 0, 0, 839, 825, 1, 0, 0, 0, 839, 826, 1, 0, 0, 0, 839, 827, 1, 0, 0, 0, 839, 828, 1, 0, 0, 0, 839, 829, 1, 0, 0, 0, 839, 830, 1, 0, 0, 0, 839, 831, 1, 0, 0, 0, 839, 832, 1, 0, 0, 0, 839, 833, 1, 0, 0, 0, 839, 834, 1, 0, 0, 0, 839, 835, 1, 0, 0, 0, 839, 836, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 838, 1, 0, 0, 0, 840, 9, 1, 0, 0, 0, 841, 842, 5, 18, 0, 0, 842, 843, 5, 23, 0, 0, 843, 845, 3, 712, 356, 0, 844, 846, 3, 130, 65, 0, 845, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 937, 1, 0, 0, 0, 849, 850, 5, 18, 0, 0, 850, 851, 5, 27, 0, 0, 851, 853, 3, 712, 356, 0, 852, 854, 3, 132, 66, 0, 853, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 937, 1, 0, 0, 0, 857, 858, 5, 18, 0, 0, 858, 859, 5, 28, 0, 0, 859, 861, 3, 712, 356, 0, 860, 862, 3, 134, 67, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 937, 1, 0, 0, 0, 865, 866, 5, 18, 0, 0, 866, 867, 5, 36, 0, 0, 867, 869, 3, 712, 356, 0, 868, 870, 3, 136, 68, 0, 869, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 937, 1, 0, 0, 0, 873, 874, 5, 18, 0, 0, 874, 875, 5, 314, 0, 0, 875, 876, 5, 339, 0, 0, 876, 877, 3, 712, 356, 0, 877, 878, 5, 48, 0, 0, 878, 883, 3, 494, 247, 0, 879, 880, 5, 501, 0, 0, 880, 882, 3, 494, 247, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 937, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 18, 0, 0, 887, 888, 5, 314, 0, 0, 888, 889, 5, 312, 0, 0, 889, 890, 3, 712, 356, 0, 890, 891, 5, 48, 0, 0, 891, 896, 3, 494, 247, 0, 892, 893, 5, 501, 0, 0, 893, 895, 3, 494, 247, 0, 894, 892, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 937, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 18, 0, 0, 900, 901, 5, 213, 0, 0, 901, 902, 5, 93, 0, 0, 902, 903, 7, 1, 0, 0, 903, 904, 3, 712, 356, 0, 904, 905, 5, 186, 0, 0, 905, 907, 5, 521, 0, 0, 906, 908, 3, 12, 6, 0, 907, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 937, 1, 0, 0, 0, 911, 912, 5, 18, 0, 0, 912, 913, 5, 443, 0, 0, 913, 937, 3, 556, 278, 0, 914, 915, 5, 18, 0, 0, 915, 916, 5, 33, 0, 0, 916, 917, 3, 712, 356, 0, 917, 919, 5, 505, 0, 0, 918, 920, 3, 16, 8, 0, 919, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 5, 506, 0, 0, 924, 937, 1, 0, 0, 0, 925, 926, 5, 18, 0, 0, 926, 927, 5, 34, 0, 0, 927, 928, 3, 712, 356, 0, 928, 930, 5, 505, 0, 0, 929, 931, 3, 16, 8, 0, 930, 929, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 506, 0, 0, 935, 937, 1, 0, 0, 0, 936, 841, 1, 0, 0, 0, 936, 849, 1, 0, 0, 0, 936, 857, 1, 0, 0, 0, 936, 865, 1, 0, 0, 0, 936, 873, 1, 0, 0, 0, 936, 886, 1, 0, 0, 0, 936, 899, 1, 0, 0, 0, 936, 911, 1, 0, 0, 0, 936, 914, 1, 0, 0, 0, 936, 925, 1, 0, 0, 0, 937, 11, 1, 0, 0, 0, 938, 939, 5, 48, 0, 0, 939, 944, 3, 14, 7, 0, 940, 941, 5, 501, 0, 0, 941, 943, 3, 14, 7, 0, 942, 940, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 951, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 5, 214, 0, 0, 948, 949, 5, 210, 0, 0, 949, 951, 5, 211, 0, 0, 950, 938, 1, 0, 0, 0, 950, 947, 1, 0, 0, 0, 951, 13, 1, 0, 0, 0, 952, 953, 5, 207, 0, 0, 953, 954, 5, 490, 0, 0, 954, 968, 5, 517, 0, 0, 955, 956, 5, 208, 0, 0, 956, 957, 5, 490, 0, 0, 957, 968, 5, 517, 0, 0, 958, 959, 5, 517, 0, 0, 959, 960, 5, 490, 0, 0, 960, 968, 5, 517, 0, 0, 961, 962, 5, 517, 0, 0, 962, 963, 5, 490, 0, 0, 963, 968, 5, 93, 0, 0, 964, 965, 5, 517, 0, 0, 965, 966, 5, 490, 0, 0, 966, 968, 5, 485, 0, 0, 967, 952, 1, 0, 0, 0, 967, 955, 1, 0, 0, 0, 967, 958, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 964, 1, 0, 0, 0, 968, 15, 1, 0, 0, 0, 969, 971, 3, 18, 9, 0, 970, 972, 5, 500, 0, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 994, 1, 0, 0, 0, 973, 975, 3, 24, 12, 0, 974, 976, 5, 500, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 994, 1, 0, 0, 0, 977, 979, 3, 26, 13, 0, 978, 980, 5, 500, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 994, 1, 0, 0, 0, 981, 983, 3, 28, 14, 0, 982, 984, 5, 500, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 994, 1, 0, 0, 0, 985, 987, 3, 30, 15, 0, 986, 988, 5, 500, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, 0, 0, 989, 991, 3, 32, 16, 0, 990, 992, 5, 500, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 1, 0, 0, 0, 993, 969, 1, 0, 0, 0, 993, 973, 1, 0, 0, 0, 993, 977, 1, 0, 0, 0, 993, 981, 1, 0, 0, 0, 993, 985, 1, 0, 0, 0, 993, 989, 1, 0, 0, 0, 994, 17, 1, 0, 0, 0, 995, 996, 5, 48, 0, 0, 996, 997, 5, 35, 0, 0, 997, 998, 5, 490, 0, 0, 998, 1011, 3, 712, 356, 0, 999, 1000, 5, 355, 0, 0, 1000, 1001, 5, 503, 0, 0, 1001, 1006, 3, 20, 10, 0, 1002, 1003, 5, 501, 0, 0, 1003, 1005, 3, 20, 10, 0, 1004, 1002, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 504, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 999, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1035, 1, 0, 0, 0, 1013, 1014, 5, 48, 0, 0, 1014, 1015, 3, 22, 11, 0, 1015, 1016, 5, 93, 0, 0, 1016, 1017, 3, 714, 357, 0, 1017, 1035, 1, 0, 0, 0, 1018, 1019, 5, 48, 0, 0, 1019, 1020, 5, 503, 0, 0, 1020, 1025, 3, 22, 11, 0, 1021, 1022, 5, 501, 0, 0, 1022, 1024, 3, 22, 11, 0, 1023, 1021, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1029, 5, 504, 0, 0, 1029, 1030, 5, 93, 0, 0, 1030, 1031, 3, 714, 357, 0, 1031, 1035, 1, 0, 0, 0, 1032, 1033, 5, 48, 0, 0, 1033, 1035, 3, 22, 11, 0, 1034, 995, 1, 0, 0, 0, 1034, 1013, 1, 0, 0, 0, 1034, 1018, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 19, 1, 0, 0, 0, 1036, 1037, 3, 714, 357, 0, 1037, 1038, 5, 76, 0, 0, 1038, 1039, 3, 714, 357, 0, 1039, 21, 1, 0, 0, 0, 1040, 1041, 3, 714, 357, 0, 1041, 1042, 5, 490, 0, 0, 1042, 1043, 3, 434, 217, 0, 1043, 1048, 1, 0, 0, 0, 1044, 1045, 5, 517, 0, 0, 1045, 1046, 5, 490, 0, 0, 1046, 1048, 3, 434, 217, 0, 1047, 1040, 1, 0, 0, 0, 1047, 1044, 1, 0, 0, 0, 1048, 23, 1, 0, 0, 0, 1049, 1050, 5, 390, 0, 0, 1050, 1051, 5, 392, 0, 0, 1051, 1052, 3, 714, 357, 0, 1052, 1053, 5, 505, 0, 0, 1053, 1054, 3, 394, 197, 0, 1054, 1055, 5, 506, 0, 0, 1055, 1064, 1, 0, 0, 0, 1056, 1057, 5, 390, 0, 0, 1057, 1058, 5, 391, 0, 0, 1058, 1059, 3, 714, 357, 0, 1059, 1060, 5, 505, 0, 0, 1060, 1061, 3, 394, 197, 0, 1061, 1062, 5, 506, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1049, 1, 0, 0, 0, 1063, 1056, 1, 0, 0, 0, 1064, 25, 1, 0, 0, 0, 1065, 1066, 5, 19, 0, 0, 1066, 1067, 5, 186, 0, 0, 1067, 1072, 3, 714, 357, 0, 1068, 1069, 5, 501, 0, 0, 1069, 1071, 3, 714, 357, 0, 1070, 1068, 1, 0, 0, 0, 1071, 1074, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 27, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 5, 430, 0, 0, 1076, 1077, 3, 714, 357, 0, 1077, 1078, 5, 139, 0, 0, 1078, 1079, 5, 505, 0, 0, 1079, 1080, 3, 394, 197, 0, 1080, 1081, 5, 506, 0, 0, 1081, 29, 1, 0, 0, 0, 1082, 1083, 5, 47, 0, 0, 1083, 1084, 5, 203, 0, 0, 1084, 1085, 3, 354, 177, 0, 1085, 31, 1, 0, 0, 0, 1086, 1087, 5, 19, 0, 0, 1087, 1088, 5, 203, 0, 0, 1088, 1089, 5, 520, 0, 0, 1089, 33, 1, 0, 0, 0, 1090, 1091, 5, 374, 0, 0, 1091, 1092, 7, 2, 0, 0, 1092, 1095, 3, 712, 356, 0, 1093, 1094, 5, 429, 0, 0, 1094, 1096, 3, 712, 356, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1114, 1, 0, 0, 0, 1097, 1098, 5, 375, 0, 0, 1098, 1099, 5, 33, 0, 0, 1099, 1114, 3, 712, 356, 0, 1100, 1101, 5, 287, 0, 0, 1101, 1102, 5, 376, 0, 0, 1102, 1103, 5, 33, 0, 0, 1103, 1114, 3, 712, 356, 0, 1104, 1105, 5, 372, 0, 0, 1105, 1109, 5, 503, 0, 0, 1106, 1108, 3, 36, 18, 0, 1107, 1106, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1114, 5, 504, 0, 0, 1113, 1090, 1, 0, 0, 0, 1113, 1097, 1, 0, 0, 0, 1113, 1100, 1, 0, 0, 0, 1113, 1104, 1, 0, 0, 0, 1114, 35, 1, 0, 0, 0, 1115, 1116, 5, 372, 0, 0, 1116, 1117, 5, 156, 0, 0, 1117, 1122, 5, 517, 0, 0, 1118, 1119, 5, 33, 0, 0, 1119, 1123, 3, 712, 356, 0, 1120, 1121, 5, 30, 0, 0, 1121, 1123, 3, 712, 356, 0, 1122, 1118, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1125, 1, 0, 0, 0, 1124, 1126, 5, 500, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1141, 1, 0, 0, 0, 1127, 1128, 5, 372, 0, 0, 1128, 1129, 5, 517, 0, 0, 1129, 1133, 5, 503, 0, 0, 1130, 1132, 3, 36, 18, 0, 1131, 1130, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 504, 0, 0, 1137, 1139, 5, 500, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1141, 1, 0, 0, 0, 1140, 1115, 1, 0, 0, 0, 1140, 1127, 1, 0, 0, 0, 1141, 37, 1, 0, 0, 0, 1142, 1143, 5, 19, 0, 0, 1143, 1144, 5, 23, 0, 0, 1144, 1222, 3, 712, 356, 0, 1145, 1146, 5, 19, 0, 0, 1146, 1147, 5, 27, 0, 0, 1147, 1222, 3, 712, 356, 0, 1148, 1149, 5, 19, 0, 0, 1149, 1150, 5, 28, 0, 0, 1150, 1222, 3, 712, 356, 0, 1151, 1152, 5, 19, 0, 0, 1152, 1153, 5, 37, 0, 0, 1153, 1222, 3, 712, 356, 0, 1154, 1155, 5, 19, 0, 0, 1155, 1156, 5, 30, 0, 0, 1156, 1222, 3, 712, 356, 0, 1157, 1158, 5, 19, 0, 0, 1158, 1159, 5, 31, 0, 0, 1159, 1222, 3, 712, 356, 0, 1160, 1161, 5, 19, 0, 0, 1161, 1162, 5, 33, 0, 0, 1162, 1222, 3, 712, 356, 0, 1163, 1164, 5, 19, 0, 0, 1164, 1165, 5, 34, 0, 0, 1165, 1222, 3, 712, 356, 0, 1166, 1167, 5, 19, 0, 0, 1167, 1168, 5, 29, 0, 0, 1168, 1222, 3, 712, 356, 0, 1169, 1170, 5, 19, 0, 0, 1170, 1171, 5, 36, 0, 0, 1171, 1222, 3, 712, 356, 0, 1172, 1173, 5, 19, 0, 0, 1173, 1174, 5, 114, 0, 0, 1174, 1175, 5, 116, 0, 0, 1175, 1222, 3, 712, 356, 0, 1176, 1177, 5, 19, 0, 0, 1177, 1178, 5, 41, 0, 0, 1178, 1179, 3, 712, 356, 0, 1179, 1180, 5, 93, 0, 0, 1180, 1181, 3, 712, 356, 0, 1181, 1222, 1, 0, 0, 0, 1182, 1183, 5, 19, 0, 0, 1183, 1184, 5, 314, 0, 0, 1184, 1185, 5, 339, 0, 0, 1185, 1222, 3, 712, 356, 0, 1186, 1187, 5, 19, 0, 0, 1187, 1188, 5, 314, 0, 0, 1188, 1189, 5, 312, 0, 0, 1189, 1222, 3, 712, 356, 0, 1190, 1191, 5, 19, 0, 0, 1191, 1192, 5, 440, 0, 0, 1192, 1193, 5, 441, 0, 0, 1193, 1194, 5, 312, 0, 0, 1194, 1222, 3, 712, 356, 0, 1195, 1196, 5, 19, 0, 0, 1196, 1197, 5, 32, 0, 0, 1197, 1222, 3, 712, 356, 0, 1198, 1199, 5, 19, 0, 0, 1199, 1200, 5, 226, 0, 0, 1200, 1201, 5, 227, 0, 0, 1201, 1222, 3, 712, 356, 0, 1202, 1203, 5, 19, 0, 0, 1203, 1204, 5, 329, 0, 0, 1204, 1205, 5, 417, 0, 0, 1205, 1222, 3, 712, 356, 0, 1206, 1207, 5, 19, 0, 0, 1207, 1208, 5, 311, 0, 0, 1208, 1209, 5, 339, 0, 0, 1209, 1222, 3, 712, 356, 0, 1210, 1211, 5, 19, 0, 0, 1211, 1212, 5, 444, 0, 0, 1212, 1222, 5, 517, 0, 0, 1213, 1214, 5, 19, 0, 0, 1214, 1215, 5, 219, 0, 0, 1215, 1216, 5, 517, 0, 0, 1216, 1219, 5, 289, 0, 0, 1217, 1220, 3, 712, 356, 0, 1218, 1220, 5, 521, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1218, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1142, 1, 0, 0, 0, 1221, 1145, 1, 0, 0, 0, 1221, 1148, 1, 0, 0, 0, 1221, 1151, 1, 0, 0, 0, 1221, 1154, 1, 0, 0, 0, 1221, 1157, 1, 0, 0, 0, 1221, 1160, 1, 0, 0, 0, 1221, 1163, 1, 0, 0, 0, 1221, 1166, 1, 0, 0, 0, 1221, 1169, 1, 0, 0, 0, 1221, 1172, 1, 0, 0, 0, 1221, 1176, 1, 0, 0, 0, 1221, 1182, 1, 0, 0, 0, 1221, 1186, 1, 0, 0, 0, 1221, 1190, 1, 0, 0, 0, 1221, 1195, 1, 0, 0, 0, 1221, 1198, 1, 0, 0, 0, 1221, 1202, 1, 0, 0, 0, 1221, 1206, 1, 0, 0, 0, 1221, 1210, 1, 0, 0, 0, 1221, 1213, 1, 0, 0, 0, 1222, 39, 1, 0, 0, 0, 1223, 1224, 5, 20, 0, 0, 1224, 1225, 5, 23, 0, 0, 1225, 1226, 3, 712, 356, 0, 1226, 1227, 5, 426, 0, 0, 1227, 1228, 5, 521, 0, 0, 1228, 1235, 1, 0, 0, 0, 1229, 1230, 5, 20, 0, 0, 1230, 1231, 5, 29, 0, 0, 1231, 1232, 5, 521, 0, 0, 1232, 1233, 5, 426, 0, 0, 1233, 1235, 5, 521, 0, 0, 1234, 1223, 1, 0, 0, 0, 1234, 1229, 1, 0, 0, 0, 1235, 41, 1, 0, 0, 0, 1236, 1245, 5, 21, 0, 0, 1237, 1246, 5, 33, 0, 0, 1238, 1246, 5, 30, 0, 0, 1239, 1246, 5, 34, 0, 0, 1240, 1246, 5, 31, 0, 0, 1241, 1246, 5, 28, 0, 0, 1242, 1246, 5, 37, 0, 0, 1243, 1244, 5, 353, 0, 0, 1244, 1246, 5, 352, 0, 0, 1245, 1237, 1, 0, 0, 0, 1245, 1238, 1, 0, 0, 0, 1245, 1239, 1, 0, 0, 0, 1245, 1240, 1, 0, 0, 0, 1245, 1241, 1, 0, 0, 0, 1245, 1242, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 3, 712, 356, 0, 1248, 1249, 5, 426, 0, 0, 1249, 1250, 5, 219, 0, 0, 1250, 1256, 5, 517, 0, 0, 1251, 1254, 5, 289, 0, 0, 1252, 1255, 3, 712, 356, 0, 1253, 1255, 5, 521, 0, 0, 1254, 1252, 1, 0, 0, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1251, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1305, 1, 0, 0, 0, 1258, 1267, 5, 21, 0, 0, 1259, 1268, 5, 33, 0, 0, 1260, 1268, 5, 30, 0, 0, 1261, 1268, 5, 34, 0, 0, 1262, 1268, 5, 31, 0, 0, 1263, 1268, 5, 28, 0, 0, 1264, 1268, 5, 37, 0, 0, 1265, 1266, 5, 353, 0, 0, 1266, 1268, 5, 352, 0, 0, 1267, 1259, 1, 0, 0, 0, 1267, 1260, 1, 0, 0, 0, 1267, 1261, 1, 0, 0, 0, 1267, 1262, 1, 0, 0, 0, 1267, 1263, 1, 0, 0, 0, 1267, 1264, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 3, 712, 356, 0, 1270, 1273, 5, 426, 0, 0, 1271, 1274, 3, 712, 356, 0, 1272, 1274, 5, 521, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1305, 1, 0, 0, 0, 1275, 1276, 5, 21, 0, 0, 1276, 1277, 5, 23, 0, 0, 1277, 1278, 3, 712, 356, 0, 1278, 1281, 5, 426, 0, 0, 1279, 1282, 3, 712, 356, 0, 1280, 1282, 5, 521, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1305, 1, 0, 0, 0, 1283, 1284, 5, 21, 0, 0, 1284, 1285, 5, 219, 0, 0, 1285, 1286, 3, 712, 356, 0, 1286, 1287, 5, 426, 0, 0, 1287, 1288, 5, 219, 0, 0, 1288, 1294, 5, 517, 0, 0, 1289, 1292, 5, 289, 0, 0, 1290, 1293, 3, 712, 356, 0, 1291, 1293, 5, 521, 0, 0, 1292, 1290, 1, 0, 0, 0, 1292, 1291, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1289, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1305, 1, 0, 0, 0, 1296, 1297, 5, 21, 0, 0, 1297, 1298, 5, 219, 0, 0, 1298, 1299, 3, 712, 356, 0, 1299, 1302, 5, 426, 0, 0, 1300, 1303, 3, 712, 356, 0, 1301, 1303, 5, 521, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1236, 1, 0, 0, 0, 1304, 1258, 1, 0, 0, 0, 1304, 1275, 1, 0, 0, 0, 1304, 1283, 1, 0, 0, 0, 1304, 1296, 1, 0, 0, 0, 1305, 43, 1, 0, 0, 0, 1306, 1324, 3, 46, 23, 0, 1307, 1324, 3, 48, 24, 0, 1308, 1324, 3, 52, 26, 0, 1309, 1324, 3, 54, 27, 0, 1310, 1324, 3, 56, 28, 0, 1311, 1324, 3, 58, 29, 0, 1312, 1324, 3, 60, 30, 0, 1313, 1324, 3, 62, 31, 0, 1314, 1324, 3, 64, 32, 0, 1315, 1324, 3, 66, 33, 0, 1316, 1324, 3, 68, 34, 0, 1317, 1324, 3, 70, 35, 0, 1318, 1324, 3, 72, 36, 0, 1319, 1324, 3, 74, 37, 0, 1320, 1324, 3, 76, 38, 0, 1321, 1324, 3, 80, 40, 0, 1322, 1324, 3, 82, 41, 0, 1323, 1306, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1323, 1308, 1, 0, 0, 0, 1323, 1309, 1, 0, 0, 0, 1323, 1310, 1, 0, 0, 0, 1323, 1311, 1, 0, 0, 0, 1323, 1312, 1, 0, 0, 0, 1323, 1313, 1, 0, 0, 0, 1323, 1314, 1, 0, 0, 0, 1323, 1315, 1, 0, 0, 0, 1323, 1316, 1, 0, 0, 0, 1323, 1317, 1, 0, 0, 0, 1323, 1318, 1, 0, 0, 0, 1323, 1319, 1, 0, 0, 0, 1323, 1320, 1, 0, 0, 0, 1323, 1321, 1, 0, 0, 0, 1323, 1322, 1, 0, 0, 0, 1324, 45, 1, 0, 0, 0, 1325, 1326, 5, 17, 0, 0, 1326, 1327, 5, 29, 0, 0, 1327, 1328, 5, 449, 0, 0, 1328, 1331, 3, 712, 356, 0, 1329, 1330, 5, 483, 0, 0, 1330, 1332, 5, 517, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 47, 1, 0, 0, 0, 1333, 1334, 5, 19, 0, 0, 1334, 1335, 5, 29, 0, 0, 1335, 1336, 5, 449, 0, 0, 1336, 1337, 3, 712, 356, 0, 1337, 49, 1, 0, 0, 0, 1338, 1339, 5, 461, 0, 0, 1339, 1340, 5, 449, 0, 0, 1340, 1341, 3, 714, 357, 0, 1341, 1342, 5, 503, 0, 0, 1342, 1343, 3, 84, 42, 0, 1343, 1347, 5, 504, 0, 0, 1344, 1345, 5, 455, 0, 0, 1345, 1346, 5, 85, 0, 0, 1346, 1348, 5, 450, 0, 0, 1347, 1344, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 51, 1, 0, 0, 0, 1349, 1350, 5, 18, 0, 0, 1350, 1351, 5, 461, 0, 0, 1351, 1352, 5, 449, 0, 0, 1352, 1353, 3, 714, 357, 0, 1353, 1354, 5, 47, 0, 0, 1354, 1355, 5, 29, 0, 0, 1355, 1356, 5, 450, 0, 0, 1356, 1357, 5, 503, 0, 0, 1357, 1358, 3, 84, 42, 0, 1358, 1359, 5, 504, 0, 0, 1359, 1372, 1, 0, 0, 0, 1360, 1361, 5, 18, 0, 0, 1361, 1362, 5, 461, 0, 0, 1362, 1363, 5, 449, 0, 0, 1363, 1364, 3, 714, 357, 0, 1364, 1365, 5, 133, 0, 0, 1365, 1366, 5, 29, 0, 0, 1366, 1367, 5, 450, 0, 0, 1367, 1368, 5, 503, 0, 0, 1368, 1369, 3, 84, 42, 0, 1369, 1370, 5, 504, 0, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1349, 1, 0, 0, 0, 1371, 1360, 1, 0, 0, 0, 1372, 53, 1, 0, 0, 0, 1373, 1374, 5, 19, 0, 0, 1374, 1375, 5, 461, 0, 0, 1375, 1376, 5, 449, 0, 0, 1376, 1377, 3, 714, 357, 0, 1377, 55, 1, 0, 0, 0, 1378, 1379, 5, 451, 0, 0, 1379, 1380, 3, 84, 42, 0, 1380, 1381, 5, 93, 0, 0, 1381, 1382, 3, 712, 356, 0, 1382, 1383, 5, 503, 0, 0, 1383, 1384, 3, 86, 43, 0, 1384, 1387, 5, 504, 0, 0, 1385, 1386, 5, 72, 0, 0, 1386, 1388, 5, 517, 0, 0, 1387, 1385, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 57, 1, 0, 0, 0, 1389, 1390, 5, 452, 0, 0, 1390, 1391, 3, 84, 42, 0, 1391, 1392, 5, 93, 0, 0, 1392, 1393, 3, 712, 356, 0, 1393, 59, 1, 0, 0, 0, 1394, 1395, 5, 451, 0, 0, 1395, 1396, 5, 397, 0, 0, 1396, 1397, 5, 93, 0, 0, 1397, 1398, 5, 30, 0, 0, 1398, 1399, 3, 712, 356, 0, 1399, 1400, 5, 426, 0, 0, 1400, 1401, 3, 84, 42, 0, 1401, 61, 1, 0, 0, 0, 1402, 1403, 5, 452, 0, 0, 1403, 1404, 5, 397, 0, 0, 1404, 1405, 5, 93, 0, 0, 1405, 1406, 5, 30, 0, 0, 1406, 1407, 3, 712, 356, 0, 1407, 1408, 5, 71, 0, 0, 1408, 1409, 3, 84, 42, 0, 1409, 63, 1, 0, 0, 0, 1410, 1411, 5, 451, 0, 0, 1411, 1412, 5, 25, 0, 0, 1412, 1413, 5, 93, 0, 0, 1413, 1414, 5, 33, 0, 0, 1414, 1415, 3, 712, 356, 0, 1415, 1416, 5, 426, 0, 0, 1416, 1417, 3, 84, 42, 0, 1417, 65, 1, 0, 0, 0, 1418, 1419, 5, 452, 0, 0, 1419, 1420, 5, 25, 0, 0, 1420, 1421, 5, 93, 0, 0, 1421, 1422, 5, 33, 0, 0, 1422, 1423, 3, 712, 356, 0, 1423, 1424, 5, 71, 0, 0, 1424, 1425, 3, 84, 42, 0, 1425, 67, 1, 0, 0, 0, 1426, 1427, 5, 451, 0, 0, 1427, 1428, 5, 397, 0, 0, 1428, 1429, 5, 93, 0, 0, 1429, 1430, 5, 32, 0, 0, 1430, 1431, 3, 712, 356, 0, 1431, 1432, 5, 426, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 69, 1, 0, 0, 0, 1434, 1435, 5, 452, 0, 0, 1435, 1436, 5, 397, 0, 0, 1436, 1437, 5, 93, 0, 0, 1437, 1438, 5, 32, 0, 0, 1438, 1439, 3, 712, 356, 0, 1439, 1440, 5, 71, 0, 0, 1440, 1441, 3, 84, 42, 0, 1441, 71, 1, 0, 0, 0, 1442, 1443, 5, 451, 0, 0, 1443, 1444, 5, 459, 0, 0, 1444, 1445, 5, 93, 0, 0, 1445, 1446, 5, 314, 0, 0, 1446, 1447, 5, 312, 0, 0, 1447, 1448, 3, 712, 356, 0, 1448, 1449, 5, 426, 0, 0, 1449, 1450, 3, 84, 42, 0, 1450, 73, 1, 0, 0, 0, 1451, 1452, 5, 452, 0, 0, 1452, 1453, 5, 459, 0, 0, 1453, 1454, 5, 93, 0, 0, 1454, 1455, 5, 314, 0, 0, 1455, 1456, 5, 312, 0, 0, 1456, 1457, 3, 712, 356, 0, 1457, 1458, 5, 71, 0, 0, 1458, 1459, 3, 84, 42, 0, 1459, 75, 1, 0, 0, 0, 1460, 1461, 5, 18, 0, 0, 1461, 1462, 5, 59, 0, 0, 1462, 1463, 5, 448, 0, 0, 1463, 1464, 5, 460, 0, 0, 1464, 1472, 7, 3, 0, 0, 1465, 1466, 5, 18, 0, 0, 1466, 1467, 5, 59, 0, 0, 1467, 1468, 5, 448, 0, 0, 1468, 1469, 5, 456, 0, 0, 1469, 1470, 5, 486, 0, 0, 1470, 1472, 7, 4, 0, 0, 1471, 1460, 1, 0, 0, 0, 1471, 1465, 1, 0, 0, 0, 1472, 77, 1, 0, 0, 0, 1473, 1474, 5, 456, 0, 0, 1474, 1475, 5, 461, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1477, 5, 351, 0, 0, 1477, 1480, 5, 517, 0, 0, 1478, 1479, 5, 23, 0, 0, 1479, 1481, 3, 712, 356, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 503, 0, 0, 1483, 1488, 3, 714, 357, 0, 1484, 1485, 5, 501, 0, 0, 1485, 1487, 3, 714, 357, 0, 1486, 1484, 1, 0, 0, 0, 1487, 1490, 1, 0, 0, 0, 1488, 1486, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1492, 5, 504, 0, 0, 1492, 79, 1, 0, 0, 0, 1493, 1494, 5, 19, 0, 0, 1494, 1495, 5, 456, 0, 0, 1495, 1496, 5, 461, 0, 0, 1496, 1497, 5, 517, 0, 0, 1497, 81, 1, 0, 0, 0, 1498, 1499, 5, 393, 0, 0, 1499, 1502, 5, 448, 0, 0, 1500, 1501, 5, 289, 0, 0, 1501, 1503, 3, 712, 356, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 83, 1, 0, 0, 0, 1504, 1509, 3, 712, 356, 0, 1505, 1506, 5, 501, 0, 0, 1506, 1508, 3, 712, 356, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 85, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1517, 3, 88, 44, 0, 1513, 1514, 5, 501, 0, 0, 1514, 1516, 3, 88, 44, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 87, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1549, 5, 17, 0, 0, 1521, 1549, 5, 100, 0, 0, 1522, 1523, 5, 481, 0, 0, 1523, 1549, 5, 495, 0, 0, 1524, 1525, 5, 481, 0, 0, 1525, 1526, 5, 503, 0, 0, 1526, 1531, 5, 521, 0, 0, 1527, 1528, 5, 501, 0, 0, 1528, 1530, 5, 521, 0, 0, 1529, 1527, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, 1534, 1549, 5, 504, 0, 0, 1535, 1536, 5, 482, 0, 0, 1536, 1549, 5, 495, 0, 0, 1537, 1538, 5, 482, 0, 0, 1538, 1539, 5, 503, 0, 0, 1539, 1544, 5, 521, 0, 0, 1540, 1541, 5, 501, 0, 0, 1541, 1543, 5, 521, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1549, 5, 504, 0, 0, 1548, 1520, 1, 0, 0, 0, 1548, 1521, 1, 0, 0, 0, 1548, 1522, 1, 0, 0, 0, 1548, 1524, 1, 0, 0, 0, 1548, 1535, 1, 0, 0, 0, 1548, 1537, 1, 0, 0, 0, 1549, 89, 1, 0, 0, 0, 1550, 1551, 5, 24, 0, 0, 1551, 1552, 5, 23, 0, 0, 1552, 1554, 3, 712, 356, 0, 1553, 1555, 3, 92, 46, 0, 1554, 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1558, 3, 94, 47, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1597, 1, 0, 0, 0, 1559, 1560, 5, 11, 0, 0, 1560, 1561, 5, 23, 0, 0, 1561, 1563, 3, 712, 356, 0, 1562, 1564, 3, 92, 46, 0, 1563, 1562, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1567, 3, 94, 47, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1597, 1, 0, 0, 0, 1568, 1569, 5, 25, 0, 0, 1569, 1570, 5, 23, 0, 0, 1570, 1572, 3, 712, 356, 0, 1571, 1573, 3, 94, 47, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 5, 76, 0, 0, 1575, 1577, 5, 503, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 3, 586, 293, 0, 1579, 1581, 5, 504, 0, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1597, 1, 0, 0, 0, 1582, 1583, 5, 26, 0, 0, 1583, 1584, 5, 23, 0, 0, 1584, 1586, 3, 712, 356, 0, 1585, 1587, 3, 94, 47, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1597, 1, 0, 0, 0, 1588, 1589, 5, 23, 0, 0, 1589, 1591, 3, 712, 356, 0, 1590, 1592, 3, 92, 46, 0, 1591, 1590, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1595, 3, 94, 47, 0, 1594, 1593, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1550, 1, 0, 0, 0, 1596, 1559, 1, 0, 0, 0, 1596, 1568, 1, 0, 0, 0, 1596, 1582, 1, 0, 0, 0, 1596, 1588, 1, 0, 0, 0, 1597, 91, 1, 0, 0, 0, 1598, 1599, 5, 46, 0, 0, 1599, 1603, 3, 712, 356, 0, 1600, 1601, 5, 45, 0, 0, 1601, 1603, 3, 712, 356, 0, 1602, 1598, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1603, 93, 1, 0, 0, 0, 1604, 1606, 5, 503, 0, 0, 1605, 1607, 3, 100, 50, 0, 1606, 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1610, 5, 504, 0, 0, 1609, 1611, 3, 96, 48, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1614, 1, 0, 0, 0, 1612, 1614, 3, 96, 48, 0, 1613, 1604, 1, 0, 0, 0, 1613, 1612, 1, 0, 0, 0, 1614, 95, 1, 0, 0, 0, 1615, 1622, 3, 98, 49, 0, 1616, 1618, 5, 501, 0, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 3, 98, 49, 0, 1620, 1617, 1, 0, 0, 0, 1621, 1624, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 97, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1625, 1626, 5, 406, 0, 0, 1626, 1630, 5, 517, 0, 0, 1627, 1628, 5, 41, 0, 0, 1628, 1630, 3, 114, 57, 0, 1629, 1625, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1630, 99, 1, 0, 0, 0, 1631, 1636, 3, 102, 51, 0, 1632, 1633, 5, 501, 0, 0, 1633, 1635, 3, 102, 51, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 101, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1641, 3, 722, 361, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1645, 1, 0, 0, 0, 1642, 1644, 3, 724, 362, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1647, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1648, 1649, 3, 104, 52, 0, 1649, 1650, 5, 509, 0, 0, 1650, 1654, 3, 108, 54, 0, 1651, 1653, 3, 106, 53, 0, 1652, 1651, 1, 0, 0, 0, 1653, 1656, 1, 0, 0, 0, 1654, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 103, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1661, 5, 521, 0, 0, 1658, 1661, 5, 523, 0, 0, 1659, 1661, 3, 734, 367, 0, 1660, 1657, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1660, 1659, 1, 0, 0, 0, 1661, 105, 1, 0, 0, 0, 1662, 1665, 5, 7, 0, 0, 1663, 1664, 5, 302, 0, 0, 1664, 1666, 5, 517, 0, 0, 1665, 1663, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1696, 1, 0, 0, 0, 1667, 1668, 5, 287, 0, 0, 1668, 1671, 5, 288, 0, 0, 1669, 1670, 5, 302, 0, 0, 1670, 1672, 5, 517, 0, 0, 1671, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1696, 1, 0, 0, 0, 1673, 1676, 5, 294, 0, 0, 1674, 1675, 5, 302, 0, 0, 1675, 1677, 5, 517, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1696, 1, 0, 0, 0, 1678, 1681, 5, 295, 0, 0, 1679, 1682, 3, 716, 358, 0, 1680, 1682, 3, 672, 336, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, 0, 1682, 1696, 1, 0, 0, 0, 1683, 1686, 5, 301, 0, 0, 1684, 1685, 5, 302, 0, 0, 1685, 1687, 5, 517, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1696, 1, 0, 0, 0, 1688, 1693, 5, 310, 0, 0, 1689, 1691, 5, 480, 0, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1694, 3, 712, 356, 0, 1693, 1690, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1662, 1, 0, 0, 0, 1695, 1667, 1, 0, 0, 0, 1695, 1673, 1, 0, 0, 0, 1695, 1678, 1, 0, 0, 0, 1695, 1683, 1, 0, 0, 0, 1695, 1688, 1, 0, 0, 0, 1696, 107, 1, 0, 0, 0, 1697, 1701, 5, 262, 0, 0, 1698, 1699, 5, 503, 0, 0, 1699, 1700, 5, 519, 0, 0, 1700, 1702, 5, 504, 0, 0, 1701, 1698, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1734, 1, 0, 0, 0, 1703, 1734, 5, 263, 0, 0, 1704, 1734, 5, 264, 0, 0, 1705, 1734, 5, 265, 0, 0, 1706, 1734, 5, 266, 0, 0, 1707, 1734, 5, 267, 0, 0, 1708, 1734, 5, 268, 0, 0, 1709, 1734, 5, 269, 0, 0, 1710, 1734, 5, 270, 0, 0, 1711, 1734, 5, 271, 0, 0, 1712, 1734, 5, 272, 0, 0, 1713, 1734, 5, 273, 0, 0, 1714, 1715, 5, 274, 0, 0, 1715, 1716, 5, 503, 0, 0, 1716, 1717, 3, 110, 55, 0, 1717, 1718, 5, 504, 0, 0, 1718, 1734, 1, 0, 0, 0, 1719, 1720, 5, 23, 0, 0, 1720, 1721, 5, 491, 0, 0, 1721, 1722, 5, 521, 0, 0, 1722, 1734, 5, 492, 0, 0, 1723, 1724, 5, 275, 0, 0, 1724, 1734, 3, 712, 356, 0, 1725, 1726, 5, 28, 0, 0, 1726, 1727, 5, 503, 0, 0, 1727, 1728, 3, 712, 356, 0, 1728, 1729, 5, 504, 0, 0, 1729, 1734, 1, 0, 0, 0, 1730, 1731, 5, 13, 0, 0, 1731, 1734, 3, 712, 356, 0, 1732, 1734, 3, 712, 356, 0, 1733, 1697, 1, 0, 0, 0, 1733, 1703, 1, 0, 0, 0, 1733, 1704, 1, 0, 0, 0, 1733, 1705, 1, 0, 0, 0, 1733, 1706, 1, 0, 0, 0, 1733, 1707, 1, 0, 0, 0, 1733, 1708, 1, 0, 0, 0, 1733, 1709, 1, 0, 0, 0, 1733, 1710, 1, 0, 0, 0, 1733, 1711, 1, 0, 0, 0, 1733, 1712, 1, 0, 0, 0, 1733, 1713, 1, 0, 0, 0, 1733, 1714, 1, 0, 0, 0, 1733, 1719, 1, 0, 0, 0, 1733, 1723, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, 0, 1734, 109, 1, 0, 0, 0, 1735, 1736, 7, 5, 0, 0, 1736, 111, 1, 0, 0, 0, 1737, 1741, 5, 262, 0, 0, 1738, 1739, 5, 503, 0, 0, 1739, 1740, 5, 519, 0, 0, 1740, 1742, 5, 504, 0, 0, 1741, 1738, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1763, 1, 0, 0, 0, 1743, 1763, 5, 263, 0, 0, 1744, 1763, 5, 264, 0, 0, 1745, 1763, 5, 265, 0, 0, 1746, 1763, 5, 266, 0, 0, 1747, 1763, 5, 267, 0, 0, 1748, 1763, 5, 268, 0, 0, 1749, 1763, 5, 269, 0, 0, 1750, 1763, 5, 270, 0, 0, 1751, 1763, 5, 271, 0, 0, 1752, 1763, 5, 272, 0, 0, 1753, 1763, 5, 273, 0, 0, 1754, 1755, 5, 275, 0, 0, 1755, 1763, 3, 712, 356, 0, 1756, 1757, 5, 28, 0, 0, 1757, 1758, 5, 503, 0, 0, 1758, 1759, 3, 712, 356, 0, 1759, 1760, 5, 504, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1763, 3, 712, 356, 0, 1762, 1737, 1, 0, 0, 0, 1762, 1743, 1, 0, 0, 0, 1762, 1744, 1, 0, 0, 0, 1762, 1745, 1, 0, 0, 0, 1762, 1746, 1, 0, 0, 0, 1762, 1747, 1, 0, 0, 0, 1762, 1748, 1, 0, 0, 0, 1762, 1749, 1, 0, 0, 0, 1762, 1750, 1, 0, 0, 0, 1762, 1751, 1, 0, 0, 0, 1762, 1752, 1, 0, 0, 0, 1762, 1753, 1, 0, 0, 0, 1762, 1754, 1, 0, 0, 0, 1762, 1756, 1, 0, 0, 0, 1762, 1761, 1, 0, 0, 0, 1763, 113, 1, 0, 0, 0, 1764, 1766, 5, 521, 0, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 5, 503, 0, 0, 1768, 1769, 3, 116, 58, 0, 1769, 1770, 5, 504, 0, 0, 1770, 115, 1, 0, 0, 0, 1771, 1776, 3, 118, 59, 0, 1772, 1773, 5, 501, 0, 0, 1773, 1775, 3, 118, 59, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1778, 1, 0, 0, 0, 1776, 1774, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 117, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1781, 3, 120, 60, 0, 1780, 1782, 7, 6, 0, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 119, 1, 0, 0, 0, 1783, 1787, 5, 521, 0, 0, 1784, 1787, 5, 523, 0, 0, 1785, 1787, 3, 734, 367, 0, 1786, 1783, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1785, 1, 0, 0, 0, 1787, 121, 1, 0, 0, 0, 1788, 1789, 5, 27, 0, 0, 1789, 1790, 3, 712, 356, 0, 1790, 1791, 5, 71, 0, 0, 1791, 1792, 3, 712, 356, 0, 1792, 1793, 5, 426, 0, 0, 1793, 1795, 3, 712, 356, 0, 1794, 1796, 3, 124, 62, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 123, 1, 0, 0, 0, 1797, 1799, 3, 126, 63, 0, 1798, 1797, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 125, 1, 0, 0, 0, 1802, 1803, 5, 419, 0, 0, 1803, 1813, 7, 7, 0, 0, 1804, 1805, 5, 42, 0, 0, 1805, 1813, 7, 8, 0, 0, 1806, 1807, 5, 51, 0, 0, 1807, 1813, 7, 9, 0, 0, 1808, 1809, 5, 53, 0, 0, 1809, 1813, 3, 128, 64, 0, 1810, 1811, 5, 406, 0, 0, 1811, 1813, 5, 517, 0, 0, 1812, 1802, 1, 0, 0, 0, 1812, 1804, 1, 0, 0, 0, 1812, 1806, 1, 0, 0, 0, 1812, 1808, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1813, 127, 1, 0, 0, 0, 1814, 1815, 7, 10, 0, 0, 1815, 129, 1, 0, 0, 0, 1816, 1817, 5, 47, 0, 0, 1817, 1818, 5, 38, 0, 0, 1818, 1889, 3, 102, 51, 0, 1819, 1820, 5, 47, 0, 0, 1820, 1821, 5, 39, 0, 0, 1821, 1889, 3, 102, 51, 0, 1822, 1823, 5, 20, 0, 0, 1823, 1824, 5, 38, 0, 0, 1824, 1825, 3, 104, 52, 0, 1825, 1826, 5, 426, 0, 0, 1826, 1827, 3, 104, 52, 0, 1827, 1889, 1, 0, 0, 0, 1828, 1829, 5, 20, 0, 0, 1829, 1830, 5, 39, 0, 0, 1830, 1831, 3, 104, 52, 0, 1831, 1832, 5, 426, 0, 0, 1832, 1833, 3, 104, 52, 0, 1833, 1889, 1, 0, 0, 0, 1834, 1835, 5, 22, 0, 0, 1835, 1836, 5, 38, 0, 0, 1836, 1838, 3, 104, 52, 0, 1837, 1839, 5, 509, 0, 0, 1838, 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1844, 3, 108, 54, 0, 1841, 1843, 3, 106, 53, 0, 1842, 1841, 1, 0, 0, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1889, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1848, 5, 22, 0, 0, 1848, 1849, 5, 39, 0, 0, 1849, 1851, 3, 104, 52, 0, 1850, 1852, 5, 509, 0, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1857, 3, 108, 54, 0, 1854, 1856, 3, 106, 53, 0, 1855, 1854, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1889, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1861, 5, 19, 0, 0, 1861, 1862, 5, 38, 0, 0, 1862, 1889, 3, 104, 52, 0, 1863, 1864, 5, 19, 0, 0, 1864, 1865, 5, 39, 0, 0, 1865, 1889, 3, 104, 52, 0, 1866, 1867, 5, 48, 0, 0, 1867, 1868, 5, 50, 0, 0, 1868, 1889, 5, 517, 0, 0, 1869, 1870, 5, 48, 0, 0, 1870, 1871, 5, 406, 0, 0, 1871, 1889, 5, 517, 0, 0, 1872, 1873, 5, 48, 0, 0, 1873, 1874, 5, 43, 0, 0, 1874, 1889, 5, 42, 0, 0, 1875, 1876, 5, 48, 0, 0, 1876, 1877, 5, 49, 0, 0, 1877, 1878, 5, 503, 0, 0, 1878, 1879, 5, 519, 0, 0, 1879, 1880, 5, 501, 0, 0, 1880, 1881, 5, 519, 0, 0, 1881, 1889, 5, 504, 0, 0, 1882, 1883, 5, 47, 0, 0, 1883, 1884, 5, 41, 0, 0, 1884, 1889, 3, 114, 57, 0, 1885, 1886, 5, 19, 0, 0, 1886, 1887, 5, 41, 0, 0, 1887, 1889, 5, 521, 0, 0, 1888, 1816, 1, 0, 0, 0, 1888, 1819, 1, 0, 0, 0, 1888, 1822, 1, 0, 0, 0, 1888, 1828, 1, 0, 0, 0, 1888, 1834, 1, 0, 0, 0, 1888, 1847, 1, 0, 0, 0, 1888, 1860, 1, 0, 0, 0, 1888, 1863, 1, 0, 0, 0, 1888, 1866, 1, 0, 0, 0, 1888, 1869, 1, 0, 0, 0, 1888, 1872, 1, 0, 0, 0, 1888, 1875, 1, 0, 0, 0, 1888, 1882, 1, 0, 0, 0, 1888, 1885, 1, 0, 0, 0, 1889, 131, 1, 0, 0, 0, 1890, 1891, 5, 48, 0, 0, 1891, 1892, 5, 53, 0, 0, 1892, 1903, 3, 128, 64, 0, 1893, 1894, 5, 48, 0, 0, 1894, 1895, 5, 42, 0, 0, 1895, 1903, 7, 8, 0, 0, 1896, 1897, 5, 48, 0, 0, 1897, 1898, 5, 51, 0, 0, 1898, 1903, 7, 9, 0, 0, 1899, 1900, 5, 48, 0, 0, 1900, 1901, 5, 406, 0, 0, 1901, 1903, 5, 517, 0, 0, 1902, 1890, 1, 0, 0, 0, 1902, 1893, 1, 0, 0, 0, 1902, 1896, 1, 0, 0, 0, 1902, 1899, 1, 0, 0, 0, 1903, 133, 1, 0, 0, 0, 1904, 1905, 5, 47, 0, 0, 1905, 1906, 5, 420, 0, 0, 1906, 1909, 5, 521, 0, 0, 1907, 1908, 5, 188, 0, 0, 1908, 1910, 5, 517, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1923, 1, 0, 0, 0, 1911, 1912, 5, 20, 0, 0, 1912, 1913, 5, 420, 0, 0, 1913, 1914, 5, 521, 0, 0, 1914, 1915, 5, 426, 0, 0, 1915, 1923, 5, 521, 0, 0, 1916, 1917, 5, 19, 0, 0, 1917, 1918, 5, 420, 0, 0, 1918, 1923, 5, 521, 0, 0, 1919, 1920, 5, 48, 0, 0, 1920, 1921, 5, 406, 0, 0, 1921, 1923, 5, 517, 0, 0, 1922, 1904, 1, 0, 0, 0, 1922, 1911, 1, 0, 0, 0, 1922, 1916, 1, 0, 0, 0, 1922, 1919, 1, 0, 0, 0, 1923, 135, 1, 0, 0, 0, 1924, 1925, 5, 47, 0, 0, 1925, 1926, 5, 33, 0, 0, 1926, 1929, 3, 712, 356, 0, 1927, 1928, 5, 49, 0, 0, 1928, 1930, 5, 519, 0, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1938, 1, 0, 0, 0, 1931, 1932, 5, 19, 0, 0, 1932, 1933, 5, 33, 0, 0, 1933, 1938, 3, 712, 356, 0, 1934, 1935, 5, 48, 0, 0, 1935, 1936, 5, 406, 0, 0, 1936, 1938, 5, 517, 0, 0, 1937, 1924, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1934, 1, 0, 0, 0, 1938, 137, 1, 0, 0, 0, 1939, 1940, 5, 29, 0, 0, 1940, 1942, 5, 521, 0, 0, 1941, 1943, 3, 140, 70, 0, 1942, 1941, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 139, 1, 0, 0, 0, 1944, 1946, 3, 142, 71, 0, 1945, 1944, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 141, 1, 0, 0, 0, 1949, 1950, 5, 406, 0, 0, 1950, 1954, 5, 517, 0, 0, 1951, 1952, 5, 219, 0, 0, 1952, 1954, 5, 517, 0, 0, 1953, 1949, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 143, 1, 0, 0, 0, 1955, 1956, 5, 28, 0, 0, 1956, 1957, 3, 712, 356, 0, 1957, 1958, 5, 503, 0, 0, 1958, 1959, 3, 146, 73, 0, 1959, 1961, 5, 504, 0, 0, 1960, 1962, 3, 152, 76, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 145, 1, 0, 0, 0, 1963, 1968, 3, 148, 74, 0, 1964, 1965, 5, 501, 0, 0, 1965, 1967, 3, 148, 74, 0, 1966, 1964, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 147, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1971, 1973, 3, 722, 361, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1979, 3, 150, 75, 0, 1975, 1977, 5, 188, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 5, 517, 0, 0, 1979, 1976, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 149, 1, 0, 0, 0, 1981, 1997, 5, 521, 0, 0, 1982, 1997, 5, 523, 0, 0, 1983, 1997, 3, 734, 367, 0, 1984, 1997, 5, 312, 0, 0, 1985, 1997, 5, 313, 0, 0, 1986, 1997, 5, 347, 0, 0, 1987, 1997, 5, 346, 0, 0, 1988, 1997, 5, 318, 0, 0, 1989, 1997, 5, 339, 0, 0, 1990, 1997, 5, 340, 0, 0, 1991, 1997, 5, 341, 0, 0, 1992, 1997, 5, 343, 0, 0, 1993, 1997, 5, 26, 0, 0, 1994, 1997, 5, 348, 0, 0, 1995, 1997, 5, 370, 0, 0, 1996, 1981, 1, 0, 0, 0, 1996, 1982, 1, 0, 0, 0, 1996, 1983, 1, 0, 0, 0, 1996, 1984, 1, 0, 0, 0, 1996, 1985, 1, 0, 0, 0, 1996, 1986, 1, 0, 0, 0, 1996, 1987, 1, 0, 0, 0, 1996, 1988, 1, 0, 0, 0, 1996, 1989, 1, 0, 0, 0, 1996, 1990, 1, 0, 0, 0, 1996, 1991, 1, 0, 0, 0, 1996, 1992, 1, 0, 0, 0, 1996, 1993, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1995, 1, 0, 0, 0, 1997, 151, 1, 0, 0, 0, 1998, 2000, 3, 154, 77, 0, 1999, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 153, 1, 0, 0, 0, 2003, 2004, 5, 406, 0, 0, 2004, 2005, 5, 517, 0, 0, 2005, 155, 1, 0, 0, 0, 2006, 2007, 5, 226, 0, 0, 2007, 2008, 5, 227, 0, 0, 2008, 2010, 3, 712, 356, 0, 2009, 2011, 3, 158, 79, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2013, 1, 0, 0, 0, 2012, 2014, 3, 162, 81, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 157, 1, 0, 0, 0, 2015, 2017, 3, 160, 80, 0, 2016, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 159, 1, 0, 0, 0, 2020, 2021, 5, 361, 0, 0, 2021, 2022, 5, 460, 0, 0, 2022, 2026, 5, 517, 0, 0, 2023, 2024, 5, 406, 0, 0, 2024, 2026, 5, 517, 0, 0, 2025, 2020, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 161, 1, 0, 0, 0, 2027, 2028, 5, 503, 0, 0, 2028, 2033, 3, 164, 82, 0, 2029, 2030, 5, 501, 0, 0, 2030, 2032, 3, 164, 82, 0, 2031, 2029, 1, 0, 0, 0, 2032, 2035, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2036, 2037, 5, 504, 0, 0, 2037, 163, 1, 0, 0, 0, 2038, 2039, 5, 226, 0, 0, 2039, 2040, 3, 166, 83, 0, 2040, 2041, 5, 71, 0, 0, 2041, 2042, 5, 332, 0, 0, 2042, 2043, 5, 517, 0, 0, 2043, 165, 1, 0, 0, 0, 2044, 2048, 5, 521, 0, 0, 2045, 2048, 5, 523, 0, 0, 2046, 2048, 3, 734, 367, 0, 2047, 2044, 1, 0, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2046, 1, 0, 0, 0, 2048, 167, 1, 0, 0, 0, 2049, 2050, 5, 329, 0, 0, 2050, 2051, 5, 417, 0, 0, 2051, 2054, 3, 712, 356, 0, 2052, 2053, 5, 406, 0, 0, 2053, 2055, 5, 517, 0, 0, 2054, 2052, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 5, 34, 0, 0, 2057, 2070, 7, 11, 0, 0, 2058, 2059, 5, 407, 0, 0, 2059, 2060, 5, 503, 0, 0, 2060, 2065, 3, 170, 85, 0, 2061, 2062, 5, 501, 0, 0, 2062, 2064, 3, 170, 85, 0, 2063, 2061, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2069, 5, 504, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 2058, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 169, 1, 0, 0, 0, 2072, 2073, 5, 517, 0, 0, 2073, 2074, 5, 76, 0, 0, 2074, 2075, 5, 517, 0, 0, 2075, 171, 1, 0, 0, 0, 2076, 2077, 5, 298, 0, 0, 2077, 2078, 5, 300, 0, 0, 2078, 2079, 3, 712, 356, 0, 2079, 2080, 5, 429, 0, 0, 2080, 2081, 3, 712, 356, 0, 2081, 2082, 3, 174, 87, 0, 2082, 173, 1, 0, 0, 0, 2083, 2084, 5, 307, 0, 0, 2084, 2085, 3, 672, 336, 0, 2085, 2086, 5, 299, 0, 0, 2086, 2087, 5, 517, 0, 0, 2087, 2111, 1, 0, 0, 0, 2088, 2089, 5, 301, 0, 0, 2089, 2090, 3, 178, 89, 0, 2090, 2091, 5, 299, 0, 0, 2091, 2092, 5, 517, 0, 0, 2092, 2111, 1, 0, 0, 0, 2093, 2094, 5, 294, 0, 0, 2094, 2095, 3, 180, 90, 0, 2095, 2096, 5, 299, 0, 0, 2096, 2097, 5, 517, 0, 0, 2097, 2111, 1, 0, 0, 0, 2098, 2099, 5, 304, 0, 0, 2099, 2100, 3, 178, 89, 0, 2100, 2101, 3, 176, 88, 0, 2101, 2102, 5, 299, 0, 0, 2102, 2103, 5, 517, 0, 0, 2103, 2111, 1, 0, 0, 0, 2104, 2105, 5, 305, 0, 0, 2105, 2106, 3, 178, 89, 0, 2106, 2107, 5, 517, 0, 0, 2107, 2108, 5, 299, 0, 0, 2108, 2109, 5, 517, 0, 0, 2109, 2111, 1, 0, 0, 0, 2110, 2083, 1, 0, 0, 0, 2110, 2088, 1, 0, 0, 0, 2110, 2093, 1, 0, 0, 0, 2110, 2098, 1, 0, 0, 0, 2110, 2104, 1, 0, 0, 0, 2111, 175, 1, 0, 0, 0, 2112, 2113, 5, 290, 0, 0, 2113, 2114, 3, 716, 358, 0, 2114, 2115, 5, 285, 0, 0, 2115, 2116, 3, 716, 358, 0, 2116, 2126, 1, 0, 0, 0, 2117, 2118, 5, 491, 0, 0, 2118, 2126, 3, 716, 358, 0, 2119, 2120, 5, 488, 0, 0, 2120, 2126, 3, 716, 358, 0, 2121, 2122, 5, 492, 0, 0, 2122, 2126, 3, 716, 358, 0, 2123, 2124, 5, 489, 0, 0, 2124, 2126, 3, 716, 358, 0, 2125, 2112, 1, 0, 0, 0, 2125, 2117, 1, 0, 0, 0, 2125, 2119, 1, 0, 0, 0, 2125, 2121, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 177, 1, 0, 0, 0, 2127, 2132, 5, 521, 0, 0, 2128, 2129, 5, 496, 0, 0, 2129, 2131, 5, 521, 0, 0, 2130, 2128, 1, 0, 0, 0, 2131, 2134, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 179, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2135, 2140, 3, 178, 89, 0, 2136, 2137, 5, 501, 0, 0, 2137, 2139, 3, 178, 89, 0, 2138, 2136, 1, 0, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 181, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2144, 5, 30, 0, 0, 2144, 2145, 3, 712, 356, 0, 2145, 2147, 5, 503, 0, 0, 2146, 2148, 3, 194, 97, 0, 2147, 2146, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 5, 504, 0, 0, 2150, 2152, 3, 200, 100, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2155, 3, 202, 101, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2157, 5, 96, 0, 0, 2157, 2158, 3, 206, 103, 0, 2158, 2160, 5, 83, 0, 0, 2159, 2161, 5, 500, 0, 0, 2160, 2159, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2164, 5, 496, 0, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 183, 1, 0, 0, 0, 2165, 2166, 5, 114, 0, 0, 2166, 2167, 5, 116, 0, 0, 2167, 2168, 3, 712, 356, 0, 2168, 2170, 5, 503, 0, 0, 2169, 2171, 3, 186, 93, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 5, 504, 0, 0, 2173, 2175, 3, 190, 95, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 1, 0, 0, 0, 2176, 2178, 3, 192, 96, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 5, 76, 0, 0, 2180, 2182, 5, 518, 0, 0, 2181, 2183, 5, 500, 0, 0, 2182, 2181, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 185, 1, 0, 0, 0, 2184, 2189, 3, 188, 94, 0, 2185, 2186, 5, 501, 0, 0, 2186, 2188, 3, 188, 94, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 187, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2193, 3, 198, 99, 0, 2193, 2194, 5, 509, 0, 0, 2194, 2196, 3, 108, 54, 0, 2195, 2197, 5, 7, 0, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 189, 1, 0, 0, 0, 2198, 2199, 5, 77, 0, 0, 2199, 2200, 3, 108, 54, 0, 2200, 191, 1, 0, 0, 0, 2201, 2202, 5, 367, 0, 0, 2202, 2203, 5, 76, 0, 0, 2203, 2204, 5, 517, 0, 0, 2204, 2205, 5, 289, 0, 0, 2205, 2206, 5, 517, 0, 0, 2206, 193, 1, 0, 0, 0, 2207, 2212, 3, 196, 98, 0, 2208, 2209, 5, 501, 0, 0, 2209, 2211, 3, 196, 98, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 195, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2218, 3, 198, 99, 0, 2216, 2218, 5, 520, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 5, 509, 0, 0, 2220, 2221, 3, 108, 54, 0, 2221, 197, 1, 0, 0, 0, 2222, 2226, 5, 521, 0, 0, 2223, 2226, 5, 523, 0, 0, 2224, 2226, 3, 734, 367, 0, 2225, 2222, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2224, 1, 0, 0, 0, 2226, 199, 1, 0, 0, 0, 2227, 2228, 5, 77, 0, 0, 2228, 2231, 3, 108, 54, 0, 2229, 2230, 5, 76, 0, 0, 2230, 2232, 5, 520, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 201, 1, 0, 0, 0, 2233, 2235, 3, 204, 102, 0, 2234, 2233, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 203, 1, 0, 0, 0, 2238, 2239, 5, 219, 0, 0, 2239, 2243, 5, 517, 0, 0, 2240, 2241, 5, 406, 0, 0, 2241, 2243, 5, 517, 0, 0, 2242, 2238, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2243, 205, 1, 0, 0, 0, 2244, 2246, 3, 208, 104, 0, 2245, 2244, 1, 0, 0, 0, 2246, 2249, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 207, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2252, 3, 724, 362, 0, 2251, 2250, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2258, 3, 210, 105, 0, 2257, 2259, 5, 500, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2581, 1, 0, 0, 0, 2260, 2262, 3, 724, 362, 0, 2261, 2260, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2266, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2268, 3, 212, 106, 0, 2267, 2269, 5, 500, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2581, 1, 0, 0, 0, 2270, 2272, 3, 724, 362, 0, 2271, 2270, 1, 0, 0, 0, 2272, 2275, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2276, 2278, 3, 320, 160, 0, 2277, 2279, 5, 500, 0, 0, 2278, 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2581, 1, 0, 0, 0, 2280, 2282, 3, 724, 362, 0, 2281, 2280, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2288, 3, 214, 107, 0, 2287, 2289, 5, 500, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2581, 1, 0, 0, 0, 2290, 2292, 3, 724, 362, 0, 2291, 2290, 1, 0, 0, 0, 2292, 2295, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2298, 3, 216, 108, 0, 2297, 2299, 5, 500, 0, 0, 2298, 2297, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2581, 1, 0, 0, 0, 2300, 2302, 3, 724, 362, 0, 2301, 2300, 1, 0, 0, 0, 2302, 2305, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2306, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2306, 2308, 3, 220, 110, 0, 2307, 2309, 5, 500, 0, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2581, 1, 0, 0, 0, 2310, 2312, 3, 724, 362, 0, 2311, 2310, 1, 0, 0, 0, 2312, 2315, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2316, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2318, 3, 222, 111, 0, 2317, 2319, 5, 500, 0, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2581, 1, 0, 0, 0, 2320, 2322, 3, 724, 362, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2328, 3, 224, 112, 0, 2327, 2329, 5, 500, 0, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2581, 1, 0, 0, 0, 2330, 2332, 3, 724, 362, 0, 2331, 2330, 1, 0, 0, 0, 2332, 2335, 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2338, 3, 226, 113, 0, 2337, 2339, 5, 500, 0, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2581, 1, 0, 0, 0, 2340, 2342, 3, 724, 362, 0, 2341, 2340, 1, 0, 0, 0, 2342, 2345, 1, 0, 0, 0, 2343, 2341, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2348, 3, 232, 116, 0, 2347, 2349, 5, 500, 0, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2581, 1, 0, 0, 0, 2350, 2352, 3, 724, 362, 0, 2351, 2350, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2358, 3, 234, 117, 0, 2357, 2359, 5, 500, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2581, 1, 0, 0, 0, 2360, 2362, 3, 724, 362, 0, 2361, 2360, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2366, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2368, 3, 236, 118, 0, 2367, 2369, 5, 500, 0, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2581, 1, 0, 0, 0, 2370, 2372, 3, 724, 362, 0, 2371, 2370, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2376, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2378, 3, 238, 119, 0, 2377, 2379, 5, 500, 0, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2581, 1, 0, 0, 0, 2380, 2382, 3, 724, 362, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2388, 3, 240, 120, 0, 2387, 2389, 5, 500, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2581, 1, 0, 0, 0, 2390, 2392, 3, 724, 362, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2398, 3, 242, 121, 0, 2397, 2399, 5, 500, 0, 0, 2398, 2397, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2581, 1, 0, 0, 0, 2400, 2402, 3, 724, 362, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2408, 3, 244, 122, 0, 2407, 2409, 5, 500, 0, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2581, 1, 0, 0, 0, 2410, 2412, 3, 724, 362, 0, 2411, 2410, 1, 0, 0, 0, 2412, 2415, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2418, 3, 246, 123, 0, 2417, 2419, 5, 500, 0, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2581, 1, 0, 0, 0, 2420, 2422, 3, 724, 362, 0, 2421, 2420, 1, 0, 0, 0, 2422, 2425, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, 1, 0, 0, 0, 2425, 2423, 1, 0, 0, 0, 2426, 2428, 3, 258, 129, 0, 2427, 2429, 5, 500, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2581, 1, 0, 0, 0, 2430, 2432, 3, 724, 362, 0, 2431, 2430, 1, 0, 0, 0, 2432, 2435, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2436, 2438, 3, 260, 130, 0, 2437, 2439, 5, 500, 0, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2581, 1, 0, 0, 0, 2440, 2442, 3, 724, 362, 0, 2441, 2440, 1, 0, 0, 0, 2442, 2445, 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2446, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2446, 2448, 3, 262, 131, 0, 2447, 2449, 5, 500, 0, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2581, 1, 0, 0, 0, 2450, 2452, 3, 724, 362, 0, 2451, 2450, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2456, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2456, 2458, 3, 264, 132, 0, 2457, 2459, 5, 500, 0, 0, 2458, 2457, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2581, 1, 0, 0, 0, 2460, 2462, 3, 724, 362, 0, 2461, 2460, 1, 0, 0, 0, 2462, 2465, 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2466, 1, 0, 0, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2468, 3, 270, 135, 0, 2467, 2469, 5, 500, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2581, 1, 0, 0, 0, 2470, 2472, 3, 724, 362, 0, 2471, 2470, 1, 0, 0, 0, 2472, 2475, 1, 0, 0, 0, 2473, 2471, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2476, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2478, 3, 276, 138, 0, 2477, 2479, 5, 500, 0, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2581, 1, 0, 0, 0, 2480, 2482, 3, 724, 362, 0, 2481, 2480, 1, 0, 0, 0, 2482, 2485, 1, 0, 0, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2486, 1, 0, 0, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2488, 3, 278, 139, 0, 2487, 2489, 5, 500, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2581, 1, 0, 0, 0, 2490, 2492, 3, 724, 362, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2496, 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2498, 3, 280, 140, 0, 2497, 2499, 5, 500, 0, 0, 2498, 2497, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2581, 1, 0, 0, 0, 2500, 2502, 3, 724, 362, 0, 2501, 2500, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2506, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2508, 3, 282, 141, 0, 2507, 2509, 5, 500, 0, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2581, 1, 0, 0, 0, 2510, 2512, 3, 724, 362, 0, 2511, 2510, 1, 0, 0, 0, 2512, 2515, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2516, 1, 0, 0, 0, 2515, 2513, 1, 0, 0, 0, 2516, 2518, 3, 308, 154, 0, 2517, 2519, 5, 500, 0, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2581, 1, 0, 0, 0, 2520, 2522, 3, 724, 362, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2528, 3, 316, 158, 0, 2527, 2529, 5, 500, 0, 0, 2528, 2527, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2581, 1, 0, 0, 0, 2530, 2532, 3, 724, 362, 0, 2531, 2530, 1, 0, 0, 0, 2532, 2535, 1, 0, 0, 0, 2533, 2531, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2536, 2538, 3, 322, 161, 0, 2537, 2539, 5, 500, 0, 0, 2538, 2537, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2581, 1, 0, 0, 0, 2540, 2542, 3, 724, 362, 0, 2541, 2540, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2548, 3, 324, 162, 0, 2547, 2549, 5, 500, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2581, 1, 0, 0, 0, 2550, 2552, 3, 724, 362, 0, 2551, 2550, 1, 0, 0, 0, 2552, 2555, 1, 0, 0, 0, 2553, 2551, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 2558, 3, 284, 142, 0, 2557, 2559, 5, 500, 0, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2581, 1, 0, 0, 0, 2560, 2562, 3, 724, 362, 0, 2561, 2560, 1, 0, 0, 0, 2562, 2565, 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2566, 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2566, 2568, 3, 286, 143, 0, 2567, 2569, 5, 500, 0, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2581, 1, 0, 0, 0, 2570, 2572, 3, 724, 362, 0, 2571, 2570, 1, 0, 0, 0, 2572, 2575, 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 1, 0, 0, 0, 2575, 2573, 1, 0, 0, 0, 2576, 2578, 3, 304, 152, 0, 2577, 2579, 5, 500, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2581, 1, 0, 0, 0, 2580, 2253, 1, 0, 0, 0, 2580, 2263, 1, 0, 0, 0, 2580, 2273, 1, 0, 0, 0, 2580, 2283, 1, 0, 0, 0, 2580, 2293, 1, 0, 0, 0, 2580, 2303, 1, 0, 0, 0, 2580, 2313, 1, 0, 0, 0, 2580, 2323, 1, 0, 0, 0, 2580, 2333, 1, 0, 0, 0, 2580, 2343, 1, 0, 0, 0, 2580, 2353, 1, 0, 0, 0, 2580, 2363, 1, 0, 0, 0, 2580, 2373, 1, 0, 0, 0, 2580, 2383, 1, 0, 0, 0, 2580, 2393, 1, 0, 0, 0, 2580, 2403, 1, 0, 0, 0, 2580, 2413, 1, 0, 0, 0, 2580, 2423, 1, 0, 0, 0, 2580, 2433, 1, 0, 0, 0, 2580, 2443, 1, 0, 0, 0, 2580, 2453, 1, 0, 0, 0, 2580, 2463, 1, 0, 0, 0, 2580, 2473, 1, 0, 0, 0, 2580, 2483, 1, 0, 0, 0, 2580, 2493, 1, 0, 0, 0, 2580, 2503, 1, 0, 0, 0, 2580, 2513, 1, 0, 0, 0, 2580, 2523, 1, 0, 0, 0, 2580, 2533, 1, 0, 0, 0, 2580, 2543, 1, 0, 0, 0, 2580, 2553, 1, 0, 0, 0, 2580, 2563, 1, 0, 0, 0, 2580, 2573, 1, 0, 0, 0, 2581, 209, 1, 0, 0, 0, 2582, 2583, 5, 97, 0, 0, 2583, 2584, 5, 520, 0, 0, 2584, 2587, 3, 108, 54, 0, 2585, 2586, 5, 490, 0, 0, 2586, 2588, 3, 672, 336, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 211, 1, 0, 0, 0, 2589, 2592, 5, 48, 0, 0, 2590, 2593, 5, 520, 0, 0, 2591, 2593, 3, 218, 109, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 5, 490, 0, 0, 2595, 2596, 3, 672, 336, 0, 2596, 213, 1, 0, 0, 0, 2597, 2598, 5, 520, 0, 0, 2598, 2600, 5, 490, 0, 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2602, 5, 17, 0, 0, 2602, 2608, 3, 112, 56, 0, 2603, 2605, 5, 503, 0, 0, 2604, 2606, 3, 326, 163, 0, 2605, 2604, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2609, 5, 504, 0, 0, 2608, 2603, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2612, 3, 230, 115, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 215, 1, 0, 0, 0, 2613, 2614, 5, 98, 0, 0, 2614, 2620, 5, 520, 0, 0, 2615, 2617, 5, 503, 0, 0, 2616, 2618, 3, 326, 163, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 5, 504, 0, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 217, 1, 0, 0, 0, 2622, 2628, 5, 520, 0, 0, 2623, 2626, 7, 12, 0, 0, 2624, 2627, 5, 521, 0, 0, 2625, 2627, 3, 712, 356, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2625, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2623, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 219, 1, 0, 0, 0, 2632, 2633, 5, 101, 0, 0, 2633, 2636, 5, 520, 0, 0, 2634, 2635, 5, 139, 0, 0, 2635, 2637, 5, 120, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 5, 394, 0, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 230, 115, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 221, 1, 0, 0, 0, 2644, 2645, 5, 100, 0, 0, 2645, 2647, 5, 520, 0, 0, 2646, 2648, 3, 230, 115, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 223, 1, 0, 0, 0, 2649, 2650, 5, 102, 0, 0, 2650, 2652, 5, 520, 0, 0, 2651, 2653, 5, 394, 0, 0, 2652, 2651, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 225, 1, 0, 0, 0, 2654, 2655, 5, 99, 0, 0, 2655, 2656, 5, 520, 0, 0, 2656, 2657, 5, 71, 0, 0, 2657, 2663, 3, 228, 114, 0, 2658, 2661, 5, 72, 0, 0, 2659, 2662, 3, 358, 179, 0, 2660, 2662, 3, 672, 336, 0, 2661, 2659, 1, 0, 0, 0, 2661, 2660, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2658, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2674, 1, 0, 0, 0, 2665, 2666, 5, 10, 0, 0, 2666, 2671, 3, 356, 178, 0, 2667, 2668, 5, 501, 0, 0, 2668, 2670, 3, 356, 178, 0, 2669, 2667, 1, 0, 0, 0, 2670, 2673, 1, 0, 0, 0, 2671, 2669, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2675, 1, 0, 0, 0, 2673, 2671, 1, 0, 0, 0, 2674, 2665, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2678, 1, 0, 0, 0, 2676, 2677, 5, 75, 0, 0, 2677, 2679, 3, 672, 336, 0, 2678, 2676, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2682, 1, 0, 0, 0, 2680, 2681, 5, 74, 0, 0, 2681, 2683, 3, 672, 336, 0, 2682, 2680, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2686, 3, 230, 115, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 227, 1, 0, 0, 0, 2687, 2698, 3, 712, 356, 0, 2688, 2689, 5, 520, 0, 0, 2689, 2690, 5, 496, 0, 0, 2690, 2698, 3, 712, 356, 0, 2691, 2692, 5, 503, 0, 0, 2692, 2693, 3, 586, 293, 0, 2693, 2694, 5, 504, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 353, 0, 0, 2696, 2698, 5, 517, 0, 0, 2697, 2687, 1, 0, 0, 0, 2697, 2688, 1, 0, 0, 0, 2697, 2691, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 229, 1, 0, 0, 0, 2699, 2700, 5, 93, 0, 0, 2700, 2701, 5, 302, 0, 0, 2701, 2720, 5, 108, 0, 0, 2702, 2703, 5, 93, 0, 0, 2703, 2704, 5, 302, 0, 0, 2704, 2720, 5, 102, 0, 0, 2705, 2706, 5, 93, 0, 0, 2706, 2707, 5, 302, 0, 0, 2707, 2708, 5, 505, 0, 0, 2708, 2709, 3, 206, 103, 0, 2709, 2710, 5, 506, 0, 0, 2710, 2720, 1, 0, 0, 0, 2711, 2712, 5, 93, 0, 0, 2712, 2713, 5, 302, 0, 0, 2713, 2714, 5, 435, 0, 0, 2714, 2715, 5, 102, 0, 0, 2715, 2716, 5, 505, 0, 0, 2716, 2717, 3, 206, 103, 0, 2717, 2718, 5, 506, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2699, 1, 0, 0, 0, 2719, 2702, 1, 0, 0, 0, 2719, 2705, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2720, 231, 1, 0, 0, 0, 2721, 2722, 5, 105, 0, 0, 2722, 2723, 3, 672, 336, 0, 2723, 2724, 5, 81, 0, 0, 2724, 2732, 3, 206, 103, 0, 2725, 2726, 5, 106, 0, 0, 2726, 2727, 3, 672, 336, 0, 2727, 2728, 5, 81, 0, 0, 2728, 2729, 3, 206, 103, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2725, 1, 0, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2730, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2737, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2735, 2736, 5, 82, 0, 0, 2736, 2738, 3, 206, 103, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2740, 5, 83, 0, 0, 2740, 2741, 5, 105, 0, 0, 2741, 233, 1, 0, 0, 0, 2742, 2743, 5, 103, 0, 0, 2743, 2744, 5, 520, 0, 0, 2744, 2747, 5, 289, 0, 0, 2745, 2748, 5, 520, 0, 0, 2746, 2748, 3, 218, 109, 0, 2747, 2745, 1, 0, 0, 0, 2747, 2746, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2750, 5, 96, 0, 0, 2750, 2751, 3, 206, 103, 0, 2751, 2752, 5, 83, 0, 0, 2752, 2753, 5, 103, 0, 0, 2753, 235, 1, 0, 0, 0, 2754, 2755, 5, 104, 0, 0, 2755, 2757, 3, 672, 336, 0, 2756, 2758, 5, 96, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 3, 206, 103, 0, 2760, 2762, 5, 83, 0, 0, 2761, 2763, 5, 104, 0, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 237, 1, 0, 0, 0, 2764, 2765, 5, 108, 0, 0, 2765, 239, 1, 0, 0, 0, 2766, 2767, 5, 109, 0, 0, 2767, 241, 1, 0, 0, 0, 2768, 2770, 5, 110, 0, 0, 2769, 2771, 3, 672, 336, 0, 2770, 2769, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 243, 1, 0, 0, 0, 2772, 2773, 5, 303, 0, 0, 2773, 2774, 5, 302, 0, 0, 2774, 245, 1, 0, 0, 0, 2775, 2777, 5, 112, 0, 0, 2776, 2778, 3, 248, 124, 0, 2777, 2776, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2780, 5, 119, 0, 0, 2780, 2782, 5, 517, 0, 0, 2781, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2785, 3, 672, 336, 0, 2784, 2786, 3, 254, 127, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 247, 1, 0, 0, 0, 2787, 2788, 7, 13, 0, 0, 2788, 249, 1, 0, 0, 0, 2789, 2790, 5, 139, 0, 0, 2790, 2791, 5, 503, 0, 0, 2791, 2796, 3, 252, 126, 0, 2792, 2793, 5, 501, 0, 0, 2793, 2795, 3, 252, 126, 0, 2794, 2792, 1, 0, 0, 0, 2795, 2798, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2799, 2800, 5, 504, 0, 0, 2800, 2804, 1, 0, 0, 0, 2801, 2802, 5, 369, 0, 0, 2802, 2804, 3, 718, 359, 0, 2803, 2789, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2804, 251, 1, 0, 0, 0, 2805, 2806, 5, 505, 0, 0, 2806, 2807, 5, 519, 0, 0, 2807, 2808, 5, 506, 0, 0, 2808, 2809, 5, 490, 0, 0, 2809, 2810, 3, 672, 336, 0, 2810, 253, 1, 0, 0, 0, 2811, 2812, 3, 250, 125, 0, 2812, 255, 1, 0, 0, 0, 2813, 2814, 3, 252, 126, 0, 2814, 257, 1, 0, 0, 0, 2815, 2816, 5, 520, 0, 0, 2816, 2818, 5, 490, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2820, 5, 113, 0, 0, 2820, 2821, 5, 30, 0, 0, 2821, 2822, 3, 712, 356, 0, 2822, 2824, 5, 503, 0, 0, 2823, 2825, 3, 266, 133, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2828, 5, 504, 0, 0, 2827, 2829, 3, 230, 115, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 259, 1, 0, 0, 0, 2830, 2831, 5, 520, 0, 0, 2831, 2833, 5, 490, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 5, 113, 0, 0, 2835, 2836, 5, 114, 0, 0, 2836, 2837, 5, 116, 0, 0, 2837, 2838, 3, 712, 356, 0, 2838, 2840, 5, 503, 0, 0, 2839, 2841, 3, 266, 133, 0, 2840, 2839, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2844, 5, 504, 0, 0, 2843, 2845, 3, 230, 115, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 261, 1, 0, 0, 0, 2846, 2847, 5, 520, 0, 0, 2847, 2849, 5, 490, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 5, 397, 0, 0, 2851, 2852, 5, 353, 0, 0, 2852, 2853, 5, 354, 0, 0, 2853, 2860, 3, 712, 356, 0, 2854, 2858, 5, 166, 0, 0, 2855, 2859, 5, 517, 0, 0, 2856, 2859, 5, 518, 0, 0, 2857, 2859, 3, 672, 336, 0, 2858, 2855, 1, 0, 0, 0, 2858, 2856, 1, 0, 0, 0, 2858, 2857, 1, 0, 0, 0, 2859, 2861, 1, 0, 0, 0, 2860, 2854, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2867, 1, 0, 0, 0, 2862, 2864, 5, 503, 0, 0, 2863, 2865, 3, 266, 133, 0, 2864, 2863, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2868, 5, 504, 0, 0, 2867, 2862, 1, 0, 0, 0, 2867, 2868, 1, 0, 0, 0, 2868, 2875, 1, 0, 0, 0, 2869, 2870, 5, 352, 0, 0, 2870, 2872, 5, 503, 0, 0, 2871, 2873, 3, 266, 133, 0, 2872, 2871, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2876, 5, 504, 0, 0, 2875, 2869, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 1, 0, 0, 0, 2877, 2879, 3, 230, 115, 0, 2878, 2877, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 263, 1, 0, 0, 0, 2880, 2881, 5, 520, 0, 0, 2881, 2883, 5, 490, 0, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2885, 5, 113, 0, 0, 2885, 2886, 5, 26, 0, 0, 2886, 2887, 5, 116, 0, 0, 2887, 2888, 3, 712, 356, 0, 2888, 2890, 5, 503, 0, 0, 2889, 2891, 3, 266, 133, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 5, 504, 0, 0, 2893, 2895, 3, 230, 115, 0, 2894, 2893, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 265, 1, 0, 0, 0, 2896, 2901, 3, 268, 134, 0, 2897, 2898, 5, 501, 0, 0, 2898, 2900, 3, 268, 134, 0, 2899, 2897, 1, 0, 0, 0, 2900, 2903, 1, 0, 0, 0, 2901, 2899, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 267, 1, 0, 0, 0, 2903, 2901, 1, 0, 0, 0, 2904, 2907, 5, 520, 0, 0, 2905, 2907, 3, 198, 99, 0, 2906, 2904, 1, 0, 0, 0, 2906, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2909, 5, 490, 0, 0, 2909, 2910, 3, 672, 336, 0, 2910, 269, 1, 0, 0, 0, 2911, 2912, 5, 65, 0, 0, 2912, 2913, 5, 33, 0, 0, 2913, 2919, 3, 712, 356, 0, 2914, 2916, 5, 503, 0, 0, 2915, 2917, 3, 272, 136, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 5, 504, 0, 0, 2919, 2914, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2923, 1, 0, 0, 0, 2921, 2922, 5, 429, 0, 0, 2922, 2924, 5, 520, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2927, 1, 0, 0, 0, 2925, 2926, 5, 139, 0, 0, 2926, 2928, 3, 326, 163, 0, 2927, 2925, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 271, 1, 0, 0, 0, 2929, 2934, 3, 274, 137, 0, 2930, 2931, 5, 501, 0, 0, 2931, 2933, 3, 274, 137, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2936, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 273, 1, 0, 0, 0, 2936, 2934, 1, 0, 0, 0, 2937, 2938, 5, 520, 0, 0, 2938, 2941, 5, 490, 0, 0, 2939, 2942, 5, 520, 0, 0, 2940, 2942, 3, 672, 336, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2940, 1, 0, 0, 0, 2942, 2948, 1, 0, 0, 0, 2943, 2944, 3, 714, 357, 0, 2944, 2945, 5, 509, 0, 0, 2945, 2946, 3, 672, 336, 0, 2946, 2948, 1, 0, 0, 0, 2947, 2937, 1, 0, 0, 0, 2947, 2943, 1, 0, 0, 0, 2948, 275, 1, 0, 0, 0, 2949, 2950, 5, 118, 0, 0, 2950, 2951, 5, 33, 0, 0, 2951, 277, 1, 0, 0, 0, 2952, 2953, 5, 65, 0, 0, 2953, 2954, 5, 374, 0, 0, 2954, 2955, 5, 33, 0, 0, 2955, 279, 1, 0, 0, 0, 2956, 2957, 5, 65, 0, 0, 2957, 2958, 5, 403, 0, 0, 2958, 2961, 3, 672, 336, 0, 2959, 2960, 5, 419, 0, 0, 2960, 2962, 3, 714, 357, 0, 2961, 2959, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2968, 1, 0, 0, 0, 2963, 2964, 5, 142, 0, 0, 2964, 2965, 5, 507, 0, 0, 2965, 2966, 3, 710, 355, 0, 2966, 2967, 5, 508, 0, 0, 2967, 2969, 1, 0, 0, 0, 2968, 2963, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 281, 1, 0, 0, 0, 2970, 2971, 5, 111, 0, 0, 2971, 2972, 3, 672, 336, 0, 2972, 283, 1, 0, 0, 0, 2973, 2974, 5, 298, 0, 0, 2974, 2975, 5, 299, 0, 0, 2975, 2976, 3, 218, 109, 0, 2976, 2977, 5, 403, 0, 0, 2977, 2983, 3, 672, 336, 0, 2978, 2979, 5, 142, 0, 0, 2979, 2980, 5, 507, 0, 0, 2980, 2981, 3, 710, 355, 0, 2981, 2982, 5, 508, 0, 0, 2982, 2984, 1, 0, 0, 0, 2983, 2978, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 285, 1, 0, 0, 0, 2985, 2986, 5, 520, 0, 0, 2986, 2988, 5, 490, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 5, 311, 0, 0, 2990, 2991, 5, 113, 0, 0, 2991, 2992, 3, 288, 144, 0, 2992, 2994, 3, 290, 145, 0, 2993, 2995, 3, 292, 146, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2999, 1, 0, 0, 0, 2996, 2998, 3, 294, 147, 0, 2997, 2996, 1, 0, 0, 0, 2998, 3001, 1, 0, 0, 0, 2999, 2997, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3003, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3002, 3004, 3, 296, 148, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 3007, 3, 298, 149, 0, 3006, 3005, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3009, 1, 0, 0, 0, 3008, 3010, 3, 300, 150, 0, 3009, 3008, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3013, 3, 302, 151, 0, 3012, 3014, 3, 230, 115, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 287, 1, 0, 0, 0, 3015, 3016, 7, 14, 0, 0, 3016, 289, 1, 0, 0, 0, 3017, 3020, 5, 517, 0, 0, 3018, 3020, 3, 672, 336, 0, 3019, 3017, 1, 0, 0, 0, 3019, 3018, 1, 0, 0, 0, 3020, 291, 1, 0, 0, 0, 3021, 3022, 3, 250, 125, 0, 3022, 293, 1, 0, 0, 0, 3023, 3024, 5, 195, 0, 0, 3024, 3025, 7, 15, 0, 0, 3025, 3026, 5, 490, 0, 0, 3026, 3027, 3, 672, 336, 0, 3027, 295, 1, 0, 0, 0, 3028, 3029, 5, 316, 0, 0, 3029, 3030, 5, 318, 0, 0, 3030, 3031, 3, 672, 336, 0, 3031, 3032, 5, 351, 0, 0, 3032, 3033, 3, 672, 336, 0, 3033, 297, 1, 0, 0, 0, 3034, 3035, 5, 325, 0, 0, 3035, 3037, 5, 517, 0, 0, 3036, 3038, 3, 250, 125, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3051, 1, 0, 0, 0, 3039, 3040, 5, 325, 0, 0, 3040, 3042, 3, 672, 336, 0, 3041, 3043, 3, 250, 125, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3051, 1, 0, 0, 0, 3044, 3045, 5, 325, 0, 0, 3045, 3046, 5, 356, 0, 0, 3046, 3047, 3, 712, 356, 0, 3047, 3048, 5, 71, 0, 0, 3048, 3049, 5, 520, 0, 0, 3049, 3051, 1, 0, 0, 0, 3050, 3034, 1, 0, 0, 0, 3050, 3039, 1, 0, 0, 0, 3050, 3044, 1, 0, 0, 0, 3051, 299, 1, 0, 0, 0, 3052, 3053, 5, 324, 0, 0, 3053, 3054, 3, 672, 336, 0, 3054, 301, 1, 0, 0, 0, 3055, 3056, 5, 77, 0, 0, 3056, 3070, 5, 262, 0, 0, 3057, 3058, 5, 77, 0, 0, 3058, 3070, 5, 326, 0, 0, 3059, 3060, 5, 77, 0, 0, 3060, 3061, 5, 356, 0, 0, 3061, 3062, 3, 712, 356, 0, 3062, 3063, 5, 76, 0, 0, 3063, 3064, 3, 712, 356, 0, 3064, 3070, 1, 0, 0, 0, 3065, 3066, 5, 77, 0, 0, 3066, 3070, 5, 424, 0, 0, 3067, 3068, 5, 77, 0, 0, 3068, 3070, 5, 319, 0, 0, 3069, 3055, 1, 0, 0, 0, 3069, 3057, 1, 0, 0, 0, 3069, 3059, 1, 0, 0, 0, 3069, 3065, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3070, 303, 1, 0, 0, 0, 3071, 3072, 5, 520, 0, 0, 3072, 3074, 5, 490, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 5, 328, 0, 0, 3076, 3077, 5, 311, 0, 0, 3077, 3078, 5, 327, 0, 0, 3078, 3080, 3, 712, 356, 0, 3079, 3081, 3, 306, 153, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 230, 115, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 305, 1, 0, 0, 0, 3085, 3086, 5, 325, 0, 0, 3086, 3087, 5, 520, 0, 0, 3087, 307, 1, 0, 0, 0, 3088, 3089, 5, 520, 0, 0, 3089, 3090, 5, 490, 0, 0, 3090, 3091, 3, 310, 155, 0, 3091, 309, 1, 0, 0, 0, 3092, 3093, 5, 121, 0, 0, 3093, 3094, 5, 503, 0, 0, 3094, 3095, 5, 520, 0, 0, 3095, 3152, 5, 504, 0, 0, 3096, 3097, 5, 122, 0, 0, 3097, 3098, 5, 503, 0, 0, 3098, 3099, 5, 520, 0, 0, 3099, 3152, 5, 504, 0, 0, 3100, 3101, 5, 123, 0, 0, 3101, 3102, 5, 503, 0, 0, 3102, 3103, 5, 520, 0, 0, 3103, 3104, 5, 501, 0, 0, 3104, 3105, 3, 672, 336, 0, 3105, 3106, 5, 504, 0, 0, 3106, 3152, 1, 0, 0, 0, 3107, 3108, 5, 185, 0, 0, 3108, 3109, 5, 503, 0, 0, 3109, 3110, 5, 520, 0, 0, 3110, 3111, 5, 501, 0, 0, 3111, 3112, 3, 672, 336, 0, 3112, 3113, 5, 504, 0, 0, 3113, 3152, 1, 0, 0, 0, 3114, 3115, 5, 124, 0, 0, 3115, 3116, 5, 503, 0, 0, 3116, 3117, 5, 520, 0, 0, 3117, 3118, 5, 501, 0, 0, 3118, 3119, 3, 312, 156, 0, 3119, 3120, 5, 504, 0, 0, 3120, 3152, 1, 0, 0, 0, 3121, 3122, 5, 125, 0, 0, 3122, 3123, 5, 503, 0, 0, 3123, 3124, 5, 520, 0, 0, 3124, 3125, 5, 501, 0, 0, 3125, 3126, 5, 520, 0, 0, 3126, 3152, 5, 504, 0, 0, 3127, 3128, 5, 126, 0, 0, 3128, 3129, 5, 503, 0, 0, 3129, 3130, 5, 520, 0, 0, 3130, 3131, 5, 501, 0, 0, 3131, 3132, 5, 520, 0, 0, 3132, 3152, 5, 504, 0, 0, 3133, 3134, 5, 127, 0, 0, 3134, 3135, 5, 503, 0, 0, 3135, 3136, 5, 520, 0, 0, 3136, 3137, 5, 501, 0, 0, 3137, 3138, 5, 520, 0, 0, 3138, 3152, 5, 504, 0, 0, 3139, 3140, 5, 128, 0, 0, 3140, 3141, 5, 503, 0, 0, 3141, 3142, 5, 520, 0, 0, 3142, 3143, 5, 501, 0, 0, 3143, 3144, 5, 520, 0, 0, 3144, 3152, 5, 504, 0, 0, 3145, 3146, 5, 134, 0, 0, 3146, 3147, 5, 503, 0, 0, 3147, 3148, 5, 520, 0, 0, 3148, 3149, 5, 501, 0, 0, 3149, 3150, 5, 520, 0, 0, 3150, 3152, 5, 504, 0, 0, 3151, 3092, 1, 0, 0, 0, 3151, 3096, 1, 0, 0, 0, 3151, 3100, 1, 0, 0, 0, 3151, 3107, 1, 0, 0, 0, 3151, 3114, 1, 0, 0, 0, 3151, 3121, 1, 0, 0, 0, 3151, 3127, 1, 0, 0, 0, 3151, 3133, 1, 0, 0, 0, 3151, 3139, 1, 0, 0, 0, 3151, 3145, 1, 0, 0, 0, 3152, 311, 1, 0, 0, 0, 3153, 3158, 3, 314, 157, 0, 3154, 3155, 5, 501, 0, 0, 3155, 3157, 3, 314, 157, 0, 3156, 3154, 1, 0, 0, 0, 3157, 3160, 1, 0, 0, 0, 3158, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 313, 1, 0, 0, 0, 3160, 3158, 1, 0, 0, 0, 3161, 3163, 5, 521, 0, 0, 3162, 3164, 7, 6, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 315, 1, 0, 0, 0, 3165, 3166, 5, 520, 0, 0, 3166, 3167, 5, 490, 0, 0, 3167, 3168, 3, 318, 159, 0, 3168, 317, 1, 0, 0, 0, 3169, 3170, 5, 276, 0, 0, 3170, 3171, 5, 503, 0, 0, 3171, 3172, 5, 520, 0, 0, 3172, 3194, 5, 504, 0, 0, 3173, 3174, 5, 277, 0, 0, 3174, 3175, 5, 503, 0, 0, 3175, 3176, 3, 218, 109, 0, 3176, 3177, 5, 504, 0, 0, 3177, 3194, 1, 0, 0, 0, 3178, 3179, 5, 129, 0, 0, 3179, 3180, 5, 503, 0, 0, 3180, 3181, 3, 218, 109, 0, 3181, 3182, 5, 504, 0, 0, 3182, 3194, 1, 0, 0, 0, 3183, 3184, 5, 130, 0, 0, 3184, 3185, 5, 503, 0, 0, 3185, 3186, 3, 218, 109, 0, 3186, 3187, 5, 504, 0, 0, 3187, 3194, 1, 0, 0, 0, 3188, 3189, 5, 131, 0, 0, 3189, 3190, 5, 503, 0, 0, 3190, 3191, 3, 218, 109, 0, 3191, 3192, 5, 504, 0, 0, 3192, 3194, 1, 0, 0, 0, 3193, 3169, 1, 0, 0, 0, 3193, 3173, 1, 0, 0, 0, 3193, 3178, 1, 0, 0, 0, 3193, 3183, 1, 0, 0, 0, 3193, 3188, 1, 0, 0, 0, 3194, 319, 1, 0, 0, 0, 3195, 3196, 5, 520, 0, 0, 3196, 3197, 5, 490, 0, 0, 3197, 3198, 5, 17, 0, 0, 3198, 3199, 5, 13, 0, 0, 3199, 3200, 3, 712, 356, 0, 3200, 321, 1, 0, 0, 0, 3201, 3202, 5, 47, 0, 0, 3202, 3203, 5, 520, 0, 0, 3203, 3204, 5, 426, 0, 0, 3204, 3205, 5, 520, 0, 0, 3205, 323, 1, 0, 0, 0, 3206, 3207, 5, 133, 0, 0, 3207, 3208, 5, 520, 0, 0, 3208, 3209, 5, 71, 0, 0, 3209, 3210, 5, 520, 0, 0, 3210, 325, 1, 0, 0, 0, 3211, 3216, 3, 328, 164, 0, 3212, 3213, 5, 501, 0, 0, 3213, 3215, 3, 328, 164, 0, 3214, 3212, 1, 0, 0, 0, 3215, 3218, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 327, 1, 0, 0, 0, 3218, 3216, 1, 0, 0, 0, 3219, 3220, 3, 330, 165, 0, 3220, 3221, 5, 490, 0, 0, 3221, 3222, 3, 672, 336, 0, 3222, 329, 1, 0, 0, 0, 3223, 3228, 3, 712, 356, 0, 3224, 3228, 5, 521, 0, 0, 3225, 3228, 5, 523, 0, 0, 3226, 3228, 3, 734, 367, 0, 3227, 3223, 1, 0, 0, 0, 3227, 3224, 1, 0, 0, 0, 3227, 3225, 1, 0, 0, 0, 3227, 3226, 1, 0, 0, 0, 3228, 331, 1, 0, 0, 0, 3229, 3234, 3, 334, 167, 0, 3230, 3231, 5, 501, 0, 0, 3231, 3233, 3, 334, 167, 0, 3232, 3230, 1, 0, 0, 0, 3233, 3236, 1, 0, 0, 0, 3234, 3232, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 333, 1, 0, 0, 0, 3236, 3234, 1, 0, 0, 0, 3237, 3238, 5, 521, 0, 0, 3238, 3239, 5, 490, 0, 0, 3239, 3240, 3, 672, 336, 0, 3240, 335, 1, 0, 0, 0, 3241, 3242, 5, 33, 0, 0, 3242, 3243, 3, 712, 356, 0, 3243, 3244, 3, 386, 193, 0, 3244, 3245, 5, 505, 0, 0, 3245, 3246, 3, 394, 197, 0, 3246, 3247, 5, 506, 0, 0, 3247, 337, 1, 0, 0, 0, 3248, 3249, 5, 34, 0, 0, 3249, 3251, 3, 712, 356, 0, 3250, 3252, 3, 390, 195, 0, 3251, 3250, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3254, 1, 0, 0, 0, 3253, 3255, 3, 340, 170, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 5, 505, 0, 0, 3257, 3258, 3, 394, 197, 0, 3258, 3259, 5, 506, 0, 0, 3259, 339, 1, 0, 0, 0, 3260, 3262, 3, 342, 171, 0, 3261, 3260, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 341, 1, 0, 0, 0, 3265, 3266, 5, 219, 0, 0, 3266, 3267, 5, 517, 0, 0, 3267, 343, 1, 0, 0, 0, 3268, 3273, 3, 346, 173, 0, 3269, 3270, 5, 501, 0, 0, 3270, 3272, 3, 346, 173, 0, 3271, 3269, 1, 0, 0, 0, 3272, 3275, 1, 0, 0, 0, 3273, 3271, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 345, 1, 0, 0, 0, 3275, 3273, 1, 0, 0, 0, 3276, 3277, 7, 16, 0, 0, 3277, 3278, 5, 509, 0, 0, 3278, 3279, 3, 108, 54, 0, 3279, 347, 1, 0, 0, 0, 3280, 3285, 3, 350, 175, 0, 3281, 3282, 5, 501, 0, 0, 3282, 3284, 3, 350, 175, 0, 3283, 3281, 1, 0, 0, 0, 3284, 3287, 1, 0, 0, 0, 3285, 3283, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 349, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3288, 3289, 7, 16, 0, 0, 3289, 3290, 5, 509, 0, 0, 3290, 3291, 3, 108, 54, 0, 3291, 351, 1, 0, 0, 0, 3292, 3297, 3, 354, 177, 0, 3293, 3294, 5, 501, 0, 0, 3294, 3296, 3, 354, 177, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3299, 1, 0, 0, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 353, 1, 0, 0, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3301, 5, 520, 0, 0, 3301, 3302, 5, 509, 0, 0, 3302, 3303, 3, 108, 54, 0, 3303, 3304, 5, 490, 0, 0, 3304, 3305, 5, 517, 0, 0, 3305, 355, 1, 0, 0, 0, 3306, 3309, 3, 712, 356, 0, 3307, 3309, 5, 521, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3307, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 7, 6, 0, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 357, 1, 0, 0, 0, 3313, 3314, 5, 507, 0, 0, 3314, 3315, 3, 362, 181, 0, 3315, 3316, 5, 508, 0, 0, 3316, 359, 1, 0, 0, 0, 3317, 3318, 7, 17, 0, 0, 3318, 361, 1, 0, 0, 0, 3319, 3324, 3, 364, 182, 0, 3320, 3321, 5, 286, 0, 0, 3321, 3323, 3, 364, 182, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 363, 1, 0, 0, 0, 3326, 3324, 1, 0, 0, 0, 3327, 3332, 3, 366, 183, 0, 3328, 3329, 5, 285, 0, 0, 3329, 3331, 3, 366, 183, 0, 3330, 3328, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 365, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3335, 3336, 5, 287, 0, 0, 3336, 3339, 3, 366, 183, 0, 3337, 3339, 3, 368, 184, 0, 3338, 3335, 1, 0, 0, 0, 3338, 3337, 1, 0, 0, 0, 3339, 367, 1, 0, 0, 0, 3340, 3344, 3, 370, 185, 0, 3341, 3342, 3, 682, 341, 0, 3342, 3343, 3, 370, 185, 0, 3343, 3345, 1, 0, 0, 0, 3344, 3341, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 369, 1, 0, 0, 0, 3346, 3353, 3, 382, 191, 0, 3347, 3353, 3, 372, 186, 0, 3348, 3349, 5, 503, 0, 0, 3349, 3350, 3, 362, 181, 0, 3350, 3351, 5, 504, 0, 0, 3351, 3353, 1, 0, 0, 0, 3352, 3346, 1, 0, 0, 0, 3352, 3347, 1, 0, 0, 0, 3352, 3348, 1, 0, 0, 0, 3353, 371, 1, 0, 0, 0, 3354, 3359, 3, 374, 187, 0, 3355, 3356, 5, 496, 0, 0, 3356, 3358, 3, 374, 187, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 373, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3367, 3, 376, 188, 0, 3363, 3364, 5, 507, 0, 0, 3364, 3365, 3, 362, 181, 0, 3365, 3366, 5, 508, 0, 0, 3366, 3368, 1, 0, 0, 0, 3367, 3363, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 375, 1, 0, 0, 0, 3369, 3375, 3, 378, 189, 0, 3370, 3375, 5, 520, 0, 0, 3371, 3375, 5, 517, 0, 0, 3372, 3375, 5, 519, 0, 0, 3373, 3375, 5, 516, 0, 0, 3374, 3369, 1, 0, 0, 0, 3374, 3370, 1, 0, 0, 0, 3374, 3371, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3373, 1, 0, 0, 0, 3375, 377, 1, 0, 0, 0, 3376, 3381, 3, 380, 190, 0, 3377, 3378, 5, 502, 0, 0, 3378, 3380, 3, 380, 190, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3379, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 379, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3384, 3385, 8, 18, 0, 0, 3385, 381, 1, 0, 0, 0, 3386, 3387, 3, 384, 192, 0, 3387, 3396, 5, 503, 0, 0, 3388, 3393, 3, 362, 181, 0, 3389, 3390, 5, 501, 0, 0, 3390, 3392, 3, 362, 181, 0, 3391, 3389, 1, 0, 0, 0, 3392, 3395, 1, 0, 0, 0, 3393, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3388, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 5, 504, 0, 0, 3399, 383, 1, 0, 0, 0, 3400, 3401, 7, 19, 0, 0, 3401, 385, 1, 0, 0, 0, 3402, 3403, 5, 503, 0, 0, 3403, 3408, 3, 388, 194, 0, 3404, 3405, 5, 501, 0, 0, 3405, 3407, 3, 388, 194, 0, 3406, 3404, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3411, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3412, 5, 504, 0, 0, 3412, 387, 1, 0, 0, 0, 3413, 3414, 5, 202, 0, 0, 3414, 3415, 5, 509, 0, 0, 3415, 3416, 5, 505, 0, 0, 3416, 3417, 3, 344, 172, 0, 3417, 3418, 5, 506, 0, 0, 3418, 3441, 1, 0, 0, 0, 3419, 3420, 5, 203, 0, 0, 3420, 3421, 5, 509, 0, 0, 3421, 3422, 5, 505, 0, 0, 3422, 3423, 3, 352, 176, 0, 3423, 3424, 5, 506, 0, 0, 3424, 3441, 1, 0, 0, 0, 3425, 3426, 5, 164, 0, 0, 3426, 3427, 5, 509, 0, 0, 3427, 3441, 5, 517, 0, 0, 3428, 3429, 5, 35, 0, 0, 3429, 3432, 5, 509, 0, 0, 3430, 3433, 3, 712, 356, 0, 3431, 3433, 5, 517, 0, 0, 3432, 3430, 1, 0, 0, 0, 3432, 3431, 1, 0, 0, 0, 3433, 3441, 1, 0, 0, 0, 3434, 3435, 5, 218, 0, 0, 3435, 3436, 5, 509, 0, 0, 3436, 3441, 5, 517, 0, 0, 3437, 3438, 5, 219, 0, 0, 3438, 3439, 5, 509, 0, 0, 3439, 3441, 5, 517, 0, 0, 3440, 3413, 1, 0, 0, 0, 3440, 3419, 1, 0, 0, 0, 3440, 3425, 1, 0, 0, 0, 3440, 3428, 1, 0, 0, 0, 3440, 3434, 1, 0, 0, 0, 3440, 3437, 1, 0, 0, 0, 3441, 389, 1, 0, 0, 0, 3442, 3443, 5, 503, 0, 0, 3443, 3448, 3, 392, 196, 0, 3444, 3445, 5, 501, 0, 0, 3445, 3447, 3, 392, 196, 0, 3446, 3444, 1, 0, 0, 0, 3447, 3450, 1, 0, 0, 0, 3448, 3446, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3451, 3452, 5, 504, 0, 0, 3452, 391, 1, 0, 0, 0, 3453, 3454, 5, 202, 0, 0, 3454, 3455, 5, 509, 0, 0, 3455, 3456, 5, 505, 0, 0, 3456, 3457, 3, 348, 174, 0, 3457, 3458, 5, 506, 0, 0, 3458, 3469, 1, 0, 0, 0, 3459, 3460, 5, 203, 0, 0, 3460, 3461, 5, 509, 0, 0, 3461, 3462, 5, 505, 0, 0, 3462, 3463, 3, 352, 176, 0, 3463, 3464, 5, 506, 0, 0, 3464, 3469, 1, 0, 0, 0, 3465, 3466, 5, 219, 0, 0, 3466, 3467, 5, 509, 0, 0, 3467, 3469, 5, 517, 0, 0, 3468, 3453, 1, 0, 0, 0, 3468, 3459, 1, 0, 0, 0, 3468, 3465, 1, 0, 0, 0, 3469, 393, 1, 0, 0, 0, 3470, 3473, 3, 398, 199, 0, 3471, 3473, 3, 396, 198, 0, 3472, 3470, 1, 0, 0, 0, 3472, 3471, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 395, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3477, 3478, 5, 67, 0, 0, 3478, 3479, 5, 387, 0, 0, 3479, 3482, 3, 714, 357, 0, 3480, 3481, 5, 76, 0, 0, 3481, 3483, 3, 714, 357, 0, 3482, 3480, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 397, 1, 0, 0, 0, 3484, 3485, 3, 400, 200, 0, 3485, 3487, 5, 521, 0, 0, 3486, 3488, 3, 402, 201, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3491, 3, 440, 220, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 399, 1, 0, 0, 0, 3492, 3493, 7, 20, 0, 0, 3493, 401, 1, 0, 0, 0, 3494, 3495, 5, 503, 0, 0, 3495, 3500, 3, 404, 202, 0, 3496, 3497, 5, 501, 0, 0, 3497, 3499, 3, 404, 202, 0, 3498, 3496, 1, 0, 0, 0, 3499, 3502, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3504, 5, 504, 0, 0, 3504, 403, 1, 0, 0, 0, 3505, 3506, 5, 191, 0, 0, 3506, 3507, 5, 509, 0, 0, 3507, 3596, 3, 410, 205, 0, 3508, 3509, 5, 38, 0, 0, 3509, 3510, 5, 509, 0, 0, 3510, 3596, 3, 418, 209, 0, 3511, 3512, 5, 198, 0, 0, 3512, 3513, 5, 509, 0, 0, 3513, 3596, 3, 418, 209, 0, 3514, 3515, 5, 116, 0, 0, 3515, 3516, 5, 509, 0, 0, 3516, 3596, 3, 412, 206, 0, 3517, 3518, 5, 188, 0, 0, 3518, 3519, 5, 509, 0, 0, 3519, 3596, 3, 420, 210, 0, 3520, 3521, 5, 168, 0, 0, 3521, 3522, 5, 509, 0, 0, 3522, 3596, 5, 517, 0, 0, 3523, 3524, 5, 199, 0, 0, 3524, 3525, 5, 509, 0, 0, 3525, 3596, 3, 418, 209, 0, 3526, 3527, 5, 196, 0, 0, 3527, 3528, 5, 509, 0, 0, 3528, 3596, 3, 420, 210, 0, 3529, 3530, 5, 197, 0, 0, 3530, 3531, 5, 509, 0, 0, 3531, 3596, 3, 426, 213, 0, 3532, 3533, 5, 200, 0, 0, 3533, 3534, 5, 509, 0, 0, 3534, 3596, 3, 422, 211, 0, 3535, 3536, 5, 201, 0, 0, 3536, 3537, 5, 509, 0, 0, 3537, 3596, 3, 422, 211, 0, 3538, 3539, 5, 209, 0, 0, 3539, 3540, 5, 509, 0, 0, 3540, 3596, 3, 428, 214, 0, 3541, 3542, 5, 207, 0, 0, 3542, 3543, 5, 509, 0, 0, 3543, 3596, 5, 517, 0, 0, 3544, 3545, 5, 208, 0, 0, 3545, 3546, 5, 509, 0, 0, 3546, 3596, 5, 517, 0, 0, 3547, 3548, 5, 204, 0, 0, 3548, 3549, 5, 509, 0, 0, 3549, 3596, 3, 430, 215, 0, 3550, 3551, 5, 205, 0, 0, 3551, 3552, 5, 509, 0, 0, 3552, 3596, 3, 430, 215, 0, 3553, 3554, 5, 206, 0, 0, 3554, 3555, 5, 509, 0, 0, 3555, 3596, 3, 430, 215, 0, 3556, 3557, 5, 193, 0, 0, 3557, 3558, 5, 509, 0, 0, 3558, 3596, 3, 432, 216, 0, 3559, 3560, 5, 34, 0, 0, 3560, 3561, 5, 509, 0, 0, 3561, 3596, 3, 712, 356, 0, 3562, 3563, 5, 224, 0, 0, 3563, 3564, 5, 509, 0, 0, 3564, 3596, 3, 408, 204, 0, 3565, 3566, 5, 225, 0, 0, 3566, 3567, 5, 509, 0, 0, 3567, 3596, 3, 406, 203, 0, 3568, 3569, 5, 212, 0, 0, 3569, 3570, 5, 509, 0, 0, 3570, 3596, 3, 436, 218, 0, 3571, 3572, 5, 215, 0, 0, 3572, 3573, 5, 509, 0, 0, 3573, 3596, 5, 519, 0, 0, 3574, 3575, 5, 216, 0, 0, 3575, 3576, 5, 509, 0, 0, 3576, 3596, 5, 519, 0, 0, 3577, 3578, 5, 232, 0, 0, 3578, 3579, 5, 509, 0, 0, 3579, 3596, 3, 358, 179, 0, 3580, 3581, 5, 232, 0, 0, 3581, 3582, 5, 509, 0, 0, 3582, 3596, 3, 434, 217, 0, 3583, 3584, 5, 222, 0, 0, 3584, 3585, 5, 509, 0, 0, 3585, 3596, 3, 358, 179, 0, 3586, 3587, 5, 222, 0, 0, 3587, 3588, 5, 509, 0, 0, 3588, 3596, 3, 434, 217, 0, 3589, 3590, 5, 190, 0, 0, 3590, 3591, 5, 509, 0, 0, 3591, 3596, 3, 434, 217, 0, 3592, 3593, 5, 521, 0, 0, 3593, 3594, 5, 509, 0, 0, 3594, 3596, 3, 434, 217, 0, 3595, 3505, 1, 0, 0, 0, 3595, 3508, 1, 0, 0, 0, 3595, 3511, 1, 0, 0, 0, 3595, 3514, 1, 0, 0, 0, 3595, 3517, 1, 0, 0, 0, 3595, 3520, 1, 0, 0, 0, 3595, 3523, 1, 0, 0, 0, 3595, 3526, 1, 0, 0, 0, 3595, 3529, 1, 0, 0, 0, 3595, 3532, 1, 0, 0, 0, 3595, 3535, 1, 0, 0, 0, 3595, 3538, 1, 0, 0, 0, 3595, 3541, 1, 0, 0, 0, 3595, 3544, 1, 0, 0, 0, 3595, 3547, 1, 0, 0, 0, 3595, 3550, 1, 0, 0, 0, 3595, 3553, 1, 0, 0, 0, 3595, 3556, 1, 0, 0, 0, 3595, 3559, 1, 0, 0, 0, 3595, 3562, 1, 0, 0, 0, 3595, 3565, 1, 0, 0, 0, 3595, 3568, 1, 0, 0, 0, 3595, 3571, 1, 0, 0, 0, 3595, 3574, 1, 0, 0, 0, 3595, 3577, 1, 0, 0, 0, 3595, 3580, 1, 0, 0, 0, 3595, 3583, 1, 0, 0, 0, 3595, 3586, 1, 0, 0, 0, 3595, 3589, 1, 0, 0, 0, 3595, 3592, 1, 0, 0, 0, 3596, 405, 1, 0, 0, 0, 3597, 3598, 7, 21, 0, 0, 3598, 407, 1, 0, 0, 0, 3599, 3600, 5, 507, 0, 0, 3600, 3605, 3, 712, 356, 0, 3601, 3602, 5, 501, 0, 0, 3602, 3604, 3, 712, 356, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3608, 1, 0, 0, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3609, 5, 508, 0, 0, 3609, 409, 1, 0, 0, 0, 3610, 3657, 5, 520, 0, 0, 3611, 3613, 5, 353, 0, 0, 3612, 3614, 5, 71, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3629, 3, 712, 356, 0, 3616, 3627, 5, 72, 0, 0, 3617, 3623, 3, 358, 179, 0, 3618, 3619, 3, 360, 180, 0, 3619, 3620, 3, 358, 179, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3618, 1, 0, 0, 0, 3622, 3625, 1, 0, 0, 0, 3623, 3621, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3628, 1, 0, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3628, 3, 672, 336, 0, 3627, 3617, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3616, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3640, 1, 0, 0, 0, 3631, 3632, 5, 10, 0, 0, 3632, 3637, 3, 356, 178, 0, 3633, 3634, 5, 501, 0, 0, 3634, 3636, 3, 356, 178, 0, 3635, 3633, 1, 0, 0, 0, 3636, 3639, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3640, 3631, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3657, 1, 0, 0, 0, 3642, 3643, 5, 30, 0, 0, 3643, 3645, 3, 712, 356, 0, 3644, 3646, 3, 414, 207, 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3657, 1, 0, 0, 0, 3647, 3648, 5, 31, 0, 0, 3648, 3650, 3, 712, 356, 0, 3649, 3651, 3, 414, 207, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3657, 1, 0, 0, 0, 3652, 3653, 5, 27, 0, 0, 3653, 3657, 3, 418, 209, 0, 3654, 3655, 5, 193, 0, 0, 3655, 3657, 5, 521, 0, 0, 3656, 3610, 1, 0, 0, 0, 3656, 3611, 1, 0, 0, 0, 3656, 3642, 1, 0, 0, 0, 3656, 3647, 1, 0, 0, 0, 3656, 3652, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 411, 1, 0, 0, 0, 3658, 3660, 5, 234, 0, 0, 3659, 3661, 5, 236, 0, 0, 3660, 3659, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 3697, 1, 0, 0, 0, 3662, 3664, 5, 235, 0, 0, 3663, 3665, 5, 236, 0, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3697, 1, 0, 0, 0, 3666, 3697, 5, 236, 0, 0, 3667, 3697, 5, 239, 0, 0, 3668, 3670, 5, 100, 0, 0, 3669, 3671, 5, 236, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3697, 1, 0, 0, 0, 3672, 3673, 5, 240, 0, 0, 3673, 3676, 3, 712, 356, 0, 3674, 3675, 5, 81, 0, 0, 3675, 3677, 3, 412, 206, 0, 3676, 3674, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3697, 1, 0, 0, 0, 3678, 3679, 5, 237, 0, 0, 3679, 3681, 3, 712, 356, 0, 3680, 3682, 3, 414, 207, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3697, 1, 0, 0, 0, 3683, 3684, 5, 30, 0, 0, 3684, 3686, 3, 712, 356, 0, 3685, 3687, 3, 414, 207, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3697, 1, 0, 0, 0, 3688, 3689, 5, 31, 0, 0, 3689, 3691, 3, 712, 356, 0, 3690, 3692, 3, 414, 207, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3697, 1, 0, 0, 0, 3693, 3694, 5, 243, 0, 0, 3694, 3697, 5, 517, 0, 0, 3695, 3697, 5, 244, 0, 0, 3696, 3658, 1, 0, 0, 0, 3696, 3662, 1, 0, 0, 0, 3696, 3666, 1, 0, 0, 0, 3696, 3667, 1, 0, 0, 0, 3696, 3668, 1, 0, 0, 0, 3696, 3672, 1, 0, 0, 0, 3696, 3678, 1, 0, 0, 0, 3696, 3683, 1, 0, 0, 0, 3696, 3688, 1, 0, 0, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 413, 1, 0, 0, 0, 3698, 3699, 5, 503, 0, 0, 3699, 3704, 3, 416, 208, 0, 3700, 3701, 5, 501, 0, 0, 3701, 3703, 3, 416, 208, 0, 3702, 3700, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, 3708, 5, 504, 0, 0, 3708, 415, 1, 0, 0, 0, 3709, 3710, 5, 521, 0, 0, 3710, 3711, 5, 509, 0, 0, 3711, 3716, 3, 672, 336, 0, 3712, 3713, 5, 520, 0, 0, 3713, 3714, 5, 490, 0, 0, 3714, 3716, 3, 672, 336, 0, 3715, 3709, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3716, 417, 1, 0, 0, 0, 3717, 3721, 5, 521, 0, 0, 3718, 3721, 5, 523, 0, 0, 3719, 3721, 3, 736, 368, 0, 3720, 3717, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3719, 1, 0, 0, 0, 3721, 3730, 1, 0, 0, 0, 3722, 3726, 5, 496, 0, 0, 3723, 3727, 5, 521, 0, 0, 3724, 3727, 5, 523, 0, 0, 3725, 3727, 3, 736, 368, 0, 3726, 3723, 1, 0, 0, 0, 3726, 3724, 1, 0, 0, 0, 3726, 3725, 1, 0, 0, 0, 3727, 3729, 1, 0, 0, 0, 3728, 3722, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 419, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3733, 3744, 5, 517, 0, 0, 3734, 3744, 3, 418, 209, 0, 3735, 3741, 5, 520, 0, 0, 3736, 3739, 5, 502, 0, 0, 3737, 3740, 5, 521, 0, 0, 3738, 3740, 3, 736, 368, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3738, 1, 0, 0, 0, 3740, 3742, 1, 0, 0, 0, 3741, 3736, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3744, 1, 0, 0, 0, 3743, 3733, 1, 0, 0, 0, 3743, 3734, 1, 0, 0, 0, 3743, 3735, 1, 0, 0, 0, 3744, 421, 1, 0, 0, 0, 3745, 3746, 5, 507, 0, 0, 3746, 3751, 3, 424, 212, 0, 3747, 3748, 5, 501, 0, 0, 3748, 3750, 3, 424, 212, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3754, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3755, 5, 508, 0, 0, 3755, 423, 1, 0, 0, 0, 3756, 3757, 5, 505, 0, 0, 3757, 3758, 5, 519, 0, 0, 3758, 3759, 5, 506, 0, 0, 3759, 3760, 5, 490, 0, 0, 3760, 3761, 3, 672, 336, 0, 3761, 425, 1, 0, 0, 0, 3762, 3763, 7, 22, 0, 0, 3763, 427, 1, 0, 0, 0, 3764, 3765, 7, 23, 0, 0, 3765, 429, 1, 0, 0, 0, 3766, 3767, 7, 24, 0, 0, 3767, 431, 1, 0, 0, 0, 3768, 3769, 7, 25, 0, 0, 3769, 433, 1, 0, 0, 0, 3770, 3794, 5, 517, 0, 0, 3771, 3794, 5, 519, 0, 0, 3772, 3794, 3, 720, 360, 0, 3773, 3794, 3, 712, 356, 0, 3774, 3794, 5, 521, 0, 0, 3775, 3794, 5, 255, 0, 0, 3776, 3794, 5, 256, 0, 0, 3777, 3794, 5, 257, 0, 0, 3778, 3794, 5, 258, 0, 0, 3779, 3794, 5, 259, 0, 0, 3780, 3794, 5, 260, 0, 0, 3781, 3790, 5, 507, 0, 0, 3782, 3787, 3, 672, 336, 0, 3783, 3784, 5, 501, 0, 0, 3784, 3786, 3, 672, 336, 0, 3785, 3783, 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 3782, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 5, 508, 0, 0, 3793, 3770, 1, 0, 0, 0, 3793, 3771, 1, 0, 0, 0, 3793, 3772, 1, 0, 0, 0, 3793, 3773, 1, 0, 0, 0, 3793, 3774, 1, 0, 0, 0, 3793, 3775, 1, 0, 0, 0, 3793, 3776, 1, 0, 0, 0, 3793, 3777, 1, 0, 0, 0, 3793, 3778, 1, 0, 0, 0, 3793, 3779, 1, 0, 0, 0, 3793, 3780, 1, 0, 0, 0, 3793, 3781, 1, 0, 0, 0, 3794, 435, 1, 0, 0, 0, 3795, 3796, 5, 507, 0, 0, 3796, 3801, 3, 438, 219, 0, 3797, 3798, 5, 501, 0, 0, 3798, 3800, 3, 438, 219, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 508, 0, 0, 3805, 3809, 1, 0, 0, 0, 3806, 3807, 5, 507, 0, 0, 3807, 3809, 5, 508, 0, 0, 3808, 3795, 1, 0, 0, 0, 3808, 3806, 1, 0, 0, 0, 3809, 437, 1, 0, 0, 0, 3810, 3811, 5, 517, 0, 0, 3811, 3812, 5, 509, 0, 0, 3812, 3820, 5, 517, 0, 0, 3813, 3814, 5, 517, 0, 0, 3814, 3815, 5, 509, 0, 0, 3815, 3820, 5, 93, 0, 0, 3816, 3817, 5, 517, 0, 0, 3817, 3818, 5, 509, 0, 0, 3818, 3820, 5, 485, 0, 0, 3819, 3810, 1, 0, 0, 0, 3819, 3813, 1, 0, 0, 0, 3819, 3816, 1, 0, 0, 0, 3820, 439, 1, 0, 0, 0, 3821, 3822, 5, 505, 0, 0, 3822, 3823, 3, 394, 197, 0, 3823, 3824, 5, 506, 0, 0, 3824, 441, 1, 0, 0, 0, 3825, 3826, 5, 36, 0, 0, 3826, 3828, 3, 712, 356, 0, 3827, 3829, 3, 444, 222, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3834, 5, 96, 0, 0, 3831, 3833, 3, 448, 224, 0, 3832, 3831, 1, 0, 0, 0, 3833, 3836, 1, 0, 0, 0, 3834, 3832, 1, 0, 0, 0, 3834, 3835, 1, 0, 0, 0, 3835, 3837, 1, 0, 0, 0, 3836, 3834, 1, 0, 0, 0, 3837, 3838, 5, 83, 0, 0, 3838, 443, 1, 0, 0, 0, 3839, 3841, 3, 446, 223, 0, 3840, 3839, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 445, 1, 0, 0, 0, 3844, 3845, 5, 406, 0, 0, 3845, 3846, 5, 517, 0, 0, 3846, 447, 1, 0, 0, 0, 3847, 3848, 5, 33, 0, 0, 3848, 3851, 3, 712, 356, 0, 3849, 3850, 5, 188, 0, 0, 3850, 3852, 5, 517, 0, 0, 3851, 3849, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 449, 1, 0, 0, 0, 3853, 3854, 5, 353, 0, 0, 3854, 3855, 5, 352, 0, 0, 3855, 3857, 3, 712, 356, 0, 3856, 3858, 3, 452, 226, 0, 3857, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 3869, 1, 0, 0, 0, 3861, 3865, 5, 96, 0, 0, 3862, 3864, 3, 454, 227, 0, 3863, 3862, 1, 0, 0, 0, 3864, 3867, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3865, 1, 0, 0, 0, 3868, 3870, 5, 83, 0, 0, 3869, 3861, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 451, 1, 0, 0, 0, 3871, 3872, 5, 419, 0, 0, 3872, 3899, 5, 517, 0, 0, 3873, 3874, 5, 352, 0, 0, 3874, 3878, 5, 262, 0, 0, 3875, 3879, 5, 517, 0, 0, 3876, 3877, 5, 510, 0, 0, 3877, 3879, 3, 712, 356, 0, 3878, 3875, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3899, 1, 0, 0, 0, 3880, 3881, 5, 63, 0, 0, 3881, 3899, 5, 517, 0, 0, 3882, 3883, 5, 64, 0, 0, 3883, 3899, 5, 519, 0, 0, 3884, 3885, 5, 353, 0, 0, 3885, 3899, 5, 517, 0, 0, 3886, 3890, 5, 350, 0, 0, 3887, 3891, 5, 517, 0, 0, 3888, 3889, 5, 510, 0, 0, 3889, 3891, 3, 712, 356, 0, 3890, 3887, 1, 0, 0, 0, 3890, 3888, 1, 0, 0, 0, 3891, 3899, 1, 0, 0, 0, 3892, 3896, 5, 351, 0, 0, 3893, 3897, 5, 517, 0, 0, 3894, 3895, 5, 510, 0, 0, 3895, 3897, 3, 712, 356, 0, 3896, 3893, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3897, 3899, 1, 0, 0, 0, 3898, 3871, 1, 0, 0, 0, 3898, 3873, 1, 0, 0, 0, 3898, 3880, 1, 0, 0, 0, 3898, 3882, 1, 0, 0, 0, 3898, 3884, 1, 0, 0, 0, 3898, 3886, 1, 0, 0, 0, 3898, 3892, 1, 0, 0, 0, 3899, 453, 1, 0, 0, 0, 3900, 3901, 5, 354, 0, 0, 3901, 3902, 3, 714, 357, 0, 3902, 3903, 5, 434, 0, 0, 3903, 3915, 7, 11, 0, 0, 3904, 3905, 5, 368, 0, 0, 3905, 3906, 3, 714, 357, 0, 3906, 3907, 5, 509, 0, 0, 3907, 3911, 3, 108, 54, 0, 3908, 3909, 5, 295, 0, 0, 3909, 3912, 5, 517, 0, 0, 3910, 3912, 5, 288, 0, 0, 3911, 3908, 1, 0, 0, 0, 3911, 3910, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3914, 1, 0, 0, 0, 3913, 3904, 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3934, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3919, 5, 77, 0, 0, 3919, 3932, 3, 712, 356, 0, 3920, 3921, 5, 355, 0, 0, 3921, 3922, 5, 503, 0, 0, 3922, 3927, 3, 456, 228, 0, 3923, 3924, 5, 501, 0, 0, 3924, 3926, 3, 456, 228, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3929, 1, 0, 0, 0, 3927, 3925, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3930, 1, 0, 0, 0, 3929, 3927, 1, 0, 0, 0, 3930, 3931, 5, 504, 0, 0, 3931, 3933, 1, 0, 0, 0, 3932, 3920, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3935, 1, 0, 0, 0, 3934, 3918, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 3937, 5, 500, 0, 0, 3937, 455, 1, 0, 0, 0, 3938, 3939, 3, 714, 357, 0, 3939, 3940, 5, 76, 0, 0, 3940, 3941, 3, 714, 357, 0, 3941, 457, 1, 0, 0, 0, 3942, 3943, 5, 37, 0, 0, 3943, 3944, 3, 712, 356, 0, 3944, 3945, 5, 419, 0, 0, 3945, 3946, 3, 108, 54, 0, 3946, 3947, 5, 295, 0, 0, 3947, 3949, 3, 716, 358, 0, 3948, 3950, 3, 460, 230, 0, 3949, 3948, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 459, 1, 0, 0, 0, 3951, 3953, 3, 462, 231, 0, 3952, 3951, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3954, 3955, 1, 0, 0, 0, 3955, 461, 1, 0, 0, 0, 3956, 3957, 5, 406, 0, 0, 3957, 3964, 5, 517, 0, 0, 3958, 3959, 5, 219, 0, 0, 3959, 3964, 5, 517, 0, 0, 3960, 3961, 5, 367, 0, 0, 3961, 3962, 5, 426, 0, 0, 3962, 3964, 5, 339, 0, 0, 3963, 3956, 1, 0, 0, 0, 3963, 3958, 1, 0, 0, 0, 3963, 3960, 1, 0, 0, 0, 3964, 463, 1, 0, 0, 0, 3965, 3966, 5, 444, 0, 0, 3966, 3975, 5, 517, 0, 0, 3967, 3972, 3, 560, 280, 0, 3968, 3969, 5, 501, 0, 0, 3969, 3971, 3, 560, 280, 0, 3970, 3968, 1, 0, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3976, 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3967, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 465, 1, 0, 0, 0, 3977, 3978, 5, 311, 0, 0, 3978, 3979, 5, 339, 0, 0, 3979, 3980, 3, 712, 356, 0, 3980, 3981, 3, 468, 234, 0, 3981, 3982, 3, 470, 235, 0, 3982, 3986, 5, 96, 0, 0, 3983, 3985, 3, 474, 237, 0, 3984, 3983, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3989, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, 0, 3989, 3990, 5, 83, 0, 0, 3990, 467, 1, 0, 0, 0, 3991, 3992, 5, 315, 0, 0, 3992, 3993, 5, 218, 0, 0, 3993, 3994, 5, 517, 0, 0, 3994, 469, 1, 0, 0, 0, 3995, 3996, 5, 317, 0, 0, 3996, 4010, 5, 424, 0, 0, 3997, 3998, 5, 317, 0, 0, 3998, 3999, 5, 318, 0, 0, 3999, 4000, 5, 503, 0, 0, 4000, 4001, 5, 350, 0, 0, 4001, 4002, 5, 490, 0, 0, 4002, 4003, 3, 472, 236, 0, 4003, 4004, 5, 501, 0, 0, 4004, 4005, 5, 351, 0, 0, 4005, 4006, 5, 490, 0, 0, 4006, 4007, 3, 472, 236, 0, 4007, 4008, 5, 504, 0, 0, 4008, 4010, 1, 0, 0, 0, 4009, 3995, 1, 0, 0, 0, 4009, 3997, 1, 0, 0, 0, 4010, 471, 1, 0, 0, 0, 4011, 4012, 7, 26, 0, 0, 4012, 473, 1, 0, 0, 0, 4013, 4015, 3, 722, 361, 0, 4014, 4013, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4019, 5, 321, 0, 0, 4017, 4020, 3, 714, 357, 0, 4018, 4020, 5, 517, 0, 0, 4019, 4017, 1, 0, 0, 0, 4019, 4018, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4022, 5, 322, 0, 0, 4022, 4023, 3, 476, 238, 0, 4023, 4024, 5, 323, 0, 0, 4024, 4028, 5, 517, 0, 0, 4025, 4027, 3, 478, 239, 0, 4026, 4025, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4032, 5, 326, 0, 0, 4032, 4033, 3, 482, 241, 0, 4033, 4034, 5, 500, 0, 0, 4034, 475, 1, 0, 0, 0, 4035, 4036, 7, 14, 0, 0, 4036, 477, 1, 0, 0, 0, 4037, 4038, 5, 368, 0, 0, 4038, 4039, 5, 520, 0, 0, 4039, 4040, 5, 509, 0, 0, 4040, 4056, 3, 108, 54, 0, 4041, 4042, 5, 354, 0, 0, 4042, 4043, 5, 520, 0, 0, 4043, 4044, 5, 509, 0, 0, 4044, 4056, 3, 108, 54, 0, 4045, 4046, 5, 195, 0, 0, 4046, 4047, 5, 517, 0, 0, 4047, 4048, 5, 490, 0, 0, 4048, 4056, 3, 480, 240, 0, 4049, 4050, 5, 325, 0, 0, 4050, 4051, 7, 27, 0, 0, 4051, 4052, 5, 71, 0, 0, 4052, 4056, 5, 520, 0, 0, 4053, 4054, 5, 324, 0, 0, 4054, 4056, 5, 519, 0, 0, 4055, 4037, 1, 0, 0, 0, 4055, 4041, 1, 0, 0, 0, 4055, 4045, 1, 0, 0, 0, 4055, 4049, 1, 0, 0, 0, 4055, 4053, 1, 0, 0, 0, 4056, 479, 1, 0, 0, 0, 4057, 4063, 5, 517, 0, 0, 4058, 4063, 5, 520, 0, 0, 4059, 4060, 5, 517, 0, 0, 4060, 4061, 5, 493, 0, 0, 4061, 4063, 5, 520, 0, 0, 4062, 4057, 1, 0, 0, 0, 4062, 4058, 1, 0, 0, 0, 4062, 4059, 1, 0, 0, 0, 4063, 481, 1, 0, 0, 0, 4064, 4065, 5, 329, 0, 0, 4065, 4066, 5, 76, 0, 0, 4066, 4078, 5, 520, 0, 0, 4067, 4068, 5, 262, 0, 0, 4068, 4069, 5, 76, 0, 0, 4069, 4078, 5, 520, 0, 0, 4070, 4071, 5, 332, 0, 0, 4071, 4072, 5, 76, 0, 0, 4072, 4078, 5, 520, 0, 0, 4073, 4074, 5, 331, 0, 0, 4074, 4075, 5, 76, 0, 0, 4075, 4078, 5, 520, 0, 0, 4076, 4078, 5, 424, 0, 0, 4077, 4064, 1, 0, 0, 0, 4077, 4067, 1, 0, 0, 0, 4077, 4070, 1, 0, 0, 0, 4077, 4073, 1, 0, 0, 0, 4077, 4076, 1, 0, 0, 0, 4078, 483, 1, 0, 0, 0, 4079, 4080, 5, 41, 0, 0, 4080, 4081, 5, 521, 0, 0, 4081, 4082, 5, 93, 0, 0, 4082, 4083, 3, 712, 356, 0, 4083, 4084, 5, 503, 0, 0, 4084, 4085, 3, 116, 58, 0, 4085, 4086, 5, 504, 0, 0, 4086, 485, 1, 0, 0, 0, 4087, 4088, 5, 314, 0, 0, 4088, 4089, 5, 339, 0, 0, 4089, 4090, 3, 712, 356, 0, 4090, 4091, 5, 503, 0, 0, 4091, 4096, 3, 492, 246, 0, 4092, 4093, 5, 501, 0, 0, 4093, 4095, 3, 492, 246, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4098, 1, 0, 0, 0, 4096, 4094, 1, 0, 0, 0, 4096, 4097, 1, 0, 0, 0, 4097, 4099, 1, 0, 0, 0, 4098, 4096, 1, 0, 0, 0, 4099, 4101, 5, 504, 0, 0, 4100, 4102, 3, 512, 256, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 487, 1, 0, 0, 0, 4103, 4104, 5, 314, 0, 0, 4104, 4105, 5, 312, 0, 0, 4105, 4106, 3, 712, 356, 0, 4106, 4107, 5, 503, 0, 0, 4107, 4112, 3, 492, 246, 0, 4108, 4109, 5, 501, 0, 0, 4109, 4111, 3, 492, 246, 0, 4110, 4108, 1, 0, 0, 0, 4111, 4114, 1, 0, 0, 0, 4112, 4110, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4115, 1, 0, 0, 0, 4114, 4112, 1, 0, 0, 0, 4115, 4117, 5, 504, 0, 0, 4116, 4118, 3, 496, 248, 0, 4117, 4116, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 4127, 1, 0, 0, 0, 4119, 4123, 5, 505, 0, 0, 4120, 4122, 3, 500, 250, 0, 4121, 4120, 1, 0, 0, 0, 4122, 4125, 1, 0, 0, 0, 4123, 4121, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4123, 1, 0, 0, 0, 4126, 4128, 5, 506, 0, 0, 4127, 4119, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 489, 1, 0, 0, 0, 4129, 4139, 5, 517, 0, 0, 4130, 4139, 5, 519, 0, 0, 4131, 4139, 5, 296, 0, 0, 4132, 4139, 5, 297, 0, 0, 4133, 4135, 5, 30, 0, 0, 4134, 4136, 3, 712, 356, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4139, 1, 0, 0, 0, 4137, 4139, 3, 712, 356, 0, 4138, 4129, 1, 0, 0, 0, 4138, 4130, 1, 0, 0, 0, 4138, 4131, 1, 0, 0, 0, 4138, 4132, 1, 0, 0, 0, 4138, 4133, 1, 0, 0, 0, 4138, 4137, 1, 0, 0, 0, 4139, 491, 1, 0, 0, 0, 4140, 4141, 3, 714, 357, 0, 4141, 4142, 5, 509, 0, 0, 4142, 4143, 3, 490, 245, 0, 4143, 493, 1, 0, 0, 0, 4144, 4145, 3, 714, 357, 0, 4145, 4146, 5, 490, 0, 0, 4146, 4147, 3, 490, 245, 0, 4147, 495, 1, 0, 0, 0, 4148, 4149, 5, 317, 0, 0, 4149, 4154, 3, 498, 249, 0, 4150, 4151, 5, 501, 0, 0, 4151, 4153, 3, 498, 249, 0, 4152, 4150, 1, 0, 0, 0, 4153, 4156, 1, 0, 0, 0, 4154, 4152, 1, 0, 0, 0, 4154, 4155, 1, 0, 0, 0, 4155, 497, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4157, 4166, 5, 318, 0, 0, 4158, 4166, 5, 346, 0, 0, 4159, 4166, 5, 347, 0, 0, 4160, 4162, 5, 30, 0, 0, 4161, 4163, 3, 712, 356, 0, 4162, 4161, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4166, 5, 521, 0, 0, 4165, 4157, 1, 0, 0, 0, 4165, 4158, 1, 0, 0, 0, 4165, 4159, 1, 0, 0, 0, 4165, 4160, 1, 0, 0, 0, 4165, 4164, 1, 0, 0, 0, 4166, 499, 1, 0, 0, 0, 4167, 4168, 5, 341, 0, 0, 4168, 4169, 5, 23, 0, 0, 4169, 4172, 3, 712, 356, 0, 4170, 4171, 5, 76, 0, 0, 4171, 4173, 5, 517, 0, 0, 4172, 4170, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4185, 1, 0, 0, 0, 4174, 4175, 5, 503, 0, 0, 4175, 4180, 3, 492, 246, 0, 4176, 4177, 5, 501, 0, 0, 4177, 4179, 3, 492, 246, 0, 4178, 4176, 1, 0, 0, 0, 4179, 4182, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4183, 4184, 5, 504, 0, 0, 4184, 4186, 1, 0, 0, 0, 4185, 4174, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4188, 1, 0, 0, 0, 4187, 4189, 3, 502, 251, 0, 4188, 4187, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 1, 0, 0, 0, 4190, 4192, 5, 500, 0, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 501, 1, 0, 0, 0, 4193, 4194, 5, 343, 0, 0, 4194, 4204, 5, 503, 0, 0, 4195, 4205, 5, 495, 0, 0, 4196, 4201, 3, 504, 252, 0, 4197, 4198, 5, 501, 0, 0, 4198, 4200, 3, 504, 252, 0, 4199, 4197, 1, 0, 0, 0, 4200, 4203, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 4205, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4204, 4195, 1, 0, 0, 0, 4204, 4196, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4207, 5, 504, 0, 0, 4207, 503, 1, 0, 0, 0, 4208, 4211, 5, 521, 0, 0, 4209, 4210, 5, 76, 0, 0, 4210, 4212, 5, 517, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4214, 1, 0, 0, 0, 4213, 4215, 3, 506, 253, 0, 4214, 4213, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 505, 1, 0, 0, 0, 4216, 4217, 5, 503, 0, 0, 4217, 4222, 5, 521, 0, 0, 4218, 4219, 5, 501, 0, 0, 4219, 4221, 5, 521, 0, 0, 4220, 4218, 1, 0, 0, 0, 4221, 4224, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4225, 1, 0, 0, 0, 4224, 4222, 1, 0, 0, 0, 4225, 4226, 5, 504, 0, 0, 4226, 507, 1, 0, 0, 0, 4227, 4228, 5, 26, 0, 0, 4228, 4229, 5, 23, 0, 0, 4229, 4230, 3, 712, 356, 0, 4230, 4231, 5, 71, 0, 0, 4231, 4232, 5, 314, 0, 0, 4232, 4233, 5, 339, 0, 0, 4233, 4234, 3, 712, 356, 0, 4234, 4235, 5, 503, 0, 0, 4235, 4240, 3, 492, 246, 0, 4236, 4237, 5, 501, 0, 0, 4237, 4239, 3, 492, 246, 0, 4238, 4236, 1, 0, 0, 0, 4239, 4242, 1, 0, 0, 0, 4240, 4238, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4243, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4249, 5, 504, 0, 0, 4244, 4246, 5, 503, 0, 0, 4245, 4247, 3, 100, 50, 0, 4246, 4245, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4250, 5, 504, 0, 0, 4249, 4244, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, 0, 4250, 509, 1, 0, 0, 0, 4251, 4254, 5, 371, 0, 0, 4252, 4255, 3, 712, 356, 0, 4253, 4255, 5, 521, 0, 0, 4254, 4252, 1, 0, 0, 0, 4254, 4253, 1, 0, 0, 0, 4255, 4259, 1, 0, 0, 0, 4256, 4258, 3, 34, 17, 0, 4257, 4256, 1, 0, 0, 0, 4258, 4261, 1, 0, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 511, 1, 0, 0, 0, 4261, 4259, 1, 0, 0, 0, 4262, 4263, 5, 370, 0, 0, 4263, 4264, 5, 503, 0, 0, 4264, 4269, 3, 514, 257, 0, 4265, 4266, 5, 501, 0, 0, 4266, 4268, 3, 514, 257, 0, 4267, 4265, 1, 0, 0, 0, 4268, 4271, 1, 0, 0, 0, 4269, 4267, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4272, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4272, 4273, 5, 504, 0, 0, 4273, 513, 1, 0, 0, 0, 4274, 4275, 5, 517, 0, 0, 4275, 4276, 5, 509, 0, 0, 4276, 4277, 3, 490, 245, 0, 4277, 515, 1, 0, 0, 0, 4278, 4279, 5, 440, 0, 0, 4279, 4280, 5, 441, 0, 0, 4280, 4281, 5, 312, 0, 0, 4281, 4282, 3, 712, 356, 0, 4282, 4283, 5, 503, 0, 0, 4283, 4288, 3, 492, 246, 0, 4284, 4285, 5, 501, 0, 0, 4285, 4287, 3, 492, 246, 0, 4286, 4284, 1, 0, 0, 0, 4287, 4290, 1, 0, 0, 0, 4288, 4286, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4291, 1, 0, 0, 0, 4290, 4288, 1, 0, 0, 0, 4291, 4292, 5, 504, 0, 0, 4292, 4294, 5, 505, 0, 0, 4293, 4295, 3, 518, 259, 0, 4294, 4293, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 5, 506, 0, 0, 4299, 517, 1, 0, 0, 0, 4300, 4301, 5, 403, 0, 0, 4301, 4302, 5, 521, 0, 0, 4302, 4303, 5, 503, 0, 0, 4303, 4308, 3, 520, 260, 0, 4304, 4305, 5, 501, 0, 0, 4305, 4307, 3, 520, 260, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4310, 1, 0, 0, 0, 4308, 4306, 1, 0, 0, 0, 4308, 4309, 1, 0, 0, 0, 4309, 4311, 1, 0, 0, 0, 4310, 4308, 1, 0, 0, 0, 4311, 4312, 5, 504, 0, 0, 4312, 4315, 7, 28, 0, 0, 4313, 4314, 5, 23, 0, 0, 4314, 4316, 3, 712, 356, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4318, 5, 30, 0, 0, 4318, 4320, 3, 712, 356, 0, 4319, 4317, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4322, 5, 500, 0, 0, 4322, 519, 1, 0, 0, 0, 4323, 4324, 5, 521, 0, 0, 4324, 4325, 5, 509, 0, 0, 4325, 4326, 3, 108, 54, 0, 4326, 521, 1, 0, 0, 0, 4327, 4328, 5, 32, 0, 0, 4328, 4333, 3, 712, 356, 0, 4329, 4330, 5, 368, 0, 0, 4330, 4331, 5, 520, 0, 0, 4331, 4332, 5, 509, 0, 0, 4332, 4334, 3, 712, 356, 0, 4333, 4329, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4336, 5, 484, 0, 0, 4336, 4338, 5, 517, 0, 0, 4337, 4335, 1, 0, 0, 0, 4337, 4338, 1, 0, 0, 0, 4338, 4341, 1, 0, 0, 0, 4339, 4340, 5, 483, 0, 0, 4340, 4342, 5, 517, 0, 0, 4341, 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4346, 1, 0, 0, 0, 4343, 4344, 5, 361, 0, 0, 4344, 4345, 5, 460, 0, 0, 4345, 4347, 7, 29, 0, 0, 4346, 4343, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4351, 1, 0, 0, 0, 4348, 4349, 5, 471, 0, 0, 4349, 4350, 5, 33, 0, 0, 4350, 4352, 3, 712, 356, 0, 4351, 4348, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 4356, 1, 0, 0, 0, 4353, 4354, 5, 470, 0, 0, 4354, 4355, 5, 268, 0, 0, 4355, 4357, 5, 517, 0, 0, 4356, 4353, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 4359, 5, 96, 0, 0, 4359, 4360, 3, 524, 262, 0, 4360, 4361, 5, 83, 0, 0, 4361, 4363, 5, 32, 0, 0, 4362, 4364, 5, 500, 0, 0, 4363, 4362, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4366, 1, 0, 0, 0, 4365, 4367, 5, 496, 0, 0, 4366, 4365, 1, 0, 0, 0, 4366, 4367, 1, 0, 0, 0, 4367, 523, 1, 0, 0, 0, 4368, 4370, 3, 526, 263, 0, 4369, 4368, 1, 0, 0, 0, 4370, 4373, 1, 0, 0, 0, 4371, 4369, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 525, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4374, 4375, 3, 528, 264, 0, 4375, 4376, 5, 500, 0, 0, 4376, 4402, 1, 0, 0, 0, 4377, 4378, 3, 534, 267, 0, 4378, 4379, 5, 500, 0, 0, 4379, 4402, 1, 0, 0, 0, 4380, 4381, 3, 538, 269, 0, 4381, 4382, 5, 500, 0, 0, 4382, 4402, 1, 0, 0, 0, 4383, 4384, 3, 540, 270, 0, 4384, 4385, 5, 500, 0, 0, 4385, 4402, 1, 0, 0, 0, 4386, 4387, 3, 544, 272, 0, 4387, 4388, 5, 500, 0, 0, 4388, 4402, 1, 0, 0, 0, 4389, 4390, 3, 548, 274, 0, 4390, 4391, 5, 500, 0, 0, 4391, 4402, 1, 0, 0, 0, 4392, 4393, 3, 550, 275, 0, 4393, 4394, 5, 500, 0, 0, 4394, 4402, 1, 0, 0, 0, 4395, 4396, 3, 552, 276, 0, 4396, 4397, 5, 500, 0, 0, 4397, 4402, 1, 0, 0, 0, 4398, 4399, 3, 554, 277, 0, 4399, 4400, 5, 500, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4374, 1, 0, 0, 0, 4401, 4377, 1, 0, 0, 0, 4401, 4380, 1, 0, 0, 0, 4401, 4383, 1, 0, 0, 0, 4401, 4386, 1, 0, 0, 0, 4401, 4389, 1, 0, 0, 0, 4401, 4392, 1, 0, 0, 0, 4401, 4395, 1, 0, 0, 0, 4401, 4398, 1, 0, 0, 0, 4402, 527, 1, 0, 0, 0, 4403, 4404, 5, 461, 0, 0, 4404, 4405, 5, 462, 0, 0, 4405, 4406, 5, 521, 0, 0, 4406, 4409, 5, 517, 0, 0, 4407, 4408, 5, 33, 0, 0, 4408, 4410, 3, 712, 356, 0, 4409, 4407, 1, 0, 0, 0, 4409, 4410, 1, 0, 0, 0, 4410, 4414, 1, 0, 0, 0, 4411, 4412, 5, 466, 0, 0, 4412, 4413, 5, 30, 0, 0, 4413, 4415, 3, 712, 356, 0, 4414, 4411, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4419, 1, 0, 0, 0, 4416, 4417, 5, 466, 0, 0, 4417, 4418, 5, 308, 0, 0, 4418, 4420, 5, 517, 0, 0, 4419, 4416, 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 4423, 1, 0, 0, 0, 4421, 4422, 5, 23, 0, 0, 4422, 4424, 3, 712, 356, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 4428, 1, 0, 0, 0, 4425, 4426, 5, 470, 0, 0, 4426, 4427, 5, 268, 0, 0, 4427, 4429, 5, 517, 0, 0, 4428, 4425, 1, 0, 0, 0, 4428, 4429, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4431, 5, 483, 0, 0, 4431, 4433, 5, 517, 0, 0, 4432, 4430, 1, 0, 0, 0, 4432, 4433, 1, 0, 0, 0, 4433, 4440, 1, 0, 0, 0, 4434, 4436, 5, 465, 0, 0, 4435, 4437, 3, 532, 266, 0, 4436, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 4441, 1, 0, 0, 0, 4440, 4434, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 4449, 1, 0, 0, 0, 4442, 4443, 5, 476, 0, 0, 4443, 4445, 5, 441, 0, 0, 4444, 4446, 3, 530, 265, 0, 4445, 4444, 1, 0, 0, 0, 4446, 4447, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4447, 4448, 1, 0, 0, 0, 4448, 4450, 1, 0, 0, 0, 4449, 4442, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4501, 1, 0, 0, 0, 4451, 4452, 5, 479, 0, 0, 4452, 4453, 5, 461, 0, 0, 4453, 4454, 5, 462, 0, 0, 4454, 4455, 5, 521, 0, 0, 4455, 4458, 5, 517, 0, 0, 4456, 4457, 5, 33, 0, 0, 4457, 4459, 3, 712, 356, 0, 4458, 4456, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4463, 1, 0, 0, 0, 4460, 4461, 5, 466, 0, 0, 4461, 4462, 5, 30, 0, 0, 4462, 4464, 3, 712, 356, 0, 4463, 4460, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4468, 1, 0, 0, 0, 4465, 4466, 5, 466, 0, 0, 4466, 4467, 5, 308, 0, 0, 4467, 4469, 5, 517, 0, 0, 4468, 4465, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4471, 5, 23, 0, 0, 4471, 4473, 3, 712, 356, 0, 4472, 4470, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4477, 1, 0, 0, 0, 4474, 4475, 5, 470, 0, 0, 4475, 4476, 5, 268, 0, 0, 4476, 4478, 5, 517, 0, 0, 4477, 4474, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4481, 1, 0, 0, 0, 4479, 4480, 5, 483, 0, 0, 4480, 4482, 5, 517, 0, 0, 4481, 4479, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4489, 1, 0, 0, 0, 4483, 4485, 5, 465, 0, 0, 4484, 4486, 3, 532, 266, 0, 4485, 4484, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4490, 1, 0, 0, 0, 4489, 4483, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4498, 1, 0, 0, 0, 4491, 4492, 5, 476, 0, 0, 4492, 4494, 5, 441, 0, 0, 4493, 4495, 3, 530, 265, 0, 4494, 4493, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4491, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 4501, 1, 0, 0, 0, 4500, 4403, 1, 0, 0, 0, 4500, 4451, 1, 0, 0, 0, 4501, 529, 1, 0, 0, 0, 4502, 4503, 5, 477, 0, 0, 4503, 4505, 5, 468, 0, 0, 4504, 4506, 5, 517, 0, 0, 4505, 4504, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 4511, 1, 0, 0, 0, 4507, 4508, 5, 505, 0, 0, 4508, 4509, 3, 524, 262, 0, 4509, 4510, 5, 506, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4507, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4536, 1, 0, 0, 0, 4513, 4514, 5, 478, 0, 0, 4514, 4515, 5, 477, 0, 0, 4515, 4517, 5, 468, 0, 0, 4516, 4518, 5, 517, 0, 0, 4517, 4516, 1, 0, 0, 0, 4517, 4518, 1, 0, 0, 0, 4518, 4523, 1, 0, 0, 0, 4519, 4520, 5, 505, 0, 0, 4520, 4521, 3, 524, 262, 0, 4521, 4522, 5, 506, 0, 0, 4522, 4524, 1, 0, 0, 0, 4523, 4519, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4536, 1, 0, 0, 0, 4525, 4527, 5, 468, 0, 0, 4526, 4528, 5, 517, 0, 0, 4527, 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 4533, 1, 0, 0, 0, 4529, 4530, 5, 505, 0, 0, 4530, 4531, 3, 524, 262, 0, 4531, 4532, 5, 506, 0, 0, 4532, 4534, 1, 0, 0, 0, 4533, 4529, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4536, 1, 0, 0, 0, 4535, 4502, 1, 0, 0, 0, 4535, 4513, 1, 0, 0, 0, 4535, 4525, 1, 0, 0, 0, 4536, 531, 1, 0, 0, 0, 4537, 4538, 5, 517, 0, 0, 4538, 4539, 5, 505, 0, 0, 4539, 4540, 3, 524, 262, 0, 4540, 4541, 5, 506, 0, 0, 4541, 533, 1, 0, 0, 0, 4542, 4543, 5, 113, 0, 0, 4543, 4544, 5, 30, 0, 0, 4544, 4547, 3, 712, 356, 0, 4545, 4546, 5, 406, 0, 0, 4546, 4548, 5, 517, 0, 0, 4547, 4545, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4561, 1, 0, 0, 0, 4549, 4550, 5, 139, 0, 0, 4550, 4551, 5, 503, 0, 0, 4551, 4556, 3, 536, 268, 0, 4552, 4553, 5, 501, 0, 0, 4553, 4555, 3, 536, 268, 0, 4554, 4552, 1, 0, 0, 0, 4555, 4558, 1, 0, 0, 0, 4556, 4554, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4559, 1, 0, 0, 0, 4558, 4556, 1, 0, 0, 0, 4559, 4560, 5, 504, 0, 0, 4560, 4562, 1, 0, 0, 0, 4561, 4549, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4569, 1, 0, 0, 0, 4563, 4565, 5, 465, 0, 0, 4564, 4566, 3, 542, 271, 0, 4565, 4564, 1, 0, 0, 0, 4566, 4567, 1, 0, 0, 0, 4567, 4565, 1, 0, 0, 0, 4567, 4568, 1, 0, 0, 0, 4568, 4570, 1, 0, 0, 0, 4569, 4563, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 4578, 1, 0, 0, 0, 4571, 4572, 5, 476, 0, 0, 4572, 4574, 5, 441, 0, 0, 4573, 4575, 3, 530, 265, 0, 4574, 4573, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4579, 1, 0, 0, 0, 4578, 4571, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 535, 1, 0, 0, 0, 4580, 4581, 3, 712, 356, 0, 4581, 4582, 5, 490, 0, 0, 4582, 4583, 5, 517, 0, 0, 4583, 537, 1, 0, 0, 0, 4584, 4585, 5, 113, 0, 0, 4585, 4586, 5, 32, 0, 0, 4586, 4589, 3, 712, 356, 0, 4587, 4588, 5, 406, 0, 0, 4588, 4590, 5, 517, 0, 0, 4589, 4587, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4603, 1, 0, 0, 0, 4591, 4592, 5, 139, 0, 0, 4592, 4593, 5, 503, 0, 0, 4593, 4598, 3, 536, 268, 0, 4594, 4595, 5, 501, 0, 0, 4595, 4597, 3, 536, 268, 0, 4596, 4594, 1, 0, 0, 0, 4597, 4600, 1, 0, 0, 0, 4598, 4596, 1, 0, 0, 0, 4598, 4599, 1, 0, 0, 0, 4599, 4601, 1, 0, 0, 0, 4600, 4598, 1, 0, 0, 0, 4601, 4602, 5, 504, 0, 0, 4602, 4604, 1, 0, 0, 0, 4603, 4591, 1, 0, 0, 0, 4603, 4604, 1, 0, 0, 0, 4604, 539, 1, 0, 0, 0, 4605, 4607, 5, 463, 0, 0, 4606, 4608, 5, 517, 0, 0, 4607, 4606, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4611, 1, 0, 0, 0, 4609, 4610, 5, 406, 0, 0, 4610, 4612, 5, 517, 0, 0, 4611, 4609, 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 4619, 1, 0, 0, 0, 4613, 4615, 5, 465, 0, 0, 4614, 4616, 3, 542, 271, 0, 4615, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4620, 1, 0, 0, 0, 4619, 4613, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 541, 1, 0, 0, 0, 4621, 4622, 7, 30, 0, 0, 4622, 4623, 5, 513, 0, 0, 4623, 4624, 5, 505, 0, 0, 4624, 4625, 3, 524, 262, 0, 4625, 4626, 5, 506, 0, 0, 4626, 543, 1, 0, 0, 0, 4627, 4628, 5, 473, 0, 0, 4628, 4631, 5, 464, 0, 0, 4629, 4630, 5, 406, 0, 0, 4630, 4632, 5, 517, 0, 0, 4631, 4629, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 4634, 1, 0, 0, 0, 4633, 4635, 3, 546, 273, 0, 4634, 4633, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4634, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 545, 1, 0, 0, 0, 4638, 4639, 5, 323, 0, 0, 4639, 4640, 5, 519, 0, 0, 4640, 4641, 5, 505, 0, 0, 4641, 4642, 3, 524, 262, 0, 4642, 4643, 5, 506, 0, 0, 4643, 547, 1, 0, 0, 0, 4644, 4645, 5, 469, 0, 0, 4645, 4646, 5, 426, 0, 0, 4646, 4649, 5, 521, 0, 0, 4647, 4648, 5, 406, 0, 0, 4648, 4650, 5, 517, 0, 0, 4649, 4647, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 549, 1, 0, 0, 0, 4651, 4652, 5, 474, 0, 0, 4652, 4653, 5, 429, 0, 0, 4653, 4655, 5, 468, 0, 0, 4654, 4656, 5, 517, 0, 0, 4655, 4654, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4658, 5, 406, 0, 0, 4658, 4660, 5, 517, 0, 0, 4659, 4657, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 551, 1, 0, 0, 0, 4661, 4662, 5, 474, 0, 0, 4662, 4663, 5, 429, 0, 0, 4663, 4666, 5, 467, 0, 0, 4664, 4665, 5, 406, 0, 0, 4665, 4667, 5, 517, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 4675, 1, 0, 0, 0, 4668, 4669, 5, 476, 0, 0, 4669, 4671, 5, 441, 0, 0, 4670, 4672, 3, 530, 265, 0, 4671, 4670, 1, 0, 0, 0, 4672, 4673, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4676, 1, 0, 0, 0, 4675, 4668, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 553, 1, 0, 0, 0, 4677, 4678, 5, 475, 0, 0, 4678, 4679, 5, 517, 0, 0, 4679, 555, 1, 0, 0, 0, 4680, 4681, 3, 558, 279, 0, 4681, 4686, 3, 560, 280, 0, 4682, 4683, 5, 501, 0, 0, 4683, 4685, 3, 560, 280, 0, 4684, 4682, 1, 0, 0, 0, 4685, 4688, 1, 0, 0, 0, 4686, 4684, 1, 0, 0, 0, 4686, 4687, 1, 0, 0, 0, 4687, 4720, 1, 0, 0, 0, 4688, 4686, 1, 0, 0, 0, 4689, 4690, 5, 37, 0, 0, 4690, 4694, 5, 517, 0, 0, 4691, 4692, 5, 420, 0, 0, 4692, 4695, 3, 562, 281, 0, 4693, 4695, 5, 19, 0, 0, 4694, 4691, 1, 0, 0, 0, 4694, 4693, 1, 0, 0, 0, 4695, 4699, 1, 0, 0, 0, 4696, 4697, 5, 289, 0, 0, 4697, 4698, 5, 444, 0, 0, 4698, 4700, 5, 517, 0, 0, 4699, 4696, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4720, 1, 0, 0, 0, 4701, 4702, 5, 19, 0, 0, 4702, 4703, 5, 37, 0, 0, 4703, 4707, 5, 517, 0, 0, 4704, 4705, 5, 289, 0, 0, 4705, 4706, 5, 444, 0, 0, 4706, 4708, 5, 517, 0, 0, 4707, 4704, 1, 0, 0, 0, 4707, 4708, 1, 0, 0, 0, 4708, 4720, 1, 0, 0, 0, 4709, 4710, 5, 444, 0, 0, 4710, 4711, 5, 517, 0, 0, 4711, 4716, 3, 560, 280, 0, 4712, 4713, 5, 501, 0, 0, 4713, 4715, 3, 560, 280, 0, 4714, 4712, 1, 0, 0, 0, 4715, 4718, 1, 0, 0, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 4720, 1, 0, 0, 0, 4718, 4716, 1, 0, 0, 0, 4719, 4680, 1, 0, 0, 0, 4719, 4689, 1, 0, 0, 0, 4719, 4701, 1, 0, 0, 0, 4719, 4709, 1, 0, 0, 0, 4720, 557, 1, 0, 0, 0, 4721, 4722, 7, 31, 0, 0, 4722, 559, 1, 0, 0, 0, 4723, 4724, 5, 521, 0, 0, 4724, 4725, 5, 490, 0, 0, 4725, 4726, 3, 562, 281, 0, 4726, 561, 1, 0, 0, 0, 4727, 4732, 5, 517, 0, 0, 4728, 4732, 5, 519, 0, 0, 4729, 4732, 3, 720, 360, 0, 4730, 4732, 3, 712, 356, 0, 4731, 4727, 1, 0, 0, 0, 4731, 4728, 1, 0, 0, 0, 4731, 4729, 1, 0, 0, 0, 4731, 4730, 1, 0, 0, 0, 4732, 563, 1, 0, 0, 0, 4733, 4738, 3, 566, 283, 0, 4734, 4738, 3, 578, 289, 0, 4735, 4738, 3, 580, 290, 0, 4736, 4738, 3, 586, 293, 0, 4737, 4733, 1, 0, 0, 0, 4737, 4734, 1, 0, 0, 0, 4737, 4735, 1, 0, 0, 0, 4737, 4736, 1, 0, 0, 0, 4738, 565, 1, 0, 0, 0, 4739, 4740, 5, 65, 0, 0, 4740, 5175, 5, 377, 0, 0, 4741, 4742, 5, 65, 0, 0, 4742, 4743, 5, 344, 0, 0, 4743, 4744, 5, 378, 0, 0, 4744, 4745, 5, 71, 0, 0, 4745, 5175, 3, 712, 356, 0, 4746, 4747, 5, 65, 0, 0, 4747, 4748, 5, 344, 0, 0, 4748, 4749, 5, 117, 0, 0, 4749, 4750, 5, 71, 0, 0, 4750, 5175, 3, 712, 356, 0, 4751, 4752, 5, 65, 0, 0, 4752, 4753, 5, 344, 0, 0, 4753, 4754, 5, 405, 0, 0, 4754, 4755, 5, 71, 0, 0, 4755, 5175, 3, 712, 356, 0, 4756, 4757, 5, 65, 0, 0, 4757, 4758, 5, 344, 0, 0, 4758, 4759, 5, 404, 0, 0, 4759, 4760, 5, 71, 0, 0, 4760, 5175, 3, 712, 356, 0, 4761, 4762, 5, 65, 0, 0, 4762, 4768, 5, 378, 0, 0, 4763, 4766, 5, 289, 0, 0, 4764, 4767, 3, 712, 356, 0, 4765, 4767, 5, 521, 0, 0, 4766, 4764, 1, 0, 0, 0, 4766, 4765, 1, 0, 0, 0, 4767, 4769, 1, 0, 0, 0, 4768, 4763, 1, 0, 0, 0, 4768, 4769, 1, 0, 0, 0, 4769, 5175, 1, 0, 0, 0, 4770, 4771, 5, 65, 0, 0, 4771, 4777, 5, 379, 0, 0, 4772, 4775, 5, 289, 0, 0, 4773, 4776, 3, 712, 356, 0, 4774, 4776, 5, 521, 0, 0, 4775, 4773, 1, 0, 0, 0, 4775, 4774, 1, 0, 0, 0, 4776, 4778, 1, 0, 0, 0, 4777, 4772, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 5175, 1, 0, 0, 0, 4779, 4780, 5, 65, 0, 0, 4780, 4786, 5, 380, 0, 0, 4781, 4784, 5, 289, 0, 0, 4782, 4785, 3, 712, 356, 0, 4783, 4785, 5, 521, 0, 0, 4784, 4782, 1, 0, 0, 0, 4784, 4783, 1, 0, 0, 0, 4785, 4787, 1, 0, 0, 0, 4786, 4781, 1, 0, 0, 0, 4786, 4787, 1, 0, 0, 0, 4787, 5175, 1, 0, 0, 0, 4788, 4789, 5, 65, 0, 0, 4789, 4795, 5, 381, 0, 0, 4790, 4793, 5, 289, 0, 0, 4791, 4794, 3, 712, 356, 0, 4792, 4794, 5, 521, 0, 0, 4793, 4791, 1, 0, 0, 0, 4793, 4792, 1, 0, 0, 0, 4794, 4796, 1, 0, 0, 0, 4795, 4790, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 5175, 1, 0, 0, 0, 4797, 4798, 5, 65, 0, 0, 4798, 4804, 5, 382, 0, 0, 4799, 4802, 5, 289, 0, 0, 4800, 4803, 3, 712, 356, 0, 4801, 4803, 5, 521, 0, 0, 4802, 4800, 1, 0, 0, 0, 4802, 4801, 1, 0, 0, 0, 4803, 4805, 1, 0, 0, 0, 4804, 4799, 1, 0, 0, 0, 4804, 4805, 1, 0, 0, 0, 4805, 5175, 1, 0, 0, 0, 4806, 4807, 5, 65, 0, 0, 4807, 4813, 5, 143, 0, 0, 4808, 4811, 5, 289, 0, 0, 4809, 4812, 3, 712, 356, 0, 4810, 4812, 5, 521, 0, 0, 4811, 4809, 1, 0, 0, 0, 4811, 4810, 1, 0, 0, 0, 4812, 4814, 1, 0, 0, 0, 4813, 4808, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 5175, 1, 0, 0, 0, 4815, 4816, 5, 65, 0, 0, 4816, 4822, 5, 145, 0, 0, 4817, 4820, 5, 289, 0, 0, 4818, 4821, 3, 712, 356, 0, 4819, 4821, 5, 521, 0, 0, 4820, 4818, 1, 0, 0, 0, 4820, 4819, 1, 0, 0, 0, 4821, 4823, 1, 0, 0, 0, 4822, 4817, 1, 0, 0, 0, 4822, 4823, 1, 0, 0, 0, 4823, 5175, 1, 0, 0, 0, 4824, 4825, 5, 65, 0, 0, 4825, 4831, 5, 383, 0, 0, 4826, 4829, 5, 289, 0, 0, 4827, 4830, 3, 712, 356, 0, 4828, 4830, 5, 521, 0, 0, 4829, 4827, 1, 0, 0, 0, 4829, 4828, 1, 0, 0, 0, 4830, 4832, 1, 0, 0, 0, 4831, 4826, 1, 0, 0, 0, 4831, 4832, 1, 0, 0, 0, 4832, 5175, 1, 0, 0, 0, 4833, 4834, 5, 65, 0, 0, 4834, 4840, 5, 384, 0, 0, 4835, 4838, 5, 289, 0, 0, 4836, 4839, 3, 712, 356, 0, 4837, 4839, 5, 521, 0, 0, 4838, 4836, 1, 0, 0, 0, 4838, 4837, 1, 0, 0, 0, 4839, 4841, 1, 0, 0, 0, 4840, 4835, 1, 0, 0, 0, 4840, 4841, 1, 0, 0, 0, 4841, 5175, 1, 0, 0, 0, 4842, 4843, 5, 65, 0, 0, 4843, 4844, 5, 37, 0, 0, 4844, 4850, 5, 421, 0, 0, 4845, 4848, 5, 289, 0, 0, 4846, 4849, 3, 712, 356, 0, 4847, 4849, 5, 521, 0, 0, 4848, 4846, 1, 0, 0, 0, 4848, 4847, 1, 0, 0, 0, 4849, 4851, 1, 0, 0, 0, 4850, 4845, 1, 0, 0, 0, 4850, 4851, 1, 0, 0, 0, 4851, 5175, 1, 0, 0, 0, 4852, 4853, 5, 65, 0, 0, 4853, 4859, 5, 144, 0, 0, 4854, 4857, 5, 289, 0, 0, 4855, 4858, 3, 712, 356, 0, 4856, 4858, 5, 521, 0, 0, 4857, 4855, 1, 0, 0, 0, 4857, 4856, 1, 0, 0, 0, 4858, 4860, 1, 0, 0, 0, 4859, 4854, 1, 0, 0, 0, 4859, 4860, 1, 0, 0, 0, 4860, 5175, 1, 0, 0, 0, 4861, 4862, 5, 65, 0, 0, 4862, 4868, 5, 146, 0, 0, 4863, 4866, 5, 289, 0, 0, 4864, 4867, 3, 712, 356, 0, 4865, 4867, 5, 521, 0, 0, 4866, 4864, 1, 0, 0, 0, 4866, 4865, 1, 0, 0, 0, 4867, 4869, 1, 0, 0, 0, 4868, 4863, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 5175, 1, 0, 0, 0, 4870, 4871, 5, 65, 0, 0, 4871, 4872, 5, 114, 0, 0, 4872, 4878, 5, 117, 0, 0, 4873, 4876, 5, 289, 0, 0, 4874, 4877, 3, 712, 356, 0, 4875, 4877, 5, 521, 0, 0, 4876, 4874, 1, 0, 0, 0, 4876, 4875, 1, 0, 0, 0, 4877, 4879, 1, 0, 0, 0, 4878, 4873, 1, 0, 0, 0, 4878, 4879, 1, 0, 0, 0, 4879, 5175, 1, 0, 0, 0, 4880, 4881, 5, 65, 0, 0, 4881, 4882, 5, 115, 0, 0, 4882, 4888, 5, 117, 0, 0, 4883, 4886, 5, 289, 0, 0, 4884, 4887, 3, 712, 356, 0, 4885, 4887, 5, 521, 0, 0, 4886, 4884, 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 4889, 1, 0, 0, 0, 4888, 4883, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 5175, 1, 0, 0, 0, 4890, 4891, 5, 65, 0, 0, 4891, 4892, 5, 226, 0, 0, 4892, 4898, 5, 227, 0, 0, 4893, 4896, 5, 289, 0, 0, 4894, 4897, 3, 712, 356, 0, 4895, 4897, 5, 521, 0, 0, 4896, 4894, 1, 0, 0, 0, 4896, 4895, 1, 0, 0, 0, 4897, 4899, 1, 0, 0, 0, 4898, 4893, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 5175, 1, 0, 0, 0, 4900, 4901, 5, 65, 0, 0, 4901, 4902, 5, 329, 0, 0, 4902, 4908, 5, 418, 0, 0, 4903, 4906, 5, 289, 0, 0, 4904, 4907, 3, 712, 356, 0, 4905, 4907, 5, 521, 0, 0, 4906, 4904, 1, 0, 0, 0, 4906, 4905, 1, 0, 0, 0, 4907, 4909, 1, 0, 0, 0, 4908, 4903, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 5175, 1, 0, 0, 0, 4910, 4911, 5, 65, 0, 0, 4911, 4912, 5, 23, 0, 0, 4912, 5175, 3, 712, 356, 0, 4913, 4914, 5, 65, 0, 0, 4914, 4915, 5, 27, 0, 0, 4915, 5175, 3, 712, 356, 0, 4916, 4917, 5, 65, 0, 0, 4917, 4918, 5, 33, 0, 0, 4918, 5175, 3, 712, 356, 0, 4919, 4920, 5, 65, 0, 0, 4920, 5175, 5, 385, 0, 0, 4921, 4922, 5, 65, 0, 0, 4922, 5175, 5, 331, 0, 0, 4923, 4924, 5, 65, 0, 0, 4924, 5175, 5, 333, 0, 0, 4925, 4926, 5, 65, 0, 0, 4926, 4927, 5, 408, 0, 0, 4927, 5175, 5, 331, 0, 0, 4928, 4929, 5, 65, 0, 0, 4929, 4930, 5, 408, 0, 0, 4930, 5175, 5, 365, 0, 0, 4931, 4932, 5, 65, 0, 0, 4932, 4933, 5, 411, 0, 0, 4933, 4934, 5, 427, 0, 0, 4934, 4936, 3, 712, 356, 0, 4935, 4937, 5, 414, 0, 0, 4936, 4935, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 5175, 1, 0, 0, 0, 4938, 4939, 5, 65, 0, 0, 4939, 4940, 5, 412, 0, 0, 4940, 4941, 5, 427, 0, 0, 4941, 4943, 3, 712, 356, 0, 4942, 4944, 5, 414, 0, 0, 4943, 4942, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 5175, 1, 0, 0, 0, 4945, 4946, 5, 65, 0, 0, 4946, 4947, 5, 413, 0, 0, 4947, 4948, 5, 426, 0, 0, 4948, 5175, 3, 712, 356, 0, 4949, 4950, 5, 65, 0, 0, 4950, 4951, 5, 415, 0, 0, 4951, 4952, 5, 427, 0, 0, 4952, 5175, 3, 712, 356, 0, 4953, 4954, 5, 65, 0, 0, 4954, 4955, 5, 221, 0, 0, 4955, 4956, 5, 427, 0, 0, 4956, 4959, 3, 712, 356, 0, 4957, 4958, 5, 416, 0, 0, 4958, 4960, 5, 519, 0, 0, 4959, 4957, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 5175, 1, 0, 0, 0, 4961, 4962, 5, 65, 0, 0, 4962, 4964, 5, 187, 0, 0, 4963, 4965, 3, 568, 284, 0, 4964, 4963, 1, 0, 0, 0, 4964, 4965, 1, 0, 0, 0, 4965, 5175, 1, 0, 0, 0, 4966, 4967, 5, 65, 0, 0, 4967, 4968, 5, 59, 0, 0, 4968, 5175, 5, 448, 0, 0, 4969, 4970, 5, 65, 0, 0, 4970, 4971, 5, 29, 0, 0, 4971, 4977, 5, 450, 0, 0, 4972, 4975, 5, 289, 0, 0, 4973, 4976, 3, 712, 356, 0, 4974, 4976, 5, 521, 0, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4974, 1, 0, 0, 0, 4976, 4978, 1, 0, 0, 0, 4977, 4972, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 5175, 1, 0, 0, 0, 4979, 4980, 5, 65, 0, 0, 4980, 4981, 5, 461, 0, 0, 4981, 5175, 5, 450, 0, 0, 4982, 4983, 5, 65, 0, 0, 4983, 4984, 5, 456, 0, 0, 4984, 5175, 5, 486, 0, 0, 4985, 4986, 5, 65, 0, 0, 4986, 4987, 5, 459, 0, 0, 4987, 4988, 5, 93, 0, 0, 4988, 5175, 3, 712, 356, 0, 4989, 4990, 5, 65, 0, 0, 4990, 4991, 5, 459, 0, 0, 4991, 4992, 5, 93, 0, 0, 4992, 4993, 5, 30, 0, 0, 4993, 5175, 3, 712, 356, 0, 4994, 4995, 5, 65, 0, 0, 4995, 4996, 5, 459, 0, 0, 4996, 4997, 5, 93, 0, 0, 4997, 4998, 5, 33, 0, 0, 4998, 5175, 3, 712, 356, 0, 4999, 5000, 5, 65, 0, 0, 5000, 5001, 5, 459, 0, 0, 5001, 5002, 5, 93, 0, 0, 5002, 5003, 5, 32, 0, 0, 5003, 5175, 3, 712, 356, 0, 5004, 5005, 5, 65, 0, 0, 5005, 5006, 5, 448, 0, 0, 5006, 5012, 5, 457, 0, 0, 5007, 5010, 5, 289, 0, 0, 5008, 5011, 3, 712, 356, 0, 5009, 5011, 5, 521, 0, 0, 5010, 5008, 1, 0, 0, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5013, 1, 0, 0, 0, 5012, 5007, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5175, 1, 0, 0, 0, 5014, 5015, 5, 65, 0, 0, 5015, 5016, 5, 314, 0, 0, 5016, 5022, 5, 340, 0, 0, 5017, 5020, 5, 289, 0, 0, 5018, 5021, 3, 712, 356, 0, 5019, 5021, 5, 521, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5019, 1, 0, 0, 0, 5021, 5023, 1, 0, 0, 0, 5022, 5017, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5175, 1, 0, 0, 0, 5024, 5025, 5, 65, 0, 0, 5025, 5026, 5, 314, 0, 0, 5026, 5032, 5, 313, 0, 0, 5027, 5030, 5, 289, 0, 0, 5028, 5031, 3, 712, 356, 0, 5029, 5031, 5, 521, 0, 0, 5030, 5028, 1, 0, 0, 0, 5030, 5029, 1, 0, 0, 0, 5031, 5033, 1, 0, 0, 0, 5032, 5027, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5175, 1, 0, 0, 0, 5034, 5035, 5, 65, 0, 0, 5035, 5036, 5, 26, 0, 0, 5036, 5042, 5, 378, 0, 0, 5037, 5040, 5, 289, 0, 0, 5038, 5041, 3, 712, 356, 0, 5039, 5041, 5, 521, 0, 0, 5040, 5038, 1, 0, 0, 0, 5040, 5039, 1, 0, 0, 0, 5041, 5043, 1, 0, 0, 0, 5042, 5037, 1, 0, 0, 0, 5042, 5043, 1, 0, 0, 0, 5043, 5175, 1, 0, 0, 0, 5044, 5045, 5, 65, 0, 0, 5045, 5046, 5, 26, 0, 0, 5046, 5052, 5, 117, 0, 0, 5047, 5050, 5, 289, 0, 0, 5048, 5051, 3, 712, 356, 0, 5049, 5051, 5, 521, 0, 0, 5050, 5048, 1, 0, 0, 0, 5050, 5049, 1, 0, 0, 0, 5051, 5053, 1, 0, 0, 0, 5052, 5047, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5175, 1, 0, 0, 0, 5054, 5055, 5, 65, 0, 0, 5055, 5175, 5, 371, 0, 0, 5056, 5057, 5, 65, 0, 0, 5057, 5058, 5, 371, 0, 0, 5058, 5061, 5, 372, 0, 0, 5059, 5062, 3, 712, 356, 0, 5060, 5062, 5, 521, 0, 0, 5061, 5059, 1, 0, 0, 0, 5061, 5060, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5175, 1, 0, 0, 0, 5063, 5064, 5, 65, 0, 0, 5064, 5065, 5, 371, 0, 0, 5065, 5175, 5, 373, 0, 0, 5066, 5067, 5, 65, 0, 0, 5067, 5068, 5, 210, 0, 0, 5068, 5071, 5, 211, 0, 0, 5069, 5070, 5, 429, 0, 0, 5070, 5072, 3, 570, 285, 0, 5071, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5175, 1, 0, 0, 0, 5073, 5074, 5, 65, 0, 0, 5074, 5077, 5, 417, 0, 0, 5075, 5076, 5, 416, 0, 0, 5076, 5078, 5, 519, 0, 0, 5077, 5075, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5084, 1, 0, 0, 0, 5079, 5082, 5, 289, 0, 0, 5080, 5083, 3, 712, 356, 0, 5081, 5083, 5, 521, 0, 0, 5082, 5080, 1, 0, 0, 0, 5082, 5081, 1, 0, 0, 0, 5083, 5085, 1, 0, 0, 0, 5084, 5079, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5087, 1, 0, 0, 0, 5086, 5088, 5, 85, 0, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5175, 1, 0, 0, 0, 5089, 5090, 5, 65, 0, 0, 5090, 5091, 5, 440, 0, 0, 5091, 5092, 5, 441, 0, 0, 5092, 5098, 5, 313, 0, 0, 5093, 5096, 5, 289, 0, 0, 5094, 5097, 3, 712, 356, 0, 5095, 5097, 5, 521, 0, 0, 5096, 5094, 1, 0, 0, 0, 5096, 5095, 1, 0, 0, 0, 5097, 5099, 1, 0, 0, 0, 5098, 5093, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5175, 1, 0, 0, 0, 5100, 5101, 5, 65, 0, 0, 5101, 5102, 5, 440, 0, 0, 5102, 5103, 5, 441, 0, 0, 5103, 5109, 5, 340, 0, 0, 5104, 5107, 5, 289, 0, 0, 5105, 5108, 3, 712, 356, 0, 5106, 5108, 5, 521, 0, 0, 5107, 5105, 1, 0, 0, 0, 5107, 5106, 1, 0, 0, 0, 5108, 5110, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5175, 1, 0, 0, 0, 5111, 5112, 5, 65, 0, 0, 5112, 5113, 5, 440, 0, 0, 5113, 5119, 5, 120, 0, 0, 5114, 5117, 5, 289, 0, 0, 5115, 5118, 3, 712, 356, 0, 5116, 5118, 5, 521, 0, 0, 5117, 5115, 1, 0, 0, 0, 5117, 5116, 1, 0, 0, 0, 5118, 5120, 1, 0, 0, 0, 5119, 5114, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5175, 1, 0, 0, 0, 5121, 5122, 5, 65, 0, 0, 5122, 5175, 5, 443, 0, 0, 5123, 5124, 5, 65, 0, 0, 5124, 5175, 5, 388, 0, 0, 5125, 5126, 5, 65, 0, 0, 5126, 5127, 5, 353, 0, 0, 5127, 5133, 5, 385, 0, 0, 5128, 5131, 5, 289, 0, 0, 5129, 5132, 3, 712, 356, 0, 5130, 5132, 5, 521, 0, 0, 5131, 5129, 1, 0, 0, 0, 5131, 5130, 1, 0, 0, 0, 5132, 5134, 1, 0, 0, 0, 5133, 5128, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5175, 1, 0, 0, 0, 5135, 5136, 5, 65, 0, 0, 5136, 5137, 5, 311, 0, 0, 5137, 5143, 5, 340, 0, 0, 5138, 5141, 5, 289, 0, 0, 5139, 5142, 3, 712, 356, 0, 5140, 5142, 5, 521, 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5140, 1, 0, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, 5138, 1, 0, 0, 0, 5143, 5144, 1, 0, 0, 0, 5144, 5175, 1, 0, 0, 0, 5145, 5146, 5, 65, 0, 0, 5146, 5147, 5, 342, 0, 0, 5147, 5148, 5, 311, 0, 0, 5148, 5154, 5, 313, 0, 0, 5149, 5152, 5, 289, 0, 0, 5150, 5153, 3, 712, 356, 0, 5151, 5153, 5, 521, 0, 0, 5152, 5150, 1, 0, 0, 0, 5152, 5151, 1, 0, 0, 0, 5153, 5155, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5154, 5155, 1, 0, 0, 0, 5155, 5175, 1, 0, 0, 0, 5156, 5157, 5, 65, 0, 0, 5157, 5175, 5, 389, 0, 0, 5158, 5159, 5, 65, 0, 0, 5159, 5162, 5, 445, 0, 0, 5160, 5161, 5, 289, 0, 0, 5161, 5163, 5, 521, 0, 0, 5162, 5160, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 5175, 1, 0, 0, 0, 5164, 5165, 5, 65, 0, 0, 5165, 5166, 5, 445, 0, 0, 5166, 5167, 5, 429, 0, 0, 5167, 5168, 5, 333, 0, 0, 5168, 5175, 5, 519, 0, 0, 5169, 5170, 5, 65, 0, 0, 5170, 5171, 5, 445, 0, 0, 5171, 5172, 5, 446, 0, 0, 5172, 5173, 5, 447, 0, 0, 5173, 5175, 5, 519, 0, 0, 5174, 4739, 1, 0, 0, 0, 5174, 4741, 1, 0, 0, 0, 5174, 4746, 1, 0, 0, 0, 5174, 4751, 1, 0, 0, 0, 5174, 4756, 1, 0, 0, 0, 5174, 4761, 1, 0, 0, 0, 5174, 4770, 1, 0, 0, 0, 5174, 4779, 1, 0, 0, 0, 5174, 4788, 1, 0, 0, 0, 5174, 4797, 1, 0, 0, 0, 5174, 4806, 1, 0, 0, 0, 5174, 4815, 1, 0, 0, 0, 5174, 4824, 1, 0, 0, 0, 5174, 4833, 1, 0, 0, 0, 5174, 4842, 1, 0, 0, 0, 5174, 4852, 1, 0, 0, 0, 5174, 4861, 1, 0, 0, 0, 5174, 4870, 1, 0, 0, 0, 5174, 4880, 1, 0, 0, 0, 5174, 4890, 1, 0, 0, 0, 5174, 4900, 1, 0, 0, 0, 5174, 4910, 1, 0, 0, 0, 5174, 4913, 1, 0, 0, 0, 5174, 4916, 1, 0, 0, 0, 5174, 4919, 1, 0, 0, 0, 5174, 4921, 1, 0, 0, 0, 5174, 4923, 1, 0, 0, 0, 5174, 4925, 1, 0, 0, 0, 5174, 4928, 1, 0, 0, 0, 5174, 4931, 1, 0, 0, 0, 5174, 4938, 1, 0, 0, 0, 5174, 4945, 1, 0, 0, 0, 5174, 4949, 1, 0, 0, 0, 5174, 4953, 1, 0, 0, 0, 5174, 4961, 1, 0, 0, 0, 5174, 4966, 1, 0, 0, 0, 5174, 4969, 1, 0, 0, 0, 5174, 4979, 1, 0, 0, 0, 5174, 4982, 1, 0, 0, 0, 5174, 4985, 1, 0, 0, 0, 5174, 4989, 1, 0, 0, 0, 5174, 4994, 1, 0, 0, 0, 5174, 4999, 1, 0, 0, 0, 5174, 5004, 1, 0, 0, 0, 5174, 5014, 1, 0, 0, 0, 5174, 5024, 1, 0, 0, 0, 5174, 5034, 1, 0, 0, 0, 5174, 5044, 1, 0, 0, 0, 5174, 5054, 1, 0, 0, 0, 5174, 5056, 1, 0, 0, 0, 5174, 5063, 1, 0, 0, 0, 5174, 5066, 1, 0, 0, 0, 5174, 5073, 1, 0, 0, 0, 5174, 5089, 1, 0, 0, 0, 5174, 5100, 1, 0, 0, 0, 5174, 5111, 1, 0, 0, 0, 5174, 5121, 1, 0, 0, 0, 5174, 5123, 1, 0, 0, 0, 5174, 5125, 1, 0, 0, 0, 5174, 5135, 1, 0, 0, 0, 5174, 5145, 1, 0, 0, 0, 5174, 5156, 1, 0, 0, 0, 5174, 5158, 1, 0, 0, 0, 5174, 5164, 1, 0, 0, 0, 5174, 5169, 1, 0, 0, 0, 5175, 567, 1, 0, 0, 0, 5176, 5177, 5, 72, 0, 0, 5177, 5182, 3, 572, 286, 0, 5178, 5179, 5, 285, 0, 0, 5179, 5181, 3, 572, 286, 0, 5180, 5178, 1, 0, 0, 0, 5181, 5184, 1, 0, 0, 0, 5182, 5180, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, 5183, 5190, 1, 0, 0, 0, 5184, 5182, 1, 0, 0, 0, 5185, 5188, 5, 289, 0, 0, 5186, 5189, 3, 712, 356, 0, 5187, 5189, 5, 521, 0, 0, 5188, 5186, 1, 0, 0, 0, 5188, 5187, 1, 0, 0, 0, 5189, 5191, 1, 0, 0, 0, 5190, 5185, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5198, 1, 0, 0, 0, 5192, 5195, 5, 289, 0, 0, 5193, 5196, 3, 712, 356, 0, 5194, 5196, 5, 521, 0, 0, 5195, 5193, 1, 0, 0, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5198, 1, 0, 0, 0, 5197, 5176, 1, 0, 0, 0, 5197, 5192, 1, 0, 0, 0, 5198, 569, 1, 0, 0, 0, 5199, 5200, 7, 32, 0, 0, 5200, 571, 1, 0, 0, 0, 5201, 5202, 5, 438, 0, 0, 5202, 5203, 7, 33, 0, 0, 5203, 5208, 5, 517, 0, 0, 5204, 5205, 5, 521, 0, 0, 5205, 5206, 7, 33, 0, 0, 5206, 5208, 5, 517, 0, 0, 5207, 5201, 1, 0, 0, 0, 5207, 5204, 1, 0, 0, 0, 5208, 573, 1, 0, 0, 0, 5209, 5210, 5, 517, 0, 0, 5210, 5211, 5, 490, 0, 0, 5211, 5212, 3, 576, 288, 0, 5212, 575, 1, 0, 0, 0, 5213, 5218, 5, 517, 0, 0, 5214, 5218, 5, 519, 0, 0, 5215, 5218, 3, 720, 360, 0, 5216, 5218, 5, 288, 0, 0, 5217, 5213, 1, 0, 0, 0, 5217, 5214, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5217, 5216, 1, 0, 0, 0, 5218, 577, 1, 0, 0, 0, 5219, 5220, 5, 66, 0, 0, 5220, 5221, 5, 344, 0, 0, 5221, 5222, 5, 23, 0, 0, 5222, 5225, 3, 712, 356, 0, 5223, 5224, 5, 433, 0, 0, 5224, 5226, 5, 521, 0, 0, 5225, 5223, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 5375, 1, 0, 0, 0, 5227, 5228, 5, 66, 0, 0, 5228, 5229, 5, 344, 0, 0, 5229, 5230, 5, 116, 0, 0, 5230, 5233, 3, 712, 356, 0, 5231, 5232, 5, 433, 0, 0, 5232, 5234, 5, 521, 0, 0, 5233, 5231, 1, 0, 0, 0, 5233, 5234, 1, 0, 0, 0, 5234, 5375, 1, 0, 0, 0, 5235, 5236, 5, 66, 0, 0, 5236, 5237, 5, 344, 0, 0, 5237, 5238, 5, 403, 0, 0, 5238, 5375, 3, 712, 356, 0, 5239, 5240, 5, 66, 0, 0, 5240, 5241, 5, 23, 0, 0, 5241, 5375, 3, 712, 356, 0, 5242, 5243, 5, 66, 0, 0, 5243, 5244, 5, 27, 0, 0, 5244, 5375, 3, 712, 356, 0, 5245, 5246, 5, 66, 0, 0, 5246, 5247, 5, 30, 0, 0, 5247, 5375, 3, 712, 356, 0, 5248, 5249, 5, 66, 0, 0, 5249, 5250, 5, 31, 0, 0, 5250, 5375, 3, 712, 356, 0, 5251, 5252, 5, 66, 0, 0, 5252, 5253, 5, 32, 0, 0, 5253, 5375, 3, 712, 356, 0, 5254, 5255, 5, 66, 0, 0, 5255, 5256, 5, 33, 0, 0, 5256, 5375, 3, 712, 356, 0, 5257, 5258, 5, 66, 0, 0, 5258, 5259, 5, 34, 0, 0, 5259, 5375, 3, 712, 356, 0, 5260, 5261, 5, 66, 0, 0, 5261, 5262, 5, 35, 0, 0, 5262, 5375, 3, 712, 356, 0, 5263, 5264, 5, 66, 0, 0, 5264, 5265, 5, 28, 0, 0, 5265, 5375, 3, 712, 356, 0, 5266, 5267, 5, 66, 0, 0, 5267, 5268, 5, 37, 0, 0, 5268, 5375, 3, 712, 356, 0, 5269, 5270, 5, 66, 0, 0, 5270, 5271, 5, 114, 0, 0, 5271, 5272, 5, 116, 0, 0, 5272, 5375, 3, 712, 356, 0, 5273, 5274, 5, 66, 0, 0, 5274, 5275, 5, 115, 0, 0, 5275, 5276, 5, 116, 0, 0, 5276, 5375, 3, 712, 356, 0, 5277, 5278, 5, 66, 0, 0, 5278, 5279, 5, 29, 0, 0, 5279, 5282, 5, 521, 0, 0, 5280, 5281, 5, 139, 0, 0, 5281, 5283, 5, 85, 0, 0, 5282, 5280, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5375, 1, 0, 0, 0, 5284, 5285, 5, 66, 0, 0, 5285, 5286, 5, 29, 0, 0, 5286, 5287, 5, 449, 0, 0, 5287, 5375, 3, 712, 356, 0, 5288, 5289, 5, 66, 0, 0, 5289, 5290, 5, 461, 0, 0, 5290, 5291, 5, 449, 0, 0, 5291, 5375, 5, 517, 0, 0, 5292, 5293, 5, 66, 0, 0, 5293, 5294, 5, 456, 0, 0, 5294, 5295, 5, 461, 0, 0, 5295, 5375, 5, 517, 0, 0, 5296, 5297, 5, 66, 0, 0, 5297, 5298, 5, 314, 0, 0, 5298, 5299, 5, 339, 0, 0, 5299, 5375, 3, 712, 356, 0, 5300, 5301, 5, 66, 0, 0, 5301, 5302, 5, 314, 0, 0, 5302, 5303, 5, 312, 0, 0, 5303, 5375, 3, 712, 356, 0, 5304, 5305, 5, 66, 0, 0, 5305, 5306, 5, 26, 0, 0, 5306, 5307, 5, 23, 0, 0, 5307, 5375, 3, 712, 356, 0, 5308, 5309, 5, 66, 0, 0, 5309, 5312, 5, 371, 0, 0, 5310, 5313, 3, 712, 356, 0, 5311, 5313, 5, 521, 0, 0, 5312, 5310, 1, 0, 0, 0, 5312, 5311, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5375, 1, 0, 0, 0, 5314, 5315, 5, 66, 0, 0, 5315, 5316, 5, 213, 0, 0, 5316, 5317, 5, 93, 0, 0, 5317, 5318, 7, 1, 0, 0, 5318, 5321, 3, 712, 356, 0, 5319, 5320, 5, 186, 0, 0, 5320, 5322, 5, 521, 0, 0, 5321, 5319, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5375, 1, 0, 0, 0, 5323, 5324, 5, 66, 0, 0, 5324, 5325, 5, 408, 0, 0, 5325, 5326, 5, 502, 0, 0, 5326, 5375, 3, 584, 292, 0, 5327, 5328, 5, 66, 0, 0, 5328, 5329, 5, 440, 0, 0, 5329, 5330, 5, 441, 0, 0, 5330, 5331, 5, 312, 0, 0, 5331, 5375, 3, 712, 356, 0, 5332, 5333, 5, 66, 0, 0, 5333, 5334, 5, 353, 0, 0, 5334, 5335, 5, 352, 0, 0, 5335, 5375, 3, 712, 356, 0, 5336, 5337, 5, 66, 0, 0, 5337, 5375, 5, 443, 0, 0, 5338, 5339, 5, 66, 0, 0, 5339, 5340, 5, 387, 0, 0, 5340, 5341, 5, 71, 0, 0, 5341, 5342, 5, 33, 0, 0, 5342, 5343, 3, 712, 356, 0, 5343, 5344, 5, 186, 0, 0, 5344, 5345, 3, 714, 357, 0, 5345, 5375, 1, 0, 0, 0, 5346, 5347, 5, 66, 0, 0, 5347, 5348, 5, 387, 0, 0, 5348, 5349, 5, 71, 0, 0, 5349, 5350, 5, 34, 0, 0, 5350, 5351, 3, 712, 356, 0, 5351, 5352, 5, 186, 0, 0, 5352, 5353, 3, 714, 357, 0, 5353, 5375, 1, 0, 0, 0, 5354, 5355, 5, 66, 0, 0, 5355, 5356, 5, 226, 0, 0, 5356, 5357, 5, 227, 0, 0, 5357, 5375, 3, 712, 356, 0, 5358, 5359, 5, 66, 0, 0, 5359, 5360, 5, 329, 0, 0, 5360, 5361, 5, 417, 0, 0, 5361, 5375, 3, 712, 356, 0, 5362, 5363, 5, 66, 0, 0, 5363, 5364, 5, 311, 0, 0, 5364, 5365, 5, 339, 0, 0, 5365, 5375, 3, 712, 356, 0, 5366, 5367, 5, 66, 0, 0, 5367, 5368, 5, 342, 0, 0, 5368, 5369, 5, 311, 0, 0, 5369, 5370, 5, 312, 0, 0, 5370, 5375, 3, 712, 356, 0, 5371, 5372, 5, 66, 0, 0, 5372, 5373, 5, 387, 0, 0, 5373, 5375, 3, 714, 357, 0, 5374, 5219, 1, 0, 0, 0, 5374, 5227, 1, 0, 0, 0, 5374, 5235, 1, 0, 0, 0, 5374, 5239, 1, 0, 0, 0, 5374, 5242, 1, 0, 0, 0, 5374, 5245, 1, 0, 0, 0, 5374, 5248, 1, 0, 0, 0, 5374, 5251, 1, 0, 0, 0, 5374, 5254, 1, 0, 0, 0, 5374, 5257, 1, 0, 0, 0, 5374, 5260, 1, 0, 0, 0, 5374, 5263, 1, 0, 0, 0, 5374, 5266, 1, 0, 0, 0, 5374, 5269, 1, 0, 0, 0, 5374, 5273, 1, 0, 0, 0, 5374, 5277, 1, 0, 0, 0, 5374, 5284, 1, 0, 0, 0, 5374, 5288, 1, 0, 0, 0, 5374, 5292, 1, 0, 0, 0, 5374, 5296, 1, 0, 0, 0, 5374, 5300, 1, 0, 0, 0, 5374, 5304, 1, 0, 0, 0, 5374, 5308, 1, 0, 0, 0, 5374, 5314, 1, 0, 0, 0, 5374, 5323, 1, 0, 0, 0, 5374, 5327, 1, 0, 0, 0, 5374, 5332, 1, 0, 0, 0, 5374, 5336, 1, 0, 0, 0, 5374, 5338, 1, 0, 0, 0, 5374, 5346, 1, 0, 0, 0, 5374, 5354, 1, 0, 0, 0, 5374, 5358, 1, 0, 0, 0, 5374, 5362, 1, 0, 0, 0, 5374, 5366, 1, 0, 0, 0, 5374, 5371, 1, 0, 0, 0, 5375, 579, 1, 0, 0, 0, 5376, 5378, 5, 70, 0, 0, 5377, 5379, 7, 34, 0, 0, 5378, 5377, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5380, 1, 0, 0, 0, 5380, 5381, 3, 592, 296, 0, 5381, 5382, 5, 71, 0, 0, 5382, 5383, 5, 408, 0, 0, 5383, 5384, 5, 502, 0, 0, 5384, 5389, 3, 584, 292, 0, 5385, 5387, 5, 76, 0, 0, 5386, 5385, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5388, 1, 0, 0, 0, 5388, 5390, 5, 521, 0, 0, 5389, 5386, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5394, 1, 0, 0, 0, 5391, 5393, 3, 582, 291, 0, 5392, 5391, 1, 0, 0, 0, 5393, 5396, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 5399, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5397, 5398, 5, 72, 0, 0, 5398, 5400, 3, 672, 336, 0, 5399, 5397, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5407, 1, 0, 0, 0, 5401, 5402, 5, 8, 0, 0, 5402, 5405, 3, 620, 310, 0, 5403, 5404, 5, 73, 0, 0, 5404, 5406, 3, 672, 336, 0, 5405, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5408, 1, 0, 0, 0, 5407, 5401, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5411, 1, 0, 0, 0, 5409, 5410, 5, 9, 0, 0, 5410, 5412, 3, 616, 308, 0, 5411, 5409, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5415, 1, 0, 0, 0, 5413, 5414, 5, 75, 0, 0, 5414, 5416, 5, 519, 0, 0, 5415, 5413, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5419, 1, 0, 0, 0, 5417, 5418, 5, 74, 0, 0, 5418, 5420, 5, 519, 0, 0, 5419, 5417, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 581, 1, 0, 0, 0, 5421, 5423, 3, 606, 303, 0, 5422, 5421, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5425, 5, 86, 0, 0, 5425, 5426, 5, 408, 0, 0, 5426, 5427, 5, 502, 0, 0, 5427, 5432, 3, 584, 292, 0, 5428, 5430, 5, 76, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 5, 521, 0, 0, 5432, 5429, 1, 0, 0, 0, 5432, 5433, 1, 0, 0, 0, 5433, 5436, 1, 0, 0, 0, 5434, 5435, 5, 93, 0, 0, 5435, 5437, 3, 672, 336, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 583, 1, 0, 0, 0, 5438, 5439, 7, 35, 0, 0, 5439, 585, 1, 0, 0, 0, 5440, 5448, 3, 588, 294, 0, 5441, 5443, 5, 125, 0, 0, 5442, 5444, 5, 85, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 3, 588, 294, 0, 5446, 5441, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 587, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5453, 3, 590, 295, 0, 5452, 5454, 3, 598, 299, 0, 5453, 5452, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5456, 1, 0, 0, 0, 5455, 5457, 3, 608, 304, 0, 5456, 5455, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5459, 1, 0, 0, 0, 5458, 5460, 3, 610, 305, 0, 5459, 5458, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5462, 1, 0, 0, 0, 5461, 5463, 3, 612, 306, 0, 5462, 5461, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5465, 1, 0, 0, 0, 5464, 5466, 3, 614, 307, 0, 5465, 5464, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 5468, 1, 0, 0, 0, 5467, 5469, 3, 622, 311, 0, 5468, 5467, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5488, 1, 0, 0, 0, 5470, 5472, 3, 598, 299, 0, 5471, 5473, 3, 608, 304, 0, 5472, 5471, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 5475, 1, 0, 0, 0, 5474, 5476, 3, 610, 305, 0, 5475, 5474, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5478, 1, 0, 0, 0, 5477, 5479, 3, 612, 306, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5480, 1, 0, 0, 0, 5480, 5482, 3, 590, 295, 0, 5481, 5483, 3, 614, 307, 0, 5482, 5481, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 5485, 1, 0, 0, 0, 5484, 5486, 3, 622, 311, 0, 5485, 5484, 1, 0, 0, 0, 5485, 5486, 1, 0, 0, 0, 5486, 5488, 1, 0, 0, 0, 5487, 5451, 1, 0, 0, 0, 5487, 5470, 1, 0, 0, 0, 5488, 589, 1, 0, 0, 0, 5489, 5491, 5, 70, 0, 0, 5490, 5492, 7, 34, 0, 0, 5491, 5490, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 1, 0, 0, 0, 5493, 5494, 3, 592, 296, 0, 5494, 591, 1, 0, 0, 0, 5495, 5505, 5, 495, 0, 0, 5496, 5501, 3, 594, 297, 0, 5497, 5498, 5, 501, 0, 0, 5498, 5500, 3, 594, 297, 0, 5499, 5497, 1, 0, 0, 0, 5500, 5503, 1, 0, 0, 0, 5501, 5499, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5505, 1, 0, 0, 0, 5503, 5501, 1, 0, 0, 0, 5504, 5495, 1, 0, 0, 0, 5504, 5496, 1, 0, 0, 0, 5505, 593, 1, 0, 0, 0, 5506, 5509, 3, 672, 336, 0, 5507, 5508, 5, 76, 0, 0, 5508, 5510, 3, 596, 298, 0, 5509, 5507, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 5517, 1, 0, 0, 0, 5511, 5514, 3, 700, 350, 0, 5512, 5513, 5, 76, 0, 0, 5513, 5515, 3, 596, 298, 0, 5514, 5512, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5517, 1, 0, 0, 0, 5516, 5506, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, 0, 5517, 595, 1, 0, 0, 0, 5518, 5521, 5, 521, 0, 0, 5519, 5521, 3, 734, 367, 0, 5520, 5518, 1, 0, 0, 0, 5520, 5519, 1, 0, 0, 0, 5521, 597, 1, 0, 0, 0, 5522, 5523, 5, 71, 0, 0, 5523, 5527, 3, 600, 300, 0, 5524, 5526, 3, 602, 301, 0, 5525, 5524, 1, 0, 0, 0, 5526, 5529, 1, 0, 0, 0, 5527, 5525, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 599, 1, 0, 0, 0, 5529, 5527, 1, 0, 0, 0, 5530, 5535, 3, 712, 356, 0, 5531, 5533, 5, 76, 0, 0, 5532, 5531, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5534, 1, 0, 0, 0, 5534, 5536, 5, 521, 0, 0, 5535, 5532, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5547, 1, 0, 0, 0, 5537, 5538, 5, 503, 0, 0, 5538, 5539, 3, 586, 293, 0, 5539, 5544, 5, 504, 0, 0, 5540, 5542, 5, 76, 0, 0, 5541, 5540, 1, 0, 0, 0, 5541, 5542, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 5, 521, 0, 0, 5544, 5541, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 5547, 1, 0, 0, 0, 5546, 5530, 1, 0, 0, 0, 5546, 5537, 1, 0, 0, 0, 5547, 601, 1, 0, 0, 0, 5548, 5550, 3, 606, 303, 0, 5549, 5548, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5552, 5, 86, 0, 0, 5552, 5555, 3, 600, 300, 0, 5553, 5554, 5, 93, 0, 0, 5554, 5556, 3, 672, 336, 0, 5555, 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5569, 1, 0, 0, 0, 5557, 5559, 3, 606, 303, 0, 5558, 5557, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5560, 1, 0, 0, 0, 5560, 5561, 5, 86, 0, 0, 5561, 5566, 3, 604, 302, 0, 5562, 5564, 5, 76, 0, 0, 5563, 5562, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 5567, 5, 521, 0, 0, 5566, 5563, 1, 0, 0, 0, 5566, 5567, 1, 0, 0, 0, 5567, 5569, 1, 0, 0, 0, 5568, 5549, 1, 0, 0, 0, 5568, 5558, 1, 0, 0, 0, 5569, 603, 1, 0, 0, 0, 5570, 5571, 5, 521, 0, 0, 5571, 5572, 5, 496, 0, 0, 5572, 5573, 3, 712, 356, 0, 5573, 5574, 5, 496, 0, 0, 5574, 5575, 3, 712, 356, 0, 5575, 5581, 1, 0, 0, 0, 5576, 5577, 3, 712, 356, 0, 5577, 5578, 5, 496, 0, 0, 5578, 5579, 3, 712, 356, 0, 5579, 5581, 1, 0, 0, 0, 5580, 5570, 1, 0, 0, 0, 5580, 5576, 1, 0, 0, 0, 5581, 605, 1, 0, 0, 0, 5582, 5584, 5, 87, 0, 0, 5583, 5585, 5, 90, 0, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5597, 1, 0, 0, 0, 5586, 5588, 5, 88, 0, 0, 5587, 5589, 5, 90, 0, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5597, 1, 0, 0, 0, 5590, 5597, 5, 89, 0, 0, 5591, 5593, 5, 91, 0, 0, 5592, 5594, 5, 90, 0, 0, 5593, 5592, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5597, 1, 0, 0, 0, 5595, 5597, 5, 92, 0, 0, 5596, 5582, 1, 0, 0, 0, 5596, 5586, 1, 0, 0, 0, 5596, 5590, 1, 0, 0, 0, 5596, 5591, 1, 0, 0, 0, 5596, 5595, 1, 0, 0, 0, 5597, 607, 1, 0, 0, 0, 5598, 5599, 5, 72, 0, 0, 5599, 5600, 3, 672, 336, 0, 5600, 609, 1, 0, 0, 0, 5601, 5602, 5, 8, 0, 0, 5602, 5603, 3, 710, 355, 0, 5603, 611, 1, 0, 0, 0, 5604, 5605, 5, 73, 0, 0, 5605, 5606, 3, 672, 336, 0, 5606, 613, 1, 0, 0, 0, 5607, 5608, 5, 9, 0, 0, 5608, 5609, 3, 616, 308, 0, 5609, 615, 1, 0, 0, 0, 5610, 5615, 3, 618, 309, 0, 5611, 5612, 5, 501, 0, 0, 5612, 5614, 3, 618, 309, 0, 5613, 5611, 1, 0, 0, 0, 5614, 5617, 1, 0, 0, 0, 5615, 5613, 1, 0, 0, 0, 5615, 5616, 1, 0, 0, 0, 5616, 617, 1, 0, 0, 0, 5617, 5615, 1, 0, 0, 0, 5618, 5620, 3, 672, 336, 0, 5619, 5621, 7, 6, 0, 0, 5620, 5619, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 619, 1, 0, 0, 0, 5622, 5627, 3, 672, 336, 0, 5623, 5624, 5, 501, 0, 0, 5624, 5626, 3, 672, 336, 0, 5625, 5623, 1, 0, 0, 0, 5626, 5629, 1, 0, 0, 0, 5627, 5625, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 621, 1, 0, 0, 0, 5629, 5627, 1, 0, 0, 0, 5630, 5631, 5, 75, 0, 0, 5631, 5634, 5, 519, 0, 0, 5632, 5633, 5, 74, 0, 0, 5633, 5635, 5, 519, 0, 0, 5634, 5632, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5643, 1, 0, 0, 0, 5636, 5637, 5, 74, 0, 0, 5637, 5640, 5, 519, 0, 0, 5638, 5639, 5, 75, 0, 0, 5639, 5641, 5, 519, 0, 0, 5640, 5638, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5643, 1, 0, 0, 0, 5642, 5630, 1, 0, 0, 0, 5642, 5636, 1, 0, 0, 0, 5643, 623, 1, 0, 0, 0, 5644, 5661, 3, 628, 314, 0, 5645, 5661, 3, 630, 315, 0, 5646, 5661, 3, 632, 316, 0, 5647, 5661, 3, 634, 317, 0, 5648, 5661, 3, 636, 318, 0, 5649, 5661, 3, 638, 319, 0, 5650, 5661, 3, 640, 320, 0, 5651, 5661, 3, 642, 321, 0, 5652, 5661, 3, 626, 313, 0, 5653, 5661, 3, 648, 324, 0, 5654, 5661, 3, 654, 327, 0, 5655, 5661, 3, 656, 328, 0, 5656, 5661, 3, 670, 335, 0, 5657, 5661, 3, 658, 329, 0, 5658, 5661, 3, 662, 331, 0, 5659, 5661, 3, 668, 334, 0, 5660, 5644, 1, 0, 0, 0, 5660, 5645, 1, 0, 0, 0, 5660, 5646, 1, 0, 0, 0, 5660, 5647, 1, 0, 0, 0, 5660, 5648, 1, 0, 0, 0, 5660, 5649, 1, 0, 0, 0, 5660, 5650, 1, 0, 0, 0, 5660, 5651, 1, 0, 0, 0, 5660, 5652, 1, 0, 0, 0, 5660, 5653, 1, 0, 0, 0, 5660, 5654, 1, 0, 0, 0, 5660, 5655, 1, 0, 0, 0, 5660, 5656, 1, 0, 0, 0, 5660, 5657, 1, 0, 0, 0, 5660, 5658, 1, 0, 0, 0, 5660, 5659, 1, 0, 0, 0, 5661, 625, 1, 0, 0, 0, 5662, 5663, 5, 158, 0, 0, 5663, 5664, 5, 517, 0, 0, 5664, 627, 1, 0, 0, 0, 5665, 5666, 5, 56, 0, 0, 5666, 5667, 5, 426, 0, 0, 5667, 5668, 5, 59, 0, 0, 5668, 5671, 5, 517, 0, 0, 5669, 5670, 5, 61, 0, 0, 5670, 5672, 5, 517, 0, 0, 5671, 5669, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5674, 5, 62, 0, 0, 5674, 5689, 5, 517, 0, 0, 5675, 5676, 5, 56, 0, 0, 5676, 5677, 5, 58, 0, 0, 5677, 5689, 5, 517, 0, 0, 5678, 5679, 5, 56, 0, 0, 5679, 5680, 5, 60, 0, 0, 5680, 5681, 5, 63, 0, 0, 5681, 5682, 5, 517, 0, 0, 5682, 5683, 5, 64, 0, 0, 5683, 5686, 5, 519, 0, 0, 5684, 5685, 5, 62, 0, 0, 5685, 5687, 5, 517, 0, 0, 5686, 5684, 1, 0, 0, 0, 5686, 5687, 1, 0, 0, 0, 5687, 5689, 1, 0, 0, 0, 5688, 5665, 1, 0, 0, 0, 5688, 5675, 1, 0, 0, 0, 5688, 5678, 1, 0, 0, 0, 5689, 629, 1, 0, 0, 0, 5690, 5691, 5, 57, 0, 0, 5691, 631, 1, 0, 0, 0, 5692, 5709, 5, 393, 0, 0, 5693, 5694, 5, 394, 0, 0, 5694, 5696, 5, 408, 0, 0, 5695, 5697, 5, 91, 0, 0, 5696, 5695, 1, 0, 0, 0, 5696, 5697, 1, 0, 0, 0, 5697, 5699, 1, 0, 0, 0, 5698, 5700, 5, 192, 0, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5702, 1, 0, 0, 0, 5701, 5703, 5, 409, 0, 0, 5702, 5701, 1, 0, 0, 0, 5702, 5703, 1, 0, 0, 0, 5703, 5705, 1, 0, 0, 0, 5704, 5706, 5, 410, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5709, 1, 0, 0, 0, 5707, 5709, 5, 394, 0, 0, 5708, 5692, 1, 0, 0, 0, 5708, 5693, 1, 0, 0, 0, 5708, 5707, 1, 0, 0, 0, 5709, 633, 1, 0, 0, 0, 5710, 5711, 5, 395, 0, 0, 5711, 635, 1, 0, 0, 0, 5712, 5713, 5, 396, 0, 0, 5713, 637, 1, 0, 0, 0, 5714, 5715, 5, 397, 0, 0, 5715, 5716, 5, 398, 0, 0, 5716, 5717, 5, 517, 0, 0, 5717, 639, 1, 0, 0, 0, 5718, 5719, 5, 397, 0, 0, 5719, 5720, 5, 60, 0, 0, 5720, 5721, 5, 517, 0, 0, 5721, 641, 1, 0, 0, 0, 5722, 5724, 5, 399, 0, 0, 5723, 5725, 3, 644, 322, 0, 5724, 5723, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5728, 1, 0, 0, 0, 5726, 5727, 5, 433, 0, 0, 5727, 5729, 3, 646, 323, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5734, 1, 0, 0, 0, 5730, 5731, 5, 65, 0, 0, 5731, 5732, 5, 399, 0, 0, 5732, 5734, 5, 400, 0, 0, 5733, 5722, 1, 0, 0, 0, 5733, 5730, 1, 0, 0, 0, 5734, 643, 1, 0, 0, 0, 5735, 5736, 3, 712, 356, 0, 5736, 5737, 5, 502, 0, 0, 5737, 5738, 5, 495, 0, 0, 5738, 5742, 1, 0, 0, 0, 5739, 5742, 3, 712, 356, 0, 5740, 5742, 5, 495, 0, 0, 5741, 5735, 1, 0, 0, 0, 5741, 5739, 1, 0, 0, 0, 5741, 5740, 1, 0, 0, 0, 5742, 645, 1, 0, 0, 0, 5743, 5744, 7, 36, 0, 0, 5744, 647, 1, 0, 0, 0, 5745, 5746, 5, 67, 0, 0, 5746, 5750, 3, 650, 325, 0, 5747, 5748, 5, 67, 0, 0, 5748, 5750, 5, 85, 0, 0, 5749, 5745, 1, 0, 0, 0, 5749, 5747, 1, 0, 0, 0, 5750, 649, 1, 0, 0, 0, 5751, 5756, 3, 652, 326, 0, 5752, 5753, 5, 501, 0, 0, 5753, 5755, 3, 652, 326, 0, 5754, 5752, 1, 0, 0, 0, 5755, 5758, 1, 0, 0, 0, 5756, 5754, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 651, 1, 0, 0, 0, 5758, 5756, 1, 0, 0, 0, 5759, 5760, 7, 37, 0, 0, 5760, 653, 1, 0, 0, 0, 5761, 5762, 5, 68, 0, 0, 5762, 5763, 5, 338, 0, 0, 5763, 655, 1, 0, 0, 0, 5764, 5765, 5, 69, 0, 0, 5765, 5766, 5, 517, 0, 0, 5766, 657, 1, 0, 0, 0, 5767, 5768, 5, 434, 0, 0, 5768, 5769, 5, 56, 0, 0, 5769, 5770, 5, 521, 0, 0, 5770, 5771, 5, 517, 0, 0, 5771, 5772, 5, 76, 0, 0, 5772, 5830, 5, 521, 0, 0, 5773, 5774, 5, 434, 0, 0, 5774, 5775, 5, 56, 0, 0, 5775, 5830, 5, 521, 0, 0, 5776, 5777, 5, 434, 0, 0, 5777, 5778, 5, 57, 0, 0, 5778, 5830, 5, 521, 0, 0, 5779, 5780, 5, 434, 0, 0, 5780, 5830, 5, 385, 0, 0, 5781, 5782, 5, 434, 0, 0, 5782, 5783, 5, 521, 0, 0, 5783, 5784, 5, 65, 0, 0, 5784, 5830, 3, 714, 357, 0, 5785, 5786, 5, 434, 0, 0, 5786, 5787, 5, 521, 0, 0, 5787, 5788, 5, 66, 0, 0, 5788, 5830, 3, 712, 356, 0, 5789, 5790, 5, 434, 0, 0, 5790, 5791, 5, 521, 0, 0, 5791, 5792, 5, 362, 0, 0, 5792, 5793, 5, 363, 0, 0, 5793, 5794, 5, 358, 0, 0, 5794, 5807, 3, 714, 357, 0, 5795, 5796, 5, 365, 0, 0, 5796, 5797, 5, 503, 0, 0, 5797, 5802, 3, 714, 357, 0, 5798, 5799, 5, 501, 0, 0, 5799, 5801, 3, 714, 357, 0, 5800, 5798, 1, 0, 0, 0, 5801, 5804, 1, 0, 0, 0, 5802, 5800, 1, 0, 0, 0, 5802, 5803, 1, 0, 0, 0, 5803, 5805, 1, 0, 0, 0, 5804, 5802, 1, 0, 0, 0, 5805, 5806, 5, 504, 0, 0, 5806, 5808, 1, 0, 0, 0, 5807, 5795, 1, 0, 0, 0, 5807, 5808, 1, 0, 0, 0, 5808, 5821, 1, 0, 0, 0, 5809, 5810, 5, 366, 0, 0, 5810, 5811, 5, 503, 0, 0, 5811, 5816, 3, 714, 357, 0, 5812, 5813, 5, 501, 0, 0, 5813, 5815, 3, 714, 357, 0, 5814, 5812, 1, 0, 0, 0, 5815, 5818, 1, 0, 0, 0, 5816, 5814, 1, 0, 0, 0, 5816, 5817, 1, 0, 0, 0, 5817, 5819, 1, 0, 0, 0, 5818, 5816, 1, 0, 0, 0, 5819, 5820, 5, 504, 0, 0, 5820, 5822, 1, 0, 0, 0, 5821, 5809, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 5824, 1, 0, 0, 0, 5823, 5825, 5, 364, 0, 0, 5824, 5823, 1, 0, 0, 0, 5824, 5825, 1, 0, 0, 0, 5825, 5830, 1, 0, 0, 0, 5826, 5827, 5, 434, 0, 0, 5827, 5828, 5, 521, 0, 0, 5828, 5830, 3, 660, 330, 0, 5829, 5767, 1, 0, 0, 0, 5829, 5773, 1, 0, 0, 0, 5829, 5776, 1, 0, 0, 0, 5829, 5779, 1, 0, 0, 0, 5829, 5781, 1, 0, 0, 0, 5829, 5785, 1, 0, 0, 0, 5829, 5789, 1, 0, 0, 0, 5829, 5826, 1, 0, 0, 0, 5830, 659, 1, 0, 0, 0, 5831, 5833, 8, 38, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5834, 5835, 1, 0, 0, 0, 5835, 661, 1, 0, 0, 0, 5836, 5837, 5, 357, 0, 0, 5837, 5838, 5, 71, 0, 0, 5838, 5839, 3, 714, 357, 0, 5839, 5840, 5, 354, 0, 0, 5840, 5841, 7, 11, 0, 0, 5841, 5842, 5, 358, 0, 0, 5842, 5843, 3, 712, 356, 0, 5843, 5844, 5, 355, 0, 0, 5844, 5845, 5, 503, 0, 0, 5845, 5850, 3, 664, 332, 0, 5846, 5847, 5, 501, 0, 0, 5847, 5849, 3, 664, 332, 0, 5848, 5846, 1, 0, 0, 0, 5849, 5852, 1, 0, 0, 0, 5850, 5848, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5853, 1, 0, 0, 0, 5852, 5850, 1, 0, 0, 0, 5853, 5866, 5, 504, 0, 0, 5854, 5855, 5, 360, 0, 0, 5855, 5856, 5, 503, 0, 0, 5856, 5861, 3, 666, 333, 0, 5857, 5858, 5, 501, 0, 0, 5858, 5860, 3, 666, 333, 0, 5859, 5857, 1, 0, 0, 0, 5860, 5863, 1, 0, 0, 0, 5861, 5859, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5864, 1, 0, 0, 0, 5863, 5861, 1, 0, 0, 0, 5864, 5865, 5, 504, 0, 0, 5865, 5867, 1, 0, 0, 0, 5866, 5854, 1, 0, 0, 0, 5866, 5867, 1, 0, 0, 0, 5867, 5870, 1, 0, 0, 0, 5868, 5869, 5, 359, 0, 0, 5869, 5871, 5, 519, 0, 0, 5870, 5868, 1, 0, 0, 0, 5870, 5871, 1, 0, 0, 0, 5871, 5874, 1, 0, 0, 0, 5872, 5873, 5, 75, 0, 0, 5873, 5875, 5, 519, 0, 0, 5874, 5872, 1, 0, 0, 0, 5874, 5875, 1, 0, 0, 0, 5875, 663, 1, 0, 0, 0, 5876, 5877, 3, 714, 357, 0, 5877, 5878, 5, 76, 0, 0, 5878, 5879, 3, 714, 357, 0, 5879, 665, 1, 0, 0, 0, 5880, 5881, 3, 714, 357, 0, 5881, 5882, 5, 426, 0, 0, 5882, 5883, 3, 714, 357, 0, 5883, 5884, 5, 93, 0, 0, 5884, 5885, 3, 714, 357, 0, 5885, 5891, 1, 0, 0, 0, 5886, 5887, 3, 714, 357, 0, 5887, 5888, 5, 426, 0, 0, 5888, 5889, 3, 714, 357, 0, 5889, 5891, 1, 0, 0, 0, 5890, 5880, 1, 0, 0, 0, 5890, 5886, 1, 0, 0, 0, 5891, 667, 1, 0, 0, 0, 5892, 5893, 5, 521, 0, 0, 5893, 669, 1, 0, 0, 0, 5894, 5895, 5, 386, 0, 0, 5895, 5896, 5, 387, 0, 0, 5896, 5897, 3, 714, 357, 0, 5897, 5898, 5, 76, 0, 0, 5898, 5899, 5, 505, 0, 0, 5899, 5900, 3, 394, 197, 0, 5900, 5901, 5, 506, 0, 0, 5901, 671, 1, 0, 0, 0, 5902, 5903, 3, 674, 337, 0, 5903, 673, 1, 0, 0, 0, 5904, 5909, 3, 676, 338, 0, 5905, 5906, 5, 286, 0, 0, 5906, 5908, 3, 676, 338, 0, 5907, 5905, 1, 0, 0, 0, 5908, 5911, 1, 0, 0, 0, 5909, 5907, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 675, 1, 0, 0, 0, 5911, 5909, 1, 0, 0, 0, 5912, 5917, 3, 678, 339, 0, 5913, 5914, 5, 285, 0, 0, 5914, 5916, 3, 678, 339, 0, 5915, 5913, 1, 0, 0, 0, 5916, 5919, 1, 0, 0, 0, 5917, 5915, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 677, 1, 0, 0, 0, 5919, 5917, 1, 0, 0, 0, 5920, 5922, 5, 287, 0, 0, 5921, 5920, 1, 0, 0, 0, 5921, 5922, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5924, 3, 680, 340, 0, 5924, 679, 1, 0, 0, 0, 5925, 5954, 3, 684, 342, 0, 5926, 5927, 3, 682, 341, 0, 5927, 5928, 3, 684, 342, 0, 5928, 5955, 1, 0, 0, 0, 5929, 5955, 5, 6, 0, 0, 5930, 5955, 5, 5, 0, 0, 5931, 5932, 5, 289, 0, 0, 5932, 5935, 5, 503, 0, 0, 5933, 5936, 3, 586, 293, 0, 5934, 5936, 3, 710, 355, 0, 5935, 5933, 1, 0, 0, 0, 5935, 5934, 1, 0, 0, 0, 5936, 5937, 1, 0, 0, 0, 5937, 5938, 5, 504, 0, 0, 5938, 5955, 1, 0, 0, 0, 5939, 5941, 5, 287, 0, 0, 5940, 5939, 1, 0, 0, 0, 5940, 5941, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 5943, 5, 290, 0, 0, 5943, 5944, 3, 684, 342, 0, 5944, 5945, 5, 285, 0, 0, 5945, 5946, 3, 684, 342, 0, 5946, 5955, 1, 0, 0, 0, 5947, 5949, 5, 287, 0, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 5, 291, 0, 0, 5951, 5955, 3, 684, 342, 0, 5952, 5953, 5, 292, 0, 0, 5953, 5955, 3, 684, 342, 0, 5954, 5926, 1, 0, 0, 0, 5954, 5929, 1, 0, 0, 0, 5954, 5930, 1, 0, 0, 0, 5954, 5931, 1, 0, 0, 0, 5954, 5940, 1, 0, 0, 0, 5954, 5948, 1, 0, 0, 0, 5954, 5952, 1, 0, 0, 0, 5954, 5955, 1, 0, 0, 0, 5955, 681, 1, 0, 0, 0, 5956, 5957, 7, 39, 0, 0, 5957, 683, 1, 0, 0, 0, 5958, 5963, 3, 686, 343, 0, 5959, 5960, 7, 40, 0, 0, 5960, 5962, 3, 686, 343, 0, 5961, 5959, 1, 0, 0, 0, 5962, 5965, 1, 0, 0, 0, 5963, 5961, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 685, 1, 0, 0, 0, 5965, 5963, 1, 0, 0, 0, 5966, 5971, 3, 688, 344, 0, 5967, 5968, 7, 41, 0, 0, 5968, 5970, 3, 688, 344, 0, 5969, 5967, 1, 0, 0, 0, 5970, 5973, 1, 0, 0, 0, 5971, 5969, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 687, 1, 0, 0, 0, 5973, 5971, 1, 0, 0, 0, 5974, 5976, 7, 40, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5978, 3, 690, 345, 0, 5978, 689, 1, 0, 0, 0, 5979, 5980, 5, 503, 0, 0, 5980, 5981, 3, 672, 336, 0, 5981, 5982, 5, 504, 0, 0, 5982, 6001, 1, 0, 0, 0, 5983, 5984, 5, 503, 0, 0, 5984, 5985, 3, 586, 293, 0, 5985, 5986, 5, 504, 0, 0, 5986, 6001, 1, 0, 0, 0, 5987, 5988, 5, 293, 0, 0, 5988, 5989, 5, 503, 0, 0, 5989, 5990, 3, 586, 293, 0, 5990, 5991, 5, 504, 0, 0, 5991, 6001, 1, 0, 0, 0, 5992, 6001, 3, 694, 347, 0, 5993, 6001, 3, 692, 346, 0, 5994, 6001, 3, 696, 348, 0, 5995, 6001, 3, 318, 159, 0, 5996, 6001, 3, 310, 155, 0, 5997, 6001, 3, 700, 350, 0, 5998, 6001, 3, 702, 351, 0, 5999, 6001, 3, 708, 354, 0, 6000, 5979, 1, 0, 0, 0, 6000, 5983, 1, 0, 0, 0, 6000, 5987, 1, 0, 0, 0, 6000, 5992, 1, 0, 0, 0, 6000, 5993, 1, 0, 0, 0, 6000, 5994, 1, 0, 0, 0, 6000, 5995, 1, 0, 0, 0, 6000, 5996, 1, 0, 0, 0, 6000, 5997, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6000, 5999, 1, 0, 0, 0, 6001, 691, 1, 0, 0, 0, 6002, 6008, 5, 79, 0, 0, 6003, 6004, 5, 80, 0, 0, 6004, 6005, 3, 672, 336, 0, 6005, 6006, 5, 81, 0, 0, 6006, 6007, 3, 672, 336, 0, 6007, 6009, 1, 0, 0, 0, 6008, 6003, 1, 0, 0, 0, 6009, 6010, 1, 0, 0, 0, 6010, 6008, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6014, 1, 0, 0, 0, 6012, 6013, 5, 82, 0, 0, 6013, 6015, 3, 672, 336, 0, 6014, 6012, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 6017, 5, 83, 0, 0, 6017, 693, 1, 0, 0, 0, 6018, 6019, 5, 105, 0, 0, 6019, 6020, 3, 672, 336, 0, 6020, 6021, 5, 81, 0, 0, 6021, 6022, 3, 672, 336, 0, 6022, 6023, 5, 82, 0, 0, 6023, 6024, 3, 672, 336, 0, 6024, 695, 1, 0, 0, 0, 6025, 6026, 5, 284, 0, 0, 6026, 6027, 5, 503, 0, 0, 6027, 6028, 3, 672, 336, 0, 6028, 6029, 5, 76, 0, 0, 6029, 6030, 3, 698, 349, 0, 6030, 6031, 5, 504, 0, 0, 6031, 697, 1, 0, 0, 0, 6032, 6033, 7, 42, 0, 0, 6033, 699, 1, 0, 0, 0, 6034, 6035, 7, 43, 0, 0, 6035, 6041, 5, 503, 0, 0, 6036, 6038, 5, 84, 0, 0, 6037, 6036, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6042, 3, 672, 336, 0, 6040, 6042, 5, 495, 0, 0, 6041, 6037, 1, 0, 0, 0, 6041, 6040, 1, 0, 0, 0, 6042, 6043, 1, 0, 0, 0, 6043, 6044, 5, 504, 0, 0, 6044, 701, 1, 0, 0, 0, 6045, 6046, 3, 704, 352, 0, 6046, 6048, 5, 503, 0, 0, 6047, 6049, 3, 706, 353, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 5, 504, 0, 0, 6051, 703, 1, 0, 0, 0, 6052, 6053, 7, 44, 0, 0, 6053, 705, 1, 0, 0, 0, 6054, 6059, 3, 672, 336, 0, 6055, 6056, 5, 501, 0, 0, 6056, 6058, 3, 672, 336, 0, 6057, 6055, 1, 0, 0, 0, 6058, 6061, 1, 0, 0, 0, 6059, 6057, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 707, 1, 0, 0, 0, 6061, 6059, 1, 0, 0, 0, 6062, 6075, 3, 716, 358, 0, 6063, 6068, 5, 520, 0, 0, 6064, 6065, 5, 502, 0, 0, 6065, 6067, 3, 104, 52, 0, 6066, 6064, 1, 0, 0, 0, 6067, 6070, 1, 0, 0, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6075, 1, 0, 0, 0, 6070, 6068, 1, 0, 0, 0, 6071, 6075, 3, 712, 356, 0, 6072, 6075, 5, 521, 0, 0, 6073, 6075, 5, 516, 0, 0, 6074, 6062, 1, 0, 0, 0, 6074, 6063, 1, 0, 0, 0, 6074, 6071, 1, 0, 0, 0, 6074, 6072, 1, 0, 0, 0, 6074, 6073, 1, 0, 0, 0, 6075, 709, 1, 0, 0, 0, 6076, 6081, 3, 672, 336, 0, 6077, 6078, 5, 501, 0, 0, 6078, 6080, 3, 672, 336, 0, 6079, 6077, 1, 0, 0, 0, 6080, 6083, 1, 0, 0, 0, 6081, 6079, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 711, 1, 0, 0, 0, 6083, 6081, 1, 0, 0, 0, 6084, 6089, 3, 714, 357, 0, 6085, 6086, 5, 502, 0, 0, 6086, 6088, 3, 714, 357, 0, 6087, 6085, 1, 0, 0, 0, 6088, 6091, 1, 0, 0, 0, 6089, 6087, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 713, 1, 0, 0, 0, 6091, 6089, 1, 0, 0, 0, 6092, 6096, 5, 521, 0, 0, 6093, 6096, 5, 523, 0, 0, 6094, 6096, 3, 736, 368, 0, 6095, 6092, 1, 0, 0, 0, 6095, 6093, 1, 0, 0, 0, 6095, 6094, 1, 0, 0, 0, 6096, 715, 1, 0, 0, 0, 6097, 6103, 5, 517, 0, 0, 6098, 6103, 5, 519, 0, 0, 6099, 6103, 3, 720, 360, 0, 6100, 6103, 5, 288, 0, 0, 6101, 6103, 5, 140, 0, 0, 6102, 6097, 1, 0, 0, 0, 6102, 6098, 1, 0, 0, 0, 6102, 6099, 1, 0, 0, 0, 6102, 6100, 1, 0, 0, 0, 6102, 6101, 1, 0, 0, 0, 6103, 717, 1, 0, 0, 0, 6104, 6113, 5, 507, 0, 0, 6105, 6110, 3, 716, 358, 0, 6106, 6107, 5, 501, 0, 0, 6107, 6109, 3, 716, 358, 0, 6108, 6106, 1, 0, 0, 0, 6109, 6112, 1, 0, 0, 0, 6110, 6108, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6114, 1, 0, 0, 0, 6112, 6110, 1, 0, 0, 0, 6113, 6105, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 5, 508, 0, 0, 6116, 719, 1, 0, 0, 0, 6117, 6118, 7, 45, 0, 0, 6118, 721, 1, 0, 0, 0, 6119, 6120, 5, 2, 0, 0, 6120, 723, 1, 0, 0, 0, 6121, 6122, 5, 510, 0, 0, 6122, 6128, 3, 726, 363, 0, 6123, 6124, 5, 503, 0, 0, 6124, 6125, 3, 728, 364, 0, 6125, 6126, 5, 504, 0, 0, 6126, 6129, 1, 0, 0, 0, 6127, 6129, 3, 732, 366, 0, 6128, 6123, 1, 0, 0, 0, 6128, 6127, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 725, 1, 0, 0, 0, 6130, 6131, 7, 46, 0, 0, 6131, 727, 1, 0, 0, 0, 6132, 6137, 3, 730, 365, 0, 6133, 6134, 5, 501, 0, 0, 6134, 6136, 3, 730, 365, 0, 6135, 6133, 1, 0, 0, 0, 6136, 6139, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, 0, 6137, 6138, 1, 0, 0, 0, 6138, 729, 1, 0, 0, 0, 6139, 6137, 1, 0, 0, 0, 6140, 6141, 5, 521, 0, 0, 6141, 6142, 5, 509, 0, 0, 6142, 6145, 3, 732, 366, 0, 6143, 6145, 3, 732, 366, 0, 6144, 6140, 1, 0, 0, 0, 6144, 6143, 1, 0, 0, 0, 6145, 731, 1, 0, 0, 0, 6146, 6150, 3, 716, 358, 0, 6147, 6150, 3, 672, 336, 0, 6148, 6150, 3, 712, 356, 0, 6149, 6146, 1, 0, 0, 0, 6149, 6147, 1, 0, 0, 0, 6149, 6148, 1, 0, 0, 0, 6150, 733, 1, 0, 0, 0, 6151, 6152, 7, 47, 0, 0, 6152, 735, 1, 0, 0, 0, 6153, 6154, 7, 48, 0, 0, 6154, 737, 1, 0, 0, 0, 712, 741, 747, 752, 755, 758, 767, 777, 786, 792, 794, 798, 801, 806, 812, 839, 847, 855, 863, 871, 883, 896, 909, 921, 932, 936, 944, 950, 967, 971, 975, 979, 983, 987, 991, 993, 1006, 1011, 1025, 1034, 1047, 1063, 1072, 1095, 1109, 1113, 1122, 1125, 1133, 1138, 1140, 1219, 1221, 1234, 1245, 1254, 1256, 1267, 1273, 1281, 1292, 1294, 1302, 1304, 1323, 1331, 1347, 1371, 1387, 1471, 1480, 1488, 1502, 1509, 1517, 1531, 1544, 1548, 1554, 1557, 1563, 1566, 1572, 1576, 1580, 1586, 1591, 1594, 1596, 1602, 1606, 1610, 1613, 1617, 1622, 1629, 1636, 1640, 1645, 1654, 1660, 1665, 1671, 1676, 1681, 1686, 1690, 1693, 1695, 1701, 1733, 1741, 1762, 1765, 1776, 1781, 1786, 1795, 1800, 1812, 1838, 1844, 1851, 1857, 1888, 1902, 1909, 1922, 1929, 1937, 1942, 1947, 1953, 1961, 1968, 1972, 1976, 1979, 1996, 2001, 2010, 2013, 2018, 2025, 2033, 2047, 2054, 2065, 2070, 2110, 2125, 2132, 2140, 2147, 2151, 2154, 2160, 2163, 2170, 2174, 2177, 2182, 2189, 2196, 2212, 2217, 2225, 2231, 2236, 2242, 2247, 2253, 2258, 2263, 2268, 2273, 2278, 2283, 2288, 2293, 2298, 2303, 2308, 2313, 2318, 2323, 2328, 2333, 2338, 2343, 2348, 2353, 2358, 2363, 2368, 2373, 2378, 2383, 2388, 2393, 2398, 2403, 2408, 2413, 2418, 2423, 2428, 2433, 2438, 2443, 2448, 2453, 2458, 2463, 2468, 2473, 2478, 2483, 2488, 2493, 2498, 2503, 2508, 2513, 2518, 2523, 2528, 2533, 2538, 2543, 2548, 2553, 2558, 2563, 2568, 2573, 2578, 2580, 2587, 2592, 2599, 2605, 2608, 2611, 2617, 2620, 2626, 2630, 2636, 2639, 2642, 2647, 2652, 2661, 2663, 2671, 2674, 2678, 2682, 2685, 2697, 2719, 2732, 2737, 2747, 2757, 2762, 2770, 2777, 2781, 2785, 2796, 2803, 2817, 2824, 2828, 2832, 2840, 2844, 2848, 2858, 2860, 2864, 2867, 2872, 2875, 2878, 2882, 2890, 2894, 2901, 2906, 2916, 2919, 2923, 2927, 2934, 2941, 2947, 2961, 2968, 2983, 2987, 2994, 2999, 3003, 3006, 3009, 3013, 3019, 3037, 3042, 3050, 3069, 3073, 3080, 3083, 3151, 3158, 3163, 3193, 3216, 3227, 3234, 3251, 3254, 3263, 3273, 3285, 3297, 3308, 3311, 3324, 3332, 3338, 3344, 3352, 3359, 3367, 3374, 3381, 3393, 3396, 3408, 3432, 3440, 3448, 3468, 3472, 3474, 3482, 3487, 3490, 3500, 3595, 3605, 3613, 3623, 3627, 3629, 3637, 3640, 3645, 3650, 3656, 3660, 3664, 3670, 3676, 3681, 3686, 3691, 3696, 3704, 3715, 3720, 3726, 3730, 3739, 3741, 3743, 3751, 3787, 3790, 3793, 3801, 3808, 3819, 3828, 3834, 3842, 3851, 3859, 3865, 3869, 3878, 3890, 3896, 3898, 3911, 3915, 3927, 3932, 3934, 3949, 3954, 3963, 3972, 3975, 3986, 4009, 4014, 4019, 4028, 4055, 4062, 4077, 4096, 4101, 4112, 4117, 4123, 4127, 4135, 4138, 4154, 4162, 4165, 4172, 4180, 4185, 4188, 4191, 4201, 4204, 4211, 4214, 4222, 4240, 4246, 4249, 4254, 4259, 4269, 4288, 4296, 4308, 4315, 4319, 4333, 4337, 4341, 4346, 4351, 4356, 4363, 4366, 4371, 4401, 4409, 4414, 4419, 4423, 4428, 4432, 4438, 4440, 4447, 4449, 4458, 4463, 4468, 4472, 4477, 4481, 4487, 4489, 4496, 4498, 4500, 4505, 4511, 4517, 4523, 4527, 4533, 4535, 4547, 4556, 4561, 4567, 4569, 4576, 4578, 4589, 4598, 4603, 4607, 4611, 4617, 4619, 4631, 4636, 4649, 4655, 4659, 4666, 4673, 4675, 4686, 4694, 4699, 4707, 4716, 4719, 4731, 4737, 4766, 4768, 4775, 4777, 4784, 4786, 4793, 4795, 4802, 4804, 4811, 4813, 4820, 4822, 4829, 4831, 4838, 4840, 4848, 4850, 4857, 4859, 4866, 4868, 4876, 4878, 4886, 4888, 4896, 4898, 4906, 4908, 4936, 4943, 4959, 4964, 4975, 4977, 5010, 5012, 5020, 5022, 5030, 5032, 5040, 5042, 5050, 5052, 5061, 5071, 5077, 5082, 5084, 5087, 5096, 5098, 5107, 5109, 5117, 5119, 5131, 5133, 5141, 5143, 5152, 5154, 5162, 5174, 5182, 5188, 5190, 5195, 5197, 5207, 5217, 5225, 5233, 5282, 5312, 5321, 5374, 5378, 5386, 5389, 5394, 5399, 5405, 5407, 5411, 5415, 5419, 5422, 5429, 5432, 5436, 5443, 5448, 5453, 5456, 5459, 5462, 5465, 5468, 5472, 5475, 5478, 5482, 5485, 5487, 5491, 5501, 5504, 5509, 5514, 5516, 5520, 5527, 5532, 5535, 5541, 5544, 5546, 5549, 5555, 5558, 5563, 5566, 5568, 5580, 5584, 5588, 5593, 5596, 5615, 5620, 5627, 5634, 5640, 5642, 5660, 5671, 5686, 5688, 5696, 5699, 5702, 5705, 5708, 5724, 5728, 5733, 5741, 5749, 5756, 5802, 5807, 5816, 5821, 5824, 5829, 5834, 5850, 5861, 5866, 5870, 5874, 5890, 5909, 5917, 5921, 5935, 5940, 5948, 5954, 5963, 5971, 5975, 6000, 6010, 6014, 6037, 6041, 6048, 6059, 6068, 6074, 6081, 6089, 6095, 6102, 6110, 6113, 6128, 6137, 6144, 6149] \ No newline at end of file +[4, 1, 527, 6210, 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, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 1, 0, 5, 0, 740, 8, 0, 10, 0, 12, 0, 743, 9, 0, 1, 0, 1, 0, 1, 1, 3, 1, 748, 8, 1, 1, 1, 1, 1, 1, 1, 3, 1, 753, 8, 1, 1, 1, 3, 1, 756, 8, 1, 1, 1, 3, 1, 759, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 768, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 776, 8, 3, 10, 3, 12, 3, 779, 9, 3, 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 785, 8, 3, 10, 3, 12, 3, 788, 9, 3, 1, 3, 1, 3, 1, 3, 3, 3, 793, 8, 3, 3, 3, 795, 8, 3, 1, 3, 1, 3, 3, 3, 799, 8, 3, 1, 4, 3, 4, 802, 8, 4, 1, 4, 5, 4, 805, 8, 4, 10, 4, 12, 4, 808, 9, 4, 1, 4, 1, 4, 1, 4, 3, 4, 813, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 840, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 846, 8, 5, 11, 5, 12, 5, 847, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 854, 8, 5, 11, 5, 12, 5, 855, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 862, 8, 5, 11, 5, 12, 5, 863, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 870, 8, 5, 11, 5, 12, 5, 871, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 882, 8, 5, 10, 5, 12, 5, 885, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 895, 8, 5, 10, 5, 12, 5, 898, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 908, 8, 5, 11, 5, 12, 5, 909, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 920, 8, 5, 11, 5, 12, 5, 921, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 4, 5, 931, 8, 5, 11, 5, 12, 5, 932, 1, 5, 1, 5, 3, 5, 937, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 943, 8, 6, 10, 6, 12, 6, 946, 9, 6, 1, 6, 1, 6, 1, 6, 3, 6, 951, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 968, 8, 7, 1, 8, 1, 8, 3, 8, 972, 8, 8, 1, 8, 1, 8, 3, 8, 976, 8, 8, 1, 8, 1, 8, 3, 8, 980, 8, 8, 1, 8, 1, 8, 3, 8, 984, 8, 8, 1, 8, 1, 8, 3, 8, 988, 8, 8, 1, 8, 1, 8, 3, 8, 992, 8, 8, 3, 8, 994, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1005, 8, 9, 10, 9, 12, 9, 1008, 9, 9, 1, 9, 1, 9, 3, 9, 1012, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1024, 8, 9, 10, 9, 12, 9, 1027, 9, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1035, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1051, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1067, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 1074, 8, 13, 10, 13, 12, 13, 1077, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1099, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1111, 8, 17, 10, 17, 12, 17, 1114, 9, 17, 1, 17, 3, 17, 1117, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1126, 8, 18, 1, 18, 3, 18, 1129, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 1135, 8, 18, 10, 18, 12, 18, 1138, 9, 18, 1, 18, 1, 18, 3, 18, 1142, 8, 18, 3, 18, 1144, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1223, 8, 19, 3, 19, 1225, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1238, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1249, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1258, 8, 21, 3, 21, 1260, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1271, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1277, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1285, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1296, 8, 21, 3, 21, 1298, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1306, 8, 21, 3, 21, 1308, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1327, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1335, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1351, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1375, 8, 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, 3, 28, 1391, 8, 28, 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, 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, 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, 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, 3, 38, 1475, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1484, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1490, 8, 39, 10, 39, 12, 39, 1493, 9, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1506, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 1511, 8, 42, 10, 42, 12, 42, 1514, 9, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1519, 8, 43, 10, 43, 12, 43, 1522, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1533, 8, 44, 10, 44, 12, 44, 1536, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1546, 8, 44, 10, 44, 12, 44, 1549, 9, 44, 1, 44, 3, 44, 1552, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1558, 8, 45, 1, 45, 3, 45, 1561, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1567, 8, 45, 1, 45, 3, 45, 1570, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1576, 8, 45, 1, 45, 1, 45, 3, 45, 1580, 8, 45, 1, 45, 1, 45, 3, 45, 1584, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1590, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1595, 8, 45, 1, 45, 3, 45, 1598, 8, 45, 3, 45, 1600, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1606, 8, 46, 1, 47, 1, 47, 3, 47, 1610, 8, 47, 1, 47, 1, 47, 3, 47, 1614, 8, 47, 1, 47, 3, 47, 1617, 8, 47, 1, 48, 1, 48, 3, 48, 1621, 8, 48, 1, 48, 5, 48, 1624, 8, 48, 10, 48, 12, 48, 1627, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1633, 8, 49, 1, 50, 1, 50, 1, 50, 5, 50, 1638, 8, 50, 10, 50, 12, 50, 1641, 9, 50, 1, 51, 3, 51, 1644, 8, 51, 1, 51, 5, 51, 1647, 8, 51, 10, 51, 12, 51, 1650, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1656, 8, 51, 10, 51, 12, 51, 1659, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1665, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1670, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1676, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1681, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1686, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1691, 8, 53, 1, 53, 1, 53, 3, 53, 1695, 8, 53, 1, 53, 3, 53, 1698, 8, 53, 3, 53, 1700, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1706, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1738, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1746, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1767, 8, 56, 1, 57, 3, 57, 1770, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 1779, 8, 58, 10, 58, 12, 58, 1782, 9, 58, 1, 59, 1, 59, 3, 59, 1786, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 1791, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1800, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1811, 8, 61, 10, 61, 12, 61, 1814, 9, 61, 1, 61, 1, 61, 3, 61, 1818, 8, 61, 1, 62, 4, 62, 1821, 8, 62, 11, 62, 12, 62, 1822, 1, 63, 1, 63, 3, 63, 1827, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1832, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1837, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1844, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1870, 8, 65, 1, 65, 1, 65, 5, 65, 1874, 8, 65, 10, 65, 12, 65, 1877, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1883, 8, 65, 1, 65, 1, 65, 5, 65, 1887, 8, 65, 10, 65, 12, 65, 1890, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1920, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1934, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1941, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1954, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1961, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1969, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1974, 8, 69, 1, 70, 4, 70, 1977, 8, 70, 11, 70, 12, 70, 1978, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1985, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1993, 8, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1998, 8, 73, 10, 73, 12, 73, 2001, 9, 73, 1, 74, 3, 74, 2004, 8, 74, 1, 74, 1, 74, 3, 74, 2008, 8, 74, 1, 74, 3, 74, 2011, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2030, 8, 75, 1, 76, 4, 76, 2033, 8, 76, 11, 76, 12, 76, 2034, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2044, 8, 78, 1, 78, 3, 78, 2047, 8, 78, 1, 79, 4, 79, 2050, 8, 79, 11, 79, 12, 79, 2051, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2059, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2065, 8, 81, 10, 81, 12, 81, 2068, 9, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 2081, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2088, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2097, 8, 84, 10, 84, 12, 84, 2100, 9, 84, 1, 84, 1, 84, 3, 84, 2104, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2144, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2159, 8, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2164, 8, 89, 10, 89, 12, 89, 2167, 9, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2172, 8, 90, 10, 90, 12, 90, 2175, 9, 90, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2181, 8, 91, 1, 91, 1, 91, 3, 91, 2185, 8, 91, 1, 91, 3, 91, 2188, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2194, 8, 91, 1, 91, 3, 91, 2197, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2204, 8, 92, 1, 92, 1, 92, 3, 92, 2208, 8, 92, 1, 92, 3, 92, 2211, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2216, 8, 92, 1, 93, 1, 93, 1, 93, 5, 93, 2221, 8, 93, 10, 93, 12, 93, 2224, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2230, 8, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 5, 97, 2244, 8, 97, 10, 97, 12, 97, 2247, 9, 97, 1, 98, 1, 98, 3, 98, 2251, 8, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2259, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2265, 8, 100, 1, 101, 4, 101, 2268, 8, 101, 11, 101, 12, 101, 2269, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2276, 8, 102, 1, 103, 5, 103, 2279, 8, 103, 10, 103, 12, 103, 2282, 9, 103, 1, 104, 5, 104, 2285, 8, 104, 10, 104, 12, 104, 2288, 9, 104, 1, 104, 1, 104, 3, 104, 2292, 8, 104, 1, 104, 5, 104, 2295, 8, 104, 10, 104, 12, 104, 2298, 9, 104, 1, 104, 1, 104, 3, 104, 2302, 8, 104, 1, 104, 5, 104, 2305, 8, 104, 10, 104, 12, 104, 2308, 9, 104, 1, 104, 1, 104, 3, 104, 2312, 8, 104, 1, 104, 5, 104, 2315, 8, 104, 10, 104, 12, 104, 2318, 9, 104, 1, 104, 1, 104, 3, 104, 2322, 8, 104, 1, 104, 5, 104, 2325, 8, 104, 10, 104, 12, 104, 2328, 9, 104, 1, 104, 1, 104, 3, 104, 2332, 8, 104, 1, 104, 5, 104, 2335, 8, 104, 10, 104, 12, 104, 2338, 9, 104, 1, 104, 1, 104, 3, 104, 2342, 8, 104, 1, 104, 5, 104, 2345, 8, 104, 10, 104, 12, 104, 2348, 9, 104, 1, 104, 1, 104, 3, 104, 2352, 8, 104, 1, 104, 5, 104, 2355, 8, 104, 10, 104, 12, 104, 2358, 9, 104, 1, 104, 1, 104, 3, 104, 2362, 8, 104, 1, 104, 5, 104, 2365, 8, 104, 10, 104, 12, 104, 2368, 9, 104, 1, 104, 1, 104, 3, 104, 2372, 8, 104, 1, 104, 5, 104, 2375, 8, 104, 10, 104, 12, 104, 2378, 9, 104, 1, 104, 1, 104, 3, 104, 2382, 8, 104, 1, 104, 5, 104, 2385, 8, 104, 10, 104, 12, 104, 2388, 9, 104, 1, 104, 1, 104, 3, 104, 2392, 8, 104, 1, 104, 5, 104, 2395, 8, 104, 10, 104, 12, 104, 2398, 9, 104, 1, 104, 1, 104, 3, 104, 2402, 8, 104, 1, 104, 5, 104, 2405, 8, 104, 10, 104, 12, 104, 2408, 9, 104, 1, 104, 1, 104, 3, 104, 2412, 8, 104, 1, 104, 5, 104, 2415, 8, 104, 10, 104, 12, 104, 2418, 9, 104, 1, 104, 1, 104, 3, 104, 2422, 8, 104, 1, 104, 5, 104, 2425, 8, 104, 10, 104, 12, 104, 2428, 9, 104, 1, 104, 1, 104, 3, 104, 2432, 8, 104, 1, 104, 5, 104, 2435, 8, 104, 10, 104, 12, 104, 2438, 9, 104, 1, 104, 1, 104, 3, 104, 2442, 8, 104, 1, 104, 5, 104, 2445, 8, 104, 10, 104, 12, 104, 2448, 9, 104, 1, 104, 1, 104, 3, 104, 2452, 8, 104, 1, 104, 5, 104, 2455, 8, 104, 10, 104, 12, 104, 2458, 9, 104, 1, 104, 1, 104, 3, 104, 2462, 8, 104, 1, 104, 5, 104, 2465, 8, 104, 10, 104, 12, 104, 2468, 9, 104, 1, 104, 1, 104, 3, 104, 2472, 8, 104, 1, 104, 5, 104, 2475, 8, 104, 10, 104, 12, 104, 2478, 9, 104, 1, 104, 1, 104, 3, 104, 2482, 8, 104, 1, 104, 5, 104, 2485, 8, 104, 10, 104, 12, 104, 2488, 9, 104, 1, 104, 1, 104, 3, 104, 2492, 8, 104, 1, 104, 5, 104, 2495, 8, 104, 10, 104, 12, 104, 2498, 9, 104, 1, 104, 1, 104, 3, 104, 2502, 8, 104, 1, 104, 5, 104, 2505, 8, 104, 10, 104, 12, 104, 2508, 9, 104, 1, 104, 1, 104, 3, 104, 2512, 8, 104, 1, 104, 5, 104, 2515, 8, 104, 10, 104, 12, 104, 2518, 9, 104, 1, 104, 1, 104, 3, 104, 2522, 8, 104, 1, 104, 5, 104, 2525, 8, 104, 10, 104, 12, 104, 2528, 9, 104, 1, 104, 1, 104, 3, 104, 2532, 8, 104, 1, 104, 5, 104, 2535, 8, 104, 10, 104, 12, 104, 2538, 9, 104, 1, 104, 1, 104, 3, 104, 2542, 8, 104, 1, 104, 5, 104, 2545, 8, 104, 10, 104, 12, 104, 2548, 9, 104, 1, 104, 1, 104, 3, 104, 2552, 8, 104, 1, 104, 5, 104, 2555, 8, 104, 10, 104, 12, 104, 2558, 9, 104, 1, 104, 1, 104, 3, 104, 2562, 8, 104, 1, 104, 5, 104, 2565, 8, 104, 10, 104, 12, 104, 2568, 9, 104, 1, 104, 1, 104, 3, 104, 2572, 8, 104, 1, 104, 5, 104, 2575, 8, 104, 10, 104, 12, 104, 2578, 9, 104, 1, 104, 1, 104, 3, 104, 2582, 8, 104, 1, 104, 5, 104, 2585, 8, 104, 10, 104, 12, 104, 2588, 9, 104, 1, 104, 1, 104, 3, 104, 2592, 8, 104, 1, 104, 5, 104, 2595, 8, 104, 10, 104, 12, 104, 2598, 9, 104, 1, 104, 1, 104, 3, 104, 2602, 8, 104, 1, 104, 5, 104, 2605, 8, 104, 10, 104, 12, 104, 2608, 9, 104, 1, 104, 1, 104, 3, 104, 2612, 8, 104, 3, 104, 2614, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2621, 8, 105, 1, 106, 1, 106, 1, 106, 3, 106, 2626, 8, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 3, 107, 2633, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2639, 8, 107, 1, 107, 3, 107, 2642, 8, 107, 1, 107, 3, 107, 2645, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 2651, 8, 108, 1, 108, 3, 108, 2654, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2660, 8, 109, 4, 109, 2662, 8, 109, 11, 109, 12, 109, 2663, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2670, 8, 110, 1, 110, 3, 110, 2673, 8, 110, 1, 110, 3, 110, 2676, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2681, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2686, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2695, 8, 113, 3, 113, 2697, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2703, 8, 113, 10, 113, 12, 113, 2706, 9, 113, 3, 113, 2708, 8, 113, 1, 113, 1, 113, 3, 113, 2712, 8, 113, 1, 113, 1, 113, 3, 113, 2716, 8, 113, 1, 113, 3, 113, 2719, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2731, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2753, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2764, 8, 116, 10, 116, 12, 116, 2767, 9, 116, 1, 116, 1, 116, 3, 116, 2771, 8, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2781, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 2791, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2796, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2804, 8, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 2811, 8, 123, 1, 123, 1, 123, 3, 123, 2815, 8, 123, 1, 123, 1, 123, 3, 123, 2819, 8, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2828, 8, 125, 10, 125, 12, 125, 2831, 9, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 2837, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2851, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 2858, 8, 129, 1, 129, 1, 129, 3, 129, 2862, 8, 129, 1, 130, 1, 130, 3, 130, 2866, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2874, 8, 130, 1, 130, 1, 130, 3, 130, 2878, 8, 130, 1, 131, 1, 131, 3, 131, 2882, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2892, 8, 131, 3, 131, 2894, 8, 131, 1, 131, 1, 131, 3, 131, 2898, 8, 131, 1, 131, 3, 131, 2901, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2906, 8, 131, 1, 131, 3, 131, 2909, 8, 131, 1, 131, 3, 131, 2912, 8, 131, 1, 132, 1, 132, 3, 132, 2916, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2924, 8, 132, 1, 132, 1, 132, 3, 132, 2928, 8, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2933, 8, 133, 10, 133, 12, 133, 2936, 9, 133, 1, 134, 1, 134, 3, 134, 2940, 8, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 2950, 8, 135, 1, 135, 3, 135, 2953, 8, 135, 1, 135, 1, 135, 3, 135, 2957, 8, 135, 1, 135, 1, 135, 3, 135, 2961, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 2966, 8, 136, 10, 136, 12, 136, 2969, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2975, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2981, 8, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2995, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3002, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3017, 8, 142, 1, 143, 1, 143, 3, 143, 3021, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3028, 8, 143, 1, 143, 5, 143, 3031, 8, 143, 10, 143, 12, 143, 3034, 9, 143, 1, 143, 3, 143, 3037, 8, 143, 1, 143, 3, 143, 3040, 8, 143, 1, 143, 3, 143, 3043, 8, 143, 1, 143, 1, 143, 3, 143, 3047, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 3053, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3071, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3076, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3084, 8, 149, 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, 3, 151, 3103, 8, 151, 1, 152, 1, 152, 3, 152, 3107, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3114, 8, 152, 1, 152, 3, 152, 3117, 8, 152, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3185, 8, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3190, 8, 156, 10, 156, 12, 156, 3193, 9, 156, 1, 157, 1, 157, 3, 157, 3197, 8, 157, 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, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3227, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3248, 8, 163, 10, 163, 12, 163, 3251, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3261, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3266, 8, 166, 10, 166, 12, 166, 3269, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 3, 169, 3285, 8, 169, 1, 169, 3, 169, 3288, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 4, 170, 3295, 8, 170, 11, 170, 12, 170, 3296, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3305, 8, 172, 10, 172, 12, 172, 3308, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3317, 8, 174, 10, 174, 12, 174, 3320, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3329, 8, 176, 10, 176, 12, 176, 3332, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 3342, 8, 178, 1, 178, 3, 178, 3345, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 5, 181, 3356, 8, 181, 10, 181, 12, 181, 3359, 9, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3364, 8, 182, 10, 182, 12, 182, 3367, 9, 182, 1, 183, 1, 183, 1, 183, 3, 183, 3372, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3378, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3386, 8, 185, 1, 186, 1, 186, 1, 186, 5, 186, 3391, 8, 186, 10, 186, 12, 186, 3394, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3401, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3408, 8, 188, 1, 189, 1, 189, 1, 189, 5, 189, 3413, 8, 189, 10, 189, 12, 189, 3416, 9, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 3425, 8, 191, 10, 191, 12, 191, 3428, 9, 191, 3, 191, 3430, 8, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 3440, 8, 193, 10, 193, 12, 193, 3443, 9, 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, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3466, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3474, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 3480, 8, 195, 10, 195, 12, 195, 3483, 9, 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, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 3502, 8, 196, 1, 197, 1, 197, 5, 197, 3506, 8, 197, 10, 197, 12, 197, 3509, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 3516, 8, 198, 1, 199, 1, 199, 1, 199, 3, 199, 3521, 8, 199, 1, 199, 3, 199, 3524, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3530, 8, 199, 1, 199, 3, 199, 3533, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3539, 8, 199, 1, 199, 3, 199, 3542, 8, 199, 3, 199, 3544, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 3552, 8, 201, 10, 201, 12, 201, 3555, 9, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3653, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 5, 204, 3661, 8, 204, 10, 204, 12, 204, 3664, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 3, 205, 3671, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3679, 8, 205, 10, 205, 12, 205, 3682, 9, 205, 1, 205, 3, 205, 3685, 8, 205, 3, 205, 3687, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3693, 8, 205, 10, 205, 12, 205, 3696, 9, 205, 3, 205, 3698, 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3703, 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3708, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3714, 8, 205, 1, 206, 1, 206, 3, 206, 3718, 8, 206, 1, 206, 1, 206, 3, 206, 3722, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3728, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3734, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3739, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3744, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3749, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3754, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 3760, 8, 207, 10, 207, 12, 207, 3763, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3773, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3778, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3784, 8, 209, 5, 209, 3786, 8, 209, 10, 209, 12, 209, 3789, 9, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3797, 8, 210, 3, 210, 3799, 8, 210, 3, 210, 3801, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 3807, 8, 211, 10, 211, 12, 211, 3810, 9, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3843, 8, 217, 10, 217, 12, 217, 3846, 9, 217, 3, 217, 3848, 8, 217, 1, 217, 3, 217, 3851, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 3857, 8, 218, 10, 218, 12, 218, 3860, 9, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3866, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3877, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3886, 8, 221, 1, 221, 1, 221, 5, 221, 3890, 8, 221, 10, 221, 12, 221, 3893, 9, 221, 1, 221, 1, 221, 1, 222, 4, 222, 3898, 8, 222, 11, 222, 12, 222, 3899, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 3909, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3915, 8, 225, 11, 225, 12, 225, 3916, 1, 225, 1, 225, 5, 225, 3921, 8, 225, 10, 225, 12, 225, 3924, 9, 225, 1, 225, 3, 225, 3927, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3936, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3948, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3954, 8, 226, 3, 226, 3956, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3969, 8, 227, 5, 227, 3971, 8, 227, 10, 227, 12, 227, 3974, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 3983, 8, 227, 10, 227, 12, 227, 3986, 9, 227, 1, 227, 1, 227, 3, 227, 3990, 8, 227, 3, 227, 3992, 8, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 4007, 8, 229, 1, 230, 4, 230, 4010, 8, 230, 11, 230, 12, 230, 4011, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 4021, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 5, 232, 4028, 8, 232, 10, 232, 12, 232, 4031, 9, 232, 3, 232, 4033, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 4042, 8, 233, 10, 233, 12, 233, 4045, 9, 233, 1, 233, 1, 233, 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, 3, 235, 4067, 8, 235, 1, 236, 1, 236, 1, 237, 3, 237, 4072, 8, 237, 1, 237, 1, 237, 1, 237, 3, 237, 4077, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 5, 237, 4084, 8, 237, 10, 237, 12, 237, 4087, 9, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 4113, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 4120, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 4135, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 4152, 8, 243, 10, 243, 12, 243, 4155, 9, 243, 1, 243, 1, 243, 3, 243, 4159, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 4168, 8, 244, 10, 244, 12, 244, 4171, 9, 244, 1, 244, 1, 244, 3, 244, 4175, 8, 244, 1, 244, 1, 244, 5, 244, 4179, 8, 244, 10, 244, 12, 244, 4182, 9, 244, 1, 244, 3, 244, 4185, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 4193, 8, 245, 1, 245, 3, 245, 4196, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 4210, 8, 248, 10, 248, 12, 248, 4213, 9, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 4220, 8, 249, 1, 249, 3, 249, 4223, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4230, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 4236, 8, 250, 10, 250, 12, 250, 4239, 9, 250, 1, 250, 1, 250, 3, 250, 4243, 8, 250, 1, 250, 3, 250, 4246, 8, 250, 1, 250, 3, 250, 4249, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 4257, 8, 251, 10, 251, 12, 251, 4260, 9, 251, 3, 251, 4262, 8, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 4269, 8, 252, 1, 252, 3, 252, 4272, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 4278, 8, 253, 10, 253, 12, 253, 4281, 9, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 5, 254, 4296, 8, 254, 10, 254, 12, 254, 4299, 9, 254, 1, 254, 1, 254, 1, 254, 3, 254, 4304, 8, 254, 1, 254, 3, 254, 4307, 8, 254, 1, 255, 1, 255, 1, 255, 3, 255, 4312, 8, 255, 1, 255, 5, 255, 4315, 8, 255, 10, 255, 12, 255, 4318, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 4325, 8, 256, 10, 256, 12, 256, 4328, 9, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 5, 258, 4344, 8, 258, 10, 258, 12, 258, 4347, 9, 258, 1, 258, 1, 258, 1, 258, 4, 258, 4352, 8, 258, 11, 258, 12, 258, 4353, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 4364, 8, 259, 10, 259, 12, 259, 4367, 9, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4373, 8, 259, 1, 259, 1, 259, 3, 259, 4377, 8, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4391, 8, 261, 1, 261, 1, 261, 3, 261, 4395, 8, 261, 1, 261, 1, 261, 3, 261, 4399, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4404, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4409, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4414, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4421, 8, 261, 1, 261, 3, 261, 4424, 8, 261, 1, 262, 5, 262, 4427, 8, 262, 10, 262, 12, 262, 4430, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4459, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4467, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4472, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4477, 8, 264, 1, 264, 1, 264, 3, 264, 4481, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4486, 8, 264, 1, 264, 1, 264, 3, 264, 4490, 8, 264, 1, 264, 1, 264, 4, 264, 4494, 8, 264, 11, 264, 12, 264, 4495, 3, 264, 4498, 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4503, 8, 264, 11, 264, 12, 264, 4504, 3, 264, 4507, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4516, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4521, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4526, 8, 264, 1, 264, 1, 264, 3, 264, 4530, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4535, 8, 264, 1, 264, 1, 264, 3, 264, 4539, 8, 264, 1, 264, 1, 264, 4, 264, 4543, 8, 264, 11, 264, 12, 264, 4544, 3, 264, 4547, 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4552, 8, 264, 11, 264, 12, 264, 4553, 3, 264, 4556, 8, 264, 3, 264, 4558, 8, 264, 1, 265, 1, 265, 1, 265, 3, 265, 4563, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4569, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4575, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4581, 8, 265, 1, 265, 1, 265, 3, 265, 4585, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4591, 8, 265, 3, 265, 4593, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4605, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 4612, 8, 267, 10, 267, 12, 267, 4615, 9, 267, 1, 267, 1, 267, 3, 267, 4619, 8, 267, 1, 267, 1, 267, 4, 267, 4623, 8, 267, 11, 267, 12, 267, 4624, 3, 267, 4627, 8, 267, 1, 267, 1, 267, 1, 267, 4, 267, 4632, 8, 267, 11, 267, 12, 267, 4633, 3, 267, 4636, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4647, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 4654, 8, 269, 10, 269, 12, 269, 4657, 9, 269, 1, 269, 1, 269, 3, 269, 4661, 8, 269, 1, 270, 1, 270, 3, 270, 4665, 8, 270, 1, 270, 1, 270, 3, 270, 4669, 8, 270, 1, 270, 1, 270, 4, 270, 4673, 8, 270, 11, 270, 12, 270, 4674, 3, 270, 4677, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 4689, 8, 272, 1, 272, 4, 272, 4692, 8, 272, 11, 272, 12, 272, 4693, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4707, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4713, 8, 275, 1, 275, 1, 275, 3, 275, 4717, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 4724, 8, 276, 1, 276, 1, 276, 1, 276, 4, 276, 4729, 8, 276, 11, 276, 12, 276, 4730, 3, 276, 4733, 8, 276, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4742, 8, 278, 10, 278, 12, 278, 4745, 9, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4752, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4757, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4765, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4772, 8, 278, 10, 278, 12, 278, 4775, 9, 278, 3, 278, 4777, 8, 278, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4789, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4795, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4824, 8, 283, 3, 283, 4826, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4833, 8, 283, 3, 283, 4835, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4842, 8, 283, 3, 283, 4844, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4851, 8, 283, 3, 283, 4853, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4860, 8, 283, 3, 283, 4862, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4869, 8, 283, 3, 283, 4871, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4878, 8, 283, 3, 283, 4880, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4887, 8, 283, 3, 283, 4889, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4896, 8, 283, 3, 283, 4898, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4906, 8, 283, 3, 283, 4908, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4915, 8, 283, 3, 283, 4917, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4924, 8, 283, 3, 283, 4926, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4934, 8, 283, 3, 283, 4936, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4944, 8, 283, 3, 283, 4946, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4954, 8, 283, 3, 283, 4956, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4964, 8, 283, 3, 283, 4966, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4994, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5001, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5017, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5022, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5033, 8, 283, 3, 283, 5035, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5068, 8, 283, 3, 283, 5070, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5078, 8, 283, 3, 283, 5080, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5088, 8, 283, 3, 283, 5090, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5098, 8, 283, 3, 283, 5100, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5108, 8, 283, 3, 283, 5110, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5119, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5129, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5135, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5140, 8, 283, 3, 283, 5142, 8, 283, 1, 283, 3, 283, 5145, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5154, 8, 283, 3, 283, 5156, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5165, 8, 283, 3, 283, 5167, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5175, 8, 283, 3, 283, 5177, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5189, 8, 283, 3, 283, 5191, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5199, 8, 283, 3, 283, 5201, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5210, 8, 283, 3, 283, 5212, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5220, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5232, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 5238, 8, 284, 10, 284, 12, 284, 5241, 9, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5246, 8, 284, 3, 284, 5248, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5253, 8, 284, 3, 284, 5255, 8, 284, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 5265, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5275, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5283, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5291, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5340, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5370, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5379, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5432, 8, 289, 1, 290, 1, 290, 3, 290, 5436, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5444, 8, 290, 1, 290, 3, 290, 5447, 8, 290, 1, 290, 5, 290, 5450, 8, 290, 10, 290, 12, 290, 5453, 9, 290, 1, 290, 1, 290, 3, 290, 5457, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5463, 8, 290, 3, 290, 5465, 8, 290, 1, 290, 1, 290, 3, 290, 5469, 8, 290, 1, 290, 1, 290, 3, 290, 5473, 8, 290, 1, 290, 1, 290, 3, 290, 5477, 8, 290, 1, 291, 3, 291, 5480, 8, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 5487, 8, 291, 1, 291, 3, 291, 5490, 8, 291, 1, 291, 1, 291, 3, 291, 5494, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 3, 293, 5501, 8, 293, 1, 293, 5, 293, 5504, 8, 293, 10, 293, 12, 293, 5507, 9, 293, 1, 294, 1, 294, 3, 294, 5511, 8, 294, 1, 294, 3, 294, 5514, 8, 294, 1, 294, 3, 294, 5517, 8, 294, 1, 294, 3, 294, 5520, 8, 294, 1, 294, 3, 294, 5523, 8, 294, 1, 294, 3, 294, 5526, 8, 294, 1, 294, 1, 294, 3, 294, 5530, 8, 294, 1, 294, 3, 294, 5533, 8, 294, 1, 294, 3, 294, 5536, 8, 294, 1, 294, 1, 294, 3, 294, 5540, 8, 294, 1, 294, 3, 294, 5543, 8, 294, 3, 294, 5545, 8, 294, 1, 295, 1, 295, 3, 295, 5549, 8, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 5, 296, 5557, 8, 296, 10, 296, 12, 296, 5560, 9, 296, 3, 296, 5562, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 5567, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5572, 8, 297, 3, 297, 5574, 8, 297, 1, 298, 1, 298, 3, 298, 5578, 8, 298, 1, 299, 1, 299, 1, 299, 5, 299, 5583, 8, 299, 10, 299, 12, 299, 5586, 9, 299, 1, 300, 1, 300, 3, 300, 5590, 8, 300, 1, 300, 3, 300, 5593, 8, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5599, 8, 300, 1, 300, 3, 300, 5602, 8, 300, 3, 300, 5604, 8, 300, 1, 301, 3, 301, 5607, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5613, 8, 301, 1, 301, 3, 301, 5616, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5621, 8, 301, 1, 301, 3, 301, 5624, 8, 301, 3, 301, 5626, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 5638, 8, 302, 1, 303, 1, 303, 3, 303, 5642, 8, 303, 1, 303, 1, 303, 3, 303, 5646, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5651, 8, 303, 1, 303, 3, 303, 5654, 8, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, 308, 5671, 8, 308, 10, 308, 12, 308, 5674, 9, 308, 1, 309, 1, 309, 3, 309, 5678, 8, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5683, 8, 310, 10, 310, 12, 310, 5686, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5692, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5698, 8, 311, 3, 311, 5700, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 5718, 8, 312, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5729, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5744, 8, 314, 3, 314, 5746, 8, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5754, 8, 316, 1, 316, 3, 316, 5757, 8, 316, 1, 316, 3, 316, 5760, 8, 316, 1, 316, 3, 316, 5763, 8, 316, 1, 316, 3, 316, 5766, 8, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 5782, 8, 321, 1, 321, 1, 321, 3, 321, 5786, 8, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5791, 8, 321, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 5799, 8, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 5807, 8, 324, 1, 325, 1, 325, 1, 325, 5, 325, 5812, 8, 325, 10, 325, 12, 325, 5815, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 5855, 8, 329, 10, 329, 12, 329, 5858, 9, 329, 1, 329, 1, 329, 3, 329, 5862, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 5869, 8, 329, 10, 329, 12, 329, 5872, 9, 329, 1, 329, 1, 329, 3, 329, 5876, 8, 329, 1, 329, 3, 329, 5879, 8, 329, 1, 329, 1, 329, 1, 329, 3, 329, 5884, 8, 329, 1, 330, 4, 330, 5887, 8, 330, 11, 330, 12, 330, 5888, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5903, 8, 331, 10, 331, 12, 331, 5906, 9, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5914, 8, 331, 10, 331, 12, 331, 5917, 9, 331, 1, 331, 1, 331, 3, 331, 5921, 8, 331, 1, 331, 1, 331, 3, 331, 5925, 8, 331, 1, 331, 1, 331, 3, 331, 5929, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 5945, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 5, 337, 5962, 8, 337, 10, 337, 12, 337, 5965, 9, 337, 1, 338, 1, 338, 1, 338, 5, 338, 5970, 8, 338, 10, 338, 12, 338, 5973, 9, 338, 1, 339, 3, 339, 5976, 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5990, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5995, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6003, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6009, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 6016, 8, 342, 10, 342, 12, 342, 6019, 9, 342, 1, 343, 1, 343, 1, 343, 5, 343, 6024, 8, 343, 10, 343, 12, 343, 6027, 9, 343, 1, 344, 3, 344, 6030, 8, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6055, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, 6063, 8, 346, 11, 346, 12, 346, 6064, 1, 346, 1, 346, 3, 346, 6069, 8, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 6092, 8, 350, 1, 350, 1, 350, 3, 350, 6096, 8, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6103, 8, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 5, 353, 6112, 8, 353, 10, 353, 12, 353, 6115, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, 5, 354, 6121, 8, 354, 10, 354, 12, 354, 6124, 9, 354, 1, 354, 1, 354, 1, 354, 3, 354, 6129, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 6134, 8, 355, 10, 355, 12, 355, 6137, 9, 355, 1, 356, 1, 356, 1, 356, 5, 356, 6142, 8, 356, 10, 356, 12, 356, 6145, 9, 356, 1, 357, 1, 357, 1, 357, 3, 357, 6150, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6157, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 5, 359, 6163, 8, 359, 10, 359, 12, 359, 6166, 9, 359, 3, 359, 6168, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6183, 8, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 5, 364, 6190, 8, 364, 10, 364, 12, 364, 6193, 9, 364, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6199, 8, 365, 1, 366, 1, 366, 1, 366, 3, 366, 6204, 8, 366, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 0, 0, 369, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 0, 50, 2, 0, 22, 22, 434, 434, 1, 0, 33, 34, 2, 0, 30, 30, 33, 33, 2, 0, 457, 458, 489, 489, 2, 0, 93, 93, 489, 489, 2, 0, 523, 523, 525, 525, 2, 0, 405, 405, 438, 438, 1, 0, 94, 95, 2, 0, 12, 12, 44, 44, 2, 0, 299, 299, 429, 429, 2, 0, 39, 39, 52, 52, 2, 0, 14, 16, 54, 55, 1, 0, 521, 522, 2, 0, 500, 500, 506, 506, 3, 0, 69, 69, 135, 138, 306, 306, 2, 0, 100, 100, 338, 341, 2, 0, 521, 521, 525, 525, 1, 0, 524, 525, 1, 0, 289, 290, 6, 0, 289, 291, 491, 496, 500, 500, 504, 508, 511, 512, 520, 524, 4, 0, 128, 128, 291, 291, 300, 301, 525, 526, 12, 0, 39, 39, 148, 157, 160, 162, 164, 165, 167, 167, 169, 176, 180, 180, 182, 187, 196, 197, 228, 228, 230, 235, 255, 255, 3, 0, 128, 128, 140, 140, 525, 525, 3, 0, 259, 265, 405, 405, 525, 525, 4, 0, 135, 136, 250, 254, 299, 299, 525, 525, 2, 0, 219, 219, 523, 523, 1, 0, 426, 428, 2, 0, 521, 521, 524, 524, 2, 0, 333, 333, 336, 336, 2, 0, 345, 345, 446, 446, 2, 0, 342, 342, 525, 525, 2, 0, 299, 301, 521, 521, 2, 0, 386, 386, 525, 525, 8, 0, 148, 154, 160, 162, 165, 165, 169, 176, 196, 197, 228, 228, 230, 235, 525, 525, 2, 0, 295, 295, 494, 494, 1, 0, 84, 85, 8, 0, 143, 145, 189, 189, 194, 194, 226, 226, 318, 318, 381, 382, 384, 387, 525, 525, 2, 0, 333, 333, 405, 406, 1, 0, 525, 526, 2, 1, 500, 500, 504, 504, 1, 0, 491, 496, 1, 0, 497, 498, 2, 0, 499, 503, 513, 513, 1, 0, 266, 271, 1, 0, 280, 284, 7, 0, 123, 123, 128, 128, 140, 140, 187, 187, 280, 286, 300, 301, 525, 526, 1, 0, 300, 301, 7, 0, 49, 49, 190, 191, 221, 221, 305, 305, 410, 410, 479, 479, 525, 525, 40, 0, 41, 42, 44, 44, 49, 49, 51, 52, 54, 54, 69, 69, 116, 116, 124, 124, 135, 136, 138, 138, 164, 164, 168, 168, 190, 190, 193, 195, 198, 198, 207, 210, 217, 218, 220, 221, 224, 224, 236, 236, 251, 251, 280, 284, 306, 306, 308, 308, 335, 335, 337, 337, 354, 355, 375, 375, 378, 378, 399, 399, 405, 405, 407, 407, 423, 424, 426, 429, 437, 437, 453, 453, 457, 458, 463, 465, 487, 487, 489, 489, 60, 0, 8, 9, 17, 21, 23, 30, 32, 35, 38, 44, 48, 49, 51, 52, 54, 54, 56, 59, 65, 67, 69, 76, 81, 90, 93, 93, 96, 101, 103, 106, 110, 110, 112, 114, 116, 118, 120, 120, 124, 124, 132, 132, 135, 136, 138, 139, 141, 146, 148, 153, 156, 166, 168, 172, 174, 175, 179, 179, 189, 190, 193, 198, 209, 218, 220, 221, 223, 224, 228, 236, 249, 252, 255, 255, 266, 274, 280, 284, 289, 295, 298, 306, 308, 311, 315, 337, 342, 370, 372, 388, 390, 392, 394, 403, 405, 405, 407, 409, 412, 413, 415, 424, 426, 435, 437, 437, 439, 439, 442, 442, 444, 448, 452, 478, 484, 487, 489, 490, 502, 503, 7048, 0, 741, 1, 0, 0, 0, 2, 747, 1, 0, 0, 0, 4, 767, 1, 0, 0, 0, 6, 769, 1, 0, 0, 0, 8, 801, 1, 0, 0, 0, 10, 936, 1, 0, 0, 0, 12, 950, 1, 0, 0, 0, 14, 967, 1, 0, 0, 0, 16, 993, 1, 0, 0, 0, 18, 1034, 1, 0, 0, 0, 20, 1036, 1, 0, 0, 0, 22, 1050, 1, 0, 0, 0, 24, 1066, 1, 0, 0, 0, 26, 1068, 1, 0, 0, 0, 28, 1078, 1, 0, 0, 0, 30, 1085, 1, 0, 0, 0, 32, 1089, 1, 0, 0, 0, 34, 1116, 1, 0, 0, 0, 36, 1143, 1, 0, 0, 0, 38, 1224, 1, 0, 0, 0, 40, 1237, 1, 0, 0, 0, 42, 1307, 1, 0, 0, 0, 44, 1326, 1, 0, 0, 0, 46, 1328, 1, 0, 0, 0, 48, 1336, 1, 0, 0, 0, 50, 1341, 1, 0, 0, 0, 52, 1374, 1, 0, 0, 0, 54, 1376, 1, 0, 0, 0, 56, 1381, 1, 0, 0, 0, 58, 1392, 1, 0, 0, 0, 60, 1397, 1, 0, 0, 0, 62, 1405, 1, 0, 0, 0, 64, 1413, 1, 0, 0, 0, 66, 1421, 1, 0, 0, 0, 68, 1429, 1, 0, 0, 0, 70, 1437, 1, 0, 0, 0, 72, 1445, 1, 0, 0, 0, 74, 1454, 1, 0, 0, 0, 76, 1474, 1, 0, 0, 0, 78, 1476, 1, 0, 0, 0, 80, 1496, 1, 0, 0, 0, 82, 1501, 1, 0, 0, 0, 84, 1507, 1, 0, 0, 0, 86, 1515, 1, 0, 0, 0, 88, 1551, 1, 0, 0, 0, 90, 1599, 1, 0, 0, 0, 92, 1605, 1, 0, 0, 0, 94, 1616, 1, 0, 0, 0, 96, 1618, 1, 0, 0, 0, 98, 1632, 1, 0, 0, 0, 100, 1634, 1, 0, 0, 0, 102, 1643, 1, 0, 0, 0, 104, 1664, 1, 0, 0, 0, 106, 1699, 1, 0, 0, 0, 108, 1737, 1, 0, 0, 0, 110, 1739, 1, 0, 0, 0, 112, 1766, 1, 0, 0, 0, 114, 1769, 1, 0, 0, 0, 116, 1775, 1, 0, 0, 0, 118, 1783, 1, 0, 0, 0, 120, 1790, 1, 0, 0, 0, 122, 1817, 1, 0, 0, 0, 124, 1820, 1, 0, 0, 0, 126, 1843, 1, 0, 0, 0, 128, 1845, 1, 0, 0, 0, 130, 1919, 1, 0, 0, 0, 132, 1933, 1, 0, 0, 0, 134, 1953, 1, 0, 0, 0, 136, 1968, 1, 0, 0, 0, 138, 1970, 1, 0, 0, 0, 140, 1976, 1, 0, 0, 0, 142, 1984, 1, 0, 0, 0, 144, 1986, 1, 0, 0, 0, 146, 1994, 1, 0, 0, 0, 148, 2003, 1, 0, 0, 0, 150, 2029, 1, 0, 0, 0, 152, 2032, 1, 0, 0, 0, 154, 2036, 1, 0, 0, 0, 156, 2039, 1, 0, 0, 0, 158, 2049, 1, 0, 0, 0, 160, 2058, 1, 0, 0, 0, 162, 2060, 1, 0, 0, 0, 164, 2071, 1, 0, 0, 0, 166, 2080, 1, 0, 0, 0, 168, 2082, 1, 0, 0, 0, 170, 2105, 1, 0, 0, 0, 172, 2109, 1, 0, 0, 0, 174, 2143, 1, 0, 0, 0, 176, 2158, 1, 0, 0, 0, 178, 2160, 1, 0, 0, 0, 180, 2168, 1, 0, 0, 0, 182, 2176, 1, 0, 0, 0, 184, 2198, 1, 0, 0, 0, 186, 2217, 1, 0, 0, 0, 188, 2225, 1, 0, 0, 0, 190, 2231, 1, 0, 0, 0, 192, 2234, 1, 0, 0, 0, 194, 2240, 1, 0, 0, 0, 196, 2250, 1, 0, 0, 0, 198, 2258, 1, 0, 0, 0, 200, 2260, 1, 0, 0, 0, 202, 2267, 1, 0, 0, 0, 204, 2275, 1, 0, 0, 0, 206, 2280, 1, 0, 0, 0, 208, 2613, 1, 0, 0, 0, 210, 2615, 1, 0, 0, 0, 212, 2622, 1, 0, 0, 0, 214, 2632, 1, 0, 0, 0, 216, 2646, 1, 0, 0, 0, 218, 2655, 1, 0, 0, 0, 220, 2665, 1, 0, 0, 0, 222, 2677, 1, 0, 0, 0, 224, 2682, 1, 0, 0, 0, 226, 2687, 1, 0, 0, 0, 228, 2730, 1, 0, 0, 0, 230, 2752, 1, 0, 0, 0, 232, 2754, 1, 0, 0, 0, 234, 2775, 1, 0, 0, 0, 236, 2787, 1, 0, 0, 0, 238, 2797, 1, 0, 0, 0, 240, 2799, 1, 0, 0, 0, 242, 2801, 1, 0, 0, 0, 244, 2805, 1, 0, 0, 0, 246, 2808, 1, 0, 0, 0, 248, 2820, 1, 0, 0, 0, 250, 2836, 1, 0, 0, 0, 252, 2838, 1, 0, 0, 0, 254, 2844, 1, 0, 0, 0, 256, 2846, 1, 0, 0, 0, 258, 2850, 1, 0, 0, 0, 260, 2865, 1, 0, 0, 0, 262, 2881, 1, 0, 0, 0, 264, 2915, 1, 0, 0, 0, 266, 2929, 1, 0, 0, 0, 268, 2939, 1, 0, 0, 0, 270, 2944, 1, 0, 0, 0, 272, 2962, 1, 0, 0, 0, 274, 2980, 1, 0, 0, 0, 276, 2982, 1, 0, 0, 0, 278, 2985, 1, 0, 0, 0, 280, 2989, 1, 0, 0, 0, 282, 3003, 1, 0, 0, 0, 284, 3006, 1, 0, 0, 0, 286, 3020, 1, 0, 0, 0, 288, 3048, 1, 0, 0, 0, 290, 3052, 1, 0, 0, 0, 292, 3054, 1, 0, 0, 0, 294, 3056, 1, 0, 0, 0, 296, 3061, 1, 0, 0, 0, 298, 3083, 1, 0, 0, 0, 300, 3085, 1, 0, 0, 0, 302, 3102, 1, 0, 0, 0, 304, 3106, 1, 0, 0, 0, 306, 3118, 1, 0, 0, 0, 308, 3121, 1, 0, 0, 0, 310, 3184, 1, 0, 0, 0, 312, 3186, 1, 0, 0, 0, 314, 3194, 1, 0, 0, 0, 316, 3198, 1, 0, 0, 0, 318, 3226, 1, 0, 0, 0, 320, 3228, 1, 0, 0, 0, 322, 3234, 1, 0, 0, 0, 324, 3239, 1, 0, 0, 0, 326, 3244, 1, 0, 0, 0, 328, 3252, 1, 0, 0, 0, 330, 3260, 1, 0, 0, 0, 332, 3262, 1, 0, 0, 0, 334, 3270, 1, 0, 0, 0, 336, 3274, 1, 0, 0, 0, 338, 3281, 1, 0, 0, 0, 340, 3294, 1, 0, 0, 0, 342, 3298, 1, 0, 0, 0, 344, 3301, 1, 0, 0, 0, 346, 3309, 1, 0, 0, 0, 348, 3313, 1, 0, 0, 0, 350, 3321, 1, 0, 0, 0, 352, 3325, 1, 0, 0, 0, 354, 3333, 1, 0, 0, 0, 356, 3341, 1, 0, 0, 0, 358, 3346, 1, 0, 0, 0, 360, 3350, 1, 0, 0, 0, 362, 3352, 1, 0, 0, 0, 364, 3360, 1, 0, 0, 0, 366, 3371, 1, 0, 0, 0, 368, 3373, 1, 0, 0, 0, 370, 3385, 1, 0, 0, 0, 372, 3387, 1, 0, 0, 0, 374, 3395, 1, 0, 0, 0, 376, 3407, 1, 0, 0, 0, 378, 3409, 1, 0, 0, 0, 380, 3417, 1, 0, 0, 0, 382, 3419, 1, 0, 0, 0, 384, 3433, 1, 0, 0, 0, 386, 3435, 1, 0, 0, 0, 388, 3473, 1, 0, 0, 0, 390, 3475, 1, 0, 0, 0, 392, 3501, 1, 0, 0, 0, 394, 3507, 1, 0, 0, 0, 396, 3510, 1, 0, 0, 0, 398, 3543, 1, 0, 0, 0, 400, 3545, 1, 0, 0, 0, 402, 3547, 1, 0, 0, 0, 404, 3652, 1, 0, 0, 0, 406, 3654, 1, 0, 0, 0, 408, 3656, 1, 0, 0, 0, 410, 3713, 1, 0, 0, 0, 412, 3753, 1, 0, 0, 0, 414, 3755, 1, 0, 0, 0, 416, 3772, 1, 0, 0, 0, 418, 3777, 1, 0, 0, 0, 420, 3800, 1, 0, 0, 0, 422, 3802, 1, 0, 0, 0, 424, 3813, 1, 0, 0, 0, 426, 3819, 1, 0, 0, 0, 428, 3821, 1, 0, 0, 0, 430, 3823, 1, 0, 0, 0, 432, 3825, 1, 0, 0, 0, 434, 3850, 1, 0, 0, 0, 436, 3865, 1, 0, 0, 0, 438, 3876, 1, 0, 0, 0, 440, 3878, 1, 0, 0, 0, 442, 3882, 1, 0, 0, 0, 444, 3897, 1, 0, 0, 0, 446, 3901, 1, 0, 0, 0, 448, 3904, 1, 0, 0, 0, 450, 3910, 1, 0, 0, 0, 452, 3955, 1, 0, 0, 0, 454, 3957, 1, 0, 0, 0, 456, 3995, 1, 0, 0, 0, 458, 3999, 1, 0, 0, 0, 460, 4009, 1, 0, 0, 0, 462, 4020, 1, 0, 0, 0, 464, 4022, 1, 0, 0, 0, 466, 4034, 1, 0, 0, 0, 468, 4048, 1, 0, 0, 0, 470, 4066, 1, 0, 0, 0, 472, 4068, 1, 0, 0, 0, 474, 4071, 1, 0, 0, 0, 476, 4092, 1, 0, 0, 0, 478, 4112, 1, 0, 0, 0, 480, 4119, 1, 0, 0, 0, 482, 4134, 1, 0, 0, 0, 484, 4136, 1, 0, 0, 0, 486, 4144, 1, 0, 0, 0, 488, 4160, 1, 0, 0, 0, 490, 4195, 1, 0, 0, 0, 492, 4197, 1, 0, 0, 0, 494, 4201, 1, 0, 0, 0, 496, 4205, 1, 0, 0, 0, 498, 4222, 1, 0, 0, 0, 500, 4224, 1, 0, 0, 0, 502, 4250, 1, 0, 0, 0, 504, 4265, 1, 0, 0, 0, 506, 4273, 1, 0, 0, 0, 508, 4284, 1, 0, 0, 0, 510, 4308, 1, 0, 0, 0, 512, 4319, 1, 0, 0, 0, 514, 4331, 1, 0, 0, 0, 516, 4335, 1, 0, 0, 0, 518, 4357, 1, 0, 0, 0, 520, 4380, 1, 0, 0, 0, 522, 4384, 1, 0, 0, 0, 524, 4428, 1, 0, 0, 0, 526, 4458, 1, 0, 0, 0, 528, 4557, 1, 0, 0, 0, 530, 4592, 1, 0, 0, 0, 532, 4594, 1, 0, 0, 0, 534, 4599, 1, 0, 0, 0, 536, 4637, 1, 0, 0, 0, 538, 4641, 1, 0, 0, 0, 540, 4662, 1, 0, 0, 0, 542, 4678, 1, 0, 0, 0, 544, 4684, 1, 0, 0, 0, 546, 4695, 1, 0, 0, 0, 548, 4701, 1, 0, 0, 0, 550, 4708, 1, 0, 0, 0, 552, 4718, 1, 0, 0, 0, 554, 4734, 1, 0, 0, 0, 556, 4776, 1, 0, 0, 0, 558, 4778, 1, 0, 0, 0, 560, 4780, 1, 0, 0, 0, 562, 4788, 1, 0, 0, 0, 564, 4794, 1, 0, 0, 0, 566, 5231, 1, 0, 0, 0, 568, 5254, 1, 0, 0, 0, 570, 5256, 1, 0, 0, 0, 572, 5264, 1, 0, 0, 0, 574, 5266, 1, 0, 0, 0, 576, 5274, 1, 0, 0, 0, 578, 5431, 1, 0, 0, 0, 580, 5433, 1, 0, 0, 0, 582, 5479, 1, 0, 0, 0, 584, 5495, 1, 0, 0, 0, 586, 5497, 1, 0, 0, 0, 588, 5544, 1, 0, 0, 0, 590, 5546, 1, 0, 0, 0, 592, 5561, 1, 0, 0, 0, 594, 5573, 1, 0, 0, 0, 596, 5577, 1, 0, 0, 0, 598, 5579, 1, 0, 0, 0, 600, 5603, 1, 0, 0, 0, 602, 5625, 1, 0, 0, 0, 604, 5637, 1, 0, 0, 0, 606, 5653, 1, 0, 0, 0, 608, 5655, 1, 0, 0, 0, 610, 5658, 1, 0, 0, 0, 612, 5661, 1, 0, 0, 0, 614, 5664, 1, 0, 0, 0, 616, 5667, 1, 0, 0, 0, 618, 5675, 1, 0, 0, 0, 620, 5679, 1, 0, 0, 0, 622, 5699, 1, 0, 0, 0, 624, 5717, 1, 0, 0, 0, 626, 5719, 1, 0, 0, 0, 628, 5745, 1, 0, 0, 0, 630, 5747, 1, 0, 0, 0, 632, 5765, 1, 0, 0, 0, 634, 5767, 1, 0, 0, 0, 636, 5769, 1, 0, 0, 0, 638, 5771, 1, 0, 0, 0, 640, 5775, 1, 0, 0, 0, 642, 5790, 1, 0, 0, 0, 644, 5798, 1, 0, 0, 0, 646, 5800, 1, 0, 0, 0, 648, 5806, 1, 0, 0, 0, 650, 5808, 1, 0, 0, 0, 652, 5816, 1, 0, 0, 0, 654, 5818, 1, 0, 0, 0, 656, 5821, 1, 0, 0, 0, 658, 5883, 1, 0, 0, 0, 660, 5886, 1, 0, 0, 0, 662, 5890, 1, 0, 0, 0, 664, 5930, 1, 0, 0, 0, 666, 5944, 1, 0, 0, 0, 668, 5946, 1, 0, 0, 0, 670, 5948, 1, 0, 0, 0, 672, 5956, 1, 0, 0, 0, 674, 5958, 1, 0, 0, 0, 676, 5966, 1, 0, 0, 0, 678, 5975, 1, 0, 0, 0, 680, 5979, 1, 0, 0, 0, 682, 6010, 1, 0, 0, 0, 684, 6012, 1, 0, 0, 0, 686, 6020, 1, 0, 0, 0, 688, 6029, 1, 0, 0, 0, 690, 6054, 1, 0, 0, 0, 692, 6056, 1, 0, 0, 0, 694, 6072, 1, 0, 0, 0, 696, 6079, 1, 0, 0, 0, 698, 6086, 1, 0, 0, 0, 700, 6088, 1, 0, 0, 0, 702, 6099, 1, 0, 0, 0, 704, 6106, 1, 0, 0, 0, 706, 6108, 1, 0, 0, 0, 708, 6128, 1, 0, 0, 0, 710, 6130, 1, 0, 0, 0, 712, 6138, 1, 0, 0, 0, 714, 6149, 1, 0, 0, 0, 716, 6156, 1, 0, 0, 0, 718, 6158, 1, 0, 0, 0, 720, 6171, 1, 0, 0, 0, 722, 6173, 1, 0, 0, 0, 724, 6175, 1, 0, 0, 0, 726, 6184, 1, 0, 0, 0, 728, 6186, 1, 0, 0, 0, 730, 6198, 1, 0, 0, 0, 732, 6203, 1, 0, 0, 0, 734, 6205, 1, 0, 0, 0, 736, 6207, 1, 0, 0, 0, 738, 740, 3, 2, 1, 0, 739, 738, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 745, 5, 0, 0, 1, 745, 1, 1, 0, 0, 0, 746, 748, 3, 722, 361, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 752, 1, 0, 0, 0, 749, 753, 3, 4, 2, 0, 750, 753, 3, 564, 282, 0, 751, 753, 3, 624, 312, 0, 752, 749, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 751, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 756, 5, 504, 0, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 5, 500, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 3, 1, 0, 0, 0, 760, 768, 3, 8, 4, 0, 761, 768, 3, 10, 5, 0, 762, 768, 3, 38, 19, 0, 763, 768, 3, 40, 20, 0, 764, 768, 3, 42, 21, 0, 765, 768, 3, 6, 3, 0, 766, 768, 3, 44, 22, 0, 767, 760, 1, 0, 0, 0, 767, 761, 1, 0, 0, 0, 767, 762, 1, 0, 0, 0, 767, 763, 1, 0, 0, 0, 767, 764, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 767, 766, 1, 0, 0, 0, 768, 5, 1, 0, 0, 0, 769, 770, 5, 397, 0, 0, 770, 771, 5, 189, 0, 0, 771, 772, 5, 48, 0, 0, 772, 777, 3, 574, 287, 0, 773, 774, 5, 505, 0, 0, 774, 776, 3, 574, 287, 0, 775, 773, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 72, 0, 0, 781, 786, 3, 572, 286, 0, 782, 783, 5, 289, 0, 0, 783, 785, 3, 572, 286, 0, 784, 782, 1, 0, 0, 0, 785, 788, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 794, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 792, 5, 293, 0, 0, 790, 793, 3, 712, 356, 0, 791, 793, 5, 525, 0, 0, 792, 790, 1, 0, 0, 0, 792, 791, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 789, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 440, 0, 0, 797, 799, 5, 441, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 7, 1, 0, 0, 0, 800, 802, 3, 722, 361, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 806, 1, 0, 0, 0, 803, 805, 3, 724, 362, 0, 804, 803, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 812, 5, 17, 0, 0, 810, 811, 5, 290, 0, 0, 811, 813, 7, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 839, 1, 0, 0, 0, 814, 840, 3, 90, 45, 0, 815, 840, 3, 122, 61, 0, 816, 840, 3, 138, 69, 0, 817, 840, 3, 182, 91, 0, 818, 840, 3, 184, 92, 0, 819, 840, 3, 336, 168, 0, 820, 840, 3, 338, 169, 0, 821, 840, 3, 144, 72, 0, 822, 840, 3, 172, 86, 0, 823, 840, 3, 442, 221, 0, 824, 840, 3, 450, 225, 0, 825, 840, 3, 458, 229, 0, 826, 840, 3, 466, 233, 0, 827, 840, 3, 484, 242, 0, 828, 840, 3, 486, 243, 0, 829, 840, 3, 488, 244, 0, 830, 840, 3, 508, 254, 0, 831, 840, 3, 510, 255, 0, 832, 840, 3, 516, 258, 0, 833, 840, 3, 522, 261, 0, 834, 840, 3, 50, 25, 0, 835, 840, 3, 78, 39, 0, 836, 840, 3, 156, 78, 0, 837, 840, 3, 168, 84, 0, 838, 840, 3, 464, 232, 0, 839, 814, 1, 0, 0, 0, 839, 815, 1, 0, 0, 0, 839, 816, 1, 0, 0, 0, 839, 817, 1, 0, 0, 0, 839, 818, 1, 0, 0, 0, 839, 819, 1, 0, 0, 0, 839, 820, 1, 0, 0, 0, 839, 821, 1, 0, 0, 0, 839, 822, 1, 0, 0, 0, 839, 823, 1, 0, 0, 0, 839, 824, 1, 0, 0, 0, 839, 825, 1, 0, 0, 0, 839, 826, 1, 0, 0, 0, 839, 827, 1, 0, 0, 0, 839, 828, 1, 0, 0, 0, 839, 829, 1, 0, 0, 0, 839, 830, 1, 0, 0, 0, 839, 831, 1, 0, 0, 0, 839, 832, 1, 0, 0, 0, 839, 833, 1, 0, 0, 0, 839, 834, 1, 0, 0, 0, 839, 835, 1, 0, 0, 0, 839, 836, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 838, 1, 0, 0, 0, 840, 9, 1, 0, 0, 0, 841, 842, 5, 18, 0, 0, 842, 843, 5, 23, 0, 0, 843, 845, 3, 712, 356, 0, 844, 846, 3, 130, 65, 0, 845, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 937, 1, 0, 0, 0, 849, 850, 5, 18, 0, 0, 850, 851, 5, 27, 0, 0, 851, 853, 3, 712, 356, 0, 852, 854, 3, 132, 66, 0, 853, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 937, 1, 0, 0, 0, 857, 858, 5, 18, 0, 0, 858, 859, 5, 28, 0, 0, 859, 861, 3, 712, 356, 0, 860, 862, 3, 134, 67, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 937, 1, 0, 0, 0, 865, 866, 5, 18, 0, 0, 866, 867, 5, 36, 0, 0, 867, 869, 3, 712, 356, 0, 868, 870, 3, 136, 68, 0, 869, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 937, 1, 0, 0, 0, 873, 874, 5, 18, 0, 0, 874, 875, 5, 318, 0, 0, 875, 876, 5, 343, 0, 0, 876, 877, 3, 712, 356, 0, 877, 878, 5, 48, 0, 0, 878, 883, 3, 494, 247, 0, 879, 880, 5, 505, 0, 0, 880, 882, 3, 494, 247, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 937, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 18, 0, 0, 887, 888, 5, 318, 0, 0, 888, 889, 5, 316, 0, 0, 889, 890, 3, 712, 356, 0, 890, 891, 5, 48, 0, 0, 891, 896, 3, 494, 247, 0, 892, 893, 5, 505, 0, 0, 893, 895, 3, 494, 247, 0, 894, 892, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 937, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 18, 0, 0, 900, 901, 5, 215, 0, 0, 901, 902, 5, 93, 0, 0, 902, 903, 7, 1, 0, 0, 903, 904, 3, 712, 356, 0, 904, 905, 5, 188, 0, 0, 905, 907, 5, 525, 0, 0, 906, 908, 3, 12, 6, 0, 907, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 937, 1, 0, 0, 0, 911, 912, 5, 18, 0, 0, 912, 913, 5, 447, 0, 0, 913, 937, 3, 556, 278, 0, 914, 915, 5, 18, 0, 0, 915, 916, 5, 33, 0, 0, 916, 917, 3, 712, 356, 0, 917, 919, 5, 509, 0, 0, 918, 920, 3, 16, 8, 0, 919, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 5, 510, 0, 0, 924, 937, 1, 0, 0, 0, 925, 926, 5, 18, 0, 0, 926, 927, 5, 34, 0, 0, 927, 928, 3, 712, 356, 0, 928, 930, 5, 509, 0, 0, 929, 931, 3, 16, 8, 0, 930, 929, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 510, 0, 0, 935, 937, 1, 0, 0, 0, 936, 841, 1, 0, 0, 0, 936, 849, 1, 0, 0, 0, 936, 857, 1, 0, 0, 0, 936, 865, 1, 0, 0, 0, 936, 873, 1, 0, 0, 0, 936, 886, 1, 0, 0, 0, 936, 899, 1, 0, 0, 0, 936, 911, 1, 0, 0, 0, 936, 914, 1, 0, 0, 0, 936, 925, 1, 0, 0, 0, 937, 11, 1, 0, 0, 0, 938, 939, 5, 48, 0, 0, 939, 944, 3, 14, 7, 0, 940, 941, 5, 505, 0, 0, 941, 943, 3, 14, 7, 0, 942, 940, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 951, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 5, 216, 0, 0, 948, 949, 5, 212, 0, 0, 949, 951, 5, 213, 0, 0, 950, 938, 1, 0, 0, 0, 950, 947, 1, 0, 0, 0, 951, 13, 1, 0, 0, 0, 952, 953, 5, 209, 0, 0, 953, 954, 5, 494, 0, 0, 954, 968, 5, 521, 0, 0, 955, 956, 5, 210, 0, 0, 956, 957, 5, 494, 0, 0, 957, 968, 5, 521, 0, 0, 958, 959, 5, 521, 0, 0, 959, 960, 5, 494, 0, 0, 960, 968, 5, 521, 0, 0, 961, 962, 5, 521, 0, 0, 962, 963, 5, 494, 0, 0, 963, 968, 5, 93, 0, 0, 964, 965, 5, 521, 0, 0, 965, 966, 5, 494, 0, 0, 966, 968, 5, 489, 0, 0, 967, 952, 1, 0, 0, 0, 967, 955, 1, 0, 0, 0, 967, 958, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 964, 1, 0, 0, 0, 968, 15, 1, 0, 0, 0, 969, 971, 3, 18, 9, 0, 970, 972, 5, 504, 0, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 994, 1, 0, 0, 0, 973, 975, 3, 24, 12, 0, 974, 976, 5, 504, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 994, 1, 0, 0, 0, 977, 979, 3, 26, 13, 0, 978, 980, 5, 504, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 994, 1, 0, 0, 0, 981, 983, 3, 28, 14, 0, 982, 984, 5, 504, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 994, 1, 0, 0, 0, 985, 987, 3, 30, 15, 0, 986, 988, 5, 504, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, 0, 0, 989, 991, 3, 32, 16, 0, 990, 992, 5, 504, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 1, 0, 0, 0, 993, 969, 1, 0, 0, 0, 993, 973, 1, 0, 0, 0, 993, 977, 1, 0, 0, 0, 993, 981, 1, 0, 0, 0, 993, 985, 1, 0, 0, 0, 993, 989, 1, 0, 0, 0, 994, 17, 1, 0, 0, 0, 995, 996, 5, 48, 0, 0, 996, 997, 5, 35, 0, 0, 997, 998, 5, 494, 0, 0, 998, 1011, 3, 712, 356, 0, 999, 1000, 5, 359, 0, 0, 1000, 1001, 5, 507, 0, 0, 1001, 1006, 3, 20, 10, 0, 1002, 1003, 5, 505, 0, 0, 1003, 1005, 3, 20, 10, 0, 1004, 1002, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 508, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 999, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1035, 1, 0, 0, 0, 1013, 1014, 5, 48, 0, 0, 1014, 1015, 3, 22, 11, 0, 1015, 1016, 5, 93, 0, 0, 1016, 1017, 3, 714, 357, 0, 1017, 1035, 1, 0, 0, 0, 1018, 1019, 5, 48, 0, 0, 1019, 1020, 5, 507, 0, 0, 1020, 1025, 3, 22, 11, 0, 1021, 1022, 5, 505, 0, 0, 1022, 1024, 3, 22, 11, 0, 1023, 1021, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1029, 5, 508, 0, 0, 1029, 1030, 5, 93, 0, 0, 1030, 1031, 3, 714, 357, 0, 1031, 1035, 1, 0, 0, 0, 1032, 1033, 5, 48, 0, 0, 1033, 1035, 3, 22, 11, 0, 1034, 995, 1, 0, 0, 0, 1034, 1013, 1, 0, 0, 0, 1034, 1018, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 19, 1, 0, 0, 0, 1036, 1037, 3, 714, 357, 0, 1037, 1038, 5, 76, 0, 0, 1038, 1039, 3, 714, 357, 0, 1039, 21, 1, 0, 0, 0, 1040, 1041, 5, 193, 0, 0, 1041, 1042, 5, 494, 0, 0, 1042, 1051, 3, 410, 205, 0, 1043, 1044, 3, 714, 357, 0, 1044, 1045, 5, 494, 0, 0, 1045, 1046, 3, 434, 217, 0, 1046, 1051, 1, 0, 0, 0, 1047, 1048, 5, 521, 0, 0, 1048, 1049, 5, 494, 0, 0, 1049, 1051, 3, 434, 217, 0, 1050, 1040, 1, 0, 0, 0, 1050, 1043, 1, 0, 0, 0, 1050, 1047, 1, 0, 0, 0, 1051, 23, 1, 0, 0, 0, 1052, 1053, 5, 394, 0, 0, 1053, 1054, 5, 396, 0, 0, 1054, 1055, 3, 714, 357, 0, 1055, 1056, 5, 509, 0, 0, 1056, 1057, 3, 394, 197, 0, 1057, 1058, 5, 510, 0, 0, 1058, 1067, 1, 0, 0, 0, 1059, 1060, 5, 394, 0, 0, 1060, 1061, 5, 395, 0, 0, 1061, 1062, 3, 714, 357, 0, 1062, 1063, 5, 509, 0, 0, 1063, 1064, 3, 394, 197, 0, 1064, 1065, 5, 510, 0, 0, 1065, 1067, 1, 0, 0, 0, 1066, 1052, 1, 0, 0, 0, 1066, 1059, 1, 0, 0, 0, 1067, 25, 1, 0, 0, 0, 1068, 1069, 5, 19, 0, 0, 1069, 1070, 5, 188, 0, 0, 1070, 1075, 3, 714, 357, 0, 1071, 1072, 5, 505, 0, 0, 1072, 1074, 3, 714, 357, 0, 1073, 1071, 1, 0, 0, 0, 1074, 1077, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 27, 1, 0, 0, 0, 1077, 1075, 1, 0, 0, 0, 1078, 1079, 5, 434, 0, 0, 1079, 1080, 3, 714, 357, 0, 1080, 1081, 5, 139, 0, 0, 1081, 1082, 5, 509, 0, 0, 1082, 1083, 3, 394, 197, 0, 1083, 1084, 5, 510, 0, 0, 1084, 29, 1, 0, 0, 0, 1085, 1086, 5, 47, 0, 0, 1086, 1087, 5, 205, 0, 0, 1087, 1088, 3, 354, 177, 0, 1088, 31, 1, 0, 0, 0, 1089, 1090, 5, 19, 0, 0, 1090, 1091, 5, 205, 0, 0, 1091, 1092, 5, 524, 0, 0, 1092, 33, 1, 0, 0, 0, 1093, 1094, 5, 378, 0, 0, 1094, 1095, 7, 2, 0, 0, 1095, 1098, 3, 712, 356, 0, 1096, 1097, 5, 433, 0, 0, 1097, 1099, 3, 712, 356, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1117, 1, 0, 0, 0, 1100, 1101, 5, 379, 0, 0, 1101, 1102, 5, 33, 0, 0, 1102, 1117, 3, 712, 356, 0, 1103, 1104, 5, 291, 0, 0, 1104, 1105, 5, 380, 0, 0, 1105, 1106, 5, 33, 0, 0, 1106, 1117, 3, 712, 356, 0, 1107, 1108, 5, 376, 0, 0, 1108, 1112, 5, 507, 0, 0, 1109, 1111, 3, 36, 18, 0, 1110, 1109, 1, 0, 0, 0, 1111, 1114, 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1115, 1117, 5, 508, 0, 0, 1116, 1093, 1, 0, 0, 0, 1116, 1100, 1, 0, 0, 0, 1116, 1103, 1, 0, 0, 0, 1116, 1107, 1, 0, 0, 0, 1117, 35, 1, 0, 0, 0, 1118, 1119, 5, 376, 0, 0, 1119, 1120, 5, 156, 0, 0, 1120, 1125, 5, 521, 0, 0, 1121, 1122, 5, 33, 0, 0, 1122, 1126, 3, 712, 356, 0, 1123, 1124, 5, 30, 0, 0, 1124, 1126, 3, 712, 356, 0, 1125, 1121, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 1, 0, 0, 0, 1127, 1129, 5, 504, 0, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1144, 1, 0, 0, 0, 1130, 1131, 5, 376, 0, 0, 1131, 1132, 5, 521, 0, 0, 1132, 1136, 5, 507, 0, 0, 1133, 1135, 3, 36, 18, 0, 1134, 1133, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1141, 5, 508, 0, 0, 1140, 1142, 5, 504, 0, 0, 1141, 1140, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 1, 0, 0, 0, 1143, 1118, 1, 0, 0, 0, 1143, 1130, 1, 0, 0, 0, 1144, 37, 1, 0, 0, 0, 1145, 1146, 5, 19, 0, 0, 1146, 1147, 5, 23, 0, 0, 1147, 1225, 3, 712, 356, 0, 1148, 1149, 5, 19, 0, 0, 1149, 1150, 5, 27, 0, 0, 1150, 1225, 3, 712, 356, 0, 1151, 1152, 5, 19, 0, 0, 1152, 1153, 5, 28, 0, 0, 1153, 1225, 3, 712, 356, 0, 1154, 1155, 5, 19, 0, 0, 1155, 1156, 5, 37, 0, 0, 1156, 1225, 3, 712, 356, 0, 1157, 1158, 5, 19, 0, 0, 1158, 1159, 5, 30, 0, 0, 1159, 1225, 3, 712, 356, 0, 1160, 1161, 5, 19, 0, 0, 1161, 1162, 5, 31, 0, 0, 1162, 1225, 3, 712, 356, 0, 1163, 1164, 5, 19, 0, 0, 1164, 1165, 5, 33, 0, 0, 1165, 1225, 3, 712, 356, 0, 1166, 1167, 5, 19, 0, 0, 1167, 1168, 5, 34, 0, 0, 1168, 1225, 3, 712, 356, 0, 1169, 1170, 5, 19, 0, 0, 1170, 1171, 5, 29, 0, 0, 1171, 1225, 3, 712, 356, 0, 1172, 1173, 5, 19, 0, 0, 1173, 1174, 5, 36, 0, 0, 1174, 1225, 3, 712, 356, 0, 1175, 1176, 5, 19, 0, 0, 1176, 1177, 5, 114, 0, 0, 1177, 1178, 5, 116, 0, 0, 1178, 1225, 3, 712, 356, 0, 1179, 1180, 5, 19, 0, 0, 1180, 1181, 5, 41, 0, 0, 1181, 1182, 3, 712, 356, 0, 1182, 1183, 5, 93, 0, 0, 1183, 1184, 3, 712, 356, 0, 1184, 1225, 1, 0, 0, 0, 1185, 1186, 5, 19, 0, 0, 1186, 1187, 5, 318, 0, 0, 1187, 1188, 5, 343, 0, 0, 1188, 1225, 3, 712, 356, 0, 1189, 1190, 5, 19, 0, 0, 1190, 1191, 5, 318, 0, 0, 1191, 1192, 5, 316, 0, 0, 1192, 1225, 3, 712, 356, 0, 1193, 1194, 5, 19, 0, 0, 1194, 1195, 5, 444, 0, 0, 1195, 1196, 5, 445, 0, 0, 1196, 1197, 5, 316, 0, 0, 1197, 1225, 3, 712, 356, 0, 1198, 1199, 5, 19, 0, 0, 1199, 1200, 5, 32, 0, 0, 1200, 1225, 3, 712, 356, 0, 1201, 1202, 5, 19, 0, 0, 1202, 1203, 5, 228, 0, 0, 1203, 1204, 5, 229, 0, 0, 1204, 1225, 3, 712, 356, 0, 1205, 1206, 5, 19, 0, 0, 1206, 1207, 5, 333, 0, 0, 1207, 1208, 5, 421, 0, 0, 1208, 1225, 3, 712, 356, 0, 1209, 1210, 5, 19, 0, 0, 1210, 1211, 5, 315, 0, 0, 1211, 1212, 5, 343, 0, 0, 1212, 1225, 3, 712, 356, 0, 1213, 1214, 5, 19, 0, 0, 1214, 1215, 5, 448, 0, 0, 1215, 1225, 5, 521, 0, 0, 1216, 1217, 5, 19, 0, 0, 1217, 1218, 5, 221, 0, 0, 1218, 1219, 5, 521, 0, 0, 1219, 1222, 5, 293, 0, 0, 1220, 1223, 3, 712, 356, 0, 1221, 1223, 5, 525, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1221, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1145, 1, 0, 0, 0, 1224, 1148, 1, 0, 0, 0, 1224, 1151, 1, 0, 0, 0, 1224, 1154, 1, 0, 0, 0, 1224, 1157, 1, 0, 0, 0, 1224, 1160, 1, 0, 0, 0, 1224, 1163, 1, 0, 0, 0, 1224, 1166, 1, 0, 0, 0, 1224, 1169, 1, 0, 0, 0, 1224, 1172, 1, 0, 0, 0, 1224, 1175, 1, 0, 0, 0, 1224, 1179, 1, 0, 0, 0, 1224, 1185, 1, 0, 0, 0, 1224, 1189, 1, 0, 0, 0, 1224, 1193, 1, 0, 0, 0, 1224, 1198, 1, 0, 0, 0, 1224, 1201, 1, 0, 0, 0, 1224, 1205, 1, 0, 0, 0, 1224, 1209, 1, 0, 0, 0, 1224, 1213, 1, 0, 0, 0, 1224, 1216, 1, 0, 0, 0, 1225, 39, 1, 0, 0, 0, 1226, 1227, 5, 20, 0, 0, 1227, 1228, 5, 23, 0, 0, 1228, 1229, 3, 712, 356, 0, 1229, 1230, 5, 430, 0, 0, 1230, 1231, 5, 525, 0, 0, 1231, 1238, 1, 0, 0, 0, 1232, 1233, 5, 20, 0, 0, 1233, 1234, 5, 29, 0, 0, 1234, 1235, 5, 525, 0, 0, 1235, 1236, 5, 430, 0, 0, 1236, 1238, 5, 525, 0, 0, 1237, 1226, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1238, 41, 1, 0, 0, 0, 1239, 1248, 5, 21, 0, 0, 1240, 1249, 5, 33, 0, 0, 1241, 1249, 5, 30, 0, 0, 1242, 1249, 5, 34, 0, 0, 1243, 1249, 5, 31, 0, 0, 1244, 1249, 5, 28, 0, 0, 1245, 1249, 5, 37, 0, 0, 1246, 1247, 5, 357, 0, 0, 1247, 1249, 5, 356, 0, 0, 1248, 1240, 1, 0, 0, 0, 1248, 1241, 1, 0, 0, 0, 1248, 1242, 1, 0, 0, 0, 1248, 1243, 1, 0, 0, 0, 1248, 1244, 1, 0, 0, 0, 1248, 1245, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 3, 712, 356, 0, 1251, 1252, 5, 430, 0, 0, 1252, 1253, 5, 221, 0, 0, 1253, 1259, 5, 521, 0, 0, 1254, 1257, 5, 293, 0, 0, 1255, 1258, 3, 712, 356, 0, 1256, 1258, 5, 525, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1254, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1308, 1, 0, 0, 0, 1261, 1270, 5, 21, 0, 0, 1262, 1271, 5, 33, 0, 0, 1263, 1271, 5, 30, 0, 0, 1264, 1271, 5, 34, 0, 0, 1265, 1271, 5, 31, 0, 0, 1266, 1271, 5, 28, 0, 0, 1267, 1271, 5, 37, 0, 0, 1268, 1269, 5, 357, 0, 0, 1269, 1271, 5, 356, 0, 0, 1270, 1262, 1, 0, 0, 0, 1270, 1263, 1, 0, 0, 0, 1270, 1264, 1, 0, 0, 0, 1270, 1265, 1, 0, 0, 0, 1270, 1266, 1, 0, 0, 0, 1270, 1267, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 3, 712, 356, 0, 1273, 1276, 5, 430, 0, 0, 1274, 1277, 3, 712, 356, 0, 1275, 1277, 5, 525, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1308, 1, 0, 0, 0, 1278, 1279, 5, 21, 0, 0, 1279, 1280, 5, 23, 0, 0, 1280, 1281, 3, 712, 356, 0, 1281, 1284, 5, 430, 0, 0, 1282, 1285, 3, 712, 356, 0, 1283, 1285, 5, 525, 0, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1308, 1, 0, 0, 0, 1286, 1287, 5, 21, 0, 0, 1287, 1288, 5, 221, 0, 0, 1288, 1289, 3, 712, 356, 0, 1289, 1290, 5, 430, 0, 0, 1290, 1291, 5, 221, 0, 0, 1291, 1297, 5, 521, 0, 0, 1292, 1295, 5, 293, 0, 0, 1293, 1296, 3, 712, 356, 0, 1294, 1296, 5, 525, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1294, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1292, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1308, 1, 0, 0, 0, 1299, 1300, 5, 21, 0, 0, 1300, 1301, 5, 221, 0, 0, 1301, 1302, 3, 712, 356, 0, 1302, 1305, 5, 430, 0, 0, 1303, 1306, 3, 712, 356, 0, 1304, 1306, 5, 525, 0, 0, 1305, 1303, 1, 0, 0, 0, 1305, 1304, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1239, 1, 0, 0, 0, 1307, 1261, 1, 0, 0, 0, 1307, 1278, 1, 0, 0, 0, 1307, 1286, 1, 0, 0, 0, 1307, 1299, 1, 0, 0, 0, 1308, 43, 1, 0, 0, 0, 1309, 1327, 3, 46, 23, 0, 1310, 1327, 3, 48, 24, 0, 1311, 1327, 3, 52, 26, 0, 1312, 1327, 3, 54, 27, 0, 1313, 1327, 3, 56, 28, 0, 1314, 1327, 3, 58, 29, 0, 1315, 1327, 3, 60, 30, 0, 1316, 1327, 3, 62, 31, 0, 1317, 1327, 3, 64, 32, 0, 1318, 1327, 3, 66, 33, 0, 1319, 1327, 3, 68, 34, 0, 1320, 1327, 3, 70, 35, 0, 1321, 1327, 3, 72, 36, 0, 1322, 1327, 3, 74, 37, 0, 1323, 1327, 3, 76, 38, 0, 1324, 1327, 3, 80, 40, 0, 1325, 1327, 3, 82, 41, 0, 1326, 1309, 1, 0, 0, 0, 1326, 1310, 1, 0, 0, 0, 1326, 1311, 1, 0, 0, 0, 1326, 1312, 1, 0, 0, 0, 1326, 1313, 1, 0, 0, 0, 1326, 1314, 1, 0, 0, 0, 1326, 1315, 1, 0, 0, 0, 1326, 1316, 1, 0, 0, 0, 1326, 1317, 1, 0, 0, 0, 1326, 1318, 1, 0, 0, 0, 1326, 1319, 1, 0, 0, 0, 1326, 1320, 1, 0, 0, 0, 1326, 1321, 1, 0, 0, 0, 1326, 1322, 1, 0, 0, 0, 1326, 1323, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, 0, 1326, 1325, 1, 0, 0, 0, 1327, 45, 1, 0, 0, 0, 1328, 1329, 5, 17, 0, 0, 1329, 1330, 5, 29, 0, 0, 1330, 1331, 5, 453, 0, 0, 1331, 1334, 3, 712, 356, 0, 1332, 1333, 5, 487, 0, 0, 1333, 1335, 5, 521, 0, 0, 1334, 1332, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 47, 1, 0, 0, 0, 1336, 1337, 5, 19, 0, 0, 1337, 1338, 5, 29, 0, 0, 1338, 1339, 5, 453, 0, 0, 1339, 1340, 3, 712, 356, 0, 1340, 49, 1, 0, 0, 0, 1341, 1342, 5, 465, 0, 0, 1342, 1343, 5, 453, 0, 0, 1343, 1344, 3, 714, 357, 0, 1344, 1345, 5, 507, 0, 0, 1345, 1346, 3, 84, 42, 0, 1346, 1350, 5, 508, 0, 0, 1347, 1348, 5, 459, 0, 0, 1348, 1349, 5, 85, 0, 0, 1349, 1351, 5, 454, 0, 0, 1350, 1347, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 51, 1, 0, 0, 0, 1352, 1353, 5, 18, 0, 0, 1353, 1354, 5, 465, 0, 0, 1354, 1355, 5, 453, 0, 0, 1355, 1356, 3, 714, 357, 0, 1356, 1357, 5, 47, 0, 0, 1357, 1358, 5, 29, 0, 0, 1358, 1359, 5, 454, 0, 0, 1359, 1360, 5, 507, 0, 0, 1360, 1361, 3, 84, 42, 0, 1361, 1362, 5, 508, 0, 0, 1362, 1375, 1, 0, 0, 0, 1363, 1364, 5, 18, 0, 0, 1364, 1365, 5, 465, 0, 0, 1365, 1366, 5, 453, 0, 0, 1366, 1367, 3, 714, 357, 0, 1367, 1368, 5, 133, 0, 0, 1368, 1369, 5, 29, 0, 0, 1369, 1370, 5, 454, 0, 0, 1370, 1371, 5, 507, 0, 0, 1371, 1372, 3, 84, 42, 0, 1372, 1373, 5, 508, 0, 0, 1373, 1375, 1, 0, 0, 0, 1374, 1352, 1, 0, 0, 0, 1374, 1363, 1, 0, 0, 0, 1375, 53, 1, 0, 0, 0, 1376, 1377, 5, 19, 0, 0, 1377, 1378, 5, 465, 0, 0, 1378, 1379, 5, 453, 0, 0, 1379, 1380, 3, 714, 357, 0, 1380, 55, 1, 0, 0, 0, 1381, 1382, 5, 455, 0, 0, 1382, 1383, 3, 84, 42, 0, 1383, 1384, 5, 93, 0, 0, 1384, 1385, 3, 712, 356, 0, 1385, 1386, 5, 507, 0, 0, 1386, 1387, 3, 86, 43, 0, 1387, 1390, 5, 508, 0, 0, 1388, 1389, 5, 72, 0, 0, 1389, 1391, 5, 521, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 57, 1, 0, 0, 0, 1392, 1393, 5, 456, 0, 0, 1393, 1394, 3, 84, 42, 0, 1394, 1395, 5, 93, 0, 0, 1395, 1396, 3, 712, 356, 0, 1396, 59, 1, 0, 0, 0, 1397, 1398, 5, 455, 0, 0, 1398, 1399, 5, 401, 0, 0, 1399, 1400, 5, 93, 0, 0, 1400, 1401, 5, 30, 0, 0, 1401, 1402, 3, 712, 356, 0, 1402, 1403, 5, 430, 0, 0, 1403, 1404, 3, 84, 42, 0, 1404, 61, 1, 0, 0, 0, 1405, 1406, 5, 456, 0, 0, 1406, 1407, 5, 401, 0, 0, 1407, 1408, 5, 93, 0, 0, 1408, 1409, 5, 30, 0, 0, 1409, 1410, 3, 712, 356, 0, 1410, 1411, 5, 71, 0, 0, 1411, 1412, 3, 84, 42, 0, 1412, 63, 1, 0, 0, 0, 1413, 1414, 5, 455, 0, 0, 1414, 1415, 5, 25, 0, 0, 1415, 1416, 5, 93, 0, 0, 1416, 1417, 5, 33, 0, 0, 1417, 1418, 3, 712, 356, 0, 1418, 1419, 5, 430, 0, 0, 1419, 1420, 3, 84, 42, 0, 1420, 65, 1, 0, 0, 0, 1421, 1422, 5, 456, 0, 0, 1422, 1423, 5, 25, 0, 0, 1423, 1424, 5, 93, 0, 0, 1424, 1425, 5, 33, 0, 0, 1425, 1426, 3, 712, 356, 0, 1426, 1427, 5, 71, 0, 0, 1427, 1428, 3, 84, 42, 0, 1428, 67, 1, 0, 0, 0, 1429, 1430, 5, 455, 0, 0, 1430, 1431, 5, 401, 0, 0, 1431, 1432, 5, 93, 0, 0, 1432, 1433, 5, 32, 0, 0, 1433, 1434, 3, 712, 356, 0, 1434, 1435, 5, 430, 0, 0, 1435, 1436, 3, 84, 42, 0, 1436, 69, 1, 0, 0, 0, 1437, 1438, 5, 456, 0, 0, 1438, 1439, 5, 401, 0, 0, 1439, 1440, 5, 93, 0, 0, 1440, 1441, 5, 32, 0, 0, 1441, 1442, 3, 712, 356, 0, 1442, 1443, 5, 71, 0, 0, 1443, 1444, 3, 84, 42, 0, 1444, 71, 1, 0, 0, 0, 1445, 1446, 5, 455, 0, 0, 1446, 1447, 5, 463, 0, 0, 1447, 1448, 5, 93, 0, 0, 1448, 1449, 5, 318, 0, 0, 1449, 1450, 5, 316, 0, 0, 1450, 1451, 3, 712, 356, 0, 1451, 1452, 5, 430, 0, 0, 1452, 1453, 3, 84, 42, 0, 1453, 73, 1, 0, 0, 0, 1454, 1455, 5, 456, 0, 0, 1455, 1456, 5, 463, 0, 0, 1456, 1457, 5, 93, 0, 0, 1457, 1458, 5, 318, 0, 0, 1458, 1459, 5, 316, 0, 0, 1459, 1460, 3, 712, 356, 0, 1460, 1461, 5, 71, 0, 0, 1461, 1462, 3, 84, 42, 0, 1462, 75, 1, 0, 0, 0, 1463, 1464, 5, 18, 0, 0, 1464, 1465, 5, 59, 0, 0, 1465, 1466, 5, 452, 0, 0, 1466, 1467, 5, 464, 0, 0, 1467, 1475, 7, 3, 0, 0, 1468, 1469, 5, 18, 0, 0, 1469, 1470, 5, 59, 0, 0, 1470, 1471, 5, 452, 0, 0, 1471, 1472, 5, 460, 0, 0, 1472, 1473, 5, 490, 0, 0, 1473, 1475, 7, 4, 0, 0, 1474, 1463, 1, 0, 0, 0, 1474, 1468, 1, 0, 0, 0, 1475, 77, 1, 0, 0, 0, 1476, 1477, 5, 460, 0, 0, 1477, 1478, 5, 465, 0, 0, 1478, 1479, 5, 521, 0, 0, 1479, 1480, 5, 355, 0, 0, 1480, 1483, 5, 521, 0, 0, 1481, 1482, 5, 23, 0, 0, 1482, 1484, 3, 712, 356, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 5, 507, 0, 0, 1486, 1491, 3, 714, 357, 0, 1487, 1488, 5, 505, 0, 0, 1488, 1490, 3, 714, 357, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1495, 5, 508, 0, 0, 1495, 79, 1, 0, 0, 0, 1496, 1497, 5, 19, 0, 0, 1497, 1498, 5, 460, 0, 0, 1498, 1499, 5, 465, 0, 0, 1499, 1500, 5, 521, 0, 0, 1500, 81, 1, 0, 0, 0, 1501, 1502, 5, 397, 0, 0, 1502, 1505, 5, 452, 0, 0, 1503, 1504, 5, 293, 0, 0, 1504, 1506, 3, 712, 356, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 83, 1, 0, 0, 0, 1507, 1512, 3, 712, 356, 0, 1508, 1509, 5, 505, 0, 0, 1509, 1511, 3, 712, 356, 0, 1510, 1508, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 85, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1520, 3, 88, 44, 0, 1516, 1517, 5, 505, 0, 0, 1517, 1519, 3, 88, 44, 0, 1518, 1516, 1, 0, 0, 0, 1519, 1522, 1, 0, 0, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 87, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1523, 1552, 5, 17, 0, 0, 1524, 1552, 5, 100, 0, 0, 1525, 1526, 5, 485, 0, 0, 1526, 1552, 5, 499, 0, 0, 1527, 1528, 5, 485, 0, 0, 1528, 1529, 5, 507, 0, 0, 1529, 1534, 5, 525, 0, 0, 1530, 1531, 5, 505, 0, 0, 1531, 1533, 5, 525, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1537, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1537, 1552, 5, 508, 0, 0, 1538, 1539, 5, 486, 0, 0, 1539, 1552, 5, 499, 0, 0, 1540, 1541, 5, 486, 0, 0, 1541, 1542, 5, 507, 0, 0, 1542, 1547, 5, 525, 0, 0, 1543, 1544, 5, 505, 0, 0, 1544, 1546, 5, 525, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1550, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1552, 5, 508, 0, 0, 1551, 1523, 1, 0, 0, 0, 1551, 1524, 1, 0, 0, 0, 1551, 1525, 1, 0, 0, 0, 1551, 1527, 1, 0, 0, 0, 1551, 1538, 1, 0, 0, 0, 1551, 1540, 1, 0, 0, 0, 1552, 89, 1, 0, 0, 0, 1553, 1554, 5, 24, 0, 0, 1554, 1555, 5, 23, 0, 0, 1555, 1557, 3, 712, 356, 0, 1556, 1558, 3, 92, 46, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, 1561, 3, 94, 47, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1600, 1, 0, 0, 0, 1562, 1563, 5, 11, 0, 0, 1563, 1564, 5, 23, 0, 0, 1564, 1566, 3, 712, 356, 0, 1565, 1567, 3, 92, 46, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1570, 3, 94, 47, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1600, 1, 0, 0, 0, 1571, 1572, 5, 25, 0, 0, 1572, 1573, 5, 23, 0, 0, 1573, 1575, 3, 712, 356, 0, 1574, 1576, 3, 94, 47, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 5, 76, 0, 0, 1578, 1580, 5, 507, 0, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1583, 3, 586, 293, 0, 1582, 1584, 5, 508, 0, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1600, 1, 0, 0, 0, 1585, 1586, 5, 26, 0, 0, 1586, 1587, 5, 23, 0, 0, 1587, 1589, 3, 712, 356, 0, 1588, 1590, 3, 94, 47, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1600, 1, 0, 0, 0, 1591, 1592, 5, 23, 0, 0, 1592, 1594, 3, 712, 356, 0, 1593, 1595, 3, 92, 46, 0, 1594, 1593, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1598, 3, 94, 47, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 1, 0, 0, 0, 1599, 1553, 1, 0, 0, 0, 1599, 1562, 1, 0, 0, 0, 1599, 1571, 1, 0, 0, 0, 1599, 1585, 1, 0, 0, 0, 1599, 1591, 1, 0, 0, 0, 1600, 91, 1, 0, 0, 0, 1601, 1602, 5, 46, 0, 0, 1602, 1606, 3, 712, 356, 0, 1603, 1604, 5, 45, 0, 0, 1604, 1606, 3, 712, 356, 0, 1605, 1601, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1606, 93, 1, 0, 0, 0, 1607, 1609, 5, 507, 0, 0, 1608, 1610, 3, 100, 50, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1613, 5, 508, 0, 0, 1612, 1614, 3, 96, 48, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1617, 1, 0, 0, 0, 1615, 1617, 3, 96, 48, 0, 1616, 1607, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 95, 1, 0, 0, 0, 1618, 1625, 3, 98, 49, 0, 1619, 1621, 5, 505, 0, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 3, 98, 49, 0, 1623, 1620, 1, 0, 0, 0, 1624, 1627, 1, 0, 0, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 97, 1, 0, 0, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1629, 5, 410, 0, 0, 1629, 1633, 5, 521, 0, 0, 1630, 1631, 5, 41, 0, 0, 1631, 1633, 3, 114, 57, 0, 1632, 1628, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1633, 99, 1, 0, 0, 0, 1634, 1639, 3, 102, 51, 0, 1635, 1636, 5, 505, 0, 0, 1636, 1638, 3, 102, 51, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 101, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1644, 3, 722, 361, 0, 1643, 1642, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1648, 1, 0, 0, 0, 1645, 1647, 3, 724, 362, 0, 1646, 1645, 1, 0, 0, 0, 1647, 1650, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1648, 1, 0, 0, 0, 1651, 1652, 3, 104, 52, 0, 1652, 1653, 5, 513, 0, 0, 1653, 1657, 3, 108, 54, 0, 1654, 1656, 3, 106, 53, 0, 1655, 1654, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 103, 1, 0, 0, 0, 1659, 1657, 1, 0, 0, 0, 1660, 1665, 5, 525, 0, 0, 1661, 1665, 5, 527, 0, 0, 1662, 1665, 3, 734, 367, 0, 1663, 1665, 5, 38, 0, 0, 1664, 1660, 1, 0, 0, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1663, 1, 0, 0, 0, 1665, 105, 1, 0, 0, 0, 1666, 1669, 5, 7, 0, 0, 1667, 1668, 5, 306, 0, 0, 1668, 1670, 5, 521, 0, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1700, 1, 0, 0, 0, 1671, 1672, 5, 291, 0, 0, 1672, 1675, 5, 292, 0, 0, 1673, 1674, 5, 306, 0, 0, 1674, 1676, 5, 521, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1700, 1, 0, 0, 0, 1677, 1680, 5, 298, 0, 0, 1678, 1679, 5, 306, 0, 0, 1679, 1681, 5, 521, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1700, 1, 0, 0, 0, 1682, 1685, 5, 299, 0, 0, 1683, 1686, 3, 716, 358, 0, 1684, 1686, 3, 672, 336, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1700, 1, 0, 0, 0, 1687, 1690, 5, 305, 0, 0, 1688, 1689, 5, 306, 0, 0, 1689, 1691, 5, 521, 0, 0, 1690, 1688, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1700, 1, 0, 0, 0, 1692, 1697, 5, 314, 0, 0, 1693, 1695, 5, 484, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 3, 712, 356, 0, 1697, 1694, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1666, 1, 0, 0, 0, 1699, 1671, 1, 0, 0, 0, 1699, 1677, 1, 0, 0, 0, 1699, 1682, 1, 0, 0, 0, 1699, 1687, 1, 0, 0, 0, 1699, 1692, 1, 0, 0, 0, 1700, 107, 1, 0, 0, 0, 1701, 1705, 5, 266, 0, 0, 1702, 1703, 5, 507, 0, 0, 1703, 1704, 7, 5, 0, 0, 1704, 1706, 5, 508, 0, 0, 1705, 1702, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1738, 1, 0, 0, 0, 1707, 1738, 5, 267, 0, 0, 1708, 1738, 5, 268, 0, 0, 1709, 1738, 5, 269, 0, 0, 1710, 1738, 5, 270, 0, 0, 1711, 1738, 5, 271, 0, 0, 1712, 1738, 5, 272, 0, 0, 1713, 1738, 5, 273, 0, 0, 1714, 1738, 5, 274, 0, 0, 1715, 1738, 5, 275, 0, 0, 1716, 1738, 5, 276, 0, 0, 1717, 1738, 5, 277, 0, 0, 1718, 1719, 5, 278, 0, 0, 1719, 1720, 5, 507, 0, 0, 1720, 1721, 3, 110, 55, 0, 1721, 1722, 5, 508, 0, 0, 1722, 1738, 1, 0, 0, 0, 1723, 1724, 5, 23, 0, 0, 1724, 1725, 5, 495, 0, 0, 1725, 1726, 5, 525, 0, 0, 1726, 1738, 5, 496, 0, 0, 1727, 1728, 5, 279, 0, 0, 1728, 1738, 3, 712, 356, 0, 1729, 1730, 5, 28, 0, 0, 1730, 1731, 5, 507, 0, 0, 1731, 1732, 3, 712, 356, 0, 1732, 1733, 5, 508, 0, 0, 1733, 1738, 1, 0, 0, 0, 1734, 1735, 5, 13, 0, 0, 1735, 1738, 3, 712, 356, 0, 1736, 1738, 3, 712, 356, 0, 1737, 1701, 1, 0, 0, 0, 1737, 1707, 1, 0, 0, 0, 1737, 1708, 1, 0, 0, 0, 1737, 1709, 1, 0, 0, 0, 1737, 1710, 1, 0, 0, 0, 1737, 1711, 1, 0, 0, 0, 1737, 1712, 1, 0, 0, 0, 1737, 1713, 1, 0, 0, 0, 1737, 1714, 1, 0, 0, 0, 1737, 1715, 1, 0, 0, 0, 1737, 1716, 1, 0, 0, 0, 1737, 1717, 1, 0, 0, 0, 1737, 1718, 1, 0, 0, 0, 1737, 1723, 1, 0, 0, 0, 1737, 1727, 1, 0, 0, 0, 1737, 1729, 1, 0, 0, 0, 1737, 1734, 1, 0, 0, 0, 1737, 1736, 1, 0, 0, 0, 1738, 109, 1, 0, 0, 0, 1739, 1740, 7, 6, 0, 0, 1740, 111, 1, 0, 0, 0, 1741, 1745, 5, 266, 0, 0, 1742, 1743, 5, 507, 0, 0, 1743, 1744, 7, 5, 0, 0, 1744, 1746, 5, 508, 0, 0, 1745, 1742, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1767, 1, 0, 0, 0, 1747, 1767, 5, 267, 0, 0, 1748, 1767, 5, 268, 0, 0, 1749, 1767, 5, 269, 0, 0, 1750, 1767, 5, 270, 0, 0, 1751, 1767, 5, 271, 0, 0, 1752, 1767, 5, 272, 0, 0, 1753, 1767, 5, 273, 0, 0, 1754, 1767, 5, 274, 0, 0, 1755, 1767, 5, 275, 0, 0, 1756, 1767, 5, 276, 0, 0, 1757, 1767, 5, 277, 0, 0, 1758, 1759, 5, 279, 0, 0, 1759, 1767, 3, 712, 356, 0, 1760, 1761, 5, 28, 0, 0, 1761, 1762, 5, 507, 0, 0, 1762, 1763, 3, 712, 356, 0, 1763, 1764, 5, 508, 0, 0, 1764, 1767, 1, 0, 0, 0, 1765, 1767, 3, 712, 356, 0, 1766, 1741, 1, 0, 0, 0, 1766, 1747, 1, 0, 0, 0, 1766, 1748, 1, 0, 0, 0, 1766, 1749, 1, 0, 0, 0, 1766, 1750, 1, 0, 0, 0, 1766, 1751, 1, 0, 0, 0, 1766, 1752, 1, 0, 0, 0, 1766, 1753, 1, 0, 0, 0, 1766, 1754, 1, 0, 0, 0, 1766, 1755, 1, 0, 0, 0, 1766, 1756, 1, 0, 0, 0, 1766, 1757, 1, 0, 0, 0, 1766, 1758, 1, 0, 0, 0, 1766, 1760, 1, 0, 0, 0, 1766, 1765, 1, 0, 0, 0, 1767, 113, 1, 0, 0, 0, 1768, 1770, 5, 525, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 5, 507, 0, 0, 1772, 1773, 3, 116, 58, 0, 1773, 1774, 5, 508, 0, 0, 1774, 115, 1, 0, 0, 0, 1775, 1780, 3, 118, 59, 0, 1776, 1777, 5, 505, 0, 0, 1777, 1779, 3, 118, 59, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1782, 1, 0, 0, 0, 1780, 1778, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 117, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1783, 1785, 3, 120, 60, 0, 1784, 1786, 7, 7, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 119, 1, 0, 0, 0, 1787, 1791, 5, 525, 0, 0, 1788, 1791, 5, 527, 0, 0, 1789, 1791, 3, 734, 367, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1789, 1, 0, 0, 0, 1791, 121, 1, 0, 0, 0, 1792, 1793, 5, 27, 0, 0, 1793, 1794, 3, 712, 356, 0, 1794, 1795, 5, 71, 0, 0, 1795, 1796, 3, 712, 356, 0, 1796, 1797, 5, 430, 0, 0, 1797, 1799, 3, 712, 356, 0, 1798, 1800, 3, 124, 62, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1818, 1, 0, 0, 0, 1801, 1802, 5, 27, 0, 0, 1802, 1803, 3, 712, 356, 0, 1803, 1804, 5, 507, 0, 0, 1804, 1805, 5, 71, 0, 0, 1805, 1806, 3, 712, 356, 0, 1806, 1807, 5, 430, 0, 0, 1807, 1812, 3, 712, 356, 0, 1808, 1809, 5, 505, 0, 0, 1809, 1811, 3, 126, 63, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1816, 5, 508, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1792, 1, 0, 0, 0, 1817, 1801, 1, 0, 0, 0, 1818, 123, 1, 0, 0, 0, 1819, 1821, 3, 126, 63, 0, 1820, 1819, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 125, 1, 0, 0, 0, 1824, 1826, 5, 423, 0, 0, 1825, 1827, 5, 513, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1844, 7, 8, 0, 0, 1829, 1831, 5, 42, 0, 0, 1830, 1832, 5, 513, 0, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1844, 7, 9, 0, 0, 1834, 1836, 5, 51, 0, 0, 1835, 1837, 5, 513, 0, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1844, 7, 10, 0, 0, 1839, 1840, 5, 53, 0, 0, 1840, 1844, 3, 128, 64, 0, 1841, 1842, 5, 410, 0, 0, 1842, 1844, 5, 521, 0, 0, 1843, 1824, 1, 0, 0, 0, 1843, 1829, 1, 0, 0, 0, 1843, 1834, 1, 0, 0, 0, 1843, 1839, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 127, 1, 0, 0, 0, 1845, 1846, 7, 11, 0, 0, 1846, 129, 1, 0, 0, 0, 1847, 1848, 5, 47, 0, 0, 1848, 1849, 5, 38, 0, 0, 1849, 1920, 3, 102, 51, 0, 1850, 1851, 5, 47, 0, 0, 1851, 1852, 5, 39, 0, 0, 1852, 1920, 3, 102, 51, 0, 1853, 1854, 5, 20, 0, 0, 1854, 1855, 5, 38, 0, 0, 1855, 1856, 3, 104, 52, 0, 1856, 1857, 5, 430, 0, 0, 1857, 1858, 3, 104, 52, 0, 1858, 1920, 1, 0, 0, 0, 1859, 1860, 5, 20, 0, 0, 1860, 1861, 5, 39, 0, 0, 1861, 1862, 3, 104, 52, 0, 1862, 1863, 5, 430, 0, 0, 1863, 1864, 3, 104, 52, 0, 1864, 1920, 1, 0, 0, 0, 1865, 1866, 5, 22, 0, 0, 1866, 1867, 5, 38, 0, 0, 1867, 1869, 3, 104, 52, 0, 1868, 1870, 5, 513, 0, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1875, 3, 108, 54, 0, 1872, 1874, 3, 106, 53, 0, 1873, 1872, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1920, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1879, 5, 22, 0, 0, 1879, 1880, 5, 39, 0, 0, 1880, 1882, 3, 104, 52, 0, 1881, 1883, 5, 513, 0, 0, 1882, 1881, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1888, 3, 108, 54, 0, 1885, 1887, 3, 106, 53, 0, 1886, 1885, 1, 0, 0, 0, 1887, 1890, 1, 0, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1920, 1, 0, 0, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1892, 5, 19, 0, 0, 1892, 1893, 5, 38, 0, 0, 1893, 1920, 3, 104, 52, 0, 1894, 1895, 5, 19, 0, 0, 1895, 1896, 5, 39, 0, 0, 1896, 1920, 3, 104, 52, 0, 1897, 1898, 5, 48, 0, 0, 1898, 1899, 5, 50, 0, 0, 1899, 1920, 5, 521, 0, 0, 1900, 1901, 5, 48, 0, 0, 1901, 1902, 5, 410, 0, 0, 1902, 1920, 5, 521, 0, 0, 1903, 1904, 5, 48, 0, 0, 1904, 1905, 5, 43, 0, 0, 1905, 1920, 5, 42, 0, 0, 1906, 1907, 5, 48, 0, 0, 1907, 1908, 5, 49, 0, 0, 1908, 1909, 5, 507, 0, 0, 1909, 1910, 5, 523, 0, 0, 1910, 1911, 5, 505, 0, 0, 1911, 1912, 5, 523, 0, 0, 1912, 1920, 5, 508, 0, 0, 1913, 1914, 5, 47, 0, 0, 1914, 1915, 5, 41, 0, 0, 1915, 1920, 3, 114, 57, 0, 1916, 1917, 5, 19, 0, 0, 1917, 1918, 5, 41, 0, 0, 1918, 1920, 5, 525, 0, 0, 1919, 1847, 1, 0, 0, 0, 1919, 1850, 1, 0, 0, 0, 1919, 1853, 1, 0, 0, 0, 1919, 1859, 1, 0, 0, 0, 1919, 1865, 1, 0, 0, 0, 1919, 1878, 1, 0, 0, 0, 1919, 1891, 1, 0, 0, 0, 1919, 1894, 1, 0, 0, 0, 1919, 1897, 1, 0, 0, 0, 1919, 1900, 1, 0, 0, 0, 1919, 1903, 1, 0, 0, 0, 1919, 1906, 1, 0, 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1916, 1, 0, 0, 0, 1920, 131, 1, 0, 0, 0, 1921, 1922, 5, 48, 0, 0, 1922, 1923, 5, 53, 0, 0, 1923, 1934, 3, 128, 64, 0, 1924, 1925, 5, 48, 0, 0, 1925, 1926, 5, 42, 0, 0, 1926, 1934, 7, 9, 0, 0, 1927, 1928, 5, 48, 0, 0, 1928, 1929, 5, 51, 0, 0, 1929, 1934, 7, 10, 0, 0, 1930, 1931, 5, 48, 0, 0, 1931, 1932, 5, 410, 0, 0, 1932, 1934, 5, 521, 0, 0, 1933, 1921, 1, 0, 0, 0, 1933, 1924, 1, 0, 0, 0, 1933, 1927, 1, 0, 0, 0, 1933, 1930, 1, 0, 0, 0, 1934, 133, 1, 0, 0, 0, 1935, 1936, 5, 47, 0, 0, 1936, 1937, 5, 424, 0, 0, 1937, 1940, 5, 525, 0, 0, 1938, 1939, 5, 190, 0, 0, 1939, 1941, 5, 521, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1954, 1, 0, 0, 0, 1942, 1943, 5, 20, 0, 0, 1943, 1944, 5, 424, 0, 0, 1944, 1945, 5, 525, 0, 0, 1945, 1946, 5, 430, 0, 0, 1946, 1954, 5, 525, 0, 0, 1947, 1948, 5, 19, 0, 0, 1948, 1949, 5, 424, 0, 0, 1949, 1954, 5, 525, 0, 0, 1950, 1951, 5, 48, 0, 0, 1951, 1952, 5, 410, 0, 0, 1952, 1954, 5, 521, 0, 0, 1953, 1935, 1, 0, 0, 0, 1953, 1942, 1, 0, 0, 0, 1953, 1947, 1, 0, 0, 0, 1953, 1950, 1, 0, 0, 0, 1954, 135, 1, 0, 0, 0, 1955, 1956, 5, 47, 0, 0, 1956, 1957, 5, 33, 0, 0, 1957, 1960, 3, 712, 356, 0, 1958, 1959, 5, 49, 0, 0, 1959, 1961, 5, 523, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1969, 1, 0, 0, 0, 1962, 1963, 5, 19, 0, 0, 1963, 1964, 5, 33, 0, 0, 1964, 1969, 3, 712, 356, 0, 1965, 1966, 5, 48, 0, 0, 1966, 1967, 5, 410, 0, 0, 1967, 1969, 5, 521, 0, 0, 1968, 1955, 1, 0, 0, 0, 1968, 1962, 1, 0, 0, 0, 1968, 1965, 1, 0, 0, 0, 1969, 137, 1, 0, 0, 0, 1970, 1971, 5, 29, 0, 0, 1971, 1973, 5, 525, 0, 0, 1972, 1974, 3, 140, 70, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 139, 1, 0, 0, 0, 1975, 1977, 3, 142, 71, 0, 1976, 1975, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 141, 1, 0, 0, 0, 1980, 1981, 5, 410, 0, 0, 1981, 1985, 5, 521, 0, 0, 1982, 1983, 5, 221, 0, 0, 1983, 1985, 5, 521, 0, 0, 1984, 1980, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1985, 143, 1, 0, 0, 0, 1986, 1987, 5, 28, 0, 0, 1987, 1988, 3, 712, 356, 0, 1988, 1989, 5, 507, 0, 0, 1989, 1990, 3, 146, 73, 0, 1990, 1992, 5, 508, 0, 0, 1991, 1993, 3, 152, 76, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 145, 1, 0, 0, 0, 1994, 1999, 3, 148, 74, 0, 1995, 1996, 5, 505, 0, 0, 1996, 1998, 3, 148, 74, 0, 1997, 1995, 1, 0, 0, 0, 1998, 2001, 1, 0, 0, 0, 1999, 1997, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 147, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2004, 3, 722, 361, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2010, 3, 150, 75, 0, 2006, 2008, 5, 190, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2011, 5, 521, 0, 0, 2010, 2007, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 149, 1, 0, 0, 0, 2012, 2030, 5, 525, 0, 0, 2013, 2030, 5, 527, 0, 0, 2014, 2030, 3, 734, 367, 0, 2015, 2030, 5, 316, 0, 0, 2016, 2030, 5, 317, 0, 0, 2017, 2030, 5, 351, 0, 0, 2018, 2030, 5, 350, 0, 0, 2019, 2030, 5, 322, 0, 0, 2020, 2030, 5, 343, 0, 0, 2021, 2030, 5, 344, 0, 0, 2022, 2030, 5, 345, 0, 0, 2023, 2030, 5, 347, 0, 0, 2024, 2030, 5, 26, 0, 0, 2025, 2030, 5, 352, 0, 0, 2026, 2030, 5, 374, 0, 0, 2027, 2030, 5, 488, 0, 0, 2028, 2030, 5, 421, 0, 0, 2029, 2012, 1, 0, 0, 0, 2029, 2013, 1, 0, 0, 0, 2029, 2014, 1, 0, 0, 0, 2029, 2015, 1, 0, 0, 0, 2029, 2016, 1, 0, 0, 0, 2029, 2017, 1, 0, 0, 0, 2029, 2018, 1, 0, 0, 0, 2029, 2019, 1, 0, 0, 0, 2029, 2020, 1, 0, 0, 0, 2029, 2021, 1, 0, 0, 0, 2029, 2022, 1, 0, 0, 0, 2029, 2023, 1, 0, 0, 0, 2029, 2024, 1, 0, 0, 0, 2029, 2025, 1, 0, 0, 0, 2029, 2026, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 151, 1, 0, 0, 0, 2031, 2033, 3, 154, 77, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 153, 1, 0, 0, 0, 2036, 2037, 5, 410, 0, 0, 2037, 2038, 5, 521, 0, 0, 2038, 155, 1, 0, 0, 0, 2039, 2040, 5, 228, 0, 0, 2040, 2041, 5, 229, 0, 0, 2041, 2043, 3, 712, 356, 0, 2042, 2044, 3, 158, 79, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2046, 1, 0, 0, 0, 2045, 2047, 3, 162, 81, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 157, 1, 0, 0, 0, 2048, 2050, 3, 160, 80, 0, 2049, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 159, 1, 0, 0, 0, 2053, 2054, 5, 365, 0, 0, 2054, 2055, 5, 464, 0, 0, 2055, 2059, 5, 521, 0, 0, 2056, 2057, 5, 410, 0, 0, 2057, 2059, 5, 521, 0, 0, 2058, 2053, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2059, 161, 1, 0, 0, 0, 2060, 2061, 5, 507, 0, 0, 2061, 2066, 3, 164, 82, 0, 2062, 2063, 5, 505, 0, 0, 2063, 2065, 3, 164, 82, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2068, 1, 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2069, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 2070, 5, 508, 0, 0, 2070, 163, 1, 0, 0, 0, 2071, 2072, 5, 228, 0, 0, 2072, 2073, 3, 166, 83, 0, 2073, 2074, 5, 71, 0, 0, 2074, 2075, 5, 336, 0, 0, 2075, 2076, 5, 521, 0, 0, 2076, 165, 1, 0, 0, 0, 2077, 2081, 5, 525, 0, 0, 2078, 2081, 5, 527, 0, 0, 2079, 2081, 3, 734, 367, 0, 2080, 2077, 1, 0, 0, 0, 2080, 2078, 1, 0, 0, 0, 2080, 2079, 1, 0, 0, 0, 2081, 167, 1, 0, 0, 0, 2082, 2083, 5, 333, 0, 0, 2083, 2084, 5, 421, 0, 0, 2084, 2087, 3, 712, 356, 0, 2085, 2086, 5, 410, 0, 0, 2086, 2088, 5, 521, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 5, 34, 0, 0, 2090, 2103, 7, 12, 0, 0, 2091, 2092, 5, 411, 0, 0, 2092, 2093, 5, 507, 0, 0, 2093, 2098, 3, 170, 85, 0, 2094, 2095, 5, 505, 0, 0, 2095, 2097, 3, 170, 85, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2100, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2101, 2102, 5, 508, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 169, 1, 0, 0, 0, 2105, 2106, 5, 521, 0, 0, 2106, 2107, 5, 76, 0, 0, 2107, 2108, 5, 521, 0, 0, 2108, 171, 1, 0, 0, 0, 2109, 2110, 5, 302, 0, 0, 2110, 2111, 5, 304, 0, 0, 2111, 2112, 3, 712, 356, 0, 2112, 2113, 5, 433, 0, 0, 2113, 2114, 3, 712, 356, 0, 2114, 2115, 3, 174, 87, 0, 2115, 173, 1, 0, 0, 0, 2116, 2117, 5, 311, 0, 0, 2117, 2118, 3, 672, 336, 0, 2118, 2119, 5, 303, 0, 0, 2119, 2120, 5, 521, 0, 0, 2120, 2144, 1, 0, 0, 0, 2121, 2122, 5, 305, 0, 0, 2122, 2123, 3, 178, 89, 0, 2123, 2124, 5, 303, 0, 0, 2124, 2125, 5, 521, 0, 0, 2125, 2144, 1, 0, 0, 0, 2126, 2127, 5, 298, 0, 0, 2127, 2128, 3, 180, 90, 0, 2128, 2129, 5, 303, 0, 0, 2129, 2130, 5, 521, 0, 0, 2130, 2144, 1, 0, 0, 0, 2131, 2132, 5, 308, 0, 0, 2132, 2133, 3, 178, 89, 0, 2133, 2134, 3, 176, 88, 0, 2134, 2135, 5, 303, 0, 0, 2135, 2136, 5, 521, 0, 0, 2136, 2144, 1, 0, 0, 0, 2137, 2138, 5, 309, 0, 0, 2138, 2139, 3, 178, 89, 0, 2139, 2140, 5, 521, 0, 0, 2140, 2141, 5, 303, 0, 0, 2141, 2142, 5, 521, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2116, 1, 0, 0, 0, 2143, 2121, 1, 0, 0, 0, 2143, 2126, 1, 0, 0, 0, 2143, 2131, 1, 0, 0, 0, 2143, 2137, 1, 0, 0, 0, 2144, 175, 1, 0, 0, 0, 2145, 2146, 5, 294, 0, 0, 2146, 2147, 3, 716, 358, 0, 2147, 2148, 5, 289, 0, 0, 2148, 2149, 3, 716, 358, 0, 2149, 2159, 1, 0, 0, 0, 2150, 2151, 5, 495, 0, 0, 2151, 2159, 3, 716, 358, 0, 2152, 2153, 5, 492, 0, 0, 2153, 2159, 3, 716, 358, 0, 2154, 2155, 5, 496, 0, 0, 2155, 2159, 3, 716, 358, 0, 2156, 2157, 5, 493, 0, 0, 2157, 2159, 3, 716, 358, 0, 2158, 2145, 1, 0, 0, 0, 2158, 2150, 1, 0, 0, 0, 2158, 2152, 1, 0, 0, 0, 2158, 2154, 1, 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2159, 177, 1, 0, 0, 0, 2160, 2165, 5, 525, 0, 0, 2161, 2162, 5, 500, 0, 0, 2162, 2164, 5, 525, 0, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 179, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2173, 3, 178, 89, 0, 2169, 2170, 5, 505, 0, 0, 2170, 2172, 3, 178, 89, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 181, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 30, 0, 0, 2177, 2178, 3, 712, 356, 0, 2178, 2180, 5, 507, 0, 0, 2179, 2181, 3, 194, 97, 0, 2180, 2179, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2184, 5, 508, 0, 0, 2183, 2185, 3, 200, 100, 0, 2184, 2183, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 1, 0, 0, 0, 2186, 2188, 3, 202, 101, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 5, 96, 0, 0, 2190, 2191, 3, 206, 103, 0, 2191, 2193, 5, 83, 0, 0, 2192, 2194, 5, 504, 0, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2197, 5, 500, 0, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 183, 1, 0, 0, 0, 2198, 2199, 5, 114, 0, 0, 2199, 2200, 5, 116, 0, 0, 2200, 2201, 3, 712, 356, 0, 2201, 2203, 5, 507, 0, 0, 2202, 2204, 3, 186, 93, 0, 2203, 2202, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2207, 5, 508, 0, 0, 2206, 2208, 3, 190, 95, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2211, 3, 192, 96, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 5, 76, 0, 0, 2213, 2215, 5, 522, 0, 0, 2214, 2216, 5, 504, 0, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 185, 1, 0, 0, 0, 2217, 2222, 3, 188, 94, 0, 2218, 2219, 5, 505, 0, 0, 2219, 2221, 3, 188, 94, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 187, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 3, 198, 99, 0, 2226, 2227, 5, 513, 0, 0, 2227, 2229, 3, 108, 54, 0, 2228, 2230, 5, 7, 0, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 189, 1, 0, 0, 0, 2231, 2232, 5, 77, 0, 0, 2232, 2233, 3, 108, 54, 0, 2233, 191, 1, 0, 0, 0, 2234, 2235, 5, 371, 0, 0, 2235, 2236, 5, 76, 0, 0, 2236, 2237, 5, 521, 0, 0, 2237, 2238, 5, 293, 0, 0, 2238, 2239, 5, 521, 0, 0, 2239, 193, 1, 0, 0, 0, 2240, 2245, 3, 196, 98, 0, 2241, 2242, 5, 505, 0, 0, 2242, 2244, 3, 196, 98, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 195, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2251, 3, 198, 99, 0, 2249, 2251, 5, 524, 0, 0, 2250, 2248, 1, 0, 0, 0, 2250, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 513, 0, 0, 2253, 2254, 3, 108, 54, 0, 2254, 197, 1, 0, 0, 0, 2255, 2259, 5, 525, 0, 0, 2256, 2259, 5, 527, 0, 0, 2257, 2259, 3, 734, 367, 0, 2258, 2255, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2257, 1, 0, 0, 0, 2259, 199, 1, 0, 0, 0, 2260, 2261, 5, 77, 0, 0, 2261, 2264, 3, 108, 54, 0, 2262, 2263, 5, 76, 0, 0, 2263, 2265, 5, 524, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 201, 1, 0, 0, 0, 2266, 2268, 3, 204, 102, 0, 2267, 2266, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 203, 1, 0, 0, 0, 2271, 2272, 5, 221, 0, 0, 2272, 2276, 5, 521, 0, 0, 2273, 2274, 5, 410, 0, 0, 2274, 2276, 5, 521, 0, 0, 2275, 2271, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2276, 205, 1, 0, 0, 0, 2277, 2279, 3, 208, 104, 0, 2278, 2277, 1, 0, 0, 0, 2279, 2282, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 207, 1, 0, 0, 0, 2282, 2280, 1, 0, 0, 0, 2283, 2285, 3, 724, 362, 0, 2284, 2283, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2291, 3, 210, 105, 0, 2290, 2292, 5, 504, 0, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2614, 1, 0, 0, 0, 2293, 2295, 3, 724, 362, 0, 2294, 2293, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2301, 3, 212, 106, 0, 2300, 2302, 5, 504, 0, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2614, 1, 0, 0, 0, 2303, 2305, 3, 724, 362, 0, 2304, 2303, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2311, 3, 320, 160, 0, 2310, 2312, 5, 504, 0, 0, 2311, 2310, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2614, 1, 0, 0, 0, 2313, 2315, 3, 724, 362, 0, 2314, 2313, 1, 0, 0, 0, 2315, 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2319, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2321, 3, 214, 107, 0, 2320, 2322, 5, 504, 0, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2614, 1, 0, 0, 0, 2323, 2325, 3, 724, 362, 0, 2324, 2323, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2329, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2331, 3, 216, 108, 0, 2330, 2332, 5, 504, 0, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2614, 1, 0, 0, 0, 2333, 2335, 3, 724, 362, 0, 2334, 2333, 1, 0, 0, 0, 2335, 2338, 1, 0, 0, 0, 2336, 2334, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2339, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2341, 3, 220, 110, 0, 2340, 2342, 5, 504, 0, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2614, 1, 0, 0, 0, 2343, 2345, 3, 724, 362, 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, 2351, 3, 222, 111, 0, 2350, 2352, 5, 504, 0, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2614, 1, 0, 0, 0, 2353, 2355, 3, 724, 362, 0, 2354, 2353, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2361, 3, 224, 112, 0, 2360, 2362, 5, 504, 0, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2614, 1, 0, 0, 0, 2363, 2365, 3, 724, 362, 0, 2364, 2363, 1, 0, 0, 0, 2365, 2368, 1, 0, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2371, 3, 226, 113, 0, 2370, 2372, 5, 504, 0, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2614, 1, 0, 0, 0, 2373, 2375, 3, 724, 362, 0, 2374, 2373, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2381, 3, 232, 116, 0, 2380, 2382, 5, 504, 0, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2614, 1, 0, 0, 0, 2383, 2385, 3, 724, 362, 0, 2384, 2383, 1, 0, 0, 0, 2385, 2388, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2391, 3, 234, 117, 0, 2390, 2392, 5, 504, 0, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2614, 1, 0, 0, 0, 2393, 2395, 3, 724, 362, 0, 2394, 2393, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2401, 3, 236, 118, 0, 2400, 2402, 5, 504, 0, 0, 2401, 2400, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2614, 1, 0, 0, 0, 2403, 2405, 3, 724, 362, 0, 2404, 2403, 1, 0, 0, 0, 2405, 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2411, 3, 238, 119, 0, 2410, 2412, 5, 504, 0, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2614, 1, 0, 0, 0, 2413, 2415, 3, 724, 362, 0, 2414, 2413, 1, 0, 0, 0, 2415, 2418, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2421, 3, 240, 120, 0, 2420, 2422, 5, 504, 0, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2614, 1, 0, 0, 0, 2423, 2425, 3, 724, 362, 0, 2424, 2423, 1, 0, 0, 0, 2425, 2428, 1, 0, 0, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2429, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2431, 3, 242, 121, 0, 2430, 2432, 5, 504, 0, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2614, 1, 0, 0, 0, 2433, 2435, 3, 724, 362, 0, 2434, 2433, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2439, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2441, 3, 244, 122, 0, 2440, 2442, 5, 504, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2614, 1, 0, 0, 0, 2443, 2445, 3, 724, 362, 0, 2444, 2443, 1, 0, 0, 0, 2445, 2448, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2451, 3, 246, 123, 0, 2450, 2452, 5, 504, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2614, 1, 0, 0, 0, 2453, 2455, 3, 724, 362, 0, 2454, 2453, 1, 0, 0, 0, 2455, 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2461, 3, 258, 129, 0, 2460, 2462, 5, 504, 0, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2614, 1, 0, 0, 0, 2463, 2465, 3, 724, 362, 0, 2464, 2463, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2469, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2471, 3, 260, 130, 0, 2470, 2472, 5, 504, 0, 0, 2471, 2470, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2614, 1, 0, 0, 0, 2473, 2475, 3, 724, 362, 0, 2474, 2473, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2479, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2481, 3, 262, 131, 0, 2480, 2482, 5, 504, 0, 0, 2481, 2480, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2614, 1, 0, 0, 0, 2483, 2485, 3, 724, 362, 0, 2484, 2483, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2489, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2491, 3, 264, 132, 0, 2490, 2492, 5, 504, 0, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2614, 1, 0, 0, 0, 2493, 2495, 3, 724, 362, 0, 2494, 2493, 1, 0, 0, 0, 2495, 2498, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2499, 1, 0, 0, 0, 2498, 2496, 1, 0, 0, 0, 2499, 2501, 3, 270, 135, 0, 2500, 2502, 5, 504, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2614, 1, 0, 0, 0, 2503, 2505, 3, 724, 362, 0, 2504, 2503, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2509, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2511, 3, 276, 138, 0, 2510, 2512, 5, 504, 0, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2614, 1, 0, 0, 0, 2513, 2515, 3, 724, 362, 0, 2514, 2513, 1, 0, 0, 0, 2515, 2518, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2519, 1, 0, 0, 0, 2518, 2516, 1, 0, 0, 0, 2519, 2521, 3, 278, 139, 0, 2520, 2522, 5, 504, 0, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2614, 1, 0, 0, 0, 2523, 2525, 3, 724, 362, 0, 2524, 2523, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2531, 3, 280, 140, 0, 2530, 2532, 5, 504, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2614, 1, 0, 0, 0, 2533, 2535, 3, 724, 362, 0, 2534, 2533, 1, 0, 0, 0, 2535, 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2541, 3, 282, 141, 0, 2540, 2542, 5, 504, 0, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2614, 1, 0, 0, 0, 2543, 2545, 3, 724, 362, 0, 2544, 2543, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2551, 3, 308, 154, 0, 2550, 2552, 5, 504, 0, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2614, 1, 0, 0, 0, 2553, 2555, 3, 724, 362, 0, 2554, 2553, 1, 0, 0, 0, 2555, 2558, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2561, 3, 316, 158, 0, 2560, 2562, 5, 504, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2614, 1, 0, 0, 0, 2563, 2565, 3, 724, 362, 0, 2564, 2563, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 2569, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2571, 3, 322, 161, 0, 2570, 2572, 5, 504, 0, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2614, 1, 0, 0, 0, 2573, 2575, 3, 724, 362, 0, 2574, 2573, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2581, 3, 324, 162, 0, 2580, 2582, 5, 504, 0, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2614, 1, 0, 0, 0, 2583, 2585, 3, 724, 362, 0, 2584, 2583, 1, 0, 0, 0, 2585, 2588, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2589, 2591, 3, 284, 142, 0, 2590, 2592, 5, 504, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2614, 1, 0, 0, 0, 2593, 2595, 3, 724, 362, 0, 2594, 2593, 1, 0, 0, 0, 2595, 2598, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2599, 1, 0, 0, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2601, 3, 286, 143, 0, 2600, 2602, 5, 504, 0, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2614, 1, 0, 0, 0, 2603, 2605, 3, 724, 362, 0, 2604, 2603, 1, 0, 0, 0, 2605, 2608, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2609, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2611, 3, 304, 152, 0, 2610, 2612, 5, 504, 0, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2614, 1, 0, 0, 0, 2613, 2286, 1, 0, 0, 0, 2613, 2296, 1, 0, 0, 0, 2613, 2306, 1, 0, 0, 0, 2613, 2316, 1, 0, 0, 0, 2613, 2326, 1, 0, 0, 0, 2613, 2336, 1, 0, 0, 0, 2613, 2346, 1, 0, 0, 0, 2613, 2356, 1, 0, 0, 0, 2613, 2366, 1, 0, 0, 0, 2613, 2376, 1, 0, 0, 0, 2613, 2386, 1, 0, 0, 0, 2613, 2396, 1, 0, 0, 0, 2613, 2406, 1, 0, 0, 0, 2613, 2416, 1, 0, 0, 0, 2613, 2426, 1, 0, 0, 0, 2613, 2436, 1, 0, 0, 0, 2613, 2446, 1, 0, 0, 0, 2613, 2456, 1, 0, 0, 0, 2613, 2466, 1, 0, 0, 0, 2613, 2476, 1, 0, 0, 0, 2613, 2486, 1, 0, 0, 0, 2613, 2496, 1, 0, 0, 0, 2613, 2506, 1, 0, 0, 0, 2613, 2516, 1, 0, 0, 0, 2613, 2526, 1, 0, 0, 0, 2613, 2536, 1, 0, 0, 0, 2613, 2546, 1, 0, 0, 0, 2613, 2556, 1, 0, 0, 0, 2613, 2566, 1, 0, 0, 0, 2613, 2576, 1, 0, 0, 0, 2613, 2586, 1, 0, 0, 0, 2613, 2596, 1, 0, 0, 0, 2613, 2606, 1, 0, 0, 0, 2614, 209, 1, 0, 0, 0, 2615, 2616, 5, 97, 0, 0, 2616, 2617, 5, 524, 0, 0, 2617, 2620, 3, 108, 54, 0, 2618, 2619, 5, 494, 0, 0, 2619, 2621, 3, 672, 336, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 211, 1, 0, 0, 0, 2622, 2625, 5, 48, 0, 0, 2623, 2626, 5, 524, 0, 0, 2624, 2626, 3, 218, 109, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 5, 494, 0, 0, 2628, 2629, 3, 672, 336, 0, 2629, 213, 1, 0, 0, 0, 2630, 2631, 5, 524, 0, 0, 2631, 2633, 5, 494, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 5, 17, 0, 0, 2635, 2641, 3, 112, 56, 0, 2636, 2638, 5, 507, 0, 0, 2637, 2639, 3, 326, 163, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 5, 508, 0, 0, 2641, 2636, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 230, 115, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 215, 1, 0, 0, 0, 2646, 2647, 5, 98, 0, 0, 2647, 2653, 5, 524, 0, 0, 2648, 2650, 5, 507, 0, 0, 2649, 2651, 3, 326, 163, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 5, 508, 0, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 217, 1, 0, 0, 0, 2655, 2661, 5, 524, 0, 0, 2656, 2659, 7, 13, 0, 0, 2657, 2660, 5, 525, 0, 0, 2658, 2660, 3, 712, 356, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2658, 1, 0, 0, 0, 2660, 2662, 1, 0, 0, 0, 2661, 2656, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2661, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 219, 1, 0, 0, 0, 2665, 2666, 5, 101, 0, 0, 2666, 2669, 5, 524, 0, 0, 2667, 2668, 5, 139, 0, 0, 2668, 2670, 5, 120, 0, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2673, 5, 398, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 230, 115, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 221, 1, 0, 0, 0, 2677, 2678, 5, 100, 0, 0, 2678, 2680, 5, 524, 0, 0, 2679, 2681, 3, 230, 115, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 223, 1, 0, 0, 0, 2682, 2683, 5, 102, 0, 0, 2683, 2685, 5, 524, 0, 0, 2684, 2686, 5, 398, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 225, 1, 0, 0, 0, 2687, 2688, 5, 99, 0, 0, 2688, 2689, 5, 524, 0, 0, 2689, 2690, 5, 71, 0, 0, 2690, 2696, 3, 228, 114, 0, 2691, 2694, 5, 72, 0, 0, 2692, 2695, 3, 358, 179, 0, 2693, 2695, 3, 672, 336, 0, 2694, 2692, 1, 0, 0, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2707, 1, 0, 0, 0, 2698, 2699, 5, 10, 0, 0, 2699, 2704, 3, 356, 178, 0, 2700, 2701, 5, 505, 0, 0, 2701, 2703, 3, 356, 178, 0, 2702, 2700, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2708, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2698, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2711, 1, 0, 0, 0, 2709, 2710, 5, 75, 0, 0, 2710, 2712, 3, 672, 336, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2715, 1, 0, 0, 0, 2713, 2714, 5, 74, 0, 0, 2714, 2716, 3, 672, 336, 0, 2715, 2713, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2719, 3, 230, 115, 0, 2718, 2717, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 227, 1, 0, 0, 0, 2720, 2731, 3, 712, 356, 0, 2721, 2722, 5, 524, 0, 0, 2722, 2723, 5, 500, 0, 0, 2723, 2731, 3, 712, 356, 0, 2724, 2725, 5, 507, 0, 0, 2725, 2726, 3, 586, 293, 0, 2726, 2727, 5, 508, 0, 0, 2727, 2731, 1, 0, 0, 0, 2728, 2729, 5, 357, 0, 0, 2729, 2731, 5, 521, 0, 0, 2730, 2720, 1, 0, 0, 0, 2730, 2721, 1, 0, 0, 0, 2730, 2724, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 229, 1, 0, 0, 0, 2732, 2733, 5, 93, 0, 0, 2733, 2734, 5, 306, 0, 0, 2734, 2753, 5, 108, 0, 0, 2735, 2736, 5, 93, 0, 0, 2736, 2737, 5, 306, 0, 0, 2737, 2753, 5, 102, 0, 0, 2738, 2739, 5, 93, 0, 0, 2739, 2740, 5, 306, 0, 0, 2740, 2741, 5, 509, 0, 0, 2741, 2742, 3, 206, 103, 0, 2742, 2743, 5, 510, 0, 0, 2743, 2753, 1, 0, 0, 0, 2744, 2745, 5, 93, 0, 0, 2745, 2746, 5, 306, 0, 0, 2746, 2747, 5, 439, 0, 0, 2747, 2748, 5, 102, 0, 0, 2748, 2749, 5, 509, 0, 0, 2749, 2750, 3, 206, 103, 0, 2750, 2751, 5, 510, 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2732, 1, 0, 0, 0, 2752, 2735, 1, 0, 0, 0, 2752, 2738, 1, 0, 0, 0, 2752, 2744, 1, 0, 0, 0, 2753, 231, 1, 0, 0, 0, 2754, 2755, 5, 105, 0, 0, 2755, 2756, 3, 672, 336, 0, 2756, 2757, 5, 81, 0, 0, 2757, 2765, 3, 206, 103, 0, 2758, 2759, 5, 106, 0, 0, 2759, 2760, 3, 672, 336, 0, 2760, 2761, 5, 81, 0, 0, 2761, 2762, 3, 206, 103, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2758, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2770, 1, 0, 0, 0, 2767, 2765, 1, 0, 0, 0, 2768, 2769, 5, 82, 0, 0, 2769, 2771, 3, 206, 103, 0, 2770, 2768, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 5, 83, 0, 0, 2773, 2774, 5, 105, 0, 0, 2774, 233, 1, 0, 0, 0, 2775, 2776, 5, 103, 0, 0, 2776, 2777, 5, 524, 0, 0, 2777, 2780, 5, 293, 0, 0, 2778, 2781, 5, 524, 0, 0, 2779, 2781, 3, 218, 109, 0, 2780, 2778, 1, 0, 0, 0, 2780, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2783, 5, 96, 0, 0, 2783, 2784, 3, 206, 103, 0, 2784, 2785, 5, 83, 0, 0, 2785, 2786, 5, 103, 0, 0, 2786, 235, 1, 0, 0, 0, 2787, 2788, 5, 104, 0, 0, 2788, 2790, 3, 672, 336, 0, 2789, 2791, 5, 96, 0, 0, 2790, 2789, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 3, 206, 103, 0, 2793, 2795, 5, 83, 0, 0, 2794, 2796, 5, 104, 0, 0, 2795, 2794, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 237, 1, 0, 0, 0, 2797, 2798, 5, 108, 0, 0, 2798, 239, 1, 0, 0, 0, 2799, 2800, 5, 109, 0, 0, 2800, 241, 1, 0, 0, 0, 2801, 2803, 5, 110, 0, 0, 2802, 2804, 3, 672, 336, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 243, 1, 0, 0, 0, 2805, 2806, 5, 307, 0, 0, 2806, 2807, 5, 306, 0, 0, 2807, 245, 1, 0, 0, 0, 2808, 2810, 5, 112, 0, 0, 2809, 2811, 3, 248, 124, 0, 2810, 2809, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2814, 1, 0, 0, 0, 2812, 2813, 5, 119, 0, 0, 2813, 2815, 5, 521, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 3, 672, 336, 0, 2817, 2819, 3, 254, 127, 0, 2818, 2817, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 247, 1, 0, 0, 0, 2820, 2821, 7, 14, 0, 0, 2821, 249, 1, 0, 0, 0, 2822, 2823, 5, 139, 0, 0, 2823, 2824, 5, 507, 0, 0, 2824, 2829, 3, 252, 126, 0, 2825, 2826, 5, 505, 0, 0, 2826, 2828, 3, 252, 126, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 2832, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2832, 2833, 5, 508, 0, 0, 2833, 2837, 1, 0, 0, 0, 2834, 2835, 5, 373, 0, 0, 2835, 2837, 3, 718, 359, 0, 2836, 2822, 1, 0, 0, 0, 2836, 2834, 1, 0, 0, 0, 2837, 251, 1, 0, 0, 0, 2838, 2839, 5, 509, 0, 0, 2839, 2840, 5, 523, 0, 0, 2840, 2841, 5, 510, 0, 0, 2841, 2842, 5, 494, 0, 0, 2842, 2843, 3, 672, 336, 0, 2843, 253, 1, 0, 0, 0, 2844, 2845, 3, 250, 125, 0, 2845, 255, 1, 0, 0, 0, 2846, 2847, 3, 252, 126, 0, 2847, 257, 1, 0, 0, 0, 2848, 2849, 5, 524, 0, 0, 2849, 2851, 5, 494, 0, 0, 2850, 2848, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 5, 113, 0, 0, 2853, 2854, 5, 30, 0, 0, 2854, 2855, 3, 712, 356, 0, 2855, 2857, 5, 507, 0, 0, 2856, 2858, 3, 266, 133, 0, 2857, 2856, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2861, 5, 508, 0, 0, 2860, 2862, 3, 230, 115, 0, 2861, 2860, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 259, 1, 0, 0, 0, 2863, 2864, 5, 524, 0, 0, 2864, 2866, 5, 494, 0, 0, 2865, 2863, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2868, 5, 113, 0, 0, 2868, 2869, 5, 114, 0, 0, 2869, 2870, 5, 116, 0, 0, 2870, 2871, 3, 712, 356, 0, 2871, 2873, 5, 507, 0, 0, 2872, 2874, 3, 266, 133, 0, 2873, 2872, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 5, 508, 0, 0, 2876, 2878, 3, 230, 115, 0, 2877, 2876, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 261, 1, 0, 0, 0, 2879, 2880, 5, 524, 0, 0, 2880, 2882, 5, 494, 0, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 5, 401, 0, 0, 2884, 2885, 5, 357, 0, 0, 2885, 2886, 5, 358, 0, 0, 2886, 2893, 3, 712, 356, 0, 2887, 2891, 5, 166, 0, 0, 2888, 2892, 5, 521, 0, 0, 2889, 2892, 5, 522, 0, 0, 2890, 2892, 3, 672, 336, 0, 2891, 2888, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2891, 2890, 1, 0, 0, 0, 2892, 2894, 1, 0, 0, 0, 2893, 2887, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2900, 1, 0, 0, 0, 2895, 2897, 5, 507, 0, 0, 2896, 2898, 3, 266, 133, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2901, 5, 508, 0, 0, 2900, 2895, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2908, 1, 0, 0, 0, 2902, 2903, 5, 356, 0, 0, 2903, 2905, 5, 507, 0, 0, 2904, 2906, 3, 266, 133, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2909, 5, 508, 0, 0, 2908, 2902, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, 2912, 3, 230, 115, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 263, 1, 0, 0, 0, 2913, 2914, 5, 524, 0, 0, 2914, 2916, 5, 494, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 5, 113, 0, 0, 2918, 2919, 5, 26, 0, 0, 2919, 2920, 5, 116, 0, 0, 2920, 2921, 3, 712, 356, 0, 2921, 2923, 5, 507, 0, 0, 2922, 2924, 3, 266, 133, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2927, 5, 508, 0, 0, 2926, 2928, 3, 230, 115, 0, 2927, 2926, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 265, 1, 0, 0, 0, 2929, 2934, 3, 268, 134, 0, 2930, 2931, 5, 505, 0, 0, 2931, 2933, 3, 268, 134, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2936, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 267, 1, 0, 0, 0, 2936, 2934, 1, 0, 0, 0, 2937, 2940, 5, 524, 0, 0, 2938, 2940, 3, 198, 99, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2938, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2942, 5, 494, 0, 0, 2942, 2943, 3, 672, 336, 0, 2943, 269, 1, 0, 0, 0, 2944, 2945, 5, 65, 0, 0, 2945, 2946, 5, 33, 0, 0, 2946, 2952, 3, 712, 356, 0, 2947, 2949, 5, 507, 0, 0, 2948, 2950, 3, 272, 136, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2953, 5, 508, 0, 0, 2952, 2947, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2956, 1, 0, 0, 0, 2954, 2955, 5, 433, 0, 0, 2955, 2957, 5, 524, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2959, 5, 139, 0, 0, 2959, 2961, 3, 326, 163, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 271, 1, 0, 0, 0, 2962, 2967, 3, 274, 137, 0, 2963, 2964, 5, 505, 0, 0, 2964, 2966, 3, 274, 137, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2969, 1, 0, 0, 0, 2967, 2965, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 273, 1, 0, 0, 0, 2969, 2967, 1, 0, 0, 0, 2970, 2971, 5, 524, 0, 0, 2971, 2974, 5, 494, 0, 0, 2972, 2975, 5, 524, 0, 0, 2973, 2975, 3, 672, 336, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2981, 1, 0, 0, 0, 2976, 2977, 3, 714, 357, 0, 2977, 2978, 5, 513, 0, 0, 2978, 2979, 3, 672, 336, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2970, 1, 0, 0, 0, 2980, 2976, 1, 0, 0, 0, 2981, 275, 1, 0, 0, 0, 2982, 2983, 5, 118, 0, 0, 2983, 2984, 5, 33, 0, 0, 2984, 277, 1, 0, 0, 0, 2985, 2986, 5, 65, 0, 0, 2986, 2987, 5, 378, 0, 0, 2987, 2988, 5, 33, 0, 0, 2988, 279, 1, 0, 0, 0, 2989, 2990, 5, 65, 0, 0, 2990, 2991, 5, 407, 0, 0, 2991, 2994, 3, 672, 336, 0, 2992, 2993, 5, 423, 0, 0, 2993, 2995, 3, 714, 357, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 3001, 1, 0, 0, 0, 2996, 2997, 5, 142, 0, 0, 2997, 2998, 5, 511, 0, 0, 2998, 2999, 3, 710, 355, 0, 2999, 3000, 5, 512, 0, 0, 3000, 3002, 1, 0, 0, 0, 3001, 2996, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 281, 1, 0, 0, 0, 3003, 3004, 5, 111, 0, 0, 3004, 3005, 3, 672, 336, 0, 3005, 283, 1, 0, 0, 0, 3006, 3007, 5, 302, 0, 0, 3007, 3008, 5, 303, 0, 0, 3008, 3009, 3, 218, 109, 0, 3009, 3010, 5, 407, 0, 0, 3010, 3016, 3, 672, 336, 0, 3011, 3012, 5, 142, 0, 0, 3012, 3013, 5, 511, 0, 0, 3013, 3014, 3, 710, 355, 0, 3014, 3015, 5, 512, 0, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3011, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 285, 1, 0, 0, 0, 3018, 3019, 5, 524, 0, 0, 3019, 3021, 5, 494, 0, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 315, 0, 0, 3023, 3024, 5, 113, 0, 0, 3024, 3025, 3, 288, 144, 0, 3025, 3027, 3, 290, 145, 0, 3026, 3028, 3, 292, 146, 0, 3027, 3026, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3032, 1, 0, 0, 0, 3029, 3031, 3, 294, 147, 0, 3030, 3029, 1, 0, 0, 0, 3031, 3034, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3036, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3035, 3037, 3, 296, 148, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3040, 3, 298, 149, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3043, 3, 300, 150, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3046, 3, 302, 151, 0, 3045, 3047, 3, 230, 115, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 287, 1, 0, 0, 0, 3048, 3049, 7, 15, 0, 0, 3049, 289, 1, 0, 0, 0, 3050, 3053, 5, 521, 0, 0, 3051, 3053, 3, 672, 336, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 291, 1, 0, 0, 0, 3054, 3055, 3, 250, 125, 0, 3055, 293, 1, 0, 0, 0, 3056, 3057, 5, 197, 0, 0, 3057, 3058, 7, 16, 0, 0, 3058, 3059, 5, 494, 0, 0, 3059, 3060, 3, 672, 336, 0, 3060, 295, 1, 0, 0, 0, 3061, 3062, 5, 320, 0, 0, 3062, 3063, 5, 322, 0, 0, 3063, 3064, 3, 672, 336, 0, 3064, 3065, 5, 355, 0, 0, 3065, 3066, 3, 672, 336, 0, 3066, 297, 1, 0, 0, 0, 3067, 3068, 5, 329, 0, 0, 3068, 3070, 5, 521, 0, 0, 3069, 3071, 3, 250, 125, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3084, 1, 0, 0, 0, 3072, 3073, 5, 329, 0, 0, 3073, 3075, 3, 672, 336, 0, 3074, 3076, 3, 250, 125, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3084, 1, 0, 0, 0, 3077, 3078, 5, 329, 0, 0, 3078, 3079, 5, 360, 0, 0, 3079, 3080, 3, 712, 356, 0, 3080, 3081, 5, 71, 0, 0, 3081, 3082, 5, 524, 0, 0, 3082, 3084, 1, 0, 0, 0, 3083, 3067, 1, 0, 0, 0, 3083, 3072, 1, 0, 0, 0, 3083, 3077, 1, 0, 0, 0, 3084, 299, 1, 0, 0, 0, 3085, 3086, 5, 328, 0, 0, 3086, 3087, 3, 672, 336, 0, 3087, 301, 1, 0, 0, 0, 3088, 3089, 5, 77, 0, 0, 3089, 3103, 5, 266, 0, 0, 3090, 3091, 5, 77, 0, 0, 3091, 3103, 5, 330, 0, 0, 3092, 3093, 5, 77, 0, 0, 3093, 3094, 5, 360, 0, 0, 3094, 3095, 3, 712, 356, 0, 3095, 3096, 5, 76, 0, 0, 3096, 3097, 3, 712, 356, 0, 3097, 3103, 1, 0, 0, 0, 3098, 3099, 5, 77, 0, 0, 3099, 3103, 5, 428, 0, 0, 3100, 3101, 5, 77, 0, 0, 3101, 3103, 5, 323, 0, 0, 3102, 3088, 1, 0, 0, 0, 3102, 3090, 1, 0, 0, 0, 3102, 3092, 1, 0, 0, 0, 3102, 3098, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3103, 303, 1, 0, 0, 0, 3104, 3105, 5, 524, 0, 0, 3105, 3107, 5, 494, 0, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 5, 332, 0, 0, 3109, 3110, 5, 315, 0, 0, 3110, 3111, 5, 331, 0, 0, 3111, 3113, 3, 712, 356, 0, 3112, 3114, 3, 306, 153, 0, 3113, 3112, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3116, 1, 0, 0, 0, 3115, 3117, 3, 230, 115, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 305, 1, 0, 0, 0, 3118, 3119, 5, 329, 0, 0, 3119, 3120, 5, 524, 0, 0, 3120, 307, 1, 0, 0, 0, 3121, 3122, 5, 524, 0, 0, 3122, 3123, 5, 494, 0, 0, 3123, 3124, 3, 310, 155, 0, 3124, 309, 1, 0, 0, 0, 3125, 3126, 5, 121, 0, 0, 3126, 3127, 5, 507, 0, 0, 3127, 3128, 5, 524, 0, 0, 3128, 3185, 5, 508, 0, 0, 3129, 3130, 5, 122, 0, 0, 3130, 3131, 5, 507, 0, 0, 3131, 3132, 5, 524, 0, 0, 3132, 3185, 5, 508, 0, 0, 3133, 3134, 5, 123, 0, 0, 3134, 3135, 5, 507, 0, 0, 3135, 3136, 5, 524, 0, 0, 3136, 3137, 5, 505, 0, 0, 3137, 3138, 3, 672, 336, 0, 3138, 3139, 5, 508, 0, 0, 3139, 3185, 1, 0, 0, 0, 3140, 3141, 5, 187, 0, 0, 3141, 3142, 5, 507, 0, 0, 3142, 3143, 5, 524, 0, 0, 3143, 3144, 5, 505, 0, 0, 3144, 3145, 3, 672, 336, 0, 3145, 3146, 5, 508, 0, 0, 3146, 3185, 1, 0, 0, 0, 3147, 3148, 5, 124, 0, 0, 3148, 3149, 5, 507, 0, 0, 3149, 3150, 5, 524, 0, 0, 3150, 3151, 5, 505, 0, 0, 3151, 3152, 3, 312, 156, 0, 3152, 3153, 5, 508, 0, 0, 3153, 3185, 1, 0, 0, 0, 3154, 3155, 5, 125, 0, 0, 3155, 3156, 5, 507, 0, 0, 3156, 3157, 5, 524, 0, 0, 3157, 3158, 5, 505, 0, 0, 3158, 3159, 5, 524, 0, 0, 3159, 3185, 5, 508, 0, 0, 3160, 3161, 5, 126, 0, 0, 3161, 3162, 5, 507, 0, 0, 3162, 3163, 5, 524, 0, 0, 3163, 3164, 5, 505, 0, 0, 3164, 3165, 5, 524, 0, 0, 3165, 3185, 5, 508, 0, 0, 3166, 3167, 5, 127, 0, 0, 3167, 3168, 5, 507, 0, 0, 3168, 3169, 5, 524, 0, 0, 3169, 3170, 5, 505, 0, 0, 3170, 3171, 5, 524, 0, 0, 3171, 3185, 5, 508, 0, 0, 3172, 3173, 5, 128, 0, 0, 3173, 3174, 5, 507, 0, 0, 3174, 3175, 5, 524, 0, 0, 3175, 3176, 5, 505, 0, 0, 3176, 3177, 5, 524, 0, 0, 3177, 3185, 5, 508, 0, 0, 3178, 3179, 5, 134, 0, 0, 3179, 3180, 5, 507, 0, 0, 3180, 3181, 5, 524, 0, 0, 3181, 3182, 5, 505, 0, 0, 3182, 3183, 5, 524, 0, 0, 3183, 3185, 5, 508, 0, 0, 3184, 3125, 1, 0, 0, 0, 3184, 3129, 1, 0, 0, 0, 3184, 3133, 1, 0, 0, 0, 3184, 3140, 1, 0, 0, 0, 3184, 3147, 1, 0, 0, 0, 3184, 3154, 1, 0, 0, 0, 3184, 3160, 1, 0, 0, 0, 3184, 3166, 1, 0, 0, 0, 3184, 3172, 1, 0, 0, 0, 3184, 3178, 1, 0, 0, 0, 3185, 311, 1, 0, 0, 0, 3186, 3191, 3, 314, 157, 0, 3187, 3188, 5, 505, 0, 0, 3188, 3190, 3, 314, 157, 0, 3189, 3187, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3189, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 313, 1, 0, 0, 0, 3193, 3191, 1, 0, 0, 0, 3194, 3196, 5, 525, 0, 0, 3195, 3197, 7, 7, 0, 0, 3196, 3195, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 315, 1, 0, 0, 0, 3198, 3199, 5, 524, 0, 0, 3199, 3200, 5, 494, 0, 0, 3200, 3201, 3, 318, 159, 0, 3201, 317, 1, 0, 0, 0, 3202, 3203, 5, 280, 0, 0, 3203, 3204, 5, 507, 0, 0, 3204, 3205, 5, 524, 0, 0, 3205, 3227, 5, 508, 0, 0, 3206, 3207, 5, 281, 0, 0, 3207, 3208, 5, 507, 0, 0, 3208, 3209, 3, 218, 109, 0, 3209, 3210, 5, 508, 0, 0, 3210, 3227, 1, 0, 0, 0, 3211, 3212, 5, 129, 0, 0, 3212, 3213, 5, 507, 0, 0, 3213, 3214, 3, 218, 109, 0, 3214, 3215, 5, 508, 0, 0, 3215, 3227, 1, 0, 0, 0, 3216, 3217, 5, 130, 0, 0, 3217, 3218, 5, 507, 0, 0, 3218, 3219, 3, 218, 109, 0, 3219, 3220, 5, 508, 0, 0, 3220, 3227, 1, 0, 0, 0, 3221, 3222, 5, 131, 0, 0, 3222, 3223, 5, 507, 0, 0, 3223, 3224, 3, 218, 109, 0, 3224, 3225, 5, 508, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3202, 1, 0, 0, 0, 3226, 3206, 1, 0, 0, 0, 3226, 3211, 1, 0, 0, 0, 3226, 3216, 1, 0, 0, 0, 3226, 3221, 1, 0, 0, 0, 3227, 319, 1, 0, 0, 0, 3228, 3229, 5, 524, 0, 0, 3229, 3230, 5, 494, 0, 0, 3230, 3231, 5, 17, 0, 0, 3231, 3232, 5, 13, 0, 0, 3232, 3233, 3, 712, 356, 0, 3233, 321, 1, 0, 0, 0, 3234, 3235, 5, 47, 0, 0, 3235, 3236, 5, 524, 0, 0, 3236, 3237, 5, 430, 0, 0, 3237, 3238, 5, 524, 0, 0, 3238, 323, 1, 0, 0, 0, 3239, 3240, 5, 133, 0, 0, 3240, 3241, 5, 524, 0, 0, 3241, 3242, 5, 71, 0, 0, 3242, 3243, 5, 524, 0, 0, 3243, 325, 1, 0, 0, 0, 3244, 3249, 3, 328, 164, 0, 3245, 3246, 5, 505, 0, 0, 3246, 3248, 3, 328, 164, 0, 3247, 3245, 1, 0, 0, 0, 3248, 3251, 1, 0, 0, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 327, 1, 0, 0, 0, 3251, 3249, 1, 0, 0, 0, 3252, 3253, 3, 330, 165, 0, 3253, 3254, 5, 494, 0, 0, 3254, 3255, 3, 672, 336, 0, 3255, 329, 1, 0, 0, 0, 3256, 3261, 3, 712, 356, 0, 3257, 3261, 5, 525, 0, 0, 3258, 3261, 5, 527, 0, 0, 3259, 3261, 3, 734, 367, 0, 3260, 3256, 1, 0, 0, 0, 3260, 3257, 1, 0, 0, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3259, 1, 0, 0, 0, 3261, 331, 1, 0, 0, 0, 3262, 3267, 3, 334, 167, 0, 3263, 3264, 5, 505, 0, 0, 3264, 3266, 3, 334, 167, 0, 3265, 3263, 1, 0, 0, 0, 3266, 3269, 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 333, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3271, 5, 525, 0, 0, 3271, 3272, 5, 494, 0, 0, 3272, 3273, 3, 672, 336, 0, 3273, 335, 1, 0, 0, 0, 3274, 3275, 5, 33, 0, 0, 3275, 3276, 3, 712, 356, 0, 3276, 3277, 3, 386, 193, 0, 3277, 3278, 5, 509, 0, 0, 3278, 3279, 3, 394, 197, 0, 3279, 3280, 5, 510, 0, 0, 3280, 337, 1, 0, 0, 0, 3281, 3282, 5, 34, 0, 0, 3282, 3284, 3, 712, 356, 0, 3283, 3285, 3, 390, 195, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 340, 170, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 3290, 5, 509, 0, 0, 3290, 3291, 3, 394, 197, 0, 3291, 3292, 5, 510, 0, 0, 3292, 339, 1, 0, 0, 0, 3293, 3295, 3, 342, 171, 0, 3294, 3293, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 341, 1, 0, 0, 0, 3298, 3299, 5, 221, 0, 0, 3299, 3300, 5, 521, 0, 0, 3300, 343, 1, 0, 0, 0, 3301, 3306, 3, 346, 173, 0, 3302, 3303, 5, 505, 0, 0, 3303, 3305, 3, 346, 173, 0, 3304, 3302, 1, 0, 0, 0, 3305, 3308, 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3306, 3307, 1, 0, 0, 0, 3307, 345, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3309, 3310, 7, 17, 0, 0, 3310, 3311, 5, 513, 0, 0, 3311, 3312, 3, 108, 54, 0, 3312, 347, 1, 0, 0, 0, 3313, 3318, 3, 350, 175, 0, 3314, 3315, 5, 505, 0, 0, 3315, 3317, 3, 350, 175, 0, 3316, 3314, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 349, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3322, 7, 17, 0, 0, 3322, 3323, 5, 513, 0, 0, 3323, 3324, 3, 108, 54, 0, 3324, 351, 1, 0, 0, 0, 3325, 3330, 3, 354, 177, 0, 3326, 3327, 5, 505, 0, 0, 3327, 3329, 3, 354, 177, 0, 3328, 3326, 1, 0, 0, 0, 3329, 3332, 1, 0, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 353, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3333, 3334, 5, 524, 0, 0, 3334, 3335, 5, 513, 0, 0, 3335, 3336, 3, 108, 54, 0, 3336, 3337, 5, 494, 0, 0, 3337, 3338, 5, 521, 0, 0, 3338, 355, 1, 0, 0, 0, 3339, 3342, 3, 712, 356, 0, 3340, 3342, 5, 525, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3340, 1, 0, 0, 0, 3342, 3344, 1, 0, 0, 0, 3343, 3345, 7, 7, 0, 0, 3344, 3343, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 357, 1, 0, 0, 0, 3346, 3347, 5, 511, 0, 0, 3347, 3348, 3, 362, 181, 0, 3348, 3349, 5, 512, 0, 0, 3349, 359, 1, 0, 0, 0, 3350, 3351, 7, 18, 0, 0, 3351, 361, 1, 0, 0, 0, 3352, 3357, 3, 364, 182, 0, 3353, 3354, 5, 290, 0, 0, 3354, 3356, 3, 364, 182, 0, 3355, 3353, 1, 0, 0, 0, 3356, 3359, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 363, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3360, 3365, 3, 366, 183, 0, 3361, 3362, 5, 289, 0, 0, 3362, 3364, 3, 366, 183, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 365, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3369, 5, 291, 0, 0, 3369, 3372, 3, 366, 183, 0, 3370, 3372, 3, 368, 184, 0, 3371, 3368, 1, 0, 0, 0, 3371, 3370, 1, 0, 0, 0, 3372, 367, 1, 0, 0, 0, 3373, 3377, 3, 370, 185, 0, 3374, 3375, 3, 682, 341, 0, 3375, 3376, 3, 370, 185, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3374, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 369, 1, 0, 0, 0, 3379, 3386, 3, 382, 191, 0, 3380, 3386, 3, 372, 186, 0, 3381, 3382, 5, 507, 0, 0, 3382, 3383, 3, 362, 181, 0, 3383, 3384, 5, 508, 0, 0, 3384, 3386, 1, 0, 0, 0, 3385, 3379, 1, 0, 0, 0, 3385, 3380, 1, 0, 0, 0, 3385, 3381, 1, 0, 0, 0, 3386, 371, 1, 0, 0, 0, 3387, 3392, 3, 374, 187, 0, 3388, 3389, 5, 500, 0, 0, 3389, 3391, 3, 374, 187, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 373, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3400, 3, 376, 188, 0, 3396, 3397, 5, 511, 0, 0, 3397, 3398, 3, 362, 181, 0, 3398, 3399, 5, 512, 0, 0, 3399, 3401, 1, 0, 0, 0, 3400, 3396, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 375, 1, 0, 0, 0, 3402, 3408, 3, 378, 189, 0, 3403, 3408, 5, 524, 0, 0, 3404, 3408, 5, 521, 0, 0, 3405, 3408, 5, 523, 0, 0, 3406, 3408, 5, 520, 0, 0, 3407, 3402, 1, 0, 0, 0, 3407, 3403, 1, 0, 0, 0, 3407, 3404, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3406, 1, 0, 0, 0, 3408, 377, 1, 0, 0, 0, 3409, 3414, 3, 380, 190, 0, 3410, 3411, 5, 506, 0, 0, 3411, 3413, 3, 380, 190, 0, 3412, 3410, 1, 0, 0, 0, 3413, 3416, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 379, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3417, 3418, 8, 19, 0, 0, 3418, 381, 1, 0, 0, 0, 3419, 3420, 3, 384, 192, 0, 3420, 3429, 5, 507, 0, 0, 3421, 3426, 3, 362, 181, 0, 3422, 3423, 5, 505, 0, 0, 3423, 3425, 3, 362, 181, 0, 3424, 3422, 1, 0, 0, 0, 3425, 3428, 1, 0, 0, 0, 3426, 3424, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3430, 1, 0, 0, 0, 3428, 3426, 1, 0, 0, 0, 3429, 3421, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 508, 0, 0, 3432, 383, 1, 0, 0, 0, 3433, 3434, 7, 20, 0, 0, 3434, 385, 1, 0, 0, 0, 3435, 3436, 5, 507, 0, 0, 3436, 3441, 3, 388, 194, 0, 3437, 3438, 5, 505, 0, 0, 3438, 3440, 3, 388, 194, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3444, 3445, 5, 508, 0, 0, 3445, 387, 1, 0, 0, 0, 3446, 3447, 5, 204, 0, 0, 3447, 3448, 5, 513, 0, 0, 3448, 3449, 5, 509, 0, 0, 3449, 3450, 3, 344, 172, 0, 3450, 3451, 5, 510, 0, 0, 3451, 3474, 1, 0, 0, 0, 3452, 3453, 5, 205, 0, 0, 3453, 3454, 5, 513, 0, 0, 3454, 3455, 5, 509, 0, 0, 3455, 3456, 3, 352, 176, 0, 3456, 3457, 5, 510, 0, 0, 3457, 3474, 1, 0, 0, 0, 3458, 3459, 5, 164, 0, 0, 3459, 3460, 5, 513, 0, 0, 3460, 3474, 5, 521, 0, 0, 3461, 3462, 5, 35, 0, 0, 3462, 3465, 5, 513, 0, 0, 3463, 3466, 3, 712, 356, 0, 3464, 3466, 5, 521, 0, 0, 3465, 3463, 1, 0, 0, 0, 3465, 3464, 1, 0, 0, 0, 3466, 3474, 1, 0, 0, 0, 3467, 3468, 5, 220, 0, 0, 3468, 3469, 5, 513, 0, 0, 3469, 3474, 5, 521, 0, 0, 3470, 3471, 5, 221, 0, 0, 3471, 3472, 5, 513, 0, 0, 3472, 3474, 5, 521, 0, 0, 3473, 3446, 1, 0, 0, 0, 3473, 3452, 1, 0, 0, 0, 3473, 3458, 1, 0, 0, 0, 3473, 3461, 1, 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 389, 1, 0, 0, 0, 3475, 3476, 5, 507, 0, 0, 3476, 3481, 3, 392, 196, 0, 3477, 3478, 5, 505, 0, 0, 3478, 3480, 3, 392, 196, 0, 3479, 3477, 1, 0, 0, 0, 3480, 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3485, 5, 508, 0, 0, 3485, 391, 1, 0, 0, 0, 3486, 3487, 5, 204, 0, 0, 3487, 3488, 5, 513, 0, 0, 3488, 3489, 5, 509, 0, 0, 3489, 3490, 3, 348, 174, 0, 3490, 3491, 5, 510, 0, 0, 3491, 3502, 1, 0, 0, 0, 3492, 3493, 5, 205, 0, 0, 3493, 3494, 5, 513, 0, 0, 3494, 3495, 5, 509, 0, 0, 3495, 3496, 3, 352, 176, 0, 3496, 3497, 5, 510, 0, 0, 3497, 3502, 1, 0, 0, 0, 3498, 3499, 5, 221, 0, 0, 3499, 3500, 5, 513, 0, 0, 3500, 3502, 5, 521, 0, 0, 3501, 3486, 1, 0, 0, 0, 3501, 3492, 1, 0, 0, 0, 3501, 3498, 1, 0, 0, 0, 3502, 393, 1, 0, 0, 0, 3503, 3506, 3, 398, 199, 0, 3504, 3506, 3, 396, 198, 0, 3505, 3503, 1, 0, 0, 0, 3505, 3504, 1, 0, 0, 0, 3506, 3509, 1, 0, 0, 0, 3507, 3505, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 395, 1, 0, 0, 0, 3509, 3507, 1, 0, 0, 0, 3510, 3511, 5, 67, 0, 0, 3511, 3512, 5, 391, 0, 0, 3512, 3515, 3, 714, 357, 0, 3513, 3514, 5, 76, 0, 0, 3514, 3516, 3, 714, 357, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 397, 1, 0, 0, 0, 3517, 3518, 3, 400, 200, 0, 3518, 3520, 5, 525, 0, 0, 3519, 3521, 3, 402, 201, 0, 3520, 3519, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3523, 1, 0, 0, 0, 3522, 3524, 3, 440, 220, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3544, 1, 0, 0, 0, 3525, 3526, 5, 181, 0, 0, 3526, 3527, 5, 521, 0, 0, 3527, 3529, 5, 525, 0, 0, 3528, 3530, 3, 402, 201, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3533, 3, 440, 220, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3544, 1, 0, 0, 0, 3534, 3535, 5, 180, 0, 0, 3535, 3536, 5, 521, 0, 0, 3536, 3538, 5, 525, 0, 0, 3537, 3539, 3, 402, 201, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3541, 1, 0, 0, 0, 3540, 3542, 3, 440, 220, 0, 3541, 3540, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3517, 1, 0, 0, 0, 3543, 3525, 1, 0, 0, 0, 3543, 3534, 1, 0, 0, 0, 3544, 399, 1, 0, 0, 0, 3545, 3546, 7, 21, 0, 0, 3546, 401, 1, 0, 0, 0, 3547, 3548, 5, 507, 0, 0, 3548, 3553, 3, 404, 202, 0, 3549, 3550, 5, 505, 0, 0, 3550, 3552, 3, 404, 202, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3555, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3557, 5, 508, 0, 0, 3557, 403, 1, 0, 0, 0, 3558, 3559, 5, 193, 0, 0, 3559, 3560, 5, 513, 0, 0, 3560, 3653, 3, 410, 205, 0, 3561, 3562, 5, 38, 0, 0, 3562, 3563, 5, 513, 0, 0, 3563, 3653, 3, 418, 209, 0, 3564, 3565, 5, 200, 0, 0, 3565, 3566, 5, 513, 0, 0, 3566, 3653, 3, 418, 209, 0, 3567, 3568, 5, 116, 0, 0, 3568, 3569, 5, 513, 0, 0, 3569, 3653, 3, 412, 206, 0, 3570, 3571, 5, 190, 0, 0, 3571, 3572, 5, 513, 0, 0, 3572, 3653, 3, 420, 210, 0, 3573, 3574, 5, 168, 0, 0, 3574, 3575, 5, 513, 0, 0, 3575, 3653, 5, 521, 0, 0, 3576, 3577, 5, 201, 0, 0, 3577, 3578, 5, 513, 0, 0, 3578, 3653, 3, 418, 209, 0, 3579, 3580, 5, 198, 0, 0, 3580, 3581, 5, 513, 0, 0, 3581, 3653, 3, 420, 210, 0, 3582, 3583, 5, 199, 0, 0, 3583, 3584, 5, 513, 0, 0, 3584, 3653, 3, 426, 213, 0, 3585, 3586, 5, 202, 0, 0, 3586, 3587, 5, 513, 0, 0, 3587, 3653, 3, 422, 211, 0, 3588, 3589, 5, 203, 0, 0, 3589, 3590, 5, 513, 0, 0, 3590, 3653, 3, 422, 211, 0, 3591, 3592, 5, 211, 0, 0, 3592, 3593, 5, 513, 0, 0, 3593, 3653, 3, 428, 214, 0, 3594, 3595, 5, 209, 0, 0, 3595, 3596, 5, 513, 0, 0, 3596, 3653, 5, 521, 0, 0, 3597, 3598, 5, 210, 0, 0, 3598, 3599, 5, 513, 0, 0, 3599, 3653, 5, 521, 0, 0, 3600, 3601, 5, 206, 0, 0, 3601, 3602, 5, 513, 0, 0, 3602, 3653, 3, 430, 215, 0, 3603, 3604, 5, 207, 0, 0, 3604, 3605, 5, 513, 0, 0, 3605, 3653, 3, 430, 215, 0, 3606, 3607, 5, 208, 0, 0, 3607, 3608, 5, 513, 0, 0, 3608, 3653, 3, 430, 215, 0, 3609, 3610, 5, 195, 0, 0, 3610, 3611, 5, 513, 0, 0, 3611, 3653, 3, 432, 216, 0, 3612, 3613, 5, 34, 0, 0, 3613, 3614, 5, 513, 0, 0, 3614, 3653, 3, 712, 356, 0, 3615, 3616, 5, 226, 0, 0, 3616, 3617, 5, 513, 0, 0, 3617, 3653, 3, 408, 204, 0, 3618, 3619, 5, 227, 0, 0, 3619, 3620, 5, 513, 0, 0, 3620, 3653, 3, 406, 203, 0, 3621, 3622, 5, 214, 0, 0, 3622, 3623, 5, 513, 0, 0, 3623, 3653, 3, 436, 218, 0, 3624, 3625, 5, 217, 0, 0, 3625, 3626, 5, 513, 0, 0, 3626, 3653, 5, 523, 0, 0, 3627, 3628, 5, 218, 0, 0, 3628, 3629, 5, 513, 0, 0, 3629, 3653, 5, 523, 0, 0, 3630, 3631, 5, 236, 0, 0, 3631, 3632, 5, 513, 0, 0, 3632, 3653, 3, 358, 179, 0, 3633, 3634, 5, 236, 0, 0, 3634, 3635, 5, 513, 0, 0, 3635, 3653, 3, 434, 217, 0, 3636, 3637, 5, 224, 0, 0, 3637, 3638, 5, 513, 0, 0, 3638, 3653, 3, 358, 179, 0, 3639, 3640, 5, 224, 0, 0, 3640, 3641, 5, 513, 0, 0, 3641, 3653, 3, 434, 217, 0, 3642, 3643, 5, 192, 0, 0, 3643, 3644, 5, 513, 0, 0, 3644, 3653, 3, 434, 217, 0, 3645, 3646, 5, 525, 0, 0, 3646, 3647, 5, 513, 0, 0, 3647, 3653, 3, 434, 217, 0, 3648, 3649, 3, 736, 368, 0, 3649, 3650, 5, 513, 0, 0, 3650, 3651, 3, 434, 217, 0, 3651, 3653, 1, 0, 0, 0, 3652, 3558, 1, 0, 0, 0, 3652, 3561, 1, 0, 0, 0, 3652, 3564, 1, 0, 0, 0, 3652, 3567, 1, 0, 0, 0, 3652, 3570, 1, 0, 0, 0, 3652, 3573, 1, 0, 0, 0, 3652, 3576, 1, 0, 0, 0, 3652, 3579, 1, 0, 0, 0, 3652, 3582, 1, 0, 0, 0, 3652, 3585, 1, 0, 0, 0, 3652, 3588, 1, 0, 0, 0, 3652, 3591, 1, 0, 0, 0, 3652, 3594, 1, 0, 0, 0, 3652, 3597, 1, 0, 0, 0, 3652, 3600, 1, 0, 0, 0, 3652, 3603, 1, 0, 0, 0, 3652, 3606, 1, 0, 0, 0, 3652, 3609, 1, 0, 0, 0, 3652, 3612, 1, 0, 0, 0, 3652, 3615, 1, 0, 0, 0, 3652, 3618, 1, 0, 0, 0, 3652, 3621, 1, 0, 0, 0, 3652, 3624, 1, 0, 0, 0, 3652, 3627, 1, 0, 0, 0, 3652, 3630, 1, 0, 0, 0, 3652, 3633, 1, 0, 0, 0, 3652, 3636, 1, 0, 0, 0, 3652, 3639, 1, 0, 0, 0, 3652, 3642, 1, 0, 0, 0, 3652, 3645, 1, 0, 0, 0, 3652, 3648, 1, 0, 0, 0, 3653, 405, 1, 0, 0, 0, 3654, 3655, 7, 22, 0, 0, 3655, 407, 1, 0, 0, 0, 3656, 3657, 5, 511, 0, 0, 3657, 3662, 3, 712, 356, 0, 3658, 3659, 5, 505, 0, 0, 3659, 3661, 3, 712, 356, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3666, 5, 512, 0, 0, 3666, 409, 1, 0, 0, 0, 3667, 3714, 5, 524, 0, 0, 3668, 3670, 5, 357, 0, 0, 3669, 3671, 5, 71, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3686, 3, 712, 356, 0, 3673, 3684, 5, 72, 0, 0, 3674, 3680, 3, 358, 179, 0, 3675, 3676, 3, 360, 180, 0, 3676, 3677, 3, 358, 179, 0, 3677, 3679, 1, 0, 0, 0, 3678, 3675, 1, 0, 0, 0, 3679, 3682, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3685, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3685, 3, 672, 336, 0, 3684, 3674, 1, 0, 0, 0, 3684, 3683, 1, 0, 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3673, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3697, 1, 0, 0, 0, 3688, 3689, 5, 10, 0, 0, 3689, 3694, 3, 356, 178, 0, 3690, 3691, 5, 505, 0, 0, 3691, 3693, 3, 356, 178, 0, 3692, 3690, 1, 0, 0, 0, 3693, 3696, 1, 0, 0, 0, 3694, 3692, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3698, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3688, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3714, 1, 0, 0, 0, 3699, 3700, 5, 30, 0, 0, 3700, 3702, 3, 712, 356, 0, 3701, 3703, 3, 414, 207, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3714, 1, 0, 0, 0, 3704, 3705, 5, 31, 0, 0, 3705, 3707, 3, 712, 356, 0, 3706, 3708, 3, 414, 207, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3714, 1, 0, 0, 0, 3709, 3710, 5, 27, 0, 0, 3710, 3714, 3, 418, 209, 0, 3711, 3712, 5, 195, 0, 0, 3712, 3714, 5, 525, 0, 0, 3713, 3667, 1, 0, 0, 0, 3713, 3668, 1, 0, 0, 0, 3713, 3699, 1, 0, 0, 0, 3713, 3704, 1, 0, 0, 0, 3713, 3709, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3714, 411, 1, 0, 0, 0, 3715, 3717, 5, 238, 0, 0, 3716, 3718, 5, 240, 0, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3754, 1, 0, 0, 0, 3719, 3721, 5, 239, 0, 0, 3720, 3722, 5, 240, 0, 0, 3721, 3720, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3754, 1, 0, 0, 0, 3723, 3754, 5, 240, 0, 0, 3724, 3754, 5, 243, 0, 0, 3725, 3727, 5, 100, 0, 0, 3726, 3728, 5, 240, 0, 0, 3727, 3726, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3754, 1, 0, 0, 0, 3729, 3730, 5, 244, 0, 0, 3730, 3733, 3, 712, 356, 0, 3731, 3732, 5, 81, 0, 0, 3732, 3734, 3, 412, 206, 0, 3733, 3731, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3754, 1, 0, 0, 0, 3735, 3736, 5, 241, 0, 0, 3736, 3738, 3, 712, 356, 0, 3737, 3739, 3, 414, 207, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3754, 1, 0, 0, 0, 3740, 3741, 5, 30, 0, 0, 3741, 3743, 3, 712, 356, 0, 3742, 3744, 3, 414, 207, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3754, 1, 0, 0, 0, 3745, 3746, 5, 31, 0, 0, 3746, 3748, 3, 712, 356, 0, 3747, 3749, 3, 414, 207, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3754, 1, 0, 0, 0, 3750, 3751, 5, 247, 0, 0, 3751, 3754, 5, 521, 0, 0, 3752, 3754, 5, 248, 0, 0, 3753, 3715, 1, 0, 0, 0, 3753, 3719, 1, 0, 0, 0, 3753, 3723, 1, 0, 0, 0, 3753, 3724, 1, 0, 0, 0, 3753, 3725, 1, 0, 0, 0, 3753, 3729, 1, 0, 0, 0, 3753, 3735, 1, 0, 0, 0, 3753, 3740, 1, 0, 0, 0, 3753, 3745, 1, 0, 0, 0, 3753, 3750, 1, 0, 0, 0, 3753, 3752, 1, 0, 0, 0, 3754, 413, 1, 0, 0, 0, 3755, 3756, 5, 507, 0, 0, 3756, 3761, 3, 416, 208, 0, 3757, 3758, 5, 505, 0, 0, 3758, 3760, 3, 416, 208, 0, 3759, 3757, 1, 0, 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3761, 1, 0, 0, 0, 3764, 3765, 5, 508, 0, 0, 3765, 415, 1, 0, 0, 0, 3766, 3767, 5, 525, 0, 0, 3767, 3768, 5, 513, 0, 0, 3768, 3773, 3, 672, 336, 0, 3769, 3770, 5, 524, 0, 0, 3770, 3771, 5, 494, 0, 0, 3771, 3773, 3, 672, 336, 0, 3772, 3766, 1, 0, 0, 0, 3772, 3769, 1, 0, 0, 0, 3773, 417, 1, 0, 0, 0, 3774, 3778, 5, 525, 0, 0, 3775, 3778, 5, 527, 0, 0, 3776, 3778, 3, 736, 368, 0, 3777, 3774, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3777, 3776, 1, 0, 0, 0, 3778, 3787, 1, 0, 0, 0, 3779, 3783, 5, 500, 0, 0, 3780, 3784, 5, 525, 0, 0, 3781, 3784, 5, 527, 0, 0, 3782, 3784, 3, 736, 368, 0, 3783, 3780, 1, 0, 0, 0, 3783, 3781, 1, 0, 0, 0, 3783, 3782, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3779, 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 419, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 3801, 5, 521, 0, 0, 3791, 3801, 3, 418, 209, 0, 3792, 3798, 5, 524, 0, 0, 3793, 3796, 5, 506, 0, 0, 3794, 3797, 5, 525, 0, 0, 3795, 3797, 3, 736, 368, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3795, 1, 0, 0, 0, 3797, 3799, 1, 0, 0, 0, 3798, 3793, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 3801, 1, 0, 0, 0, 3800, 3790, 1, 0, 0, 0, 3800, 3791, 1, 0, 0, 0, 3800, 3792, 1, 0, 0, 0, 3801, 421, 1, 0, 0, 0, 3802, 3803, 5, 511, 0, 0, 3803, 3808, 3, 424, 212, 0, 3804, 3805, 5, 505, 0, 0, 3805, 3807, 3, 424, 212, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3810, 1, 0, 0, 0, 3808, 3806, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3811, 1, 0, 0, 0, 3810, 3808, 1, 0, 0, 0, 3811, 3812, 5, 512, 0, 0, 3812, 423, 1, 0, 0, 0, 3813, 3814, 5, 509, 0, 0, 3814, 3815, 5, 523, 0, 0, 3815, 3816, 5, 510, 0, 0, 3816, 3817, 5, 494, 0, 0, 3817, 3818, 3, 672, 336, 0, 3818, 425, 1, 0, 0, 0, 3819, 3820, 7, 23, 0, 0, 3820, 427, 1, 0, 0, 0, 3821, 3822, 7, 24, 0, 0, 3822, 429, 1, 0, 0, 0, 3823, 3824, 7, 25, 0, 0, 3824, 431, 1, 0, 0, 0, 3825, 3826, 7, 26, 0, 0, 3826, 433, 1, 0, 0, 0, 3827, 3851, 5, 521, 0, 0, 3828, 3851, 5, 523, 0, 0, 3829, 3851, 3, 720, 360, 0, 3830, 3851, 3, 712, 356, 0, 3831, 3851, 5, 525, 0, 0, 3832, 3851, 5, 259, 0, 0, 3833, 3851, 5, 260, 0, 0, 3834, 3851, 5, 261, 0, 0, 3835, 3851, 5, 262, 0, 0, 3836, 3851, 5, 263, 0, 0, 3837, 3851, 5, 264, 0, 0, 3838, 3847, 5, 511, 0, 0, 3839, 3844, 3, 672, 336, 0, 3840, 3841, 5, 505, 0, 0, 3841, 3843, 3, 672, 336, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3846, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3844, 3845, 1, 0, 0, 0, 3845, 3848, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3847, 3839, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3851, 5, 512, 0, 0, 3850, 3827, 1, 0, 0, 0, 3850, 3828, 1, 0, 0, 0, 3850, 3829, 1, 0, 0, 0, 3850, 3830, 1, 0, 0, 0, 3850, 3831, 1, 0, 0, 0, 3850, 3832, 1, 0, 0, 0, 3850, 3833, 1, 0, 0, 0, 3850, 3834, 1, 0, 0, 0, 3850, 3835, 1, 0, 0, 0, 3850, 3836, 1, 0, 0, 0, 3850, 3837, 1, 0, 0, 0, 3850, 3838, 1, 0, 0, 0, 3851, 435, 1, 0, 0, 0, 3852, 3853, 5, 511, 0, 0, 3853, 3858, 3, 438, 219, 0, 3854, 3855, 5, 505, 0, 0, 3855, 3857, 3, 438, 219, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3860, 1, 0, 0, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3861, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3862, 5, 512, 0, 0, 3862, 3866, 1, 0, 0, 0, 3863, 3864, 5, 511, 0, 0, 3864, 3866, 5, 512, 0, 0, 3865, 3852, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3866, 437, 1, 0, 0, 0, 3867, 3868, 5, 521, 0, 0, 3868, 3869, 5, 513, 0, 0, 3869, 3877, 5, 521, 0, 0, 3870, 3871, 5, 521, 0, 0, 3871, 3872, 5, 513, 0, 0, 3872, 3877, 5, 93, 0, 0, 3873, 3874, 5, 521, 0, 0, 3874, 3875, 5, 513, 0, 0, 3875, 3877, 5, 489, 0, 0, 3876, 3867, 1, 0, 0, 0, 3876, 3870, 1, 0, 0, 0, 3876, 3873, 1, 0, 0, 0, 3877, 439, 1, 0, 0, 0, 3878, 3879, 5, 509, 0, 0, 3879, 3880, 3, 394, 197, 0, 3880, 3881, 5, 510, 0, 0, 3881, 441, 1, 0, 0, 0, 3882, 3883, 5, 36, 0, 0, 3883, 3885, 3, 712, 356, 0, 3884, 3886, 3, 444, 222, 0, 3885, 3884, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 3891, 5, 96, 0, 0, 3888, 3890, 3, 448, 224, 0, 3889, 3888, 1, 0, 0, 0, 3890, 3893, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3894, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3894, 3895, 5, 83, 0, 0, 3895, 443, 1, 0, 0, 0, 3896, 3898, 3, 446, 223, 0, 3897, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 445, 1, 0, 0, 0, 3901, 3902, 5, 410, 0, 0, 3902, 3903, 5, 521, 0, 0, 3903, 447, 1, 0, 0, 0, 3904, 3905, 5, 33, 0, 0, 3905, 3908, 3, 712, 356, 0, 3906, 3907, 5, 190, 0, 0, 3907, 3909, 5, 521, 0, 0, 3908, 3906, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 449, 1, 0, 0, 0, 3910, 3911, 5, 357, 0, 0, 3911, 3912, 5, 356, 0, 0, 3912, 3914, 3, 712, 356, 0, 3913, 3915, 3, 452, 226, 0, 3914, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3926, 1, 0, 0, 0, 3918, 3922, 5, 96, 0, 0, 3919, 3921, 3, 454, 227, 0, 3920, 3919, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3925, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3927, 5, 83, 0, 0, 3926, 3918, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 451, 1, 0, 0, 0, 3928, 3929, 5, 423, 0, 0, 3929, 3956, 5, 521, 0, 0, 3930, 3931, 5, 356, 0, 0, 3931, 3935, 5, 266, 0, 0, 3932, 3936, 5, 521, 0, 0, 3933, 3934, 5, 514, 0, 0, 3934, 3936, 3, 712, 356, 0, 3935, 3932, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3956, 1, 0, 0, 0, 3937, 3938, 5, 63, 0, 0, 3938, 3956, 5, 521, 0, 0, 3939, 3940, 5, 64, 0, 0, 3940, 3956, 5, 523, 0, 0, 3941, 3942, 5, 357, 0, 0, 3942, 3956, 5, 521, 0, 0, 3943, 3947, 5, 354, 0, 0, 3944, 3948, 5, 521, 0, 0, 3945, 3946, 5, 514, 0, 0, 3946, 3948, 3, 712, 356, 0, 3947, 3944, 1, 0, 0, 0, 3947, 3945, 1, 0, 0, 0, 3948, 3956, 1, 0, 0, 0, 3949, 3953, 5, 355, 0, 0, 3950, 3954, 5, 521, 0, 0, 3951, 3952, 5, 514, 0, 0, 3952, 3954, 3, 712, 356, 0, 3953, 3950, 1, 0, 0, 0, 3953, 3951, 1, 0, 0, 0, 3954, 3956, 1, 0, 0, 0, 3955, 3928, 1, 0, 0, 0, 3955, 3930, 1, 0, 0, 0, 3955, 3937, 1, 0, 0, 0, 3955, 3939, 1, 0, 0, 0, 3955, 3941, 1, 0, 0, 0, 3955, 3943, 1, 0, 0, 0, 3955, 3949, 1, 0, 0, 0, 3956, 453, 1, 0, 0, 0, 3957, 3958, 5, 358, 0, 0, 3958, 3959, 3, 714, 357, 0, 3959, 3960, 5, 438, 0, 0, 3960, 3972, 7, 12, 0, 0, 3961, 3962, 5, 372, 0, 0, 3962, 3963, 3, 714, 357, 0, 3963, 3964, 5, 513, 0, 0, 3964, 3968, 3, 108, 54, 0, 3965, 3966, 5, 299, 0, 0, 3966, 3969, 5, 521, 0, 0, 3967, 3969, 5, 292, 0, 0, 3968, 3965, 1, 0, 0, 0, 3968, 3967, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3971, 1, 0, 0, 0, 3970, 3961, 1, 0, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3991, 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3976, 5, 77, 0, 0, 3976, 3989, 3, 712, 356, 0, 3977, 3978, 5, 359, 0, 0, 3978, 3979, 5, 507, 0, 0, 3979, 3984, 3, 456, 228, 0, 3980, 3981, 5, 505, 0, 0, 3981, 3983, 3, 456, 228, 0, 3982, 3980, 1, 0, 0, 0, 3983, 3986, 1, 0, 0, 0, 3984, 3982, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3987, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3987, 3988, 5, 508, 0, 0, 3988, 3990, 1, 0, 0, 0, 3989, 3977, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3992, 1, 0, 0, 0, 3991, 3975, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3994, 5, 504, 0, 0, 3994, 455, 1, 0, 0, 0, 3995, 3996, 3, 714, 357, 0, 3996, 3997, 5, 76, 0, 0, 3997, 3998, 3, 714, 357, 0, 3998, 457, 1, 0, 0, 0, 3999, 4000, 5, 37, 0, 0, 4000, 4001, 3, 712, 356, 0, 4001, 4002, 5, 423, 0, 0, 4002, 4003, 3, 108, 54, 0, 4003, 4004, 5, 299, 0, 0, 4004, 4006, 3, 716, 358, 0, 4005, 4007, 3, 460, 230, 0, 4006, 4005, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 459, 1, 0, 0, 0, 4008, 4010, 3, 462, 231, 0, 4009, 4008, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 461, 1, 0, 0, 0, 4013, 4014, 5, 410, 0, 0, 4014, 4021, 5, 521, 0, 0, 4015, 4016, 5, 221, 0, 0, 4016, 4021, 5, 521, 0, 0, 4017, 4018, 5, 371, 0, 0, 4018, 4019, 5, 430, 0, 0, 4019, 4021, 5, 343, 0, 0, 4020, 4013, 1, 0, 0, 0, 4020, 4015, 1, 0, 0, 0, 4020, 4017, 1, 0, 0, 0, 4021, 463, 1, 0, 0, 0, 4022, 4023, 5, 448, 0, 0, 4023, 4032, 5, 521, 0, 0, 4024, 4029, 3, 560, 280, 0, 4025, 4026, 5, 505, 0, 0, 4026, 4028, 3, 560, 280, 0, 4027, 4025, 1, 0, 0, 0, 4028, 4031, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4033, 1, 0, 0, 0, 4031, 4029, 1, 0, 0, 0, 4032, 4024, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 465, 1, 0, 0, 0, 4034, 4035, 5, 315, 0, 0, 4035, 4036, 5, 343, 0, 0, 4036, 4037, 3, 712, 356, 0, 4037, 4038, 3, 468, 234, 0, 4038, 4039, 3, 470, 235, 0, 4039, 4043, 5, 96, 0, 0, 4040, 4042, 3, 474, 237, 0, 4041, 4040, 1, 0, 0, 0, 4042, 4045, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4043, 1, 0, 0, 0, 4046, 4047, 5, 83, 0, 0, 4047, 467, 1, 0, 0, 0, 4048, 4049, 5, 319, 0, 0, 4049, 4050, 5, 220, 0, 0, 4050, 4051, 5, 521, 0, 0, 4051, 469, 1, 0, 0, 0, 4052, 4053, 5, 321, 0, 0, 4053, 4067, 5, 428, 0, 0, 4054, 4055, 5, 321, 0, 0, 4055, 4056, 5, 322, 0, 0, 4056, 4057, 5, 507, 0, 0, 4057, 4058, 5, 354, 0, 0, 4058, 4059, 5, 494, 0, 0, 4059, 4060, 3, 472, 236, 0, 4060, 4061, 5, 505, 0, 0, 4061, 4062, 5, 355, 0, 0, 4062, 4063, 5, 494, 0, 0, 4063, 4064, 3, 472, 236, 0, 4064, 4065, 5, 508, 0, 0, 4065, 4067, 1, 0, 0, 0, 4066, 4052, 1, 0, 0, 0, 4066, 4054, 1, 0, 0, 0, 4067, 471, 1, 0, 0, 0, 4068, 4069, 7, 27, 0, 0, 4069, 473, 1, 0, 0, 0, 4070, 4072, 3, 722, 361, 0, 4071, 4070, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4073, 1, 0, 0, 0, 4073, 4076, 5, 325, 0, 0, 4074, 4077, 3, 714, 357, 0, 4075, 4077, 5, 521, 0, 0, 4076, 4074, 1, 0, 0, 0, 4076, 4075, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4079, 5, 326, 0, 0, 4079, 4080, 3, 476, 238, 0, 4080, 4081, 5, 327, 0, 0, 4081, 4085, 5, 521, 0, 0, 4082, 4084, 3, 478, 239, 0, 4083, 4082, 1, 0, 0, 0, 4084, 4087, 1, 0, 0, 0, 4085, 4083, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4088, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4088, 4089, 5, 330, 0, 0, 4089, 4090, 3, 482, 241, 0, 4090, 4091, 5, 504, 0, 0, 4091, 475, 1, 0, 0, 0, 4092, 4093, 7, 15, 0, 0, 4093, 477, 1, 0, 0, 0, 4094, 4095, 5, 372, 0, 0, 4095, 4096, 5, 524, 0, 0, 4096, 4097, 5, 513, 0, 0, 4097, 4113, 3, 108, 54, 0, 4098, 4099, 5, 358, 0, 0, 4099, 4100, 5, 524, 0, 0, 4100, 4101, 5, 513, 0, 0, 4101, 4113, 3, 108, 54, 0, 4102, 4103, 5, 197, 0, 0, 4103, 4104, 5, 521, 0, 0, 4104, 4105, 5, 494, 0, 0, 4105, 4113, 3, 480, 240, 0, 4106, 4107, 5, 329, 0, 0, 4107, 4108, 7, 28, 0, 0, 4108, 4109, 5, 71, 0, 0, 4109, 4113, 5, 524, 0, 0, 4110, 4111, 5, 328, 0, 0, 4111, 4113, 5, 523, 0, 0, 4112, 4094, 1, 0, 0, 0, 4112, 4098, 1, 0, 0, 0, 4112, 4102, 1, 0, 0, 0, 4112, 4106, 1, 0, 0, 0, 4112, 4110, 1, 0, 0, 0, 4113, 479, 1, 0, 0, 0, 4114, 4120, 5, 521, 0, 0, 4115, 4120, 5, 524, 0, 0, 4116, 4117, 5, 521, 0, 0, 4117, 4118, 5, 497, 0, 0, 4118, 4120, 5, 524, 0, 0, 4119, 4114, 1, 0, 0, 0, 4119, 4115, 1, 0, 0, 0, 4119, 4116, 1, 0, 0, 0, 4120, 481, 1, 0, 0, 0, 4121, 4122, 5, 333, 0, 0, 4122, 4123, 5, 76, 0, 0, 4123, 4135, 5, 524, 0, 0, 4124, 4125, 5, 266, 0, 0, 4125, 4126, 5, 76, 0, 0, 4126, 4135, 5, 524, 0, 0, 4127, 4128, 5, 336, 0, 0, 4128, 4129, 5, 76, 0, 0, 4129, 4135, 5, 524, 0, 0, 4130, 4131, 5, 335, 0, 0, 4131, 4132, 5, 76, 0, 0, 4132, 4135, 5, 524, 0, 0, 4133, 4135, 5, 428, 0, 0, 4134, 4121, 1, 0, 0, 0, 4134, 4124, 1, 0, 0, 0, 4134, 4127, 1, 0, 0, 0, 4134, 4130, 1, 0, 0, 0, 4134, 4133, 1, 0, 0, 0, 4135, 483, 1, 0, 0, 0, 4136, 4137, 5, 41, 0, 0, 4137, 4138, 5, 525, 0, 0, 4138, 4139, 5, 93, 0, 0, 4139, 4140, 3, 712, 356, 0, 4140, 4141, 5, 507, 0, 0, 4141, 4142, 3, 116, 58, 0, 4142, 4143, 5, 508, 0, 0, 4143, 485, 1, 0, 0, 0, 4144, 4145, 5, 318, 0, 0, 4145, 4146, 5, 343, 0, 0, 4146, 4147, 3, 712, 356, 0, 4147, 4148, 5, 507, 0, 0, 4148, 4153, 3, 492, 246, 0, 4149, 4150, 5, 505, 0, 0, 4150, 4152, 3, 492, 246, 0, 4151, 4149, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4151, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4153, 1, 0, 0, 0, 4156, 4158, 5, 508, 0, 0, 4157, 4159, 3, 512, 256, 0, 4158, 4157, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 487, 1, 0, 0, 0, 4160, 4161, 5, 318, 0, 0, 4161, 4162, 5, 316, 0, 0, 4162, 4163, 3, 712, 356, 0, 4163, 4164, 5, 507, 0, 0, 4164, 4169, 3, 492, 246, 0, 4165, 4166, 5, 505, 0, 0, 4166, 4168, 3, 492, 246, 0, 4167, 4165, 1, 0, 0, 0, 4168, 4171, 1, 0, 0, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4172, 1, 0, 0, 0, 4171, 4169, 1, 0, 0, 0, 4172, 4174, 5, 508, 0, 0, 4173, 4175, 3, 496, 248, 0, 4174, 4173, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4184, 1, 0, 0, 0, 4176, 4180, 5, 509, 0, 0, 4177, 4179, 3, 500, 250, 0, 4178, 4177, 1, 0, 0, 0, 4179, 4182, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4183, 4185, 5, 510, 0, 0, 4184, 4176, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 489, 1, 0, 0, 0, 4186, 4196, 5, 521, 0, 0, 4187, 4196, 5, 523, 0, 0, 4188, 4196, 5, 300, 0, 0, 4189, 4196, 5, 301, 0, 0, 4190, 4192, 5, 30, 0, 0, 4191, 4193, 3, 712, 356, 0, 4192, 4191, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4196, 1, 0, 0, 0, 4194, 4196, 3, 712, 356, 0, 4195, 4186, 1, 0, 0, 0, 4195, 4187, 1, 0, 0, 0, 4195, 4188, 1, 0, 0, 0, 4195, 4189, 1, 0, 0, 0, 4195, 4190, 1, 0, 0, 0, 4195, 4194, 1, 0, 0, 0, 4196, 491, 1, 0, 0, 0, 4197, 4198, 3, 714, 357, 0, 4198, 4199, 5, 513, 0, 0, 4199, 4200, 3, 490, 245, 0, 4200, 493, 1, 0, 0, 0, 4201, 4202, 3, 714, 357, 0, 4202, 4203, 5, 494, 0, 0, 4203, 4204, 3, 490, 245, 0, 4204, 495, 1, 0, 0, 0, 4205, 4206, 5, 321, 0, 0, 4206, 4211, 3, 498, 249, 0, 4207, 4208, 5, 505, 0, 0, 4208, 4210, 3, 498, 249, 0, 4209, 4207, 1, 0, 0, 0, 4210, 4213, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 497, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 4223, 5, 322, 0, 0, 4215, 4223, 5, 350, 0, 0, 4216, 4223, 5, 351, 0, 0, 4217, 4219, 5, 30, 0, 0, 4218, 4220, 3, 712, 356, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4223, 1, 0, 0, 0, 4221, 4223, 5, 525, 0, 0, 4222, 4214, 1, 0, 0, 0, 4222, 4215, 1, 0, 0, 0, 4222, 4216, 1, 0, 0, 0, 4222, 4217, 1, 0, 0, 0, 4222, 4221, 1, 0, 0, 0, 4223, 499, 1, 0, 0, 0, 4224, 4225, 5, 345, 0, 0, 4225, 4226, 5, 23, 0, 0, 4226, 4229, 3, 712, 356, 0, 4227, 4228, 5, 76, 0, 0, 4228, 4230, 5, 521, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4242, 1, 0, 0, 0, 4231, 4232, 5, 507, 0, 0, 4232, 4237, 3, 492, 246, 0, 4233, 4234, 5, 505, 0, 0, 4234, 4236, 3, 492, 246, 0, 4235, 4233, 1, 0, 0, 0, 4236, 4239, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4237, 4238, 1, 0, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4237, 1, 0, 0, 0, 4240, 4241, 5, 508, 0, 0, 4241, 4243, 1, 0, 0, 0, 4242, 4231, 1, 0, 0, 0, 4242, 4243, 1, 0, 0, 0, 4243, 4245, 1, 0, 0, 0, 4244, 4246, 3, 502, 251, 0, 4245, 4244, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4248, 1, 0, 0, 0, 4247, 4249, 5, 504, 0, 0, 4248, 4247, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 501, 1, 0, 0, 0, 4250, 4251, 5, 347, 0, 0, 4251, 4261, 5, 507, 0, 0, 4252, 4262, 5, 499, 0, 0, 4253, 4258, 3, 504, 252, 0, 4254, 4255, 5, 505, 0, 0, 4255, 4257, 3, 504, 252, 0, 4256, 4254, 1, 0, 0, 0, 4257, 4260, 1, 0, 0, 0, 4258, 4256, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, 4259, 4262, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4261, 4252, 1, 0, 0, 0, 4261, 4253, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 5, 508, 0, 0, 4264, 503, 1, 0, 0, 0, 4265, 4268, 5, 525, 0, 0, 4266, 4267, 5, 76, 0, 0, 4267, 4269, 5, 521, 0, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4269, 1, 0, 0, 0, 4269, 4271, 1, 0, 0, 0, 4270, 4272, 3, 506, 253, 0, 4271, 4270, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 505, 1, 0, 0, 0, 4273, 4274, 5, 507, 0, 0, 4274, 4279, 5, 525, 0, 0, 4275, 4276, 5, 505, 0, 0, 4276, 4278, 5, 525, 0, 0, 4277, 4275, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4283, 5, 508, 0, 0, 4283, 507, 1, 0, 0, 0, 4284, 4285, 5, 26, 0, 0, 4285, 4286, 5, 23, 0, 0, 4286, 4287, 3, 712, 356, 0, 4287, 4288, 5, 71, 0, 0, 4288, 4289, 5, 318, 0, 0, 4289, 4290, 5, 343, 0, 0, 4290, 4291, 3, 712, 356, 0, 4291, 4292, 5, 507, 0, 0, 4292, 4297, 3, 492, 246, 0, 4293, 4294, 5, 505, 0, 0, 4294, 4296, 3, 492, 246, 0, 4295, 4293, 1, 0, 0, 0, 4296, 4299, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4300, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4306, 5, 508, 0, 0, 4301, 4303, 5, 507, 0, 0, 4302, 4304, 3, 100, 50, 0, 4303, 4302, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4307, 5, 508, 0, 0, 4306, 4301, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 509, 1, 0, 0, 0, 4308, 4311, 5, 375, 0, 0, 4309, 4312, 3, 712, 356, 0, 4310, 4312, 5, 525, 0, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4310, 1, 0, 0, 0, 4312, 4316, 1, 0, 0, 0, 4313, 4315, 3, 34, 17, 0, 4314, 4313, 1, 0, 0, 0, 4315, 4318, 1, 0, 0, 0, 4316, 4314, 1, 0, 0, 0, 4316, 4317, 1, 0, 0, 0, 4317, 511, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4319, 4320, 5, 374, 0, 0, 4320, 4321, 5, 507, 0, 0, 4321, 4326, 3, 514, 257, 0, 4322, 4323, 5, 505, 0, 0, 4323, 4325, 3, 514, 257, 0, 4324, 4322, 1, 0, 0, 0, 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 4329, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4330, 5, 508, 0, 0, 4330, 513, 1, 0, 0, 0, 4331, 4332, 5, 521, 0, 0, 4332, 4333, 5, 513, 0, 0, 4333, 4334, 3, 490, 245, 0, 4334, 515, 1, 0, 0, 0, 4335, 4336, 5, 444, 0, 0, 4336, 4337, 5, 445, 0, 0, 4337, 4338, 5, 316, 0, 0, 4338, 4339, 3, 712, 356, 0, 4339, 4340, 5, 507, 0, 0, 4340, 4345, 3, 492, 246, 0, 4341, 4342, 5, 505, 0, 0, 4342, 4344, 3, 492, 246, 0, 4343, 4341, 1, 0, 0, 0, 4344, 4347, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4348, 1, 0, 0, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4349, 5, 508, 0, 0, 4349, 4351, 5, 509, 0, 0, 4350, 4352, 3, 518, 259, 0, 4351, 4350, 1, 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4353, 4354, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 5, 510, 0, 0, 4356, 517, 1, 0, 0, 0, 4357, 4358, 5, 407, 0, 0, 4358, 4359, 5, 525, 0, 0, 4359, 4360, 5, 507, 0, 0, 4360, 4365, 3, 520, 260, 0, 4361, 4362, 5, 505, 0, 0, 4362, 4364, 3, 520, 260, 0, 4363, 4361, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 4368, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4368, 4369, 5, 508, 0, 0, 4369, 4372, 7, 29, 0, 0, 4370, 4371, 5, 23, 0, 0, 4371, 4373, 3, 712, 356, 0, 4372, 4370, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4376, 1, 0, 0, 0, 4374, 4375, 5, 30, 0, 0, 4375, 4377, 3, 712, 356, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4378, 1, 0, 0, 0, 4378, 4379, 5, 504, 0, 0, 4379, 519, 1, 0, 0, 0, 4380, 4381, 5, 525, 0, 0, 4381, 4382, 5, 513, 0, 0, 4382, 4383, 3, 108, 54, 0, 4383, 521, 1, 0, 0, 0, 4384, 4385, 5, 32, 0, 0, 4385, 4390, 3, 712, 356, 0, 4386, 4387, 5, 372, 0, 0, 4387, 4388, 5, 524, 0, 0, 4388, 4389, 5, 513, 0, 0, 4389, 4391, 3, 712, 356, 0, 4390, 4386, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 4394, 1, 0, 0, 0, 4392, 4393, 5, 488, 0, 0, 4393, 4395, 5, 521, 0, 0, 4394, 4392, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4398, 1, 0, 0, 0, 4396, 4397, 5, 487, 0, 0, 4397, 4399, 5, 521, 0, 0, 4398, 4396, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 4403, 1, 0, 0, 0, 4400, 4401, 5, 365, 0, 0, 4401, 4402, 5, 464, 0, 0, 4402, 4404, 7, 30, 0, 0, 4403, 4400, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4408, 1, 0, 0, 0, 4405, 4406, 5, 475, 0, 0, 4406, 4407, 5, 33, 0, 0, 4407, 4409, 3, 712, 356, 0, 4408, 4405, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 4413, 1, 0, 0, 0, 4410, 4411, 5, 474, 0, 0, 4411, 4412, 5, 272, 0, 0, 4412, 4414, 5, 521, 0, 0, 4413, 4410, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4416, 5, 96, 0, 0, 4416, 4417, 3, 524, 262, 0, 4417, 4418, 5, 83, 0, 0, 4418, 4420, 5, 32, 0, 0, 4419, 4421, 5, 504, 0, 0, 4420, 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4424, 5, 500, 0, 0, 4423, 4422, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 523, 1, 0, 0, 0, 4425, 4427, 3, 526, 263, 0, 4426, 4425, 1, 0, 0, 0, 4427, 4430, 1, 0, 0, 0, 4428, 4426, 1, 0, 0, 0, 4428, 4429, 1, 0, 0, 0, 4429, 525, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4431, 4432, 3, 528, 264, 0, 4432, 4433, 5, 504, 0, 0, 4433, 4459, 1, 0, 0, 0, 4434, 4435, 3, 534, 267, 0, 4435, 4436, 5, 504, 0, 0, 4436, 4459, 1, 0, 0, 0, 4437, 4438, 3, 538, 269, 0, 4438, 4439, 5, 504, 0, 0, 4439, 4459, 1, 0, 0, 0, 4440, 4441, 3, 540, 270, 0, 4441, 4442, 5, 504, 0, 0, 4442, 4459, 1, 0, 0, 0, 4443, 4444, 3, 544, 272, 0, 4444, 4445, 5, 504, 0, 0, 4445, 4459, 1, 0, 0, 0, 4446, 4447, 3, 548, 274, 0, 4447, 4448, 5, 504, 0, 0, 4448, 4459, 1, 0, 0, 0, 4449, 4450, 3, 550, 275, 0, 4450, 4451, 5, 504, 0, 0, 4451, 4459, 1, 0, 0, 0, 4452, 4453, 3, 552, 276, 0, 4453, 4454, 5, 504, 0, 0, 4454, 4459, 1, 0, 0, 0, 4455, 4456, 3, 554, 277, 0, 4456, 4457, 5, 504, 0, 0, 4457, 4459, 1, 0, 0, 0, 4458, 4431, 1, 0, 0, 0, 4458, 4434, 1, 0, 0, 0, 4458, 4437, 1, 0, 0, 0, 4458, 4440, 1, 0, 0, 0, 4458, 4443, 1, 0, 0, 0, 4458, 4446, 1, 0, 0, 0, 4458, 4449, 1, 0, 0, 0, 4458, 4452, 1, 0, 0, 0, 4458, 4455, 1, 0, 0, 0, 4459, 527, 1, 0, 0, 0, 4460, 4461, 5, 465, 0, 0, 4461, 4462, 5, 466, 0, 0, 4462, 4463, 5, 525, 0, 0, 4463, 4466, 5, 521, 0, 0, 4464, 4465, 5, 33, 0, 0, 4465, 4467, 3, 712, 356, 0, 4466, 4464, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4471, 1, 0, 0, 0, 4468, 4469, 5, 470, 0, 0, 4469, 4470, 5, 30, 0, 0, 4470, 4472, 3, 712, 356, 0, 4471, 4468, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4476, 1, 0, 0, 0, 4473, 4474, 5, 470, 0, 0, 4474, 4475, 5, 312, 0, 0, 4475, 4477, 5, 521, 0, 0, 4476, 4473, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4480, 1, 0, 0, 0, 4478, 4479, 5, 23, 0, 0, 4479, 4481, 3, 712, 356, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4485, 1, 0, 0, 0, 4482, 4483, 5, 474, 0, 0, 4483, 4484, 5, 272, 0, 0, 4484, 4486, 5, 521, 0, 0, 4485, 4482, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4488, 5, 487, 0, 0, 4488, 4490, 5, 521, 0, 0, 4489, 4487, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4497, 1, 0, 0, 0, 4491, 4493, 5, 469, 0, 0, 4492, 4494, 3, 532, 266, 0, 4493, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4493, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4491, 1, 0, 0, 0, 4497, 4498, 1, 0, 0, 0, 4498, 4506, 1, 0, 0, 0, 4499, 4500, 5, 480, 0, 0, 4500, 4502, 5, 445, 0, 0, 4501, 4503, 3, 530, 265, 0, 4502, 4501, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 4507, 1, 0, 0, 0, 4506, 4499, 1, 0, 0, 0, 4506, 4507, 1, 0, 0, 0, 4507, 4558, 1, 0, 0, 0, 4508, 4509, 5, 483, 0, 0, 4509, 4510, 5, 465, 0, 0, 4510, 4511, 5, 466, 0, 0, 4511, 4512, 5, 525, 0, 0, 4512, 4515, 5, 521, 0, 0, 4513, 4514, 5, 33, 0, 0, 4514, 4516, 3, 712, 356, 0, 4515, 4513, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4520, 1, 0, 0, 0, 4517, 4518, 5, 470, 0, 0, 4518, 4519, 5, 30, 0, 0, 4519, 4521, 3, 712, 356, 0, 4520, 4517, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 4525, 1, 0, 0, 0, 4522, 4523, 5, 470, 0, 0, 4523, 4524, 5, 312, 0, 0, 4524, 4526, 5, 521, 0, 0, 4525, 4522, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4529, 1, 0, 0, 0, 4527, 4528, 5, 23, 0, 0, 4528, 4530, 3, 712, 356, 0, 4529, 4527, 1, 0, 0, 0, 4529, 4530, 1, 0, 0, 0, 4530, 4534, 1, 0, 0, 0, 4531, 4532, 5, 474, 0, 0, 4532, 4533, 5, 272, 0, 0, 4533, 4535, 5, 521, 0, 0, 4534, 4531, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4538, 1, 0, 0, 0, 4536, 4537, 5, 487, 0, 0, 4537, 4539, 5, 521, 0, 0, 4538, 4536, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 4546, 1, 0, 0, 0, 4540, 4542, 5, 469, 0, 0, 4541, 4543, 3, 532, 266, 0, 4542, 4541, 1, 0, 0, 0, 4543, 4544, 1, 0, 0, 0, 4544, 4542, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4547, 1, 0, 0, 0, 4546, 4540, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4555, 1, 0, 0, 0, 4548, 4549, 5, 480, 0, 0, 4549, 4551, 5, 445, 0, 0, 4550, 4552, 3, 530, 265, 0, 4551, 4550, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4551, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4556, 1, 0, 0, 0, 4555, 4548, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4558, 1, 0, 0, 0, 4557, 4460, 1, 0, 0, 0, 4557, 4508, 1, 0, 0, 0, 4558, 529, 1, 0, 0, 0, 4559, 4560, 5, 481, 0, 0, 4560, 4562, 5, 472, 0, 0, 4561, 4563, 5, 521, 0, 0, 4562, 4561, 1, 0, 0, 0, 4562, 4563, 1, 0, 0, 0, 4563, 4568, 1, 0, 0, 0, 4564, 4565, 5, 509, 0, 0, 4565, 4566, 3, 524, 262, 0, 4566, 4567, 5, 510, 0, 0, 4567, 4569, 1, 0, 0, 0, 4568, 4564, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, 0, 4569, 4593, 1, 0, 0, 0, 4570, 4571, 5, 482, 0, 0, 4571, 4572, 5, 481, 0, 0, 4572, 4574, 5, 472, 0, 0, 4573, 4575, 5, 521, 0, 0, 4574, 4573, 1, 0, 0, 0, 4574, 4575, 1, 0, 0, 0, 4575, 4580, 1, 0, 0, 0, 4576, 4577, 5, 509, 0, 0, 4577, 4578, 3, 524, 262, 0, 4578, 4579, 5, 510, 0, 0, 4579, 4581, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4581, 1, 0, 0, 0, 4581, 4593, 1, 0, 0, 0, 4582, 4584, 5, 472, 0, 0, 4583, 4585, 5, 521, 0, 0, 4584, 4583, 1, 0, 0, 0, 4584, 4585, 1, 0, 0, 0, 4585, 4590, 1, 0, 0, 0, 4586, 4587, 5, 509, 0, 0, 4587, 4588, 3, 524, 262, 0, 4588, 4589, 5, 510, 0, 0, 4589, 4591, 1, 0, 0, 0, 4590, 4586, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, 0, 4591, 4593, 1, 0, 0, 0, 4592, 4559, 1, 0, 0, 0, 4592, 4570, 1, 0, 0, 0, 4592, 4582, 1, 0, 0, 0, 4593, 531, 1, 0, 0, 0, 4594, 4595, 5, 521, 0, 0, 4595, 4596, 5, 509, 0, 0, 4596, 4597, 3, 524, 262, 0, 4597, 4598, 5, 510, 0, 0, 4598, 533, 1, 0, 0, 0, 4599, 4600, 5, 113, 0, 0, 4600, 4601, 5, 30, 0, 0, 4601, 4604, 3, 712, 356, 0, 4602, 4603, 5, 410, 0, 0, 4603, 4605, 5, 521, 0, 0, 4604, 4602, 1, 0, 0, 0, 4604, 4605, 1, 0, 0, 0, 4605, 4618, 1, 0, 0, 0, 4606, 4607, 5, 139, 0, 0, 4607, 4608, 5, 507, 0, 0, 4608, 4613, 3, 536, 268, 0, 4609, 4610, 5, 505, 0, 0, 4610, 4612, 3, 536, 268, 0, 4611, 4609, 1, 0, 0, 0, 4612, 4615, 1, 0, 0, 0, 4613, 4611, 1, 0, 0, 0, 4613, 4614, 1, 0, 0, 0, 4614, 4616, 1, 0, 0, 0, 4615, 4613, 1, 0, 0, 0, 4616, 4617, 5, 508, 0, 0, 4617, 4619, 1, 0, 0, 0, 4618, 4606, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 4626, 1, 0, 0, 0, 4620, 4622, 5, 469, 0, 0, 4621, 4623, 3, 542, 271, 0, 4622, 4621, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4627, 1, 0, 0, 0, 4626, 4620, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4635, 1, 0, 0, 0, 4628, 4629, 5, 480, 0, 0, 4629, 4631, 5, 445, 0, 0, 4630, 4632, 3, 530, 265, 0, 4631, 4630, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4631, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4636, 1, 0, 0, 0, 4635, 4628, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 535, 1, 0, 0, 0, 4637, 4638, 3, 712, 356, 0, 4638, 4639, 5, 494, 0, 0, 4639, 4640, 5, 521, 0, 0, 4640, 537, 1, 0, 0, 0, 4641, 4642, 5, 113, 0, 0, 4642, 4643, 5, 32, 0, 0, 4643, 4646, 3, 712, 356, 0, 4644, 4645, 5, 410, 0, 0, 4645, 4647, 5, 521, 0, 0, 4646, 4644, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4660, 1, 0, 0, 0, 4648, 4649, 5, 139, 0, 0, 4649, 4650, 5, 507, 0, 0, 4650, 4655, 3, 536, 268, 0, 4651, 4652, 5, 505, 0, 0, 4652, 4654, 3, 536, 268, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4658, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4659, 5, 508, 0, 0, 4659, 4661, 1, 0, 0, 0, 4660, 4648, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 539, 1, 0, 0, 0, 4662, 4664, 5, 467, 0, 0, 4663, 4665, 5, 521, 0, 0, 4664, 4663, 1, 0, 0, 0, 4664, 4665, 1, 0, 0, 0, 4665, 4668, 1, 0, 0, 0, 4666, 4667, 5, 410, 0, 0, 4667, 4669, 5, 521, 0, 0, 4668, 4666, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4676, 1, 0, 0, 0, 4670, 4672, 5, 469, 0, 0, 4671, 4673, 3, 542, 271, 0, 4672, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4677, 1, 0, 0, 0, 4676, 4670, 1, 0, 0, 0, 4676, 4677, 1, 0, 0, 0, 4677, 541, 1, 0, 0, 0, 4678, 4679, 7, 31, 0, 0, 4679, 4680, 5, 517, 0, 0, 4680, 4681, 5, 509, 0, 0, 4681, 4682, 3, 524, 262, 0, 4682, 4683, 5, 510, 0, 0, 4683, 543, 1, 0, 0, 0, 4684, 4685, 5, 477, 0, 0, 4685, 4688, 5, 468, 0, 0, 4686, 4687, 5, 410, 0, 0, 4687, 4689, 5, 521, 0, 0, 4688, 4686, 1, 0, 0, 0, 4688, 4689, 1, 0, 0, 0, 4689, 4691, 1, 0, 0, 0, 4690, 4692, 3, 546, 273, 0, 4691, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4691, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 545, 1, 0, 0, 0, 4695, 4696, 5, 327, 0, 0, 4696, 4697, 5, 523, 0, 0, 4697, 4698, 5, 509, 0, 0, 4698, 4699, 3, 524, 262, 0, 4699, 4700, 5, 510, 0, 0, 4700, 547, 1, 0, 0, 0, 4701, 4702, 5, 473, 0, 0, 4702, 4703, 5, 430, 0, 0, 4703, 4706, 5, 525, 0, 0, 4704, 4705, 5, 410, 0, 0, 4705, 4707, 5, 521, 0, 0, 4706, 4704, 1, 0, 0, 0, 4706, 4707, 1, 0, 0, 0, 4707, 549, 1, 0, 0, 0, 4708, 4709, 5, 478, 0, 0, 4709, 4710, 5, 433, 0, 0, 4710, 4712, 5, 472, 0, 0, 4711, 4713, 5, 521, 0, 0, 4712, 4711, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4716, 1, 0, 0, 0, 4714, 4715, 5, 410, 0, 0, 4715, 4717, 5, 521, 0, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 551, 1, 0, 0, 0, 4718, 4719, 5, 478, 0, 0, 4719, 4720, 5, 433, 0, 0, 4720, 4723, 5, 471, 0, 0, 4721, 4722, 5, 410, 0, 0, 4722, 4724, 5, 521, 0, 0, 4723, 4721, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 4732, 1, 0, 0, 0, 4725, 4726, 5, 480, 0, 0, 4726, 4728, 5, 445, 0, 0, 4727, 4729, 3, 530, 265, 0, 4728, 4727, 1, 0, 0, 0, 4729, 4730, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4731, 1, 0, 0, 0, 4731, 4733, 1, 0, 0, 0, 4732, 4725, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 553, 1, 0, 0, 0, 4734, 4735, 5, 479, 0, 0, 4735, 4736, 5, 521, 0, 0, 4736, 555, 1, 0, 0, 0, 4737, 4738, 3, 558, 279, 0, 4738, 4743, 3, 560, 280, 0, 4739, 4740, 5, 505, 0, 0, 4740, 4742, 3, 560, 280, 0, 4741, 4739, 1, 0, 0, 0, 4742, 4745, 1, 0, 0, 0, 4743, 4741, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4777, 1, 0, 0, 0, 4745, 4743, 1, 0, 0, 0, 4746, 4747, 5, 37, 0, 0, 4747, 4751, 5, 521, 0, 0, 4748, 4749, 5, 424, 0, 0, 4749, 4752, 3, 562, 281, 0, 4750, 4752, 5, 19, 0, 0, 4751, 4748, 1, 0, 0, 0, 4751, 4750, 1, 0, 0, 0, 4752, 4756, 1, 0, 0, 0, 4753, 4754, 5, 293, 0, 0, 4754, 4755, 5, 448, 0, 0, 4755, 4757, 5, 521, 0, 0, 4756, 4753, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4777, 1, 0, 0, 0, 4758, 4759, 5, 19, 0, 0, 4759, 4760, 5, 37, 0, 0, 4760, 4764, 5, 521, 0, 0, 4761, 4762, 5, 293, 0, 0, 4762, 4763, 5, 448, 0, 0, 4763, 4765, 5, 521, 0, 0, 4764, 4761, 1, 0, 0, 0, 4764, 4765, 1, 0, 0, 0, 4765, 4777, 1, 0, 0, 0, 4766, 4767, 5, 448, 0, 0, 4767, 4768, 5, 521, 0, 0, 4768, 4773, 3, 560, 280, 0, 4769, 4770, 5, 505, 0, 0, 4770, 4772, 3, 560, 280, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4775, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, 4774, 4777, 1, 0, 0, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4737, 1, 0, 0, 0, 4776, 4746, 1, 0, 0, 0, 4776, 4758, 1, 0, 0, 0, 4776, 4766, 1, 0, 0, 0, 4777, 557, 1, 0, 0, 0, 4778, 4779, 7, 32, 0, 0, 4779, 559, 1, 0, 0, 0, 4780, 4781, 5, 525, 0, 0, 4781, 4782, 5, 494, 0, 0, 4782, 4783, 3, 562, 281, 0, 4783, 561, 1, 0, 0, 0, 4784, 4789, 5, 521, 0, 0, 4785, 4789, 5, 523, 0, 0, 4786, 4789, 3, 720, 360, 0, 4787, 4789, 3, 712, 356, 0, 4788, 4784, 1, 0, 0, 0, 4788, 4785, 1, 0, 0, 0, 4788, 4786, 1, 0, 0, 0, 4788, 4787, 1, 0, 0, 0, 4789, 563, 1, 0, 0, 0, 4790, 4795, 3, 566, 283, 0, 4791, 4795, 3, 578, 289, 0, 4792, 4795, 3, 580, 290, 0, 4793, 4795, 3, 586, 293, 0, 4794, 4790, 1, 0, 0, 0, 4794, 4791, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4793, 1, 0, 0, 0, 4795, 565, 1, 0, 0, 0, 4796, 4797, 5, 65, 0, 0, 4797, 5232, 5, 381, 0, 0, 4798, 4799, 5, 65, 0, 0, 4799, 4800, 5, 348, 0, 0, 4800, 4801, 5, 382, 0, 0, 4801, 4802, 5, 71, 0, 0, 4802, 5232, 3, 712, 356, 0, 4803, 4804, 5, 65, 0, 0, 4804, 4805, 5, 348, 0, 0, 4805, 4806, 5, 117, 0, 0, 4806, 4807, 5, 71, 0, 0, 4807, 5232, 3, 712, 356, 0, 4808, 4809, 5, 65, 0, 0, 4809, 4810, 5, 348, 0, 0, 4810, 4811, 5, 409, 0, 0, 4811, 4812, 5, 71, 0, 0, 4812, 5232, 3, 712, 356, 0, 4813, 4814, 5, 65, 0, 0, 4814, 4815, 5, 348, 0, 0, 4815, 4816, 5, 408, 0, 0, 4816, 4817, 5, 71, 0, 0, 4817, 5232, 3, 712, 356, 0, 4818, 4819, 5, 65, 0, 0, 4819, 4825, 5, 382, 0, 0, 4820, 4823, 5, 293, 0, 0, 4821, 4824, 3, 712, 356, 0, 4822, 4824, 5, 525, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4822, 1, 0, 0, 0, 4824, 4826, 1, 0, 0, 0, 4825, 4820, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, 5232, 1, 0, 0, 0, 4827, 4828, 5, 65, 0, 0, 4828, 4834, 5, 383, 0, 0, 4829, 4832, 5, 293, 0, 0, 4830, 4833, 3, 712, 356, 0, 4831, 4833, 5, 525, 0, 0, 4832, 4830, 1, 0, 0, 0, 4832, 4831, 1, 0, 0, 0, 4833, 4835, 1, 0, 0, 0, 4834, 4829, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 5232, 1, 0, 0, 0, 4836, 4837, 5, 65, 0, 0, 4837, 4843, 5, 384, 0, 0, 4838, 4841, 5, 293, 0, 0, 4839, 4842, 3, 712, 356, 0, 4840, 4842, 5, 525, 0, 0, 4841, 4839, 1, 0, 0, 0, 4841, 4840, 1, 0, 0, 0, 4842, 4844, 1, 0, 0, 0, 4843, 4838, 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 5232, 1, 0, 0, 0, 4845, 4846, 5, 65, 0, 0, 4846, 4852, 5, 385, 0, 0, 4847, 4850, 5, 293, 0, 0, 4848, 4851, 3, 712, 356, 0, 4849, 4851, 5, 525, 0, 0, 4850, 4848, 1, 0, 0, 0, 4850, 4849, 1, 0, 0, 0, 4851, 4853, 1, 0, 0, 0, 4852, 4847, 1, 0, 0, 0, 4852, 4853, 1, 0, 0, 0, 4853, 5232, 1, 0, 0, 0, 4854, 4855, 5, 65, 0, 0, 4855, 4861, 5, 386, 0, 0, 4856, 4859, 5, 293, 0, 0, 4857, 4860, 3, 712, 356, 0, 4858, 4860, 5, 525, 0, 0, 4859, 4857, 1, 0, 0, 0, 4859, 4858, 1, 0, 0, 0, 4860, 4862, 1, 0, 0, 0, 4861, 4856, 1, 0, 0, 0, 4861, 4862, 1, 0, 0, 0, 4862, 5232, 1, 0, 0, 0, 4863, 4864, 5, 65, 0, 0, 4864, 4870, 5, 143, 0, 0, 4865, 4868, 5, 293, 0, 0, 4866, 4869, 3, 712, 356, 0, 4867, 4869, 5, 525, 0, 0, 4868, 4866, 1, 0, 0, 0, 4868, 4867, 1, 0, 0, 0, 4869, 4871, 1, 0, 0, 0, 4870, 4865, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 5232, 1, 0, 0, 0, 4872, 4873, 5, 65, 0, 0, 4873, 4879, 5, 145, 0, 0, 4874, 4877, 5, 293, 0, 0, 4875, 4878, 3, 712, 356, 0, 4876, 4878, 5, 525, 0, 0, 4877, 4875, 1, 0, 0, 0, 4877, 4876, 1, 0, 0, 0, 4878, 4880, 1, 0, 0, 0, 4879, 4874, 1, 0, 0, 0, 4879, 4880, 1, 0, 0, 0, 4880, 5232, 1, 0, 0, 0, 4881, 4882, 5, 65, 0, 0, 4882, 4888, 5, 387, 0, 0, 4883, 4886, 5, 293, 0, 0, 4884, 4887, 3, 712, 356, 0, 4885, 4887, 5, 525, 0, 0, 4886, 4884, 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 4889, 1, 0, 0, 0, 4888, 4883, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 5232, 1, 0, 0, 0, 4890, 4891, 5, 65, 0, 0, 4891, 4897, 5, 388, 0, 0, 4892, 4895, 5, 293, 0, 0, 4893, 4896, 3, 712, 356, 0, 4894, 4896, 5, 525, 0, 0, 4895, 4893, 1, 0, 0, 0, 4895, 4894, 1, 0, 0, 0, 4896, 4898, 1, 0, 0, 0, 4897, 4892, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 5232, 1, 0, 0, 0, 4899, 4900, 5, 65, 0, 0, 4900, 4901, 5, 37, 0, 0, 4901, 4907, 5, 425, 0, 0, 4902, 4905, 5, 293, 0, 0, 4903, 4906, 3, 712, 356, 0, 4904, 4906, 5, 525, 0, 0, 4905, 4903, 1, 0, 0, 0, 4905, 4904, 1, 0, 0, 0, 4906, 4908, 1, 0, 0, 0, 4907, 4902, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 5232, 1, 0, 0, 0, 4909, 4910, 5, 65, 0, 0, 4910, 4916, 5, 144, 0, 0, 4911, 4914, 5, 293, 0, 0, 4912, 4915, 3, 712, 356, 0, 4913, 4915, 5, 525, 0, 0, 4914, 4912, 1, 0, 0, 0, 4914, 4913, 1, 0, 0, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4911, 1, 0, 0, 0, 4916, 4917, 1, 0, 0, 0, 4917, 5232, 1, 0, 0, 0, 4918, 4919, 5, 65, 0, 0, 4919, 4925, 5, 146, 0, 0, 4920, 4923, 5, 293, 0, 0, 4921, 4924, 3, 712, 356, 0, 4922, 4924, 5, 525, 0, 0, 4923, 4921, 1, 0, 0, 0, 4923, 4922, 1, 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4920, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 5232, 1, 0, 0, 0, 4927, 4928, 5, 65, 0, 0, 4928, 4929, 5, 114, 0, 0, 4929, 4935, 5, 117, 0, 0, 4930, 4933, 5, 293, 0, 0, 4931, 4934, 3, 712, 356, 0, 4932, 4934, 5, 525, 0, 0, 4933, 4931, 1, 0, 0, 0, 4933, 4932, 1, 0, 0, 0, 4934, 4936, 1, 0, 0, 0, 4935, 4930, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 5232, 1, 0, 0, 0, 4937, 4938, 5, 65, 0, 0, 4938, 4939, 5, 115, 0, 0, 4939, 4945, 5, 117, 0, 0, 4940, 4943, 5, 293, 0, 0, 4941, 4944, 3, 712, 356, 0, 4942, 4944, 5, 525, 0, 0, 4943, 4941, 1, 0, 0, 0, 4943, 4942, 1, 0, 0, 0, 4944, 4946, 1, 0, 0, 0, 4945, 4940, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 5232, 1, 0, 0, 0, 4947, 4948, 5, 65, 0, 0, 4948, 4949, 5, 228, 0, 0, 4949, 4955, 5, 229, 0, 0, 4950, 4953, 5, 293, 0, 0, 4951, 4954, 3, 712, 356, 0, 4952, 4954, 5, 525, 0, 0, 4953, 4951, 1, 0, 0, 0, 4953, 4952, 1, 0, 0, 0, 4954, 4956, 1, 0, 0, 0, 4955, 4950, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 5232, 1, 0, 0, 0, 4957, 4958, 5, 65, 0, 0, 4958, 4959, 5, 333, 0, 0, 4959, 4965, 5, 422, 0, 0, 4960, 4963, 5, 293, 0, 0, 4961, 4964, 3, 712, 356, 0, 4962, 4964, 5, 525, 0, 0, 4963, 4961, 1, 0, 0, 0, 4963, 4962, 1, 0, 0, 0, 4964, 4966, 1, 0, 0, 0, 4965, 4960, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 5232, 1, 0, 0, 0, 4967, 4968, 5, 65, 0, 0, 4968, 4969, 5, 23, 0, 0, 4969, 5232, 3, 712, 356, 0, 4970, 4971, 5, 65, 0, 0, 4971, 4972, 5, 27, 0, 0, 4972, 5232, 3, 712, 356, 0, 4973, 4974, 5, 65, 0, 0, 4974, 4975, 5, 33, 0, 0, 4975, 5232, 3, 712, 356, 0, 4976, 4977, 5, 65, 0, 0, 4977, 5232, 5, 389, 0, 0, 4978, 4979, 5, 65, 0, 0, 4979, 5232, 5, 335, 0, 0, 4980, 4981, 5, 65, 0, 0, 4981, 5232, 5, 337, 0, 0, 4982, 4983, 5, 65, 0, 0, 4983, 4984, 5, 412, 0, 0, 4984, 5232, 5, 335, 0, 0, 4985, 4986, 5, 65, 0, 0, 4986, 4987, 5, 412, 0, 0, 4987, 5232, 5, 369, 0, 0, 4988, 4989, 5, 65, 0, 0, 4989, 4990, 5, 415, 0, 0, 4990, 4991, 5, 431, 0, 0, 4991, 4993, 3, 712, 356, 0, 4992, 4994, 5, 418, 0, 0, 4993, 4992, 1, 0, 0, 0, 4993, 4994, 1, 0, 0, 0, 4994, 5232, 1, 0, 0, 0, 4995, 4996, 5, 65, 0, 0, 4996, 4997, 5, 416, 0, 0, 4997, 4998, 5, 431, 0, 0, 4998, 5000, 3, 712, 356, 0, 4999, 5001, 5, 418, 0, 0, 5000, 4999, 1, 0, 0, 0, 5000, 5001, 1, 0, 0, 0, 5001, 5232, 1, 0, 0, 0, 5002, 5003, 5, 65, 0, 0, 5003, 5004, 5, 417, 0, 0, 5004, 5005, 5, 430, 0, 0, 5005, 5232, 3, 712, 356, 0, 5006, 5007, 5, 65, 0, 0, 5007, 5008, 5, 419, 0, 0, 5008, 5009, 5, 431, 0, 0, 5009, 5232, 3, 712, 356, 0, 5010, 5011, 5, 65, 0, 0, 5011, 5012, 5, 223, 0, 0, 5012, 5013, 5, 431, 0, 0, 5013, 5016, 3, 712, 356, 0, 5014, 5015, 5, 420, 0, 0, 5015, 5017, 5, 523, 0, 0, 5016, 5014, 1, 0, 0, 0, 5016, 5017, 1, 0, 0, 0, 5017, 5232, 1, 0, 0, 0, 5018, 5019, 5, 65, 0, 0, 5019, 5021, 5, 189, 0, 0, 5020, 5022, 3, 568, 284, 0, 5021, 5020, 1, 0, 0, 0, 5021, 5022, 1, 0, 0, 0, 5022, 5232, 1, 0, 0, 0, 5023, 5024, 5, 65, 0, 0, 5024, 5025, 5, 59, 0, 0, 5025, 5232, 5, 452, 0, 0, 5026, 5027, 5, 65, 0, 0, 5027, 5028, 5, 29, 0, 0, 5028, 5034, 5, 454, 0, 0, 5029, 5032, 5, 293, 0, 0, 5030, 5033, 3, 712, 356, 0, 5031, 5033, 5, 525, 0, 0, 5032, 5030, 1, 0, 0, 0, 5032, 5031, 1, 0, 0, 0, 5033, 5035, 1, 0, 0, 0, 5034, 5029, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 5232, 1, 0, 0, 0, 5036, 5037, 5, 65, 0, 0, 5037, 5038, 5, 465, 0, 0, 5038, 5232, 5, 454, 0, 0, 5039, 5040, 5, 65, 0, 0, 5040, 5041, 5, 460, 0, 0, 5041, 5232, 5, 490, 0, 0, 5042, 5043, 5, 65, 0, 0, 5043, 5044, 5, 463, 0, 0, 5044, 5045, 5, 93, 0, 0, 5045, 5232, 3, 712, 356, 0, 5046, 5047, 5, 65, 0, 0, 5047, 5048, 5, 463, 0, 0, 5048, 5049, 5, 93, 0, 0, 5049, 5050, 5, 30, 0, 0, 5050, 5232, 3, 712, 356, 0, 5051, 5052, 5, 65, 0, 0, 5052, 5053, 5, 463, 0, 0, 5053, 5054, 5, 93, 0, 0, 5054, 5055, 5, 33, 0, 0, 5055, 5232, 3, 712, 356, 0, 5056, 5057, 5, 65, 0, 0, 5057, 5058, 5, 463, 0, 0, 5058, 5059, 5, 93, 0, 0, 5059, 5060, 5, 32, 0, 0, 5060, 5232, 3, 712, 356, 0, 5061, 5062, 5, 65, 0, 0, 5062, 5063, 5, 452, 0, 0, 5063, 5069, 5, 461, 0, 0, 5064, 5067, 5, 293, 0, 0, 5065, 5068, 3, 712, 356, 0, 5066, 5068, 5, 525, 0, 0, 5067, 5065, 1, 0, 0, 0, 5067, 5066, 1, 0, 0, 0, 5068, 5070, 1, 0, 0, 0, 5069, 5064, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5232, 1, 0, 0, 0, 5071, 5072, 5, 65, 0, 0, 5072, 5073, 5, 318, 0, 0, 5073, 5079, 5, 344, 0, 0, 5074, 5077, 5, 293, 0, 0, 5075, 5078, 3, 712, 356, 0, 5076, 5078, 5, 525, 0, 0, 5077, 5075, 1, 0, 0, 0, 5077, 5076, 1, 0, 0, 0, 5078, 5080, 1, 0, 0, 0, 5079, 5074, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5232, 1, 0, 0, 0, 5081, 5082, 5, 65, 0, 0, 5082, 5083, 5, 318, 0, 0, 5083, 5089, 5, 317, 0, 0, 5084, 5087, 5, 293, 0, 0, 5085, 5088, 3, 712, 356, 0, 5086, 5088, 5, 525, 0, 0, 5087, 5085, 1, 0, 0, 0, 5087, 5086, 1, 0, 0, 0, 5088, 5090, 1, 0, 0, 0, 5089, 5084, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5232, 1, 0, 0, 0, 5091, 5092, 5, 65, 0, 0, 5092, 5093, 5, 26, 0, 0, 5093, 5099, 5, 382, 0, 0, 5094, 5097, 5, 293, 0, 0, 5095, 5098, 3, 712, 356, 0, 5096, 5098, 5, 525, 0, 0, 5097, 5095, 1, 0, 0, 0, 5097, 5096, 1, 0, 0, 0, 5098, 5100, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5232, 1, 0, 0, 0, 5101, 5102, 5, 65, 0, 0, 5102, 5103, 5, 26, 0, 0, 5103, 5109, 5, 117, 0, 0, 5104, 5107, 5, 293, 0, 0, 5105, 5108, 3, 712, 356, 0, 5106, 5108, 5, 525, 0, 0, 5107, 5105, 1, 0, 0, 0, 5107, 5106, 1, 0, 0, 0, 5108, 5110, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5232, 1, 0, 0, 0, 5111, 5112, 5, 65, 0, 0, 5112, 5232, 5, 375, 0, 0, 5113, 5114, 5, 65, 0, 0, 5114, 5115, 5, 375, 0, 0, 5115, 5118, 5, 376, 0, 0, 5116, 5119, 3, 712, 356, 0, 5117, 5119, 5, 525, 0, 0, 5118, 5116, 1, 0, 0, 0, 5118, 5117, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5232, 1, 0, 0, 0, 5120, 5121, 5, 65, 0, 0, 5121, 5122, 5, 375, 0, 0, 5122, 5232, 5, 377, 0, 0, 5123, 5124, 5, 65, 0, 0, 5124, 5125, 5, 212, 0, 0, 5125, 5128, 5, 213, 0, 0, 5126, 5127, 5, 433, 0, 0, 5127, 5129, 3, 570, 285, 0, 5128, 5126, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5232, 1, 0, 0, 0, 5130, 5131, 5, 65, 0, 0, 5131, 5134, 5, 421, 0, 0, 5132, 5133, 5, 420, 0, 0, 5133, 5135, 5, 523, 0, 0, 5134, 5132, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5141, 1, 0, 0, 0, 5136, 5139, 5, 293, 0, 0, 5137, 5140, 3, 712, 356, 0, 5138, 5140, 5, 525, 0, 0, 5139, 5137, 1, 0, 0, 0, 5139, 5138, 1, 0, 0, 0, 5140, 5142, 1, 0, 0, 0, 5141, 5136, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, 5145, 5, 85, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5232, 1, 0, 0, 0, 5146, 5147, 5, 65, 0, 0, 5147, 5148, 5, 444, 0, 0, 5148, 5149, 5, 445, 0, 0, 5149, 5155, 5, 317, 0, 0, 5150, 5153, 5, 293, 0, 0, 5151, 5154, 3, 712, 356, 0, 5152, 5154, 5, 525, 0, 0, 5153, 5151, 1, 0, 0, 0, 5153, 5152, 1, 0, 0, 0, 5154, 5156, 1, 0, 0, 0, 5155, 5150, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5232, 1, 0, 0, 0, 5157, 5158, 5, 65, 0, 0, 5158, 5159, 5, 444, 0, 0, 5159, 5160, 5, 445, 0, 0, 5160, 5166, 5, 344, 0, 0, 5161, 5164, 5, 293, 0, 0, 5162, 5165, 3, 712, 356, 0, 5163, 5165, 5, 525, 0, 0, 5164, 5162, 1, 0, 0, 0, 5164, 5163, 1, 0, 0, 0, 5165, 5167, 1, 0, 0, 0, 5166, 5161, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, 5232, 1, 0, 0, 0, 5168, 5169, 5, 65, 0, 0, 5169, 5170, 5, 444, 0, 0, 5170, 5176, 5, 120, 0, 0, 5171, 5174, 5, 293, 0, 0, 5172, 5175, 3, 712, 356, 0, 5173, 5175, 5, 525, 0, 0, 5174, 5172, 1, 0, 0, 0, 5174, 5173, 1, 0, 0, 0, 5175, 5177, 1, 0, 0, 0, 5176, 5171, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5232, 1, 0, 0, 0, 5178, 5179, 5, 65, 0, 0, 5179, 5232, 5, 447, 0, 0, 5180, 5181, 5, 65, 0, 0, 5181, 5232, 5, 392, 0, 0, 5182, 5183, 5, 65, 0, 0, 5183, 5184, 5, 357, 0, 0, 5184, 5190, 5, 389, 0, 0, 5185, 5188, 5, 293, 0, 0, 5186, 5189, 3, 712, 356, 0, 5187, 5189, 5, 525, 0, 0, 5188, 5186, 1, 0, 0, 0, 5188, 5187, 1, 0, 0, 0, 5189, 5191, 1, 0, 0, 0, 5190, 5185, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5232, 1, 0, 0, 0, 5192, 5193, 5, 65, 0, 0, 5193, 5194, 5, 315, 0, 0, 5194, 5200, 5, 344, 0, 0, 5195, 5198, 5, 293, 0, 0, 5196, 5199, 3, 712, 356, 0, 5197, 5199, 5, 525, 0, 0, 5198, 5196, 1, 0, 0, 0, 5198, 5197, 1, 0, 0, 0, 5199, 5201, 1, 0, 0, 0, 5200, 5195, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5232, 1, 0, 0, 0, 5202, 5203, 5, 65, 0, 0, 5203, 5204, 5, 346, 0, 0, 5204, 5205, 5, 315, 0, 0, 5205, 5211, 5, 317, 0, 0, 5206, 5209, 5, 293, 0, 0, 5207, 5210, 3, 712, 356, 0, 5208, 5210, 5, 525, 0, 0, 5209, 5207, 1, 0, 0, 0, 5209, 5208, 1, 0, 0, 0, 5210, 5212, 1, 0, 0, 0, 5211, 5206, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5232, 1, 0, 0, 0, 5213, 5214, 5, 65, 0, 0, 5214, 5232, 5, 393, 0, 0, 5215, 5216, 5, 65, 0, 0, 5216, 5219, 5, 449, 0, 0, 5217, 5218, 5, 293, 0, 0, 5218, 5220, 5, 525, 0, 0, 5219, 5217, 1, 0, 0, 0, 5219, 5220, 1, 0, 0, 0, 5220, 5232, 1, 0, 0, 0, 5221, 5222, 5, 65, 0, 0, 5222, 5223, 5, 449, 0, 0, 5223, 5224, 5, 433, 0, 0, 5224, 5225, 5, 337, 0, 0, 5225, 5232, 5, 523, 0, 0, 5226, 5227, 5, 65, 0, 0, 5227, 5228, 5, 449, 0, 0, 5228, 5229, 5, 450, 0, 0, 5229, 5230, 5, 451, 0, 0, 5230, 5232, 5, 523, 0, 0, 5231, 4796, 1, 0, 0, 0, 5231, 4798, 1, 0, 0, 0, 5231, 4803, 1, 0, 0, 0, 5231, 4808, 1, 0, 0, 0, 5231, 4813, 1, 0, 0, 0, 5231, 4818, 1, 0, 0, 0, 5231, 4827, 1, 0, 0, 0, 5231, 4836, 1, 0, 0, 0, 5231, 4845, 1, 0, 0, 0, 5231, 4854, 1, 0, 0, 0, 5231, 4863, 1, 0, 0, 0, 5231, 4872, 1, 0, 0, 0, 5231, 4881, 1, 0, 0, 0, 5231, 4890, 1, 0, 0, 0, 5231, 4899, 1, 0, 0, 0, 5231, 4909, 1, 0, 0, 0, 5231, 4918, 1, 0, 0, 0, 5231, 4927, 1, 0, 0, 0, 5231, 4937, 1, 0, 0, 0, 5231, 4947, 1, 0, 0, 0, 5231, 4957, 1, 0, 0, 0, 5231, 4967, 1, 0, 0, 0, 5231, 4970, 1, 0, 0, 0, 5231, 4973, 1, 0, 0, 0, 5231, 4976, 1, 0, 0, 0, 5231, 4978, 1, 0, 0, 0, 5231, 4980, 1, 0, 0, 0, 5231, 4982, 1, 0, 0, 0, 5231, 4985, 1, 0, 0, 0, 5231, 4988, 1, 0, 0, 0, 5231, 4995, 1, 0, 0, 0, 5231, 5002, 1, 0, 0, 0, 5231, 5006, 1, 0, 0, 0, 5231, 5010, 1, 0, 0, 0, 5231, 5018, 1, 0, 0, 0, 5231, 5023, 1, 0, 0, 0, 5231, 5026, 1, 0, 0, 0, 5231, 5036, 1, 0, 0, 0, 5231, 5039, 1, 0, 0, 0, 5231, 5042, 1, 0, 0, 0, 5231, 5046, 1, 0, 0, 0, 5231, 5051, 1, 0, 0, 0, 5231, 5056, 1, 0, 0, 0, 5231, 5061, 1, 0, 0, 0, 5231, 5071, 1, 0, 0, 0, 5231, 5081, 1, 0, 0, 0, 5231, 5091, 1, 0, 0, 0, 5231, 5101, 1, 0, 0, 0, 5231, 5111, 1, 0, 0, 0, 5231, 5113, 1, 0, 0, 0, 5231, 5120, 1, 0, 0, 0, 5231, 5123, 1, 0, 0, 0, 5231, 5130, 1, 0, 0, 0, 5231, 5146, 1, 0, 0, 0, 5231, 5157, 1, 0, 0, 0, 5231, 5168, 1, 0, 0, 0, 5231, 5178, 1, 0, 0, 0, 5231, 5180, 1, 0, 0, 0, 5231, 5182, 1, 0, 0, 0, 5231, 5192, 1, 0, 0, 0, 5231, 5202, 1, 0, 0, 0, 5231, 5213, 1, 0, 0, 0, 5231, 5215, 1, 0, 0, 0, 5231, 5221, 1, 0, 0, 0, 5231, 5226, 1, 0, 0, 0, 5232, 567, 1, 0, 0, 0, 5233, 5234, 5, 72, 0, 0, 5234, 5239, 3, 572, 286, 0, 5235, 5236, 5, 289, 0, 0, 5236, 5238, 3, 572, 286, 0, 5237, 5235, 1, 0, 0, 0, 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 5247, 1, 0, 0, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5245, 5, 293, 0, 0, 5243, 5246, 3, 712, 356, 0, 5244, 5246, 5, 525, 0, 0, 5245, 5243, 1, 0, 0, 0, 5245, 5244, 1, 0, 0, 0, 5246, 5248, 1, 0, 0, 0, 5247, 5242, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5255, 1, 0, 0, 0, 5249, 5252, 5, 293, 0, 0, 5250, 5253, 3, 712, 356, 0, 5251, 5253, 5, 525, 0, 0, 5252, 5250, 1, 0, 0, 0, 5252, 5251, 1, 0, 0, 0, 5253, 5255, 1, 0, 0, 0, 5254, 5233, 1, 0, 0, 0, 5254, 5249, 1, 0, 0, 0, 5255, 569, 1, 0, 0, 0, 5256, 5257, 7, 33, 0, 0, 5257, 571, 1, 0, 0, 0, 5258, 5259, 5, 442, 0, 0, 5259, 5260, 7, 34, 0, 0, 5260, 5265, 5, 521, 0, 0, 5261, 5262, 5, 525, 0, 0, 5262, 5263, 7, 34, 0, 0, 5263, 5265, 5, 521, 0, 0, 5264, 5258, 1, 0, 0, 0, 5264, 5261, 1, 0, 0, 0, 5265, 573, 1, 0, 0, 0, 5266, 5267, 5, 521, 0, 0, 5267, 5268, 5, 494, 0, 0, 5268, 5269, 3, 576, 288, 0, 5269, 575, 1, 0, 0, 0, 5270, 5275, 5, 521, 0, 0, 5271, 5275, 5, 523, 0, 0, 5272, 5275, 3, 720, 360, 0, 5273, 5275, 5, 292, 0, 0, 5274, 5270, 1, 0, 0, 0, 5274, 5271, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5273, 1, 0, 0, 0, 5275, 577, 1, 0, 0, 0, 5276, 5277, 5, 66, 0, 0, 5277, 5278, 5, 348, 0, 0, 5278, 5279, 5, 23, 0, 0, 5279, 5282, 3, 712, 356, 0, 5280, 5281, 5, 437, 0, 0, 5281, 5283, 5, 525, 0, 0, 5282, 5280, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5432, 1, 0, 0, 0, 5284, 5285, 5, 66, 0, 0, 5285, 5286, 5, 348, 0, 0, 5286, 5287, 5, 116, 0, 0, 5287, 5290, 3, 712, 356, 0, 5288, 5289, 5, 437, 0, 0, 5289, 5291, 5, 525, 0, 0, 5290, 5288, 1, 0, 0, 0, 5290, 5291, 1, 0, 0, 0, 5291, 5432, 1, 0, 0, 0, 5292, 5293, 5, 66, 0, 0, 5293, 5294, 5, 348, 0, 0, 5294, 5295, 5, 407, 0, 0, 5295, 5432, 3, 712, 356, 0, 5296, 5297, 5, 66, 0, 0, 5297, 5298, 5, 23, 0, 0, 5298, 5432, 3, 712, 356, 0, 5299, 5300, 5, 66, 0, 0, 5300, 5301, 5, 27, 0, 0, 5301, 5432, 3, 712, 356, 0, 5302, 5303, 5, 66, 0, 0, 5303, 5304, 5, 30, 0, 0, 5304, 5432, 3, 712, 356, 0, 5305, 5306, 5, 66, 0, 0, 5306, 5307, 5, 31, 0, 0, 5307, 5432, 3, 712, 356, 0, 5308, 5309, 5, 66, 0, 0, 5309, 5310, 5, 32, 0, 0, 5310, 5432, 3, 712, 356, 0, 5311, 5312, 5, 66, 0, 0, 5312, 5313, 5, 33, 0, 0, 5313, 5432, 3, 712, 356, 0, 5314, 5315, 5, 66, 0, 0, 5315, 5316, 5, 34, 0, 0, 5316, 5432, 3, 712, 356, 0, 5317, 5318, 5, 66, 0, 0, 5318, 5319, 5, 35, 0, 0, 5319, 5432, 3, 712, 356, 0, 5320, 5321, 5, 66, 0, 0, 5321, 5322, 5, 28, 0, 0, 5322, 5432, 3, 712, 356, 0, 5323, 5324, 5, 66, 0, 0, 5324, 5325, 5, 37, 0, 0, 5325, 5432, 3, 712, 356, 0, 5326, 5327, 5, 66, 0, 0, 5327, 5328, 5, 114, 0, 0, 5328, 5329, 5, 116, 0, 0, 5329, 5432, 3, 712, 356, 0, 5330, 5331, 5, 66, 0, 0, 5331, 5332, 5, 115, 0, 0, 5332, 5333, 5, 116, 0, 0, 5333, 5432, 3, 712, 356, 0, 5334, 5335, 5, 66, 0, 0, 5335, 5336, 5, 29, 0, 0, 5336, 5339, 5, 525, 0, 0, 5337, 5338, 5, 139, 0, 0, 5338, 5340, 5, 85, 0, 0, 5339, 5337, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, 5340, 5432, 1, 0, 0, 0, 5341, 5342, 5, 66, 0, 0, 5342, 5343, 5, 29, 0, 0, 5343, 5344, 5, 453, 0, 0, 5344, 5432, 3, 712, 356, 0, 5345, 5346, 5, 66, 0, 0, 5346, 5347, 5, 465, 0, 0, 5347, 5348, 5, 453, 0, 0, 5348, 5432, 5, 521, 0, 0, 5349, 5350, 5, 66, 0, 0, 5350, 5351, 5, 460, 0, 0, 5351, 5352, 5, 465, 0, 0, 5352, 5432, 5, 521, 0, 0, 5353, 5354, 5, 66, 0, 0, 5354, 5355, 5, 318, 0, 0, 5355, 5356, 5, 343, 0, 0, 5356, 5432, 3, 712, 356, 0, 5357, 5358, 5, 66, 0, 0, 5358, 5359, 5, 318, 0, 0, 5359, 5360, 5, 316, 0, 0, 5360, 5432, 3, 712, 356, 0, 5361, 5362, 5, 66, 0, 0, 5362, 5363, 5, 26, 0, 0, 5363, 5364, 5, 23, 0, 0, 5364, 5432, 3, 712, 356, 0, 5365, 5366, 5, 66, 0, 0, 5366, 5369, 5, 375, 0, 0, 5367, 5370, 3, 712, 356, 0, 5368, 5370, 5, 525, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 5432, 1, 0, 0, 0, 5371, 5372, 5, 66, 0, 0, 5372, 5373, 5, 215, 0, 0, 5373, 5374, 5, 93, 0, 0, 5374, 5375, 7, 1, 0, 0, 5375, 5378, 3, 712, 356, 0, 5376, 5377, 5, 188, 0, 0, 5377, 5379, 5, 525, 0, 0, 5378, 5376, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5432, 1, 0, 0, 0, 5380, 5381, 5, 66, 0, 0, 5381, 5382, 5, 412, 0, 0, 5382, 5383, 5, 506, 0, 0, 5383, 5432, 3, 584, 292, 0, 5384, 5385, 5, 66, 0, 0, 5385, 5386, 5, 444, 0, 0, 5386, 5387, 5, 445, 0, 0, 5387, 5388, 5, 316, 0, 0, 5388, 5432, 3, 712, 356, 0, 5389, 5390, 5, 66, 0, 0, 5390, 5391, 5, 357, 0, 0, 5391, 5392, 5, 356, 0, 0, 5392, 5432, 3, 712, 356, 0, 5393, 5394, 5, 66, 0, 0, 5394, 5432, 5, 447, 0, 0, 5395, 5396, 5, 66, 0, 0, 5396, 5397, 5, 391, 0, 0, 5397, 5398, 5, 71, 0, 0, 5398, 5399, 5, 33, 0, 0, 5399, 5400, 3, 712, 356, 0, 5400, 5401, 5, 188, 0, 0, 5401, 5402, 3, 714, 357, 0, 5402, 5432, 1, 0, 0, 0, 5403, 5404, 5, 66, 0, 0, 5404, 5405, 5, 391, 0, 0, 5405, 5406, 5, 71, 0, 0, 5406, 5407, 5, 34, 0, 0, 5407, 5408, 3, 712, 356, 0, 5408, 5409, 5, 188, 0, 0, 5409, 5410, 3, 714, 357, 0, 5410, 5432, 1, 0, 0, 0, 5411, 5412, 5, 66, 0, 0, 5412, 5413, 5, 228, 0, 0, 5413, 5414, 5, 229, 0, 0, 5414, 5432, 3, 712, 356, 0, 5415, 5416, 5, 66, 0, 0, 5416, 5417, 5, 333, 0, 0, 5417, 5418, 5, 421, 0, 0, 5418, 5432, 3, 712, 356, 0, 5419, 5420, 5, 66, 0, 0, 5420, 5421, 5, 315, 0, 0, 5421, 5422, 5, 343, 0, 0, 5422, 5432, 3, 712, 356, 0, 5423, 5424, 5, 66, 0, 0, 5424, 5425, 5, 346, 0, 0, 5425, 5426, 5, 315, 0, 0, 5426, 5427, 5, 316, 0, 0, 5427, 5432, 3, 712, 356, 0, 5428, 5429, 5, 66, 0, 0, 5429, 5430, 5, 391, 0, 0, 5430, 5432, 3, 714, 357, 0, 5431, 5276, 1, 0, 0, 0, 5431, 5284, 1, 0, 0, 0, 5431, 5292, 1, 0, 0, 0, 5431, 5296, 1, 0, 0, 0, 5431, 5299, 1, 0, 0, 0, 5431, 5302, 1, 0, 0, 0, 5431, 5305, 1, 0, 0, 0, 5431, 5308, 1, 0, 0, 0, 5431, 5311, 1, 0, 0, 0, 5431, 5314, 1, 0, 0, 0, 5431, 5317, 1, 0, 0, 0, 5431, 5320, 1, 0, 0, 0, 5431, 5323, 1, 0, 0, 0, 5431, 5326, 1, 0, 0, 0, 5431, 5330, 1, 0, 0, 0, 5431, 5334, 1, 0, 0, 0, 5431, 5341, 1, 0, 0, 0, 5431, 5345, 1, 0, 0, 0, 5431, 5349, 1, 0, 0, 0, 5431, 5353, 1, 0, 0, 0, 5431, 5357, 1, 0, 0, 0, 5431, 5361, 1, 0, 0, 0, 5431, 5365, 1, 0, 0, 0, 5431, 5371, 1, 0, 0, 0, 5431, 5380, 1, 0, 0, 0, 5431, 5384, 1, 0, 0, 0, 5431, 5389, 1, 0, 0, 0, 5431, 5393, 1, 0, 0, 0, 5431, 5395, 1, 0, 0, 0, 5431, 5403, 1, 0, 0, 0, 5431, 5411, 1, 0, 0, 0, 5431, 5415, 1, 0, 0, 0, 5431, 5419, 1, 0, 0, 0, 5431, 5423, 1, 0, 0, 0, 5431, 5428, 1, 0, 0, 0, 5432, 579, 1, 0, 0, 0, 5433, 5435, 5, 70, 0, 0, 5434, 5436, 7, 35, 0, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5438, 3, 592, 296, 0, 5438, 5439, 5, 71, 0, 0, 5439, 5440, 5, 412, 0, 0, 5440, 5441, 5, 506, 0, 0, 5441, 5446, 3, 584, 292, 0, 5442, 5444, 5, 76, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 5, 525, 0, 0, 5446, 5443, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5451, 1, 0, 0, 0, 5448, 5450, 3, 582, 291, 0, 5449, 5448, 1, 0, 0, 0, 5450, 5453, 1, 0, 0, 0, 5451, 5449, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5456, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5454, 5455, 5, 72, 0, 0, 5455, 5457, 3, 672, 336, 0, 5456, 5454, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5464, 1, 0, 0, 0, 5458, 5459, 5, 8, 0, 0, 5459, 5462, 3, 620, 310, 0, 5460, 5461, 5, 73, 0, 0, 5461, 5463, 3, 672, 336, 0, 5462, 5460, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5465, 1, 0, 0, 0, 5464, 5458, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5468, 1, 0, 0, 0, 5466, 5467, 5, 9, 0, 0, 5467, 5469, 3, 616, 308, 0, 5468, 5466, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5472, 1, 0, 0, 0, 5470, 5471, 5, 75, 0, 0, 5471, 5473, 5, 523, 0, 0, 5472, 5470, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 5476, 1, 0, 0, 0, 5474, 5475, 5, 74, 0, 0, 5475, 5477, 5, 523, 0, 0, 5476, 5474, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 581, 1, 0, 0, 0, 5478, 5480, 3, 606, 303, 0, 5479, 5478, 1, 0, 0, 0, 5479, 5480, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 5, 86, 0, 0, 5482, 5483, 5, 412, 0, 0, 5483, 5484, 5, 506, 0, 0, 5484, 5489, 3, 584, 292, 0, 5485, 5487, 5, 76, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5490, 5, 525, 0, 0, 5489, 5486, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5493, 1, 0, 0, 0, 5491, 5492, 5, 93, 0, 0, 5492, 5494, 3, 672, 336, 0, 5493, 5491, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 583, 1, 0, 0, 0, 5495, 5496, 7, 36, 0, 0, 5496, 585, 1, 0, 0, 0, 5497, 5505, 3, 588, 294, 0, 5498, 5500, 5, 125, 0, 0, 5499, 5501, 5, 85, 0, 0, 5500, 5499, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5504, 3, 588, 294, 0, 5503, 5498, 1, 0, 0, 0, 5504, 5507, 1, 0, 0, 0, 5505, 5503, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 587, 1, 0, 0, 0, 5507, 5505, 1, 0, 0, 0, 5508, 5510, 3, 590, 295, 0, 5509, 5511, 3, 598, 299, 0, 5510, 5509, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 5513, 1, 0, 0, 0, 5512, 5514, 3, 608, 304, 0, 5513, 5512, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5516, 1, 0, 0, 0, 5515, 5517, 3, 610, 305, 0, 5516, 5515, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 3, 612, 306, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5522, 1, 0, 0, 0, 5521, 5523, 3, 614, 307, 0, 5522, 5521, 1, 0, 0, 0, 5522, 5523, 1, 0, 0, 0, 5523, 5525, 1, 0, 0, 0, 5524, 5526, 3, 622, 311, 0, 5525, 5524, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5545, 1, 0, 0, 0, 5527, 5529, 3, 598, 299, 0, 5528, 5530, 3, 608, 304, 0, 5529, 5528, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5532, 1, 0, 0, 0, 5531, 5533, 3, 610, 305, 0, 5532, 5531, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5535, 1, 0, 0, 0, 5534, 5536, 3, 612, 306, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5537, 1, 0, 0, 0, 5537, 5539, 3, 590, 295, 0, 5538, 5540, 3, 614, 307, 0, 5539, 5538, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5542, 1, 0, 0, 0, 5541, 5543, 3, 622, 311, 0, 5542, 5541, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5508, 1, 0, 0, 0, 5544, 5527, 1, 0, 0, 0, 5545, 589, 1, 0, 0, 0, 5546, 5548, 5, 70, 0, 0, 5547, 5549, 7, 35, 0, 0, 5548, 5547, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5551, 3, 592, 296, 0, 5551, 591, 1, 0, 0, 0, 5552, 5562, 5, 499, 0, 0, 5553, 5558, 3, 594, 297, 0, 5554, 5555, 5, 505, 0, 0, 5555, 5557, 3, 594, 297, 0, 5556, 5554, 1, 0, 0, 0, 5557, 5560, 1, 0, 0, 0, 5558, 5556, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5562, 1, 0, 0, 0, 5560, 5558, 1, 0, 0, 0, 5561, 5552, 1, 0, 0, 0, 5561, 5553, 1, 0, 0, 0, 5562, 593, 1, 0, 0, 0, 5563, 5566, 3, 672, 336, 0, 5564, 5565, 5, 76, 0, 0, 5565, 5567, 3, 596, 298, 0, 5566, 5564, 1, 0, 0, 0, 5566, 5567, 1, 0, 0, 0, 5567, 5574, 1, 0, 0, 0, 5568, 5571, 3, 700, 350, 0, 5569, 5570, 5, 76, 0, 0, 5570, 5572, 3, 596, 298, 0, 5571, 5569, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 5574, 1, 0, 0, 0, 5573, 5563, 1, 0, 0, 0, 5573, 5568, 1, 0, 0, 0, 5574, 595, 1, 0, 0, 0, 5575, 5578, 5, 525, 0, 0, 5576, 5578, 3, 734, 367, 0, 5577, 5575, 1, 0, 0, 0, 5577, 5576, 1, 0, 0, 0, 5578, 597, 1, 0, 0, 0, 5579, 5580, 5, 71, 0, 0, 5580, 5584, 3, 600, 300, 0, 5581, 5583, 3, 602, 301, 0, 5582, 5581, 1, 0, 0, 0, 5583, 5586, 1, 0, 0, 0, 5584, 5582, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 599, 1, 0, 0, 0, 5586, 5584, 1, 0, 0, 0, 5587, 5592, 3, 712, 356, 0, 5588, 5590, 5, 76, 0, 0, 5589, 5588, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, 5593, 5, 525, 0, 0, 5592, 5589, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5604, 1, 0, 0, 0, 5594, 5595, 5, 507, 0, 0, 5595, 5596, 3, 586, 293, 0, 5596, 5601, 5, 508, 0, 0, 5597, 5599, 5, 76, 0, 0, 5598, 5597, 1, 0, 0, 0, 5598, 5599, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5602, 5, 525, 0, 0, 5601, 5598, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5604, 1, 0, 0, 0, 5603, 5587, 1, 0, 0, 0, 5603, 5594, 1, 0, 0, 0, 5604, 601, 1, 0, 0, 0, 5605, 5607, 3, 606, 303, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 5, 86, 0, 0, 5609, 5612, 3, 600, 300, 0, 5610, 5611, 5, 93, 0, 0, 5611, 5613, 3, 672, 336, 0, 5612, 5610, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5626, 1, 0, 0, 0, 5614, 5616, 3, 606, 303, 0, 5615, 5614, 1, 0, 0, 0, 5615, 5616, 1, 0, 0, 0, 5616, 5617, 1, 0, 0, 0, 5617, 5618, 5, 86, 0, 0, 5618, 5623, 3, 604, 302, 0, 5619, 5621, 5, 76, 0, 0, 5620, 5619, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 5622, 1, 0, 0, 0, 5622, 5624, 5, 525, 0, 0, 5623, 5620, 1, 0, 0, 0, 5623, 5624, 1, 0, 0, 0, 5624, 5626, 1, 0, 0, 0, 5625, 5606, 1, 0, 0, 0, 5625, 5615, 1, 0, 0, 0, 5626, 603, 1, 0, 0, 0, 5627, 5628, 5, 525, 0, 0, 5628, 5629, 5, 500, 0, 0, 5629, 5630, 3, 712, 356, 0, 5630, 5631, 5, 500, 0, 0, 5631, 5632, 3, 712, 356, 0, 5632, 5638, 1, 0, 0, 0, 5633, 5634, 3, 712, 356, 0, 5634, 5635, 5, 500, 0, 0, 5635, 5636, 3, 712, 356, 0, 5636, 5638, 1, 0, 0, 0, 5637, 5627, 1, 0, 0, 0, 5637, 5633, 1, 0, 0, 0, 5638, 605, 1, 0, 0, 0, 5639, 5641, 5, 87, 0, 0, 5640, 5642, 5, 90, 0, 0, 5641, 5640, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5654, 1, 0, 0, 0, 5643, 5645, 5, 88, 0, 0, 5644, 5646, 5, 90, 0, 0, 5645, 5644, 1, 0, 0, 0, 5645, 5646, 1, 0, 0, 0, 5646, 5654, 1, 0, 0, 0, 5647, 5654, 5, 89, 0, 0, 5648, 5650, 5, 91, 0, 0, 5649, 5651, 5, 90, 0, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5654, 1, 0, 0, 0, 5652, 5654, 5, 92, 0, 0, 5653, 5639, 1, 0, 0, 0, 5653, 5643, 1, 0, 0, 0, 5653, 5647, 1, 0, 0, 0, 5653, 5648, 1, 0, 0, 0, 5653, 5652, 1, 0, 0, 0, 5654, 607, 1, 0, 0, 0, 5655, 5656, 5, 72, 0, 0, 5656, 5657, 3, 672, 336, 0, 5657, 609, 1, 0, 0, 0, 5658, 5659, 5, 8, 0, 0, 5659, 5660, 3, 710, 355, 0, 5660, 611, 1, 0, 0, 0, 5661, 5662, 5, 73, 0, 0, 5662, 5663, 3, 672, 336, 0, 5663, 613, 1, 0, 0, 0, 5664, 5665, 5, 9, 0, 0, 5665, 5666, 3, 616, 308, 0, 5666, 615, 1, 0, 0, 0, 5667, 5672, 3, 618, 309, 0, 5668, 5669, 5, 505, 0, 0, 5669, 5671, 3, 618, 309, 0, 5670, 5668, 1, 0, 0, 0, 5671, 5674, 1, 0, 0, 0, 5672, 5670, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 617, 1, 0, 0, 0, 5674, 5672, 1, 0, 0, 0, 5675, 5677, 3, 672, 336, 0, 5676, 5678, 7, 7, 0, 0, 5677, 5676, 1, 0, 0, 0, 5677, 5678, 1, 0, 0, 0, 5678, 619, 1, 0, 0, 0, 5679, 5684, 3, 672, 336, 0, 5680, 5681, 5, 505, 0, 0, 5681, 5683, 3, 672, 336, 0, 5682, 5680, 1, 0, 0, 0, 5683, 5686, 1, 0, 0, 0, 5684, 5682, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 621, 1, 0, 0, 0, 5686, 5684, 1, 0, 0, 0, 5687, 5688, 5, 75, 0, 0, 5688, 5691, 5, 523, 0, 0, 5689, 5690, 5, 74, 0, 0, 5690, 5692, 5, 523, 0, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5700, 1, 0, 0, 0, 5693, 5694, 5, 74, 0, 0, 5694, 5697, 5, 523, 0, 0, 5695, 5696, 5, 75, 0, 0, 5696, 5698, 5, 523, 0, 0, 5697, 5695, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5687, 1, 0, 0, 0, 5699, 5693, 1, 0, 0, 0, 5700, 623, 1, 0, 0, 0, 5701, 5718, 3, 628, 314, 0, 5702, 5718, 3, 630, 315, 0, 5703, 5718, 3, 632, 316, 0, 5704, 5718, 3, 634, 317, 0, 5705, 5718, 3, 636, 318, 0, 5706, 5718, 3, 638, 319, 0, 5707, 5718, 3, 640, 320, 0, 5708, 5718, 3, 642, 321, 0, 5709, 5718, 3, 626, 313, 0, 5710, 5718, 3, 648, 324, 0, 5711, 5718, 3, 654, 327, 0, 5712, 5718, 3, 656, 328, 0, 5713, 5718, 3, 670, 335, 0, 5714, 5718, 3, 658, 329, 0, 5715, 5718, 3, 662, 331, 0, 5716, 5718, 3, 668, 334, 0, 5717, 5701, 1, 0, 0, 0, 5717, 5702, 1, 0, 0, 0, 5717, 5703, 1, 0, 0, 0, 5717, 5704, 1, 0, 0, 0, 5717, 5705, 1, 0, 0, 0, 5717, 5706, 1, 0, 0, 0, 5717, 5707, 1, 0, 0, 0, 5717, 5708, 1, 0, 0, 0, 5717, 5709, 1, 0, 0, 0, 5717, 5710, 1, 0, 0, 0, 5717, 5711, 1, 0, 0, 0, 5717, 5712, 1, 0, 0, 0, 5717, 5713, 1, 0, 0, 0, 5717, 5714, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5717, 5716, 1, 0, 0, 0, 5718, 625, 1, 0, 0, 0, 5719, 5720, 5, 158, 0, 0, 5720, 5721, 5, 521, 0, 0, 5721, 627, 1, 0, 0, 0, 5722, 5723, 5, 56, 0, 0, 5723, 5724, 5, 430, 0, 0, 5724, 5725, 5, 59, 0, 0, 5725, 5728, 5, 521, 0, 0, 5726, 5727, 5, 61, 0, 0, 5727, 5729, 5, 521, 0, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 5731, 5, 62, 0, 0, 5731, 5746, 5, 521, 0, 0, 5732, 5733, 5, 56, 0, 0, 5733, 5734, 5, 58, 0, 0, 5734, 5746, 5, 521, 0, 0, 5735, 5736, 5, 56, 0, 0, 5736, 5737, 5, 60, 0, 0, 5737, 5738, 5, 63, 0, 0, 5738, 5739, 5, 521, 0, 0, 5739, 5740, 5, 64, 0, 0, 5740, 5743, 5, 523, 0, 0, 5741, 5742, 5, 62, 0, 0, 5742, 5744, 5, 521, 0, 0, 5743, 5741, 1, 0, 0, 0, 5743, 5744, 1, 0, 0, 0, 5744, 5746, 1, 0, 0, 0, 5745, 5722, 1, 0, 0, 0, 5745, 5732, 1, 0, 0, 0, 5745, 5735, 1, 0, 0, 0, 5746, 629, 1, 0, 0, 0, 5747, 5748, 5, 57, 0, 0, 5748, 631, 1, 0, 0, 0, 5749, 5766, 5, 397, 0, 0, 5750, 5751, 5, 398, 0, 0, 5751, 5753, 5, 412, 0, 0, 5752, 5754, 5, 91, 0, 0, 5753, 5752, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 5756, 1, 0, 0, 0, 5755, 5757, 5, 194, 0, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 5759, 1, 0, 0, 0, 5758, 5760, 5, 413, 0, 0, 5759, 5758, 1, 0, 0, 0, 5759, 5760, 1, 0, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5763, 5, 414, 0, 0, 5762, 5761, 1, 0, 0, 0, 5762, 5763, 1, 0, 0, 0, 5763, 5766, 1, 0, 0, 0, 5764, 5766, 5, 398, 0, 0, 5765, 5749, 1, 0, 0, 0, 5765, 5750, 1, 0, 0, 0, 5765, 5764, 1, 0, 0, 0, 5766, 633, 1, 0, 0, 0, 5767, 5768, 5, 399, 0, 0, 5768, 635, 1, 0, 0, 0, 5769, 5770, 5, 400, 0, 0, 5770, 637, 1, 0, 0, 0, 5771, 5772, 5, 401, 0, 0, 5772, 5773, 5, 402, 0, 0, 5773, 5774, 5, 521, 0, 0, 5774, 639, 1, 0, 0, 0, 5775, 5776, 5, 401, 0, 0, 5776, 5777, 5, 60, 0, 0, 5777, 5778, 5, 521, 0, 0, 5778, 641, 1, 0, 0, 0, 5779, 5781, 5, 403, 0, 0, 5780, 5782, 3, 644, 322, 0, 5781, 5780, 1, 0, 0, 0, 5781, 5782, 1, 0, 0, 0, 5782, 5785, 1, 0, 0, 0, 5783, 5784, 5, 437, 0, 0, 5784, 5786, 3, 646, 323, 0, 5785, 5783, 1, 0, 0, 0, 5785, 5786, 1, 0, 0, 0, 5786, 5791, 1, 0, 0, 0, 5787, 5788, 5, 65, 0, 0, 5788, 5789, 5, 403, 0, 0, 5789, 5791, 5, 404, 0, 0, 5790, 5779, 1, 0, 0, 0, 5790, 5787, 1, 0, 0, 0, 5791, 643, 1, 0, 0, 0, 5792, 5793, 3, 712, 356, 0, 5793, 5794, 5, 506, 0, 0, 5794, 5795, 5, 499, 0, 0, 5795, 5799, 1, 0, 0, 0, 5796, 5799, 3, 712, 356, 0, 5797, 5799, 5, 499, 0, 0, 5798, 5792, 1, 0, 0, 0, 5798, 5796, 1, 0, 0, 0, 5798, 5797, 1, 0, 0, 0, 5799, 645, 1, 0, 0, 0, 5800, 5801, 7, 37, 0, 0, 5801, 647, 1, 0, 0, 0, 5802, 5803, 5, 67, 0, 0, 5803, 5807, 3, 650, 325, 0, 5804, 5805, 5, 67, 0, 0, 5805, 5807, 5, 85, 0, 0, 5806, 5802, 1, 0, 0, 0, 5806, 5804, 1, 0, 0, 0, 5807, 649, 1, 0, 0, 0, 5808, 5813, 3, 652, 326, 0, 5809, 5810, 5, 505, 0, 0, 5810, 5812, 3, 652, 326, 0, 5811, 5809, 1, 0, 0, 0, 5812, 5815, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5813, 5814, 1, 0, 0, 0, 5814, 651, 1, 0, 0, 0, 5815, 5813, 1, 0, 0, 0, 5816, 5817, 7, 38, 0, 0, 5817, 653, 1, 0, 0, 0, 5818, 5819, 5, 68, 0, 0, 5819, 5820, 5, 342, 0, 0, 5820, 655, 1, 0, 0, 0, 5821, 5822, 5, 69, 0, 0, 5822, 5823, 5, 521, 0, 0, 5823, 657, 1, 0, 0, 0, 5824, 5825, 5, 438, 0, 0, 5825, 5826, 5, 56, 0, 0, 5826, 5827, 5, 525, 0, 0, 5827, 5828, 5, 521, 0, 0, 5828, 5829, 5, 76, 0, 0, 5829, 5884, 5, 525, 0, 0, 5830, 5831, 5, 438, 0, 0, 5831, 5832, 5, 57, 0, 0, 5832, 5884, 5, 525, 0, 0, 5833, 5834, 5, 438, 0, 0, 5834, 5884, 5, 389, 0, 0, 5835, 5836, 5, 438, 0, 0, 5836, 5837, 5, 525, 0, 0, 5837, 5838, 5, 65, 0, 0, 5838, 5884, 5, 525, 0, 0, 5839, 5840, 5, 438, 0, 0, 5840, 5841, 5, 525, 0, 0, 5841, 5842, 5, 66, 0, 0, 5842, 5884, 5, 525, 0, 0, 5843, 5844, 5, 438, 0, 0, 5844, 5845, 5, 525, 0, 0, 5845, 5846, 5, 366, 0, 0, 5846, 5847, 5, 367, 0, 0, 5847, 5848, 5, 362, 0, 0, 5848, 5861, 3, 714, 357, 0, 5849, 5850, 5, 369, 0, 0, 5850, 5851, 5, 507, 0, 0, 5851, 5856, 3, 714, 357, 0, 5852, 5853, 5, 505, 0, 0, 5853, 5855, 3, 714, 357, 0, 5854, 5852, 1, 0, 0, 0, 5855, 5858, 1, 0, 0, 0, 5856, 5854, 1, 0, 0, 0, 5856, 5857, 1, 0, 0, 0, 5857, 5859, 1, 0, 0, 0, 5858, 5856, 1, 0, 0, 0, 5859, 5860, 5, 508, 0, 0, 5860, 5862, 1, 0, 0, 0, 5861, 5849, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5875, 1, 0, 0, 0, 5863, 5864, 5, 370, 0, 0, 5864, 5865, 5, 507, 0, 0, 5865, 5870, 3, 714, 357, 0, 5866, 5867, 5, 505, 0, 0, 5867, 5869, 3, 714, 357, 0, 5868, 5866, 1, 0, 0, 0, 5869, 5872, 1, 0, 0, 0, 5870, 5868, 1, 0, 0, 0, 5870, 5871, 1, 0, 0, 0, 5871, 5873, 1, 0, 0, 0, 5872, 5870, 1, 0, 0, 0, 5873, 5874, 5, 508, 0, 0, 5874, 5876, 1, 0, 0, 0, 5875, 5863, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5878, 1, 0, 0, 0, 5877, 5879, 5, 368, 0, 0, 5878, 5877, 1, 0, 0, 0, 5878, 5879, 1, 0, 0, 0, 5879, 5884, 1, 0, 0, 0, 5880, 5881, 5, 438, 0, 0, 5881, 5882, 5, 525, 0, 0, 5882, 5884, 3, 660, 330, 0, 5883, 5824, 1, 0, 0, 0, 5883, 5830, 1, 0, 0, 0, 5883, 5833, 1, 0, 0, 0, 5883, 5835, 1, 0, 0, 0, 5883, 5839, 1, 0, 0, 0, 5883, 5843, 1, 0, 0, 0, 5883, 5880, 1, 0, 0, 0, 5884, 659, 1, 0, 0, 0, 5885, 5887, 8, 39, 0, 0, 5886, 5885, 1, 0, 0, 0, 5887, 5888, 1, 0, 0, 0, 5888, 5886, 1, 0, 0, 0, 5888, 5889, 1, 0, 0, 0, 5889, 661, 1, 0, 0, 0, 5890, 5891, 5, 361, 0, 0, 5891, 5892, 5, 71, 0, 0, 5892, 5893, 3, 714, 357, 0, 5893, 5894, 5, 358, 0, 0, 5894, 5895, 7, 12, 0, 0, 5895, 5896, 5, 362, 0, 0, 5896, 5897, 3, 712, 356, 0, 5897, 5898, 5, 359, 0, 0, 5898, 5899, 5, 507, 0, 0, 5899, 5904, 3, 664, 332, 0, 5900, 5901, 5, 505, 0, 0, 5901, 5903, 3, 664, 332, 0, 5902, 5900, 1, 0, 0, 0, 5903, 5906, 1, 0, 0, 0, 5904, 5902, 1, 0, 0, 0, 5904, 5905, 1, 0, 0, 0, 5905, 5907, 1, 0, 0, 0, 5906, 5904, 1, 0, 0, 0, 5907, 5920, 5, 508, 0, 0, 5908, 5909, 5, 364, 0, 0, 5909, 5910, 5, 507, 0, 0, 5910, 5915, 3, 666, 333, 0, 5911, 5912, 5, 505, 0, 0, 5912, 5914, 3, 666, 333, 0, 5913, 5911, 1, 0, 0, 0, 5914, 5917, 1, 0, 0, 0, 5915, 5913, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5918, 1, 0, 0, 0, 5917, 5915, 1, 0, 0, 0, 5918, 5919, 5, 508, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5908, 1, 0, 0, 0, 5920, 5921, 1, 0, 0, 0, 5921, 5924, 1, 0, 0, 0, 5922, 5923, 5, 363, 0, 0, 5923, 5925, 5, 523, 0, 0, 5924, 5922, 1, 0, 0, 0, 5924, 5925, 1, 0, 0, 0, 5925, 5928, 1, 0, 0, 0, 5926, 5927, 5, 75, 0, 0, 5927, 5929, 5, 523, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 663, 1, 0, 0, 0, 5930, 5931, 3, 714, 357, 0, 5931, 5932, 5, 76, 0, 0, 5932, 5933, 3, 714, 357, 0, 5933, 665, 1, 0, 0, 0, 5934, 5935, 3, 714, 357, 0, 5935, 5936, 5, 430, 0, 0, 5936, 5937, 3, 714, 357, 0, 5937, 5938, 5, 93, 0, 0, 5938, 5939, 3, 714, 357, 0, 5939, 5945, 1, 0, 0, 0, 5940, 5941, 3, 714, 357, 0, 5941, 5942, 5, 430, 0, 0, 5942, 5943, 3, 714, 357, 0, 5943, 5945, 1, 0, 0, 0, 5944, 5934, 1, 0, 0, 0, 5944, 5940, 1, 0, 0, 0, 5945, 667, 1, 0, 0, 0, 5946, 5947, 5, 525, 0, 0, 5947, 669, 1, 0, 0, 0, 5948, 5949, 5, 390, 0, 0, 5949, 5950, 5, 391, 0, 0, 5950, 5951, 3, 714, 357, 0, 5951, 5952, 5, 76, 0, 0, 5952, 5953, 5, 509, 0, 0, 5953, 5954, 3, 394, 197, 0, 5954, 5955, 5, 510, 0, 0, 5955, 671, 1, 0, 0, 0, 5956, 5957, 3, 674, 337, 0, 5957, 673, 1, 0, 0, 0, 5958, 5963, 3, 676, 338, 0, 5959, 5960, 5, 290, 0, 0, 5960, 5962, 3, 676, 338, 0, 5961, 5959, 1, 0, 0, 0, 5962, 5965, 1, 0, 0, 0, 5963, 5961, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 675, 1, 0, 0, 0, 5965, 5963, 1, 0, 0, 0, 5966, 5971, 3, 678, 339, 0, 5967, 5968, 5, 289, 0, 0, 5968, 5970, 3, 678, 339, 0, 5969, 5967, 1, 0, 0, 0, 5970, 5973, 1, 0, 0, 0, 5971, 5969, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 677, 1, 0, 0, 0, 5973, 5971, 1, 0, 0, 0, 5974, 5976, 5, 291, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5978, 3, 680, 340, 0, 5978, 679, 1, 0, 0, 0, 5979, 6008, 3, 684, 342, 0, 5980, 5981, 3, 682, 341, 0, 5981, 5982, 3, 684, 342, 0, 5982, 6009, 1, 0, 0, 0, 5983, 6009, 5, 6, 0, 0, 5984, 6009, 5, 5, 0, 0, 5985, 5986, 5, 293, 0, 0, 5986, 5989, 5, 507, 0, 0, 5987, 5990, 3, 586, 293, 0, 5988, 5990, 3, 710, 355, 0, 5989, 5987, 1, 0, 0, 0, 5989, 5988, 1, 0, 0, 0, 5990, 5991, 1, 0, 0, 0, 5991, 5992, 5, 508, 0, 0, 5992, 6009, 1, 0, 0, 0, 5993, 5995, 5, 291, 0, 0, 5994, 5993, 1, 0, 0, 0, 5994, 5995, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 5997, 5, 294, 0, 0, 5997, 5998, 3, 684, 342, 0, 5998, 5999, 5, 289, 0, 0, 5999, 6000, 3, 684, 342, 0, 6000, 6009, 1, 0, 0, 0, 6001, 6003, 5, 291, 0, 0, 6002, 6001, 1, 0, 0, 0, 6002, 6003, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 6005, 5, 295, 0, 0, 6005, 6009, 3, 684, 342, 0, 6006, 6007, 5, 296, 0, 0, 6007, 6009, 3, 684, 342, 0, 6008, 5980, 1, 0, 0, 0, 6008, 5983, 1, 0, 0, 0, 6008, 5984, 1, 0, 0, 0, 6008, 5985, 1, 0, 0, 0, 6008, 5994, 1, 0, 0, 0, 6008, 6002, 1, 0, 0, 0, 6008, 6006, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 681, 1, 0, 0, 0, 6010, 6011, 7, 40, 0, 0, 6011, 683, 1, 0, 0, 0, 6012, 6017, 3, 686, 343, 0, 6013, 6014, 7, 41, 0, 0, 6014, 6016, 3, 686, 343, 0, 6015, 6013, 1, 0, 0, 0, 6016, 6019, 1, 0, 0, 0, 6017, 6015, 1, 0, 0, 0, 6017, 6018, 1, 0, 0, 0, 6018, 685, 1, 0, 0, 0, 6019, 6017, 1, 0, 0, 0, 6020, 6025, 3, 688, 344, 0, 6021, 6022, 7, 42, 0, 0, 6022, 6024, 3, 688, 344, 0, 6023, 6021, 1, 0, 0, 0, 6024, 6027, 1, 0, 0, 0, 6025, 6023, 1, 0, 0, 0, 6025, 6026, 1, 0, 0, 0, 6026, 687, 1, 0, 0, 0, 6027, 6025, 1, 0, 0, 0, 6028, 6030, 7, 41, 0, 0, 6029, 6028, 1, 0, 0, 0, 6029, 6030, 1, 0, 0, 0, 6030, 6031, 1, 0, 0, 0, 6031, 6032, 3, 690, 345, 0, 6032, 689, 1, 0, 0, 0, 6033, 6034, 5, 507, 0, 0, 6034, 6035, 3, 672, 336, 0, 6035, 6036, 5, 508, 0, 0, 6036, 6055, 1, 0, 0, 0, 6037, 6038, 5, 507, 0, 0, 6038, 6039, 3, 586, 293, 0, 6039, 6040, 5, 508, 0, 0, 6040, 6055, 1, 0, 0, 0, 6041, 6042, 5, 297, 0, 0, 6042, 6043, 5, 507, 0, 0, 6043, 6044, 3, 586, 293, 0, 6044, 6045, 5, 508, 0, 0, 6045, 6055, 1, 0, 0, 0, 6046, 6055, 3, 694, 347, 0, 6047, 6055, 3, 692, 346, 0, 6048, 6055, 3, 696, 348, 0, 6049, 6055, 3, 318, 159, 0, 6050, 6055, 3, 310, 155, 0, 6051, 6055, 3, 700, 350, 0, 6052, 6055, 3, 702, 351, 0, 6053, 6055, 3, 708, 354, 0, 6054, 6033, 1, 0, 0, 0, 6054, 6037, 1, 0, 0, 0, 6054, 6041, 1, 0, 0, 0, 6054, 6046, 1, 0, 0, 0, 6054, 6047, 1, 0, 0, 0, 6054, 6048, 1, 0, 0, 0, 6054, 6049, 1, 0, 0, 0, 6054, 6050, 1, 0, 0, 0, 6054, 6051, 1, 0, 0, 0, 6054, 6052, 1, 0, 0, 0, 6054, 6053, 1, 0, 0, 0, 6055, 691, 1, 0, 0, 0, 6056, 6062, 5, 79, 0, 0, 6057, 6058, 5, 80, 0, 0, 6058, 6059, 3, 672, 336, 0, 6059, 6060, 5, 81, 0, 0, 6060, 6061, 3, 672, 336, 0, 6061, 6063, 1, 0, 0, 0, 6062, 6057, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6062, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6068, 1, 0, 0, 0, 6066, 6067, 5, 82, 0, 0, 6067, 6069, 3, 672, 336, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6070, 1, 0, 0, 0, 6070, 6071, 5, 83, 0, 0, 6071, 693, 1, 0, 0, 0, 6072, 6073, 5, 105, 0, 0, 6073, 6074, 3, 672, 336, 0, 6074, 6075, 5, 81, 0, 0, 6075, 6076, 3, 672, 336, 0, 6076, 6077, 5, 82, 0, 0, 6077, 6078, 3, 672, 336, 0, 6078, 695, 1, 0, 0, 0, 6079, 6080, 5, 288, 0, 0, 6080, 6081, 5, 507, 0, 0, 6081, 6082, 3, 672, 336, 0, 6082, 6083, 5, 76, 0, 0, 6083, 6084, 3, 698, 349, 0, 6084, 6085, 5, 508, 0, 0, 6085, 697, 1, 0, 0, 0, 6086, 6087, 7, 43, 0, 0, 6087, 699, 1, 0, 0, 0, 6088, 6089, 7, 44, 0, 0, 6089, 6095, 5, 507, 0, 0, 6090, 6092, 5, 84, 0, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6096, 3, 672, 336, 0, 6094, 6096, 5, 499, 0, 0, 6095, 6091, 1, 0, 0, 0, 6095, 6094, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 6098, 5, 508, 0, 0, 6098, 701, 1, 0, 0, 0, 6099, 6100, 3, 704, 352, 0, 6100, 6102, 5, 507, 0, 0, 6101, 6103, 3, 706, 353, 0, 6102, 6101, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6105, 5, 508, 0, 0, 6105, 703, 1, 0, 0, 0, 6106, 6107, 7, 45, 0, 0, 6107, 705, 1, 0, 0, 0, 6108, 6113, 3, 672, 336, 0, 6109, 6110, 5, 505, 0, 0, 6110, 6112, 3, 672, 336, 0, 6111, 6109, 1, 0, 0, 0, 6112, 6115, 1, 0, 0, 0, 6113, 6111, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 707, 1, 0, 0, 0, 6115, 6113, 1, 0, 0, 0, 6116, 6129, 3, 716, 358, 0, 6117, 6122, 5, 524, 0, 0, 6118, 6119, 5, 506, 0, 0, 6119, 6121, 3, 104, 52, 0, 6120, 6118, 1, 0, 0, 0, 6121, 6124, 1, 0, 0, 0, 6122, 6120, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 6129, 1, 0, 0, 0, 6124, 6122, 1, 0, 0, 0, 6125, 6129, 3, 712, 356, 0, 6126, 6129, 5, 525, 0, 0, 6127, 6129, 5, 520, 0, 0, 6128, 6116, 1, 0, 0, 0, 6128, 6117, 1, 0, 0, 0, 6128, 6125, 1, 0, 0, 0, 6128, 6126, 1, 0, 0, 0, 6128, 6127, 1, 0, 0, 0, 6129, 709, 1, 0, 0, 0, 6130, 6135, 3, 672, 336, 0, 6131, 6132, 5, 505, 0, 0, 6132, 6134, 3, 672, 336, 0, 6133, 6131, 1, 0, 0, 0, 6134, 6137, 1, 0, 0, 0, 6135, 6133, 1, 0, 0, 0, 6135, 6136, 1, 0, 0, 0, 6136, 711, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, 0, 6138, 6143, 3, 714, 357, 0, 6139, 6140, 5, 506, 0, 0, 6140, 6142, 3, 714, 357, 0, 6141, 6139, 1, 0, 0, 0, 6142, 6145, 1, 0, 0, 0, 6143, 6141, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 713, 1, 0, 0, 0, 6145, 6143, 1, 0, 0, 0, 6146, 6150, 5, 525, 0, 0, 6147, 6150, 5, 527, 0, 0, 6148, 6150, 3, 736, 368, 0, 6149, 6146, 1, 0, 0, 0, 6149, 6147, 1, 0, 0, 0, 6149, 6148, 1, 0, 0, 0, 6150, 715, 1, 0, 0, 0, 6151, 6157, 5, 521, 0, 0, 6152, 6157, 5, 523, 0, 0, 6153, 6157, 3, 720, 360, 0, 6154, 6157, 5, 292, 0, 0, 6155, 6157, 5, 140, 0, 0, 6156, 6151, 1, 0, 0, 0, 6156, 6152, 1, 0, 0, 0, 6156, 6153, 1, 0, 0, 0, 6156, 6154, 1, 0, 0, 0, 6156, 6155, 1, 0, 0, 0, 6157, 717, 1, 0, 0, 0, 6158, 6167, 5, 511, 0, 0, 6159, 6164, 3, 716, 358, 0, 6160, 6161, 5, 505, 0, 0, 6161, 6163, 3, 716, 358, 0, 6162, 6160, 1, 0, 0, 0, 6163, 6166, 1, 0, 0, 0, 6164, 6162, 1, 0, 0, 0, 6164, 6165, 1, 0, 0, 0, 6165, 6168, 1, 0, 0, 0, 6166, 6164, 1, 0, 0, 0, 6167, 6159, 1, 0, 0, 0, 6167, 6168, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 5, 512, 0, 0, 6170, 719, 1, 0, 0, 0, 6171, 6172, 7, 46, 0, 0, 6172, 721, 1, 0, 0, 0, 6173, 6174, 5, 2, 0, 0, 6174, 723, 1, 0, 0, 0, 6175, 6176, 5, 514, 0, 0, 6176, 6182, 3, 726, 363, 0, 6177, 6178, 5, 507, 0, 0, 6178, 6179, 3, 728, 364, 0, 6179, 6180, 5, 508, 0, 0, 6180, 6183, 1, 0, 0, 0, 6181, 6183, 3, 732, 366, 0, 6182, 6177, 1, 0, 0, 0, 6182, 6181, 1, 0, 0, 0, 6182, 6183, 1, 0, 0, 0, 6183, 725, 1, 0, 0, 0, 6184, 6185, 7, 47, 0, 0, 6185, 727, 1, 0, 0, 0, 6186, 6191, 3, 730, 365, 0, 6187, 6188, 5, 505, 0, 0, 6188, 6190, 3, 730, 365, 0, 6189, 6187, 1, 0, 0, 0, 6190, 6193, 1, 0, 0, 0, 6191, 6189, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 729, 1, 0, 0, 0, 6193, 6191, 1, 0, 0, 0, 6194, 6195, 5, 525, 0, 0, 6195, 6196, 5, 513, 0, 0, 6196, 6199, 3, 732, 366, 0, 6197, 6199, 3, 732, 366, 0, 6198, 6194, 1, 0, 0, 0, 6198, 6197, 1, 0, 0, 0, 6199, 731, 1, 0, 0, 0, 6200, 6204, 3, 716, 358, 0, 6201, 6204, 3, 672, 336, 0, 6202, 6204, 3, 712, 356, 0, 6203, 6200, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6202, 1, 0, 0, 0, 6204, 733, 1, 0, 0, 0, 6205, 6206, 7, 48, 0, 0, 6206, 735, 1, 0, 0, 0, 6207, 6208, 7, 49, 0, 0, 6208, 737, 1, 0, 0, 0, 722, 741, 747, 752, 755, 758, 767, 777, 786, 792, 794, 798, 801, 806, 812, 839, 847, 855, 863, 871, 883, 896, 909, 921, 932, 936, 944, 950, 967, 971, 975, 979, 983, 987, 991, 993, 1006, 1011, 1025, 1034, 1050, 1066, 1075, 1098, 1112, 1116, 1125, 1128, 1136, 1141, 1143, 1222, 1224, 1237, 1248, 1257, 1259, 1270, 1276, 1284, 1295, 1297, 1305, 1307, 1326, 1334, 1350, 1374, 1390, 1474, 1483, 1491, 1505, 1512, 1520, 1534, 1547, 1551, 1557, 1560, 1566, 1569, 1575, 1579, 1583, 1589, 1594, 1597, 1599, 1605, 1609, 1613, 1616, 1620, 1625, 1632, 1639, 1643, 1648, 1657, 1664, 1669, 1675, 1680, 1685, 1690, 1694, 1697, 1699, 1705, 1737, 1745, 1766, 1769, 1780, 1785, 1790, 1799, 1812, 1817, 1822, 1826, 1831, 1836, 1843, 1869, 1875, 1882, 1888, 1919, 1933, 1940, 1953, 1960, 1968, 1973, 1978, 1984, 1992, 1999, 2003, 2007, 2010, 2029, 2034, 2043, 2046, 2051, 2058, 2066, 2080, 2087, 2098, 2103, 2143, 2158, 2165, 2173, 2180, 2184, 2187, 2193, 2196, 2203, 2207, 2210, 2215, 2222, 2229, 2245, 2250, 2258, 2264, 2269, 2275, 2280, 2286, 2291, 2296, 2301, 2306, 2311, 2316, 2321, 2326, 2331, 2336, 2341, 2346, 2351, 2356, 2361, 2366, 2371, 2376, 2381, 2386, 2391, 2396, 2401, 2406, 2411, 2416, 2421, 2426, 2431, 2436, 2441, 2446, 2451, 2456, 2461, 2466, 2471, 2476, 2481, 2486, 2491, 2496, 2501, 2506, 2511, 2516, 2521, 2526, 2531, 2536, 2541, 2546, 2551, 2556, 2561, 2566, 2571, 2576, 2581, 2586, 2591, 2596, 2601, 2606, 2611, 2613, 2620, 2625, 2632, 2638, 2641, 2644, 2650, 2653, 2659, 2663, 2669, 2672, 2675, 2680, 2685, 2694, 2696, 2704, 2707, 2711, 2715, 2718, 2730, 2752, 2765, 2770, 2780, 2790, 2795, 2803, 2810, 2814, 2818, 2829, 2836, 2850, 2857, 2861, 2865, 2873, 2877, 2881, 2891, 2893, 2897, 2900, 2905, 2908, 2911, 2915, 2923, 2927, 2934, 2939, 2949, 2952, 2956, 2960, 2967, 2974, 2980, 2994, 3001, 3016, 3020, 3027, 3032, 3036, 3039, 3042, 3046, 3052, 3070, 3075, 3083, 3102, 3106, 3113, 3116, 3184, 3191, 3196, 3226, 3249, 3260, 3267, 3284, 3287, 3296, 3306, 3318, 3330, 3341, 3344, 3357, 3365, 3371, 3377, 3385, 3392, 3400, 3407, 3414, 3426, 3429, 3441, 3465, 3473, 3481, 3501, 3505, 3507, 3515, 3520, 3523, 3529, 3532, 3538, 3541, 3543, 3553, 3652, 3662, 3670, 3680, 3684, 3686, 3694, 3697, 3702, 3707, 3713, 3717, 3721, 3727, 3733, 3738, 3743, 3748, 3753, 3761, 3772, 3777, 3783, 3787, 3796, 3798, 3800, 3808, 3844, 3847, 3850, 3858, 3865, 3876, 3885, 3891, 3899, 3908, 3916, 3922, 3926, 3935, 3947, 3953, 3955, 3968, 3972, 3984, 3989, 3991, 4006, 4011, 4020, 4029, 4032, 4043, 4066, 4071, 4076, 4085, 4112, 4119, 4134, 4153, 4158, 4169, 4174, 4180, 4184, 4192, 4195, 4211, 4219, 4222, 4229, 4237, 4242, 4245, 4248, 4258, 4261, 4268, 4271, 4279, 4297, 4303, 4306, 4311, 4316, 4326, 4345, 4353, 4365, 4372, 4376, 4390, 4394, 4398, 4403, 4408, 4413, 4420, 4423, 4428, 4458, 4466, 4471, 4476, 4480, 4485, 4489, 4495, 4497, 4504, 4506, 4515, 4520, 4525, 4529, 4534, 4538, 4544, 4546, 4553, 4555, 4557, 4562, 4568, 4574, 4580, 4584, 4590, 4592, 4604, 4613, 4618, 4624, 4626, 4633, 4635, 4646, 4655, 4660, 4664, 4668, 4674, 4676, 4688, 4693, 4706, 4712, 4716, 4723, 4730, 4732, 4743, 4751, 4756, 4764, 4773, 4776, 4788, 4794, 4823, 4825, 4832, 4834, 4841, 4843, 4850, 4852, 4859, 4861, 4868, 4870, 4877, 4879, 4886, 4888, 4895, 4897, 4905, 4907, 4914, 4916, 4923, 4925, 4933, 4935, 4943, 4945, 4953, 4955, 4963, 4965, 4993, 5000, 5016, 5021, 5032, 5034, 5067, 5069, 5077, 5079, 5087, 5089, 5097, 5099, 5107, 5109, 5118, 5128, 5134, 5139, 5141, 5144, 5153, 5155, 5164, 5166, 5174, 5176, 5188, 5190, 5198, 5200, 5209, 5211, 5219, 5231, 5239, 5245, 5247, 5252, 5254, 5264, 5274, 5282, 5290, 5339, 5369, 5378, 5431, 5435, 5443, 5446, 5451, 5456, 5462, 5464, 5468, 5472, 5476, 5479, 5486, 5489, 5493, 5500, 5505, 5510, 5513, 5516, 5519, 5522, 5525, 5529, 5532, 5535, 5539, 5542, 5544, 5548, 5558, 5561, 5566, 5571, 5573, 5577, 5584, 5589, 5592, 5598, 5601, 5603, 5606, 5612, 5615, 5620, 5623, 5625, 5637, 5641, 5645, 5650, 5653, 5672, 5677, 5684, 5691, 5697, 5699, 5717, 5728, 5743, 5745, 5753, 5756, 5759, 5762, 5765, 5781, 5785, 5790, 5798, 5806, 5813, 5856, 5861, 5870, 5875, 5878, 5883, 5888, 5904, 5915, 5920, 5924, 5928, 5944, 5963, 5971, 5975, 5989, 5994, 6002, 6008, 6017, 6025, 6029, 6054, 6064, 6068, 6091, 6095, 6102, 6113, 6122, 6128, 6135, 6143, 6149, 6156, 6164, 6167, 6182, 6191, 6198, 6203] \ No newline at end of file diff --git a/mdl/grammar/parser/MDLParser.tokens b/mdl/grammar/parser/MDLParser.tokens index c1962269..1c2ec91d 100644 --- a/mdl/grammar/parser/MDLParser.tokens +++ b/mdl/grammar/parser/MDLParser.tokens @@ -178,372 +178,376 @@ INPUTREFERENCESETSELECTOR=177 FILEINPUT=178 IMAGEINPUT=179 CUSTOMWIDGET=180 -TEXTFILTER=181 -NUMBERFILTER=182 -DROPDOWNFILTER=183 -DATEFILTER=184 -FILTER=185 -WIDGET=186 -WIDGETS=187 -CAPTION=188 -ICON=189 -TOOLTIP=190 -DATASOURCE=191 -SOURCE_KW=192 -SELECTION=193 -FOOTER=194 -HEADER=195 -CONTENT=196 -RENDERMODE=197 -BINDS=198 -ATTR=199 -CONTENTPARAMS=200 -CAPTIONPARAMS=201 -PARAMS=202 -VARIABLES_KW=203 -DESKTOPWIDTH=204 -TABLETWIDTH=205 -PHONEWIDTH=206 -CLASS=207 -STYLE=208 -BUTTONSTYLE=209 -DESIGN=210 -PROPERTIES=211 -DESIGNPROPERTIES=212 -STYLING=213 -CLEAR=214 -WIDTH=215 -HEIGHT=216 -AUTOFILL=217 -URL=218 -FOLDER=219 -PASSING=220 -CONTEXT=221 -EDITABLE=222 -READONLY=223 -ATTRIBUTES=224 -FILTERTYPE=225 -IMAGE=226 -COLLECTION=227 -STATICIMAGE=228 -DYNAMICIMAGE=229 -CUSTOMCONTAINER=230 -GROUPBOX=231 -VISIBLE=232 -SAVECHANGES=233 -SAVE_CHANGES=234 -CANCEL_CHANGES=235 -CLOSE_PAGE=236 -SHOW_PAGE=237 -DELETE_ACTION=238 -DELETE_OBJECT=239 -CREATE_OBJECT=240 -CALL_MICROFLOW=241 -CALL_NANOFLOW=242 -OPEN_LINK=243 -SIGN_OUT=244 -CANCEL=245 -PRIMARY=246 -SUCCESS=247 -DANGER=248 -WARNING_STYLE=249 -INFO_STYLE=250 -TEMPLATE=251 -ONCLICK=252 -ONCHANGE=253 -TABINDEX=254 -H1=255 -H2=256 -H3=257 -H4=258 -H5=259 -H6=260 -PARAGRAPH=261 -STRING_TYPE=262 -INTEGER_TYPE=263 -LONG_TYPE=264 -DECIMAL_TYPE=265 -BOOLEAN_TYPE=266 -DATETIME_TYPE=267 -DATE_TYPE=268 -AUTONUMBER_TYPE=269 -BINARY_TYPE=270 -HASHEDSTRING_TYPE=271 -CURRENCY_TYPE=272 -FLOAT_TYPE=273 -STRINGTEMPLATE_TYPE=274 -ENUM_TYPE=275 -COUNT=276 -SUM=277 -AVG=278 -MIN=279 -MAX=280 -LENGTH=281 -TRIM=282 -COALESCE=283 -CAST=284 -AND=285 -OR=286 -NOT=287 -NULL=288 -IN=289 -BETWEEN=290 -LIKE=291 -MATCH=292 -EXISTS=293 -UNIQUE=294 -DEFAULT=295 -TRUE=296 -FALSE=297 -VALIDATION=298 -FEEDBACK=299 -RULE=300 -REQUIRED=301 -ERROR=302 -RAISE=303 -RANGE=304 -REGEX=305 -PATTERN=306 -EXPRESSION=307 -XPATH=308 -CONSTRAINT=309 -CALCULATED=310 -REST=311 -SERVICE=312 -SERVICES=313 -ODATA=314 -BASE=315 -AUTH=316 -AUTHENTICATION=317 -BASIC=318 -NOTHING=319 -OAUTH=320 -OPERATION=321 -METHOD=322 -PATH=323 -TIMEOUT=324 -BODY=325 -RESPONSE=326 -REQUEST=327 -SEND=328 -JSON=329 -XML=330 -STATUS=331 -FILE_KW=332 -VERSION=333 -GET=334 -POST=335 -PUT=336 -PATCH=337 -API=338 -CLIENT=339 -CLIENTS=340 -PUBLISH=341 -PUBLISHED=342 -EXPOSE=343 -CONTRACT=344 -NAMESPACE_KW=345 -SESSION=346 -GUEST=347 -PAGING=348 -NOT_SUPPORTED=349 -USERNAME=350 -PASSWORD=351 -CONNECTION=352 -DATABASE=353 -QUERY=354 -MAP=355 -MAPPING=356 -IMPORT=357 -INTO=358 -BATCH=359 -LINK=360 -EXPORT=361 -GENERATE=362 -CONNECTOR=363 -EXEC=364 -TABLES=365 -VIEWS=366 -EXPOSED=367 -PARAMETER=368 -PARAMETERS=369 -HEADERS=370 -NAVIGATION=371 -MENU_KW=372 -HOMES=373 -HOME=374 -LOGIN=375 -FOUND=376 -MODULES=377 -ENTITIES=378 -ASSOCIATIONS=379 -MICROFLOWS=380 -NANOFLOWS=381 -WORKFLOWS=382 -ENUMERATIONS=383 -CONSTANTS=384 -CONNECTIONS=385 -DEFINE=386 -FRAGMENT=387 -FRAGMENTS=388 -LANGUAGES=389 -INSERT=390 -BEFORE=391 -AFTER=392 -UPDATE=393 -REFRESH=394 -CHECK=395 -BUILD=396 -EXECUTE=397 -SCRIPT=398 -LINT=399 -RULES=400 -TEXT=401 -SARIF=402 -MESSAGE=403 -MESSAGES=404 -CHANNELS=405 -COMMENT=406 -CUSTOM_NAME_MAP=407 -CATALOG=408 -FORCE=409 -BACKGROUND=410 -CALLERS=411 -CALLEES=412 -REFERENCES=413 -TRANSITIVE=414 -IMPACT=415 -DEPTH=416 -STRUCTURE=417 -STRUCTURES=418 -TYPE=419 -VALUE=420 -VALUES=421 -SINGLE=422 -MULTIPLE=423 -NONE=424 -BOTH=425 -TO=426 -OF=427 -OVER=428 -FOR=429 -REPLACE=430 -MEMBERS=431 -ATTRIBUTE_NAME=432 -FORMAT=433 -SQL=434 -WITHOUT=435 -DRY=436 -RUN=437 -WIDGETTYPE=438 -V3=439 -BUSINESS=440 -EVENT=441 -SUBSCRIBE=442 -SETTINGS=443 -CONFIGURATION=444 -FEATURES=445 -ADDED=446 -SINCE=447 -SECURITY=448 -ROLE=449 -ROLES=450 -GRANT=451 -REVOKE=452 -PRODUCTION=453 -PROTOTYPE=454 -MANAGE=455 -DEMO=456 -MATRIX=457 -APPLY=458 -ACCESS=459 -LEVEL=460 -USER=461 -TASK=462 -DECISION=463 -SPLIT=464 -OUTCOMES=465 -TARGETING=466 -NOTIFICATION=467 -TIMER=468 -JUMP=469 -DUE=470 -OVERVIEW=471 -DATE=472 -PARALLEL=473 -WAIT=474 -ANNOTATION=475 -BOUNDARY=476 -INTERRUPTING=477 -NON=478 -MULTI=479 -BY=480 -READ=481 -WRITE=482 -DESCRIPTION=483 -DISPLAY=484 -OFF=485 -USERS=486 -NOT_EQUALS=487 -LESS_THAN_OR_EQUAL=488 -GREATER_THAN_OR_EQUAL=489 -EQUALS=490 -LESS_THAN=491 -GREATER_THAN=492 -PLUS=493 -MINUS=494 -STAR=495 -SLASH=496 -PERCENT=497 -MOD=498 -DIV=499 -SEMICOLON=500 -COMMA=501 -DOT=502 -LPAREN=503 -RPAREN=504 -LBRACE=505 -RBRACE=506 -LBRACKET=507 -RBRACKET=508 -COLON=509 -AT=510 -PIPE=511 -DOUBLE_COLON=512 -ARROW=513 -QUESTION=514 -HASH=515 -MENDIX_TOKEN=516 -STRING_LITERAL=517 -DOLLAR_STRING=518 -NUMBER_LITERAL=519 -VARIABLE=520 -IDENTIFIER=521 -HYPHENATED_ID=522 -QUOTED_IDENTIFIER=523 -'<='=488 -'>='=489 -'='=490 -'<'=491 -'>'=492 -'+'=493 -'-'=494 -'*'=495 -'/'=496 -'%'=497 -';'=500 -','=501 -'.'=502 -'('=503 -')'=504 -'{'=505 -'}'=506 -'['=507 -']'=508 -':'=509 -'@'=510 -'|'=511 -'::'=512 -'->'=513 -'?'=514 -'#'=515 +PLUGGABLEWIDGET=181 +TEXTFILTER=182 +NUMBERFILTER=183 +DROPDOWNFILTER=184 +DATEFILTER=185 +DROPDOWNSORT=186 +FILTER=187 +WIDGET=188 +WIDGETS=189 +CAPTION=190 +ICON=191 +TOOLTIP=192 +DATASOURCE=193 +SOURCE_KW=194 +SELECTION=195 +FOOTER=196 +HEADER=197 +CONTENT=198 +RENDERMODE=199 +BINDS=200 +ATTR=201 +CONTENTPARAMS=202 +CAPTIONPARAMS=203 +PARAMS=204 +VARIABLES_KW=205 +DESKTOPWIDTH=206 +TABLETWIDTH=207 +PHONEWIDTH=208 +CLASS=209 +STYLE=210 +BUTTONSTYLE=211 +DESIGN=212 +PROPERTIES=213 +DESIGNPROPERTIES=214 +STYLING=215 +CLEAR=216 +WIDTH=217 +HEIGHT=218 +AUTOFILL=219 +URL=220 +FOLDER=221 +PASSING=222 +CONTEXT=223 +EDITABLE=224 +READONLY=225 +ATTRIBUTES=226 +FILTERTYPE=227 +IMAGE=228 +COLLECTION=229 +STATICIMAGE=230 +DYNAMICIMAGE=231 +CUSTOMCONTAINER=232 +TABCONTAINER=233 +TABPAGE=234 +GROUPBOX=235 +VISIBLE=236 +SAVECHANGES=237 +SAVE_CHANGES=238 +CANCEL_CHANGES=239 +CLOSE_PAGE=240 +SHOW_PAGE=241 +DELETE_ACTION=242 +DELETE_OBJECT=243 +CREATE_OBJECT=244 +CALL_MICROFLOW=245 +CALL_NANOFLOW=246 +OPEN_LINK=247 +SIGN_OUT=248 +CANCEL=249 +PRIMARY=250 +SUCCESS=251 +DANGER=252 +WARNING_STYLE=253 +INFO_STYLE=254 +TEMPLATE=255 +ONCLICK=256 +ONCHANGE=257 +TABINDEX=258 +H1=259 +H2=260 +H3=261 +H4=262 +H5=263 +H6=264 +PARAGRAPH=265 +STRING_TYPE=266 +INTEGER_TYPE=267 +LONG_TYPE=268 +DECIMAL_TYPE=269 +BOOLEAN_TYPE=270 +DATETIME_TYPE=271 +DATE_TYPE=272 +AUTONUMBER_TYPE=273 +BINARY_TYPE=274 +HASHEDSTRING_TYPE=275 +CURRENCY_TYPE=276 +FLOAT_TYPE=277 +STRINGTEMPLATE_TYPE=278 +ENUM_TYPE=279 +COUNT=280 +SUM=281 +AVG=282 +MIN=283 +MAX=284 +LENGTH=285 +TRIM=286 +COALESCE=287 +CAST=288 +AND=289 +OR=290 +NOT=291 +NULL=292 +IN=293 +BETWEEN=294 +LIKE=295 +MATCH=296 +EXISTS=297 +UNIQUE=298 +DEFAULT=299 +TRUE=300 +FALSE=301 +VALIDATION=302 +FEEDBACK=303 +RULE=304 +REQUIRED=305 +ERROR=306 +RAISE=307 +RANGE=308 +REGEX=309 +PATTERN=310 +EXPRESSION=311 +XPATH=312 +CONSTRAINT=313 +CALCULATED=314 +REST=315 +SERVICE=316 +SERVICES=317 +ODATA=318 +BASE=319 +AUTH=320 +AUTHENTICATION=321 +BASIC=322 +NOTHING=323 +OAUTH=324 +OPERATION=325 +METHOD=326 +PATH=327 +TIMEOUT=328 +BODY=329 +RESPONSE=330 +REQUEST=331 +SEND=332 +JSON=333 +XML=334 +STATUS=335 +FILE_KW=336 +VERSION=337 +GET=338 +POST=339 +PUT=340 +PATCH=341 +API=342 +CLIENT=343 +CLIENTS=344 +PUBLISH=345 +PUBLISHED=346 +EXPOSE=347 +CONTRACT=348 +NAMESPACE_KW=349 +SESSION=350 +GUEST=351 +PAGING=352 +NOT_SUPPORTED=353 +USERNAME=354 +PASSWORD=355 +CONNECTION=356 +DATABASE=357 +QUERY=358 +MAP=359 +MAPPING=360 +IMPORT=361 +INTO=362 +BATCH=363 +LINK=364 +EXPORT=365 +GENERATE=366 +CONNECTOR=367 +EXEC=368 +TABLES=369 +VIEWS=370 +EXPOSED=371 +PARAMETER=372 +PARAMETERS=373 +HEADERS=374 +NAVIGATION=375 +MENU_KW=376 +HOMES=377 +HOME=378 +LOGIN=379 +FOUND=380 +MODULES=381 +ENTITIES=382 +ASSOCIATIONS=383 +MICROFLOWS=384 +NANOFLOWS=385 +WORKFLOWS=386 +ENUMERATIONS=387 +CONSTANTS=388 +CONNECTIONS=389 +DEFINE=390 +FRAGMENT=391 +FRAGMENTS=392 +LANGUAGES=393 +INSERT=394 +BEFORE=395 +AFTER=396 +UPDATE=397 +REFRESH=398 +CHECK=399 +BUILD=400 +EXECUTE=401 +SCRIPT=402 +LINT=403 +RULES=404 +TEXT=405 +SARIF=406 +MESSAGE=407 +MESSAGES=408 +CHANNELS=409 +COMMENT=410 +CUSTOM_NAME_MAP=411 +CATALOG=412 +FORCE=413 +BACKGROUND=414 +CALLERS=415 +CALLEES=416 +REFERENCES=417 +TRANSITIVE=418 +IMPACT=419 +DEPTH=420 +STRUCTURE=421 +STRUCTURES=422 +TYPE=423 +VALUE=424 +VALUES=425 +SINGLE=426 +MULTIPLE=427 +NONE=428 +BOTH=429 +TO=430 +OF=431 +OVER=432 +FOR=433 +REPLACE=434 +MEMBERS=435 +ATTRIBUTE_NAME=436 +FORMAT=437 +SQL=438 +WITHOUT=439 +DRY=440 +RUN=441 +WIDGETTYPE=442 +V3=443 +BUSINESS=444 +EVENT=445 +SUBSCRIBE=446 +SETTINGS=447 +CONFIGURATION=448 +FEATURES=449 +ADDED=450 +SINCE=451 +SECURITY=452 +ROLE=453 +ROLES=454 +GRANT=455 +REVOKE=456 +PRODUCTION=457 +PROTOTYPE=458 +MANAGE=459 +DEMO=460 +MATRIX=461 +APPLY=462 +ACCESS=463 +LEVEL=464 +USER=465 +TASK=466 +DECISION=467 +SPLIT=468 +OUTCOMES=469 +TARGETING=470 +NOTIFICATION=471 +TIMER=472 +JUMP=473 +DUE=474 +OVERVIEW=475 +DATE=476 +PARALLEL=477 +WAIT=478 +ANNOTATION=479 +BOUNDARY=480 +INTERRUPTING=481 +NON=482 +MULTI=483 +BY=484 +READ=485 +WRITE=486 +DESCRIPTION=487 +DISPLAY=488 +OFF=489 +USERS=490 +NOT_EQUALS=491 +LESS_THAN_OR_EQUAL=492 +GREATER_THAN_OR_EQUAL=493 +EQUALS=494 +LESS_THAN=495 +GREATER_THAN=496 +PLUS=497 +MINUS=498 +STAR=499 +SLASH=500 +PERCENT=501 +MOD=502 +DIV=503 +SEMICOLON=504 +COMMA=505 +DOT=506 +LPAREN=507 +RPAREN=508 +LBRACE=509 +RBRACE=510 +LBRACKET=511 +RBRACKET=512 +COLON=513 +AT=514 +PIPE=515 +DOUBLE_COLON=516 +ARROW=517 +QUESTION=518 +HASH=519 +MENDIX_TOKEN=520 +STRING_LITERAL=521 +DOLLAR_STRING=522 +NUMBER_LITERAL=523 +VARIABLE=524 +IDENTIFIER=525 +HYPHENATED_ID=526 +QUOTED_IDENTIFIER=527 +'<='=492 +'>='=493 +'='=494 +'<'=495 +'>'=496 +'+'=497 +'-'=498 +'*'=499 +'/'=500 +'%'=501 +';'=504 +','=505 +'.'=506 +'('=507 +')'=508 +'{'=509 +'}'=510 +'['=511 +']'=512 +':'=513 +'@'=514 +'|'=515 +'::'=516 +'->'=517 +'?'=518 +'#'=519 diff --git a/mdl/grammar/parser/mdl_lexer.go b/mdl/grammar/parser/mdl_lexer.go index 1bd06cc8..a6aefbf6 100644 --- a/mdl/grammar/parser/mdl_lexer.go +++ b/mdl/grammar/parser/mdl_lexer.go @@ -1,4 +1,4 @@ -// Code generated from MDLLexer.g4 by ANTLR 4.13.2. DO NOT EDIT. +// Code generated from MDLLexer.g4 by ANTLR 4.13.1. DO NOT EDIT. package parser @@ -71,10 +71,10 @@ func mdllexerLexerInit() { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "'<='", "'>='", "'='", - "'<'", "'>'", "'+'", "'-'", "'*'", "'/'", "'%'", "", "", "';'", "','", - "'.'", "'('", "')'", "'{'", "'}'", "'['", "']'", "':'", "'@'", "'|'", - "'::'", "'->'", "'?'", "'#'", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "'<='", + "'>='", "'='", "'<'", "'>'", "'+'", "'-'", "'*'", "'/'", "'%'", "", + "", "';'", "','", "'.'", "'('", "')'", "'{'", "'}'", "'['", "']'", "':'", + "'@'", "'|'", "'::'", "'->'", "'?'", "'#'", } staticData.SymbolicNames = []string{ "", "WS", "DOC_COMMENT", "BLOCK_COMMENT", "LINE_COMMENT", "IS_NOT_NULL", @@ -104,47 +104,48 @@ func mdllexerLexerInit() { "ACTIONBUTTON", "LINKBUTTON", "BUTTON", "TITLE", "DYNAMICTEXT", "DYNAMIC", "STATICTEXT", "LABEL", "TEXTBOX", "TEXTAREA", "DATEPICKER", "RADIOBUTTONS", "DROPDOWN", "COMBOBOX", "CHECKBOX", "REFERENCESELECTOR", "INPUTREFERENCESETSELECTOR", - "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "TEXTFILTER", "NUMBERFILTER", - "DROPDOWNFILTER", "DATEFILTER", "FILTER", "WIDGET", "WIDGETS", "CAPTION", - "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", "SELECTION", "FOOTER", - "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", "CONTENTPARAMS", - "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", "TABLETWIDTH", - "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", "PROPERTIES", - "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", "AUTOFILL", - "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", "ATTRIBUTES", - "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", - "CUSTOMCONTAINER", "GROUPBOX", "VISIBLE", "SAVECHANGES", "SAVE_CHANGES", - "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", "DELETE_ACTION", "DELETE_OBJECT", - "CREATE_OBJECT", "CALL_MICROFLOW", "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", - "CANCEL", "PRIMARY", "SUCCESS", "DANGER", "WARNING_STYLE", "INFO_STYLE", - "TEMPLATE", "ONCLICK", "ONCHANGE", "TABINDEX", "H1", "H2", "H3", "H4", - "H5", "H6", "PARAGRAPH", "STRING_TYPE", "INTEGER_TYPE", "LONG_TYPE", - "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", "DATE_TYPE", "AUTONUMBER_TYPE", - "BINARY_TYPE", "HASHEDSTRING_TYPE", "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", - "ENUM_TYPE", "COUNT", "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", - "COALESCE", "CAST", "AND", "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", - "MATCH", "EXISTS", "UNIQUE", "DEFAULT", "TRUE", "FALSE", "VALIDATION", - "FEEDBACK", "RULE", "REQUIRED", "ERROR", "RAISE", "RANGE", "REGEX", - "PATTERN", "EXPRESSION", "XPATH", "CONSTRAINT", "CALCULATED", "REST", - "SERVICE", "SERVICES", "ODATA", "BASE", "AUTH", "AUTHENTICATION", "BASIC", - "NOTHING", "OAUTH", "OPERATION", "METHOD", "PATH", "TIMEOUT", "BODY", - "RESPONSE", "REQUEST", "SEND", "JSON", "XML", "STATUS", "FILE_KW", "VERSION", - "GET", "POST", "PUT", "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", - "PUBLISHED", "EXPOSE", "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", - "PAGING", "NOT_SUPPORTED", "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", - "QUERY", "MAP", "MAPPING", "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", - "GENERATE", "CONNECTOR", "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", - "PARAMETERS", "HEADERS", "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", - "FOUND", "MODULES", "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", - "WORKFLOWS", "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", - "FRAGMENTS", "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", - "CHECK", "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", - "MESSAGE", "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", - "FORCE", "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", - "IMPACT", "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", - "SINGLE", "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", - "MEMBERS", "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", - "WIDGETTYPE", "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", + "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "PLUGGABLEWIDGET", "TEXTFILTER", + "NUMBERFILTER", "DROPDOWNFILTER", "DATEFILTER", "DROPDOWNSORT", "FILTER", + "WIDGET", "WIDGETS", "CAPTION", "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", + "SELECTION", "FOOTER", "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", + "CONTENTPARAMS", "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", + "TABLETWIDTH", "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", + "PROPERTIES", "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", + "AUTOFILL", "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", + "ATTRIBUTES", "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", + "CUSTOMCONTAINER", "TABCONTAINER", "TABPAGE", "GROUPBOX", "VISIBLE", + "SAVECHANGES", "SAVE_CHANGES", "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", + "DELETE_ACTION", "DELETE_OBJECT", "CREATE_OBJECT", "CALL_MICROFLOW", + "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", "CANCEL", "PRIMARY", "SUCCESS", + "DANGER", "WARNING_STYLE", "INFO_STYLE", "TEMPLATE", "ONCLICK", "ONCHANGE", + "TABINDEX", "H1", "H2", "H3", "H4", "H5", "H6", "PARAGRAPH", "STRING_TYPE", + "INTEGER_TYPE", "LONG_TYPE", "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", + "DATE_TYPE", "AUTONUMBER_TYPE", "BINARY_TYPE", "HASHEDSTRING_TYPE", + "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", "ENUM_TYPE", "COUNT", + "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", "COALESCE", "CAST", "AND", + "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", "MATCH", "EXISTS", "UNIQUE", + "DEFAULT", "TRUE", "FALSE", "VALIDATION", "FEEDBACK", "RULE", "REQUIRED", + "ERROR", "RAISE", "RANGE", "REGEX", "PATTERN", "EXPRESSION", "XPATH", + "CONSTRAINT", "CALCULATED", "REST", "SERVICE", "SERVICES", "ODATA", + "BASE", "AUTH", "AUTHENTICATION", "BASIC", "NOTHING", "OAUTH", "OPERATION", + "METHOD", "PATH", "TIMEOUT", "BODY", "RESPONSE", "REQUEST", "SEND", + "JSON", "XML", "STATUS", "FILE_KW", "VERSION", "GET", "POST", "PUT", + "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", "PUBLISHED", "EXPOSE", + "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", "PAGING", "NOT_SUPPORTED", + "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", "QUERY", "MAP", "MAPPING", + "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", "GENERATE", "CONNECTOR", + "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", "PARAMETERS", "HEADERS", + "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", "FOUND", "MODULES", + "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", "WORKFLOWS", + "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", "FRAGMENTS", + "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", "CHECK", + "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", "MESSAGE", + "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", "FORCE", + "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", "IMPACT", + "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", "SINGLE", + "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", "MEMBERS", + "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", "WIDGETTYPE", + "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", "FEATURES", "ADDED", "SINCE", "SECURITY", "ROLE", "ROLES", "GRANT", "REVOKE", "PRODUCTION", "PROTOTYPE", "MANAGE", "DEMO", "MATRIX", "APPLY", "ACCESS", "LEVEL", "USER", "TASK", "DECISION", "SPLIT", "OUTCOMES", @@ -186,47 +187,48 @@ func mdllexerLexerInit() { "ACTIONBUTTON", "LINKBUTTON", "BUTTON", "TITLE", "DYNAMICTEXT", "DYNAMIC", "STATICTEXT", "LABEL", "TEXTBOX", "TEXTAREA", "DATEPICKER", "RADIOBUTTONS", "DROPDOWN", "COMBOBOX", "CHECKBOX", "REFERENCESELECTOR", "INPUTREFERENCESETSELECTOR", - "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "TEXTFILTER", "NUMBERFILTER", - "DROPDOWNFILTER", "DATEFILTER", "FILTER", "WIDGET", "WIDGETS", "CAPTION", - "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", "SELECTION", "FOOTER", - "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", "CONTENTPARAMS", - "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", "TABLETWIDTH", - "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", "PROPERTIES", - "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", "AUTOFILL", - "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", "ATTRIBUTES", - "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", - "CUSTOMCONTAINER", "GROUPBOX", "VISIBLE", "SAVECHANGES", "SAVE_CHANGES", - "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", "DELETE_ACTION", "DELETE_OBJECT", - "CREATE_OBJECT", "CALL_MICROFLOW", "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", - "CANCEL", "PRIMARY", "SUCCESS", "DANGER", "WARNING_STYLE", "INFO_STYLE", - "TEMPLATE", "ONCLICK", "ONCHANGE", "TABINDEX", "H1", "H2", "H3", "H4", - "H5", "H6", "PARAGRAPH", "STRING_TYPE", "INTEGER_TYPE", "LONG_TYPE", - "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", "DATE_TYPE", "AUTONUMBER_TYPE", - "BINARY_TYPE", "HASHEDSTRING_TYPE", "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", - "ENUM_TYPE", "COUNT", "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", - "COALESCE", "CAST", "AND", "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", - "MATCH", "EXISTS", "UNIQUE", "DEFAULT", "TRUE", "FALSE", "VALIDATION", - "FEEDBACK", "RULE", "REQUIRED", "ERROR", "RAISE", "RANGE", "REGEX", - "PATTERN", "EXPRESSION", "XPATH", "CONSTRAINT", "CALCULATED", "REST", - "SERVICE", "SERVICES", "ODATA", "BASE", "AUTH", "AUTHENTICATION", "BASIC", - "NOTHING", "OAUTH", "OPERATION", "METHOD", "PATH", "TIMEOUT", "BODY", - "RESPONSE", "REQUEST", "SEND", "JSON", "XML", "STATUS", "FILE_KW", "VERSION", - "GET", "POST", "PUT", "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", - "PUBLISHED", "EXPOSE", "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", - "PAGING", "NOT_SUPPORTED", "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", - "QUERY", "MAP", "MAPPING", "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", - "GENERATE", "CONNECTOR", "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", - "PARAMETERS", "HEADERS", "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", - "FOUND", "MODULES", "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", - "WORKFLOWS", "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", - "FRAGMENTS", "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", - "CHECK", "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", - "MESSAGE", "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", - "FORCE", "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", - "IMPACT", "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", - "SINGLE", "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", - "MEMBERS", "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", - "WIDGETTYPE", "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", + "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "PLUGGABLEWIDGET", "TEXTFILTER", + "NUMBERFILTER", "DROPDOWNFILTER", "DATEFILTER", "DROPDOWNSORT", "FILTER", + "WIDGET", "WIDGETS", "CAPTION", "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", + "SELECTION", "FOOTER", "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", + "CONTENTPARAMS", "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", + "TABLETWIDTH", "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", + "PROPERTIES", "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", + "AUTOFILL", "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", + "ATTRIBUTES", "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", + "CUSTOMCONTAINER", "TABCONTAINER", "TABPAGE", "GROUPBOX", "VISIBLE", + "SAVECHANGES", "SAVE_CHANGES", "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", + "DELETE_ACTION", "DELETE_OBJECT", "CREATE_OBJECT", "CALL_MICROFLOW", + "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", "CANCEL", "PRIMARY", "SUCCESS", + "DANGER", "WARNING_STYLE", "INFO_STYLE", "TEMPLATE", "ONCLICK", "ONCHANGE", + "TABINDEX", "H1", "H2", "H3", "H4", "H5", "H6", "PARAGRAPH", "STRING_TYPE", + "INTEGER_TYPE", "LONG_TYPE", "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", + "DATE_TYPE", "AUTONUMBER_TYPE", "BINARY_TYPE", "HASHEDSTRING_TYPE", + "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", "ENUM_TYPE", "COUNT", + "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", "COALESCE", "CAST", "AND", + "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", "MATCH", "EXISTS", "UNIQUE", + "DEFAULT", "TRUE", "FALSE", "VALIDATION", "FEEDBACK", "RULE", "REQUIRED", + "ERROR", "RAISE", "RANGE", "REGEX", "PATTERN", "EXPRESSION", "XPATH", + "CONSTRAINT", "CALCULATED", "REST", "SERVICE", "SERVICES", "ODATA", + "BASE", "AUTH", "AUTHENTICATION", "BASIC", "NOTHING", "OAUTH", "OPERATION", + "METHOD", "PATH", "TIMEOUT", "BODY", "RESPONSE", "REQUEST", "SEND", + "JSON", "XML", "STATUS", "FILE_KW", "VERSION", "GET", "POST", "PUT", + "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", "PUBLISHED", "EXPOSE", + "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", "PAGING", "NOT_SUPPORTED", + "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", "QUERY", "MAP", "MAPPING", + "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", "GENERATE", "CONNECTOR", + "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", "PARAMETERS", "HEADERS", + "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", "FOUND", "MODULES", + "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", "WORKFLOWS", + "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", "FRAGMENTS", + "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", "CHECK", + "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", "MESSAGE", + "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", "FORCE", + "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", "IMPACT", + "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", "SINGLE", + "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", "MEMBERS", + "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", "WIDGETTYPE", + "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", "FEATURES", "ADDED", "SINCE", "SECURITY", "ROLE", "ROLES", "GRANT", "REVOKE", "PRODUCTION", "PROTOTYPE", "MANAGE", "DEMO", "MATRIX", "APPLY", "ACCESS", "LEVEL", "USER", "TASK", "DECISION", "SPLIT", "OUTCOMES", @@ -245,7 +247,7 @@ func mdllexerLexerInit() { } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 0, 523, 5439, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, + 4, 0, 527, 5497, 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, @@ -364,2562 +366,2591 @@ func mdllexerLexerInit() { 2, 536, 7, 536, 2, 537, 7, 537, 2, 538, 7, 538, 2, 539, 7, 539, 2, 540, 7, 540, 2, 541, 7, 541, 2, 542, 7, 542, 2, 543, 7, 543, 2, 544, 7, 544, 2, 545, 7, 545, 2, 546, 7, 546, 2, 547, 7, 547, 2, 548, 7, 548, 2, 549, - 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 1, 0, 4, 0, 1107, 8, 0, 11, 0, - 12, 0, 1108, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1118, 8, 1, - 10, 1, 12, 1, 1121, 9, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, - 2, 1130, 8, 2, 10, 2, 12, 2, 1133, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, - 1, 3, 1, 3, 1, 3, 1, 3, 5, 3, 1144, 8, 3, 10, 3, 12, 3, 1147, 9, 3, 1, - 3, 1, 3, 1, 4, 1, 4, 1, 4, 4, 4, 1154, 8, 4, 11, 4, 12, 4, 1155, 1, 4, - 1, 4, 1, 4, 1, 4, 4, 4, 1162, 8, 4, 11, 4, 12, 4, 1163, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 4, 5, 1174, 8, 5, 11, 5, 12, 5, 1175, - 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 4, 6, 1187, 8, 6, - 11, 6, 12, 6, 1188, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, - 7, 1, 7, 1, 7, 4, 7, 1202, 8, 7, 11, 7, 12, 7, 1203, 1, 7, 1, 7, 1, 7, - 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1215, 8, 8, 11, 8, 12, 8, 1216, - 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 4, 9, 1227, 8, 9, 11, 9, - 12, 9, 1228, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, - 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, - 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1259, - 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 4, - 12, 1270, 8, 12, 11, 12, 12, 12, 1271, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, - 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1284, 8, 13, 11, 13, 12, 13, - 1285, 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1292, 8, 13, 11, 13, 12, 13, 1293, + 7, 549, 2, 550, 7, 550, 2, 551, 7, 551, 2, 552, 7, 552, 2, 553, 7, 553, + 2, 554, 7, 554, 2, 555, 7, 555, 1, 0, 4, 0, 1115, 8, 0, 11, 0, 12, 0, 1116, + 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1126, 8, 1, 10, 1, 12, + 1, 1129, 9, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1138, 8, + 2, 10, 2, 12, 2, 1141, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, + 1, 3, 1, 3, 5, 3, 1152, 8, 3, 10, 3, 12, 3, 1155, 9, 3, 1, 3, 1, 3, 1, + 4, 1, 4, 1, 4, 4, 4, 1162, 8, 4, 11, 4, 12, 4, 1163, 1, 4, 1, 4, 1, 4, + 1, 4, 4, 4, 1170, 8, 4, 11, 4, 12, 4, 1171, 1, 4, 1, 4, 1, 4, 1, 4, 1, + 4, 1, 5, 1, 5, 1, 5, 4, 5, 1182, 8, 5, 11, 5, 12, 5, 1183, 1, 5, 1, 5, + 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 4, 6, 1195, 8, 6, 11, 6, 12, + 6, 1196, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, + 7, 4, 7, 1210, 8, 7, 11, 7, 12, 7, 1211, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, + 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1223, 8, 8, 11, 8, 12, 8, 1224, 1, 8, 1, + 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 4, 9, 1235, 8, 9, 11, 9, 12, 9, + 1236, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, + 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, + 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1267, 8, 11, + 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 4, 12, 1278, + 8, 12, 11, 12, 12, 12, 1279, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, + 1, 13, 1, 13, 1, 13, 1, 13, 4, 13, 1292, 8, 13, 11, 13, 12, 13, 1293, 1, + 13, 1, 13, 1, 13, 1, 13, 4, 13, 1300, 8, 13, 11, 13, 12, 13, 1301, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, - 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, - 13, 3, 13, 1349, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, - 4, 14, 1358, 8, 14, 11, 14, 12, 14, 1359, 1, 14, 1, 14, 1, 14, 1, 14, 4, - 14, 1366, 8, 14, 11, 14, 12, 14, 1367, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, - 4, 14, 1375, 8, 14, 11, 14, 12, 14, 1376, 1, 14, 1, 14, 1, 14, 1, 14, 1, + 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, + 13, 1357, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, + 1366, 8, 14, 11, 14, 12, 14, 1367, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 1374, + 8, 14, 11, 14, 12, 14, 1375, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, + 1383, 8, 14, 11, 14, 12, 14, 1384, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, - 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1441, 8, 14, 1, 15, 1, 15, 1, - 15, 1, 15, 1, 15, 1, 15, 1, 15, 4, 15, 1450, 8, 15, 11, 15, 12, 15, 1451, - 1, 15, 1, 15, 1, 15, 4, 15, 1457, 8, 15, 11, 15, 12, 15, 1458, 1, 15, 1, - 15, 1, 15, 4, 15, 1464, 8, 15, 11, 15, 12, 15, 1465, 1, 15, 1, 15, 1, 15, + 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1449, 8, 14, 1, 15, 1, 15, 1, 15, 1, + 15, 1, 15, 1, 15, 1, 15, 4, 15, 1458, 8, 15, 11, 15, 12, 15, 1459, 1, 15, + 1, 15, 1, 15, 4, 15, 1465, 8, 15, 11, 15, 12, 15, 1466, 1, 15, 1, 15, 1, + 15, 4, 15, 1472, 8, 15, 11, 15, 12, 15, 1473, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, - 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, - 15, 3, 15, 1524, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, - 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, - 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, - 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, - 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, - 1, 23, 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, 25, 1, 25, 1, 25, 1, 25, 1, 26, + 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, + 15, 1532, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, + 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, + 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, + 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, + 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, + 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, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, - 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 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, 29, 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, 30, 1, 31, 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, 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, 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, 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, 39, 1, 39, 1, - 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, - 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, - 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, - 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, - 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, + 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 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, 29, 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, 30, 1, 31, 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, 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, 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, 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, 39, 1, 39, 1, 39, 1, + 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, + 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 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, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, + 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, + 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, + 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 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, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 3, 52, 1820, 8, 52, 1, 52, 1, 52, 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, - 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, - 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, - 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 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, 60, - 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, - 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, - 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, - 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, - 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, - 71, 1, 71, 1, 72, 1, 72, 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, 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, 76, 1, 76, - 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 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, 79, - 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 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, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, - 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 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, 91, 1, 91, 1, 91, - 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 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, 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, 98, 1, 98, - 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 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, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, - 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, - 104, 1, 104, 1, 104, 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, 106, 1, 107, 1, 107, 1, - 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 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, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, - 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, - 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, - 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, - 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, - 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, - 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, - 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 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, 127, 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, 128, 1, - 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 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, - 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 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, - 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 137, 1, 137, 1, - 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 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, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, - 150, 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, 152, 1, 152, 1, 152, 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, 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, 156, 1, 157, 1, - 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, - 158, 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, 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, 160, 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, 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, 164, 1, 164, 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, 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, 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, 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, 171, 1, 171, 1, - 171, 1, 171, 1, 171, 1, 171, 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, - 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 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, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, - 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, - 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, - 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, - 176, 1, 176, 1, 176, 1, 176, 1, 176, 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, 177, 1, - 177, 1, 177, 1, 178, 1, 178, 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, - 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, - 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, - 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, - 181, 1, 181, 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, 182, 1, 182, 1, 182, 1, - 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, - 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, - 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, - 186, 1, 186, 1, 186, 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, 188, 1, 188, 1, - 188, 1, 188, 1, 188, 1, 189, 1, 189, 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, 190, 1, - 190, 1, 190, 1, 190, 1, 190, 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, - 192, 1, 192, 1, 192, 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, 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, 196, 1, - 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 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, - 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, 200, 1, 200, 1, - 200, 1, 200, 1, 200, 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, 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, 203, 1, 204, 1, 204, 1, 204, 1, - 204, 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, 205, 1, 205, 1, 205, 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, 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, 210, 1, 210, 1, 211, 1, - 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 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, 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, - 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, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, - 217, 1, 217, 1, 218, 1, 218, 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, 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, 221, 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, - 224, 1, 224, 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, 226, 1, - 226, 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, 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, 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, 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, 233, 1, - 233, 1, 233, 1, 233, 1, 233, 1, 233, 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, 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, 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, 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, 239, 1, - 239, 1, 239, 1, 239, 1, 239, 1, 239, 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, - 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, - 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, - 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, - 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, - 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, - 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, - 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, - 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, - 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, - 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, - 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, - 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, - 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, - 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, - 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, - 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, - 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 262, 1, - 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, - 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, - 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, - 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, - 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, - 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, - 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, - 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, - 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, - 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, - 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, - 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, - 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, - 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, - 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, - 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, - 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, - 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, - 287, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, - 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, - 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, - 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, - 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, - 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, - 296, 1, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, - 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 1, - 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, - 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, - 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, - 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, - 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, - 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, - 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, - 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, - 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, - 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 310, 1, - 310, 1, 310, 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, - 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, - 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, - 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, - 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, - 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, - 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, - 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, - 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, - 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, 1, - 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, - 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, - 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 326, 1, - 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, - 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, - 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, - 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, - 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, - 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, - 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, - 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, - 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, - 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, - 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, - 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, - 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, - 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, - 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, - 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, - 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, - 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, - 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 1, 350, 1, - 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, - 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, - 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, - 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, - 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, - 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, - 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, - 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, - 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, - 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, - 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, 1, - 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, 1, - 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, - 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, - 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, - 368, 1, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, - 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, - 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, - 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, - 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, - 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, - 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, - 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 1, - 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, - 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, - 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, - 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, - 381, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, - 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, - 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, - 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, - 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, - 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, - 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, - 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, - 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, - 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, - 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, - 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, - 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 395, 1, - 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, - 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, - 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, - 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, - 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, - 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, - 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, - 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, - 405, 1, 405, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, - 406, 1, 406, 4, 406, 4607, 8, 406, 11, 406, 12, 406, 4608, 1, 406, 1, 406, - 1, 406, 1, 406, 1, 406, 4, 406, 4616, 8, 406, 11, 406, 12, 406, 4617, 1, - 406, 1, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, - 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, - 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, - 409, 1, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, - 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, - 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, - 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, - 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, - 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, - 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, - 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, - 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, - 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, - 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, - 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, - 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, - 424, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, - 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, - 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, - 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, - 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, - 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, - 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, - 434, 1, 434, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, - 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, - 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, - 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, - 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, - 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, - 442, 1, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, - 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, - 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, - 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 1, - 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, - 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, - 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, - 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, - 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, - 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, - 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, - 454, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, - 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, - 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, - 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, - 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, - 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, - 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, - 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, - 465, 1, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, - 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 467, 1, - 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, 1, 468, 1, 468, 1, - 468, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 1, 470, 1, 470, 1, - 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, - 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, - 472, 1, 473, 1, 473, 1, 473, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 1, - 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 475, 1, - 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, - 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, - 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 478, 1, 478, 1, - 478, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, - 480, 1, 480, 1, 480, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, 481, 1, - 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, - 482, 1, 482, 1, 482, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, 483, 1, - 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, 1, 485, 1, - 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 3, 486, 5203, 8, 486, - 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, 1, 489, 1, 489, 1, 490, - 1, 490, 1, 491, 1, 491, 1, 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, - 1, 495, 1, 495, 1, 496, 1, 496, 1, 497, 1, 497, 1, 497, 1, 497, 1, 498, - 1, 498, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, 501, 1, 501, - 1, 502, 1, 502, 1, 503, 1, 503, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, - 1, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, - 1, 511, 1, 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 513, 1, 513, 1, 514, - 1, 514, 1, 515, 1, 515, 1, 515, 1, 515, 5, 515, 5273, 8, 515, 10, 515, - 12, 515, 5276, 9, 515, 1, 515, 1, 515, 1, 515, 1, 516, 1, 516, 1, 516, - 1, 516, 1, 516, 1, 516, 5, 516, 5287, 8, 516, 10, 516, 12, 516, 5290, 9, - 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 1, 517, 5, 517, 5298, 8, 517, - 10, 517, 12, 517, 5301, 9, 517, 1, 517, 1, 517, 1, 517, 1, 518, 3, 518, - 5307, 8, 518, 1, 518, 4, 518, 5310, 8, 518, 11, 518, 12, 518, 5311, 1, - 518, 1, 518, 4, 518, 5316, 8, 518, 11, 518, 12, 518, 5317, 3, 518, 5320, - 8, 518, 1, 518, 1, 518, 3, 518, 5324, 8, 518, 1, 518, 4, 518, 5327, 8, - 518, 11, 518, 12, 518, 5328, 3, 518, 5331, 8, 518, 1, 519, 1, 519, 4, 519, - 5335, 8, 519, 11, 519, 12, 519, 5336, 1, 520, 1, 520, 5, 520, 5341, 8, - 520, 10, 520, 12, 520, 5344, 9, 520, 1, 521, 1, 521, 5, 521, 5348, 8, 521, - 10, 521, 12, 521, 5351, 9, 521, 1, 521, 4, 521, 5354, 8, 521, 11, 521, - 12, 521, 5355, 1, 521, 5, 521, 5359, 8, 521, 10, 521, 12, 521, 5362, 9, - 521, 1, 522, 1, 522, 5, 522, 5366, 8, 522, 10, 522, 12, 522, 5369, 9, 522, - 1, 522, 1, 522, 1, 522, 5, 522, 5374, 8, 522, 10, 522, 12, 522, 5377, 9, - 522, 1, 522, 3, 522, 5380, 8, 522, 1, 523, 1, 523, 1, 524, 1, 524, 1, 525, - 1, 525, 1, 526, 1, 526, 1, 527, 1, 527, 1, 528, 1, 528, 1, 529, 1, 529, - 1, 530, 1, 530, 1, 531, 1, 531, 1, 532, 1, 532, 1, 533, 1, 533, 1, 534, - 1, 534, 1, 535, 1, 535, 1, 536, 1, 536, 1, 537, 1, 537, 1, 538, 1, 538, - 1, 539, 1, 539, 1, 540, 1, 540, 1, 541, 1, 541, 1, 542, 1, 542, 1, 543, - 1, 543, 1, 544, 1, 544, 1, 545, 1, 545, 1, 546, 1, 546, 1, 547, 1, 547, - 1, 548, 1, 548, 1, 549, 1, 549, 1, 550, 1, 550, 1, 551, 1, 551, 4, 1119, - 1131, 5274, 5299, 0, 552, 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, 242, 485, 243, - 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, - 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, - 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, - 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, - 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, - 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 287, 575, 288, - 577, 289, 579, 290, 581, 291, 583, 292, 585, 293, 587, 294, 589, 295, 591, - 296, 593, 297, 595, 298, 597, 299, 599, 300, 601, 301, 603, 302, 605, 303, - 607, 304, 609, 305, 611, 306, 613, 307, 615, 308, 617, 309, 619, 310, 621, - 311, 623, 312, 625, 313, 627, 314, 629, 315, 631, 316, 633, 317, 635, 318, - 637, 319, 639, 320, 641, 321, 643, 322, 645, 323, 647, 324, 649, 325, 651, - 326, 653, 327, 655, 328, 657, 329, 659, 330, 661, 331, 663, 332, 665, 333, - 667, 334, 669, 335, 671, 336, 673, 337, 675, 338, 677, 339, 679, 340, 681, - 341, 683, 342, 685, 343, 687, 344, 689, 345, 691, 346, 693, 347, 695, 348, - 697, 349, 699, 350, 701, 351, 703, 352, 705, 353, 707, 354, 709, 355, 711, - 356, 713, 357, 715, 358, 717, 359, 719, 360, 721, 361, 723, 362, 725, 363, - 727, 364, 729, 365, 731, 366, 733, 367, 735, 368, 737, 369, 739, 370, 741, - 371, 743, 372, 745, 373, 747, 374, 749, 375, 751, 376, 753, 377, 755, 378, - 757, 379, 759, 380, 761, 381, 763, 382, 765, 383, 767, 384, 769, 385, 771, - 386, 773, 387, 775, 388, 777, 389, 779, 390, 781, 391, 783, 392, 785, 393, - 787, 394, 789, 395, 791, 396, 793, 397, 795, 398, 797, 399, 799, 400, 801, - 401, 803, 402, 805, 403, 807, 404, 809, 405, 811, 406, 813, 407, 815, 408, - 817, 409, 819, 410, 821, 411, 823, 412, 825, 413, 827, 414, 829, 415, 831, - 416, 833, 417, 835, 418, 837, 419, 839, 420, 841, 421, 843, 422, 845, 423, - 847, 424, 849, 425, 851, 426, 853, 427, 855, 428, 857, 429, 859, 430, 861, - 431, 863, 432, 865, 433, 867, 434, 869, 435, 871, 436, 873, 437, 875, 438, - 877, 439, 879, 440, 881, 441, 883, 442, 885, 443, 887, 444, 889, 445, 891, - 446, 893, 447, 895, 448, 897, 449, 899, 450, 901, 451, 903, 452, 905, 453, - 907, 454, 909, 455, 911, 456, 913, 457, 915, 458, 917, 459, 919, 460, 921, - 461, 923, 462, 925, 463, 927, 464, 929, 465, 931, 466, 933, 467, 935, 468, - 937, 469, 939, 470, 941, 471, 943, 472, 945, 473, 947, 474, 949, 475, 951, - 476, 953, 477, 955, 478, 957, 479, 959, 480, 961, 481, 963, 482, 965, 483, - 967, 484, 969, 485, 971, 486, 973, 487, 975, 488, 977, 489, 979, 490, 981, - 491, 983, 492, 985, 493, 987, 494, 989, 495, 991, 496, 993, 497, 995, 498, - 997, 499, 999, 500, 1001, 501, 1003, 502, 1005, 503, 1007, 504, 1009, 505, - 1011, 506, 1013, 507, 1015, 508, 1017, 509, 1019, 510, 1021, 511, 1023, - 512, 1025, 513, 1027, 514, 1029, 515, 1031, 516, 1033, 517, 1035, 518, - 1037, 519, 1039, 520, 1041, 521, 1043, 522, 1045, 523, 1047, 0, 1049, 0, - 1051, 0, 1053, 0, 1055, 0, 1057, 0, 1059, 0, 1061, 0, 1063, 0, 1065, 0, - 1067, 0, 1069, 0, 1071, 0, 1073, 0, 1075, 0, 1077, 0, 1079, 0, 1081, 0, - 1083, 0, 1085, 0, 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, - 1099, 0, 1101, 0, 1103, 0, 1, 0, 35, 2, 0, 9, 13, 32, 32, 2, 0, 10, 10, - 13, 13, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 2, 0, 69, 69, 101, 101, 2, - 0, 43, 43, 45, 45, 3, 0, 10, 10, 13, 13, 34, 34, 3, 0, 10, 10, 13, 13, - 96, 96, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, - 122, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, - 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, - 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, - 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, - 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, - 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, - 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, - 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, - 121, 121, 2, 0, 90, 90, 122, 122, 5460, 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, 483, 1, 0, 0, 0, 0, 485, 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, 0, 507, - 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, - 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, - 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, - 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, - 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, - 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, - 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, - 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, - 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, - 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, 577, 1, 0, 0, 0, 0, 579, - 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 0, 585, 1, 0, 0, 0, - 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, 1, 0, 0, 0, 0, 593, 1, - 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, 0, 599, 1, 0, 0, 0, 0, - 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, 0, 0, 0, 0, 607, 1, 0, - 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, 613, 1, 0, 0, 0, 0, 615, - 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, 0, 0, 0, 621, 1, 0, 0, 0, - 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, 1, 0, 0, 0, 0, 629, 1, - 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, 0, 635, 1, 0, 0, 0, 0, - 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, 0, 0, 0, 0, 643, 1, 0, - 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, 649, 1, 0, 0, 0, 0, 651, - 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, 0, 0, 0, 657, 1, 0, 0, 0, - 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, 1, 0, 0, 0, 0, 665, 1, - 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, 0, 671, 1, 0, 0, 0, 0, - 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, 0, 0, 0, 0, 679, 1, 0, - 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, 685, 1, 0, 0, 0, 0, 687, - 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, 0, 0, 0, 693, 1, 0, 0, 0, - 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, 1, 0, 0, 0, 0, 701, 1, - 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, 0, 707, 1, 0, 0, 0, 0, - 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, 0, 0, 0, 0, 715, 1, 0, - 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, 721, 1, 0, 0, 0, 0, 723, - 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, 0, 0, 0, 729, 1, 0, 0, 0, - 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, 1, 0, 0, 0, 0, 737, 1, - 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, 0, 743, 1, 0, 0, 0, 0, - 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, 0, 0, 0, 0, 751, 1, 0, - 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, 757, 1, 0, 0, 0, 0, 759, - 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, 0, 0, 0, 765, 1, 0, 0, 0, - 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, 1, 0, 0, 0, 0, 773, 1, - 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, 0, 779, 1, 0, 0, 0, 0, - 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, 0, 0, 0, 0, 787, 1, 0, - 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, 793, 1, 0, 0, 0, 0, 795, - 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, 0, 0, 0, 801, 1, 0, 0, 0, - 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, 1, 0, 0, 0, 0, 809, 1, - 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, 0, 815, 1, 0, 0, 0, 0, - 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, 0, 0, 0, 0, 823, 1, 0, - 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, 829, 1, 0, 0, 0, 0, 831, - 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, 0, 0, 0, 837, 1, 0, 0, 0, - 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, 1, 0, 0, 0, 0, 845, 1, - 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, 0, 851, 1, 0, 0, 0, 0, - 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, 0, 0, 0, 0, 859, 1, 0, - 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, 865, 1, 0, 0, 0, 0, 867, - 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, 0, 0, 0, 873, 1, 0, 0, 0, - 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, 1, 0, 0, 0, 0, 881, 1, - 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, 0, 887, 1, 0, 0, 0, 0, - 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, 0, 0, 0, 0, 895, 1, 0, - 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, 901, 1, 0, 0, 0, 0, 903, - 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, 0, 0, 0, 909, 1, 0, 0, 0, - 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, 1, 0, 0, 0, 0, 917, 1, - 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, 0, 923, 1, 0, 0, 0, 0, - 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, 0, 0, 0, 0, 931, 1, 0, - 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, 937, 1, 0, 0, 0, 0, 939, - 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, 0, 0, 0, 945, 1, 0, 0, 0, - 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, 1, 0, 0, 0, 0, 953, 1, - 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, 0, 959, 1, 0, 0, 0, 0, - 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, 0, 0, 0, 0, 967, 1, 0, - 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, 973, 1, 0, 0, 0, 0, 975, - 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, 0, 0, 0, 981, 1, 0, 0, 0, - 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, 1, 0, 0, 0, 0, 989, 1, - 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, 0, 995, 1, 0, 0, 0, 0, - 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, 0, 0, 0, 0, 1003, 1, 0, - 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, 0, 1009, 1, 0, 0, 0, 0, - 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, 1, 0, 0, 0, 0, 1017, 1, - 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, 0, 0, 1023, 1, 0, 0, 0, - 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, 1, 0, 0, 0, 0, 1031, - 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, 0, 0, 1037, 1, 0, 0, - 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, 1, 0, 0, 0, 0, 1045, - 1, 0, 0, 0, 1, 1106, 1, 0, 0, 0, 3, 1112, 1, 0, 0, 0, 5, 1125, 1, 0, 0, - 0, 7, 1139, 1, 0, 0, 0, 9, 1150, 1, 0, 0, 0, 11, 1170, 1, 0, 0, 0, 13, - 1182, 1, 0, 0, 0, 15, 1195, 1, 0, 0, 0, 17, 1208, 1, 0, 0, 0, 19, 1221, - 1, 0, 0, 0, 21, 1233, 1, 0, 0, 0, 23, 1248, 1, 0, 0, 0, 25, 1264, 1, 0, - 0, 0, 27, 1348, 1, 0, 0, 0, 29, 1440, 1, 0, 0, 0, 31, 1523, 1, 0, 0, 0, - 33, 1525, 1, 0, 0, 0, 35, 1532, 1, 0, 0, 0, 37, 1538, 1, 0, 0, 0, 39, 1543, - 1, 0, 0, 0, 41, 1550, 1, 0, 0, 0, 43, 1555, 1, 0, 0, 0, 45, 1562, 1, 0, - 0, 0, 47, 1569, 1, 0, 0, 0, 49, 1580, 1, 0, 0, 0, 51, 1585, 1, 0, 0, 0, - 53, 1594, 1, 0, 0, 0, 55, 1606, 1, 0, 0, 0, 57, 1618, 1, 0, 0, 0, 59, 1625, - 1, 0, 0, 0, 61, 1635, 1, 0, 0, 0, 63, 1644, 1, 0, 0, 0, 65, 1653, 1, 0, - 0, 0, 67, 1658, 1, 0, 0, 0, 69, 1666, 1, 0, 0, 0, 71, 1673, 1, 0, 0, 0, - 73, 1682, 1, 0, 0, 0, 75, 1691, 1, 0, 0, 0, 77, 1701, 1, 0, 0, 0, 79, 1708, - 1, 0, 0, 0, 81, 1716, 1, 0, 0, 0, 83, 1722, 1, 0, 0, 0, 85, 1728, 1, 0, - 0, 0, 87, 1734, 1, 0, 0, 0, 89, 1744, 1, 0, 0, 0, 91, 1759, 1, 0, 0, 0, - 93, 1767, 1, 0, 0, 0, 95, 1771, 1, 0, 0, 0, 97, 1775, 1, 0, 0, 0, 99, 1784, - 1, 0, 0, 0, 101, 1798, 1, 0, 0, 0, 103, 1806, 1, 0, 0, 0, 105, 1812, 1, - 0, 0, 0, 107, 1830, 1, 0, 0, 0, 109, 1838, 1, 0, 0, 0, 111, 1846, 1, 0, - 0, 0, 113, 1854, 1, 0, 0, 0, 115, 1865, 1, 0, 0, 0, 117, 1871, 1, 0, 0, - 0, 119, 1879, 1, 0, 0, 0, 121, 1887, 1, 0, 0, 0, 123, 1894, 1, 0, 0, 0, - 125, 1900, 1, 0, 0, 0, 127, 1905, 1, 0, 0, 0, 129, 1910, 1, 0, 0, 0, 131, - 1915, 1, 0, 0, 0, 133, 1924, 1, 0, 0, 0, 135, 1928, 1, 0, 0, 0, 137, 1939, - 1, 0, 0, 0, 139, 1945, 1, 0, 0, 0, 141, 1952, 1, 0, 0, 0, 143, 1957, 1, - 0, 0, 0, 145, 1963, 1, 0, 0, 0, 147, 1970, 1, 0, 0, 0, 149, 1977, 1, 0, - 0, 0, 151, 1983, 1, 0, 0, 0, 153, 1986, 1, 0, 0, 0, 155, 1994, 1, 0, 0, - 0, 157, 2004, 1, 0, 0, 0, 159, 2009, 1, 0, 0, 0, 161, 2014, 1, 0, 0, 0, - 163, 2019, 1, 0, 0, 0, 165, 2024, 1, 0, 0, 0, 167, 2028, 1, 0, 0, 0, 169, - 2037, 1, 0, 0, 0, 171, 2041, 1, 0, 0, 0, 173, 2046, 1, 0, 0, 0, 175, 2051, - 1, 0, 0, 0, 177, 2057, 1, 0, 0, 0, 179, 2063, 1, 0, 0, 0, 181, 2069, 1, - 0, 0, 0, 183, 2074, 1, 0, 0, 0, 185, 2080, 1, 0, 0, 0, 187, 2083, 1, 0, - 0, 0, 189, 2087, 1, 0, 0, 0, 191, 2092, 1, 0, 0, 0, 193, 2098, 1, 0, 0, - 0, 195, 2106, 1, 0, 0, 0, 197, 2113, 1, 0, 0, 0, 199, 2122, 1, 0, 0, 0, - 201, 2129, 1, 0, 0, 0, 203, 2136, 1, 0, 0, 0, 205, 2145, 1, 0, 0, 0, 207, - 2150, 1, 0, 0, 0, 209, 2156, 1, 0, 0, 0, 211, 2159, 1, 0, 0, 0, 213, 2165, - 1, 0, 0, 0, 215, 2172, 1, 0, 0, 0, 217, 2181, 1, 0, 0, 0, 219, 2187, 1, - 0, 0, 0, 221, 2194, 1, 0, 0, 0, 223, 2200, 1, 0, 0, 0, 225, 2204, 1, 0, - 0, 0, 227, 2209, 1, 0, 0, 0, 229, 2214, 1, 0, 0, 0, 231, 2225, 1, 0, 0, - 0, 233, 2232, 1, 0, 0, 0, 235, 2240, 1, 0, 0, 0, 237, 2246, 1, 0, 0, 0, - 239, 2251, 1, 0, 0, 0, 241, 2258, 1, 0, 0, 0, 243, 2263, 1, 0, 0, 0, 245, - 2268, 1, 0, 0, 0, 247, 2273, 1, 0, 0, 0, 249, 2278, 1, 0, 0, 0, 251, 2284, - 1, 0, 0, 0, 253, 2294, 1, 0, 0, 0, 255, 2303, 1, 0, 0, 0, 257, 2312, 1, - 0, 0, 0, 259, 2320, 1, 0, 0, 0, 261, 2328, 1, 0, 0, 0, 263, 2336, 1, 0, - 0, 0, 265, 2341, 1, 0, 0, 0, 267, 2348, 1, 0, 0, 0, 269, 2355, 1, 0, 0, - 0, 271, 2360, 1, 0, 0, 0, 273, 2368, 1, 0, 0, 0, 275, 2374, 1, 0, 0, 0, - 277, 2383, 1, 0, 0, 0, 279, 2388, 1, 0, 0, 0, 281, 2394, 1, 0, 0, 0, 283, - 2401, 1, 0, 0, 0, 285, 2409, 1, 0, 0, 0, 287, 2415, 1, 0, 0, 0, 289, 2423, - 1, 0, 0, 0, 291, 2432, 1, 0, 0, 0, 293, 2442, 1, 0, 0, 0, 295, 2454, 1, - 0, 0, 0, 297, 2466, 1, 0, 0, 0, 299, 2477, 1, 0, 0, 0, 301, 2486, 1, 0, - 0, 0, 303, 2495, 1, 0, 0, 0, 305, 2504, 1, 0, 0, 0, 307, 2512, 1, 0, 0, - 0, 309, 2522, 1, 0, 0, 0, 311, 2526, 1, 0, 0, 0, 313, 2531, 1, 0, 0, 0, - 315, 2542, 1, 0, 0, 0, 317, 2549, 1, 0, 0, 0, 319, 2559, 1, 0, 0, 0, 321, - 2574, 1, 0, 0, 0, 323, 2587, 1, 0, 0, 0, 325, 2598, 1, 0, 0, 0, 327, 2605, - 1, 0, 0, 0, 329, 2611, 1, 0, 0, 0, 331, 2623, 1, 0, 0, 0, 333, 2631, 1, - 0, 0, 0, 335, 2642, 1, 0, 0, 0, 337, 2648, 1, 0, 0, 0, 339, 2656, 1, 0, - 0, 0, 341, 2665, 1, 0, 0, 0, 343, 2676, 1, 0, 0, 0, 345, 2689, 1, 0, 0, - 0, 347, 2698, 1, 0, 0, 0, 349, 2707, 1, 0, 0, 0, 351, 2716, 1, 0, 0, 0, - 353, 2734, 1, 0, 0, 0, 355, 2760, 1, 0, 0, 0, 357, 2770, 1, 0, 0, 0, 359, - 2781, 1, 0, 0, 0, 361, 2794, 1, 0, 0, 0, 363, 2805, 1, 0, 0, 0, 365, 2818, - 1, 0, 0, 0, 367, 2833, 1, 0, 0, 0, 369, 2844, 1, 0, 0, 0, 371, 2851, 1, - 0, 0, 0, 373, 2858, 1, 0, 0, 0, 375, 2866, 1, 0, 0, 0, 377, 2874, 1, 0, - 0, 0, 379, 2879, 1, 0, 0, 0, 381, 2887, 1, 0, 0, 0, 383, 2898, 1, 0, 0, - 0, 385, 2905, 1, 0, 0, 0, 387, 2915, 1, 0, 0, 0, 389, 2922, 1, 0, 0, 0, - 391, 2929, 1, 0, 0, 0, 393, 2937, 1, 0, 0, 0, 395, 2948, 1, 0, 0, 0, 397, - 2954, 1, 0, 0, 0, 399, 2959, 1, 0, 0, 0, 401, 2973, 1, 0, 0, 0, 403, 2987, - 1, 0, 0, 0, 405, 2994, 1, 0, 0, 0, 407, 3004, 1, 0, 0, 0, 409, 3017, 1, - 0, 0, 0, 411, 3029, 1, 0, 0, 0, 413, 3040, 1, 0, 0, 0, 415, 3046, 1, 0, - 0, 0, 417, 3052, 1, 0, 0, 0, 419, 3064, 1, 0, 0, 0, 421, 3071, 1, 0, 0, - 0, 423, 3082, 1, 0, 0, 0, 425, 3099, 1, 0, 0, 0, 427, 3107, 1, 0, 0, 0, - 429, 3113, 1, 0, 0, 0, 431, 3119, 1, 0, 0, 0, 433, 3126, 1, 0, 0, 0, 435, - 3135, 1, 0, 0, 0, 437, 3139, 1, 0, 0, 0, 439, 3146, 1, 0, 0, 0, 441, 3154, - 1, 0, 0, 0, 443, 3162, 1, 0, 0, 0, 445, 3171, 1, 0, 0, 0, 447, 3180, 1, - 0, 0, 0, 449, 3191, 1, 0, 0, 0, 451, 3202, 1, 0, 0, 0, 453, 3208, 1, 0, - 0, 0, 455, 3219, 1, 0, 0, 0, 457, 3231, 1, 0, 0, 0, 459, 3244, 1, 0, 0, - 0, 461, 3260, 1, 0, 0, 0, 463, 3269, 1, 0, 0, 0, 465, 3277, 1, 0, 0, 0, - 467, 3289, 1, 0, 0, 0, 469, 3302, 1, 0, 0, 0, 471, 3317, 1, 0, 0, 0, 473, - 3328, 1, 0, 0, 0, 475, 3338, 1, 0, 0, 0, 477, 3352, 1, 0, 0, 0, 479, 3366, - 1, 0, 0, 0, 481, 3380, 1, 0, 0, 0, 483, 3395, 1, 0, 0, 0, 485, 3409, 1, - 0, 0, 0, 487, 3419, 1, 0, 0, 0, 489, 3428, 1, 0, 0, 0, 491, 3435, 1, 0, - 0, 0, 493, 3443, 1, 0, 0, 0, 495, 3451, 1, 0, 0, 0, 497, 3458, 1, 0, 0, - 0, 499, 3466, 1, 0, 0, 0, 501, 3471, 1, 0, 0, 0, 503, 3480, 1, 0, 0, 0, - 505, 3488, 1, 0, 0, 0, 507, 3497, 1, 0, 0, 0, 509, 3506, 1, 0, 0, 0, 511, - 3509, 1, 0, 0, 0, 513, 3512, 1, 0, 0, 0, 515, 3515, 1, 0, 0, 0, 517, 3518, - 1, 0, 0, 0, 519, 3521, 1, 0, 0, 0, 521, 3524, 1, 0, 0, 0, 523, 3534, 1, - 0, 0, 0, 525, 3541, 1, 0, 0, 0, 527, 3549, 1, 0, 0, 0, 529, 3554, 1, 0, - 0, 0, 531, 3562, 1, 0, 0, 0, 533, 3570, 1, 0, 0, 0, 535, 3579, 1, 0, 0, - 0, 537, 3584, 1, 0, 0, 0, 539, 3595, 1, 0, 0, 0, 541, 3602, 1, 0, 0, 0, - 543, 3615, 1, 0, 0, 0, 545, 3624, 1, 0, 0, 0, 547, 3630, 1, 0, 0, 0, 549, - 3645, 1, 0, 0, 0, 551, 3650, 1, 0, 0, 0, 553, 3656, 1, 0, 0, 0, 555, 3660, - 1, 0, 0, 0, 557, 3664, 1, 0, 0, 0, 559, 3668, 1, 0, 0, 0, 561, 3672, 1, - 0, 0, 0, 563, 3679, 1, 0, 0, 0, 565, 3684, 1, 0, 0, 0, 567, 3693, 1, 0, - 0, 0, 569, 3698, 1, 0, 0, 0, 571, 3702, 1, 0, 0, 0, 573, 3705, 1, 0, 0, - 0, 575, 3709, 1, 0, 0, 0, 577, 3714, 1, 0, 0, 0, 579, 3717, 1, 0, 0, 0, - 581, 3725, 1, 0, 0, 0, 583, 3730, 1, 0, 0, 0, 585, 3736, 1, 0, 0, 0, 587, - 3743, 1, 0, 0, 0, 589, 3750, 1, 0, 0, 0, 591, 3758, 1, 0, 0, 0, 593, 3763, - 1, 0, 0, 0, 595, 3769, 1, 0, 0, 0, 597, 3780, 1, 0, 0, 0, 599, 3789, 1, - 0, 0, 0, 601, 3794, 1, 0, 0, 0, 603, 3803, 1, 0, 0, 0, 605, 3809, 1, 0, - 0, 0, 607, 3815, 1, 0, 0, 0, 609, 3821, 1, 0, 0, 0, 611, 3827, 1, 0, 0, - 0, 613, 3835, 1, 0, 0, 0, 615, 3846, 1, 0, 0, 0, 617, 3852, 1, 0, 0, 0, - 619, 3863, 1, 0, 0, 0, 621, 3874, 1, 0, 0, 0, 623, 3879, 1, 0, 0, 0, 625, - 3887, 1, 0, 0, 0, 627, 3896, 1, 0, 0, 0, 629, 3902, 1, 0, 0, 0, 631, 3907, - 1, 0, 0, 0, 633, 3912, 1, 0, 0, 0, 635, 3927, 1, 0, 0, 0, 637, 3933, 1, - 0, 0, 0, 639, 3941, 1, 0, 0, 0, 641, 3947, 1, 0, 0, 0, 643, 3957, 1, 0, - 0, 0, 645, 3964, 1, 0, 0, 0, 647, 3969, 1, 0, 0, 0, 649, 3977, 1, 0, 0, - 0, 651, 3982, 1, 0, 0, 0, 653, 3991, 1, 0, 0, 0, 655, 3999, 1, 0, 0, 0, - 657, 4004, 1, 0, 0, 0, 659, 4009, 1, 0, 0, 0, 661, 4013, 1, 0, 0, 0, 663, - 4020, 1, 0, 0, 0, 665, 4025, 1, 0, 0, 0, 667, 4033, 1, 0, 0, 0, 669, 4037, - 1, 0, 0, 0, 671, 4042, 1, 0, 0, 0, 673, 4046, 1, 0, 0, 0, 675, 4052, 1, - 0, 0, 0, 677, 4056, 1, 0, 0, 0, 679, 4063, 1, 0, 0, 0, 681, 4071, 1, 0, - 0, 0, 683, 4079, 1, 0, 0, 0, 685, 4089, 1, 0, 0, 0, 687, 4096, 1, 0, 0, - 0, 689, 4105, 1, 0, 0, 0, 691, 4115, 1, 0, 0, 0, 693, 4123, 1, 0, 0, 0, - 695, 4129, 1, 0, 0, 0, 697, 4136, 1, 0, 0, 0, 699, 4150, 1, 0, 0, 0, 701, - 4159, 1, 0, 0, 0, 703, 4168, 1, 0, 0, 0, 705, 4179, 1, 0, 0, 0, 707, 4188, - 1, 0, 0, 0, 709, 4194, 1, 0, 0, 0, 711, 4198, 1, 0, 0, 0, 713, 4206, 1, - 0, 0, 0, 715, 4213, 1, 0, 0, 0, 717, 4218, 1, 0, 0, 0, 719, 4224, 1, 0, - 0, 0, 721, 4229, 1, 0, 0, 0, 723, 4236, 1, 0, 0, 0, 725, 4245, 1, 0, 0, - 0, 727, 4255, 1, 0, 0, 0, 729, 4260, 1, 0, 0, 0, 731, 4267, 1, 0, 0, 0, - 733, 4273, 1, 0, 0, 0, 735, 4281, 1, 0, 0, 0, 737, 4291, 1, 0, 0, 0, 739, - 4302, 1, 0, 0, 0, 741, 4310, 1, 0, 0, 0, 743, 4321, 1, 0, 0, 0, 745, 4326, - 1, 0, 0, 0, 747, 4332, 1, 0, 0, 0, 749, 4337, 1, 0, 0, 0, 751, 4343, 1, - 0, 0, 0, 753, 4349, 1, 0, 0, 0, 755, 4357, 1, 0, 0, 0, 757, 4366, 1, 0, - 0, 0, 759, 4379, 1, 0, 0, 0, 761, 4390, 1, 0, 0, 0, 763, 4400, 1, 0, 0, - 0, 765, 4410, 1, 0, 0, 0, 767, 4423, 1, 0, 0, 0, 769, 4433, 1, 0, 0, 0, - 771, 4445, 1, 0, 0, 0, 773, 4452, 1, 0, 0, 0, 775, 4461, 1, 0, 0, 0, 777, - 4471, 1, 0, 0, 0, 779, 4481, 1, 0, 0, 0, 781, 4488, 1, 0, 0, 0, 783, 4495, - 1, 0, 0, 0, 785, 4501, 1, 0, 0, 0, 787, 4508, 1, 0, 0, 0, 789, 4516, 1, - 0, 0, 0, 791, 4522, 1, 0, 0, 0, 793, 4528, 1, 0, 0, 0, 795, 4536, 1, 0, - 0, 0, 797, 4543, 1, 0, 0, 0, 799, 4548, 1, 0, 0, 0, 801, 4554, 1, 0, 0, - 0, 803, 4559, 1, 0, 0, 0, 805, 4565, 1, 0, 0, 0, 807, 4573, 1, 0, 0, 0, - 809, 4582, 1, 0, 0, 0, 811, 4591, 1, 0, 0, 0, 813, 4599, 1, 0, 0, 0, 815, - 4623, 1, 0, 0, 0, 817, 4631, 1, 0, 0, 0, 819, 4637, 1, 0, 0, 0, 821, 4648, - 1, 0, 0, 0, 823, 4656, 1, 0, 0, 0, 825, 4664, 1, 0, 0, 0, 827, 4675, 1, - 0, 0, 0, 829, 4686, 1, 0, 0, 0, 831, 4693, 1, 0, 0, 0, 833, 4699, 1, 0, - 0, 0, 835, 4709, 1, 0, 0, 0, 837, 4720, 1, 0, 0, 0, 839, 4725, 1, 0, 0, - 0, 841, 4731, 1, 0, 0, 0, 843, 4738, 1, 0, 0, 0, 845, 4745, 1, 0, 0, 0, - 847, 4754, 1, 0, 0, 0, 849, 4759, 1, 0, 0, 0, 851, 4764, 1, 0, 0, 0, 853, - 4767, 1, 0, 0, 0, 855, 4770, 1, 0, 0, 0, 857, 4775, 1, 0, 0, 0, 859, 4779, - 1, 0, 0, 0, 861, 4787, 1, 0, 0, 0, 863, 4795, 1, 0, 0, 0, 865, 4809, 1, - 0, 0, 0, 867, 4816, 1, 0, 0, 0, 869, 4820, 1, 0, 0, 0, 871, 4828, 1, 0, - 0, 0, 873, 4832, 1, 0, 0, 0, 875, 4836, 1, 0, 0, 0, 877, 4847, 1, 0, 0, - 0, 879, 4850, 1, 0, 0, 0, 881, 4859, 1, 0, 0, 0, 883, 4865, 1, 0, 0, 0, - 885, 4875, 1, 0, 0, 0, 887, 4884, 1, 0, 0, 0, 889, 4898, 1, 0, 0, 0, 891, - 4907, 1, 0, 0, 0, 893, 4913, 1, 0, 0, 0, 895, 4919, 1, 0, 0, 0, 897, 4928, - 1, 0, 0, 0, 899, 4933, 1, 0, 0, 0, 901, 4939, 1, 0, 0, 0, 903, 4945, 1, - 0, 0, 0, 905, 4952, 1, 0, 0, 0, 907, 4963, 1, 0, 0, 0, 909, 4973, 1, 0, - 0, 0, 911, 4980, 1, 0, 0, 0, 913, 4985, 1, 0, 0, 0, 915, 4992, 1, 0, 0, - 0, 917, 4998, 1, 0, 0, 0, 919, 5005, 1, 0, 0, 0, 921, 5011, 1, 0, 0, 0, - 923, 5016, 1, 0, 0, 0, 925, 5021, 1, 0, 0, 0, 927, 5030, 1, 0, 0, 0, 929, - 5036, 1, 0, 0, 0, 931, 5045, 1, 0, 0, 0, 933, 5055, 1, 0, 0, 0, 935, 5068, - 1, 0, 0, 0, 937, 5074, 1, 0, 0, 0, 939, 5079, 1, 0, 0, 0, 941, 5083, 1, - 0, 0, 0, 943, 5092, 1, 0, 0, 0, 945, 5097, 1, 0, 0, 0, 947, 5106, 1, 0, - 0, 0, 949, 5111, 1, 0, 0, 0, 951, 5122, 1, 0, 0, 0, 953, 5131, 1, 0, 0, - 0, 955, 5144, 1, 0, 0, 0, 957, 5148, 1, 0, 0, 0, 959, 5154, 1, 0, 0, 0, - 961, 5157, 1, 0, 0, 0, 963, 5162, 1, 0, 0, 0, 965, 5168, 1, 0, 0, 0, 967, - 5180, 1, 0, 0, 0, 969, 5188, 1, 0, 0, 0, 971, 5192, 1, 0, 0, 0, 973, 5202, - 1, 0, 0, 0, 975, 5204, 1, 0, 0, 0, 977, 5207, 1, 0, 0, 0, 979, 5210, 1, - 0, 0, 0, 981, 5212, 1, 0, 0, 0, 983, 5214, 1, 0, 0, 0, 985, 5216, 1, 0, - 0, 0, 987, 5218, 1, 0, 0, 0, 989, 5220, 1, 0, 0, 0, 991, 5222, 1, 0, 0, - 0, 993, 5224, 1, 0, 0, 0, 995, 5226, 1, 0, 0, 0, 997, 5230, 1, 0, 0, 0, - 999, 5234, 1, 0, 0, 0, 1001, 5236, 1, 0, 0, 0, 1003, 5238, 1, 0, 0, 0, - 1005, 5240, 1, 0, 0, 0, 1007, 5242, 1, 0, 0, 0, 1009, 5244, 1, 0, 0, 0, - 1011, 5246, 1, 0, 0, 0, 1013, 5248, 1, 0, 0, 0, 1015, 5250, 1, 0, 0, 0, - 1017, 5252, 1, 0, 0, 0, 1019, 5254, 1, 0, 0, 0, 1021, 5256, 1, 0, 0, 0, - 1023, 5258, 1, 0, 0, 0, 1025, 5261, 1, 0, 0, 0, 1027, 5264, 1, 0, 0, 0, - 1029, 5266, 1, 0, 0, 0, 1031, 5268, 1, 0, 0, 0, 1033, 5280, 1, 0, 0, 0, - 1035, 5293, 1, 0, 0, 0, 1037, 5306, 1, 0, 0, 0, 1039, 5332, 1, 0, 0, 0, - 1041, 5338, 1, 0, 0, 0, 1043, 5345, 1, 0, 0, 0, 1045, 5379, 1, 0, 0, 0, - 1047, 5381, 1, 0, 0, 0, 1049, 5383, 1, 0, 0, 0, 1051, 5385, 1, 0, 0, 0, - 1053, 5387, 1, 0, 0, 0, 1055, 5389, 1, 0, 0, 0, 1057, 5391, 1, 0, 0, 0, - 1059, 5393, 1, 0, 0, 0, 1061, 5395, 1, 0, 0, 0, 1063, 5397, 1, 0, 0, 0, - 1065, 5399, 1, 0, 0, 0, 1067, 5401, 1, 0, 0, 0, 1069, 5403, 1, 0, 0, 0, - 1071, 5405, 1, 0, 0, 0, 1073, 5407, 1, 0, 0, 0, 1075, 5409, 1, 0, 0, 0, - 1077, 5411, 1, 0, 0, 0, 1079, 5413, 1, 0, 0, 0, 1081, 5415, 1, 0, 0, 0, - 1083, 5417, 1, 0, 0, 0, 1085, 5419, 1, 0, 0, 0, 1087, 5421, 1, 0, 0, 0, - 1089, 5423, 1, 0, 0, 0, 1091, 5425, 1, 0, 0, 0, 1093, 5427, 1, 0, 0, 0, - 1095, 5429, 1, 0, 0, 0, 1097, 5431, 1, 0, 0, 0, 1099, 5433, 1, 0, 0, 0, - 1101, 5435, 1, 0, 0, 0, 1103, 5437, 1, 0, 0, 0, 1105, 1107, 7, 0, 0, 0, - 1106, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, - 1108, 1109, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 6, 0, 0, 0, - 1111, 2, 1, 0, 0, 0, 1112, 1113, 5, 47, 0, 0, 1113, 1114, 5, 42, 0, 0, - 1114, 1115, 5, 42, 0, 0, 1115, 1119, 1, 0, 0, 0, 1116, 1118, 9, 0, 0, 0, - 1117, 1116, 1, 0, 0, 0, 1118, 1121, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, - 1119, 1117, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1119, 1, 0, 0, 0, - 1122, 1123, 5, 42, 0, 0, 1123, 1124, 5, 47, 0, 0, 1124, 4, 1, 0, 0, 0, - 1125, 1126, 5, 47, 0, 0, 1126, 1127, 5, 42, 0, 0, 1127, 1131, 1, 0, 0, - 0, 1128, 1130, 9, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, - 0, 1131, 1132, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1134, 1, 0, 0, - 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 42, 0, 0, 1135, 1136, 5, 47, - 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 6, 2, 0, 0, 1138, 6, 1, 0, 0, - 0, 1139, 1140, 5, 45, 0, 0, 1140, 1141, 5, 45, 0, 0, 1141, 1145, 1, 0, - 0, 0, 1142, 1144, 8, 1, 0, 0, 1143, 1142, 1, 0, 0, 0, 1144, 1147, 1, 0, - 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, - 0, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1149, 6, 3, 0, 0, 1149, 8, 1, 0, 0, - 0, 1150, 1151, 3, 1069, 534, 0, 1151, 1153, 3, 1089, 544, 0, 1152, 1154, - 3, 1, 0, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1153, - 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, - 3, 1079, 539, 0, 1158, 1159, 3, 1081, 540, 0, 1159, 1161, 3, 1091, 545, - 0, 1160, 1162, 3, 1, 0, 0, 1161, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, - 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, - 0, 1165, 1166, 3, 1079, 539, 0, 1166, 1167, 3, 1093, 546, 0, 1167, 1168, - 3, 1075, 537, 0, 1168, 1169, 3, 1075, 537, 0, 1169, 10, 1, 0, 0, 0, 1170, - 1171, 3, 1069, 534, 0, 1171, 1173, 3, 1089, 544, 0, 1172, 1174, 3, 1, 0, - 0, 1173, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, - 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 3, 1079, - 539, 0, 1178, 1179, 3, 1093, 546, 0, 1179, 1180, 3, 1075, 537, 0, 1180, - 1181, 3, 1075, 537, 0, 1181, 12, 1, 0, 0, 0, 1182, 1183, 3, 1079, 539, - 0, 1183, 1184, 3, 1081, 540, 0, 1184, 1186, 3, 1091, 545, 0, 1185, 1187, - 3, 1, 0, 0, 1186, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1186, - 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, - 3, 1079, 539, 0, 1191, 1192, 3, 1093, 546, 0, 1192, 1193, 3, 1075, 537, - 0, 1193, 1194, 3, 1075, 537, 0, 1194, 14, 1, 0, 0, 0, 1195, 1196, 3, 1065, - 532, 0, 1196, 1197, 3, 1087, 543, 0, 1197, 1198, 3, 1081, 540, 0, 1198, - 1199, 3, 1093, 546, 0, 1199, 1201, 3, 1083, 541, 0, 1200, 1202, 3, 1, 0, - 0, 1201, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, - 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 3, 1055, - 527, 0, 1206, 1207, 3, 1101, 550, 0, 1207, 16, 1, 0, 0, 0, 1208, 1209, - 3, 1081, 540, 0, 1209, 1210, 3, 1087, 543, 0, 1210, 1211, 3, 1059, 529, - 0, 1211, 1212, 3, 1061, 530, 0, 1212, 1214, 3, 1087, 543, 0, 1213, 1215, - 3, 1, 0, 0, 1214, 1213, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1214, - 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, - 3, 1055, 527, 0, 1219, 1220, 3, 1101, 550, 0, 1220, 18, 1, 0, 0, 0, 1221, - 1222, 3, 1089, 544, 0, 1222, 1223, 3, 1081, 540, 0, 1223, 1224, 3, 1087, - 543, 0, 1224, 1226, 3, 1091, 545, 0, 1225, 1227, 3, 1, 0, 0, 1226, 1225, - 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, - 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 3, 1055, 527, 0, 1231, - 1232, 3, 1101, 550, 0, 1232, 20, 1, 0, 0, 0, 1233, 1234, 3, 1079, 539, - 0, 1234, 1235, 3, 1081, 540, 0, 1235, 1236, 3, 1079, 539, 0, 1236, 1237, - 5, 45, 0, 0, 1237, 1238, 3, 1083, 541, 0, 1238, 1239, 3, 1061, 530, 0, - 1239, 1240, 3, 1087, 543, 0, 1240, 1241, 3, 1089, 544, 0, 1241, 1242, 3, - 1069, 534, 0, 1242, 1243, 3, 1089, 544, 0, 1243, 1244, 3, 1091, 545, 0, - 1244, 1245, 3, 1061, 530, 0, 1245, 1246, 3, 1079, 539, 0, 1246, 1247, 3, - 1091, 545, 0, 1247, 22, 1, 0, 0, 0, 1248, 1249, 3, 1087, 543, 0, 1249, - 1250, 3, 1061, 530, 0, 1250, 1251, 3, 1063, 531, 0, 1251, 1252, 3, 1061, - 530, 0, 1252, 1253, 3, 1087, 543, 0, 1253, 1254, 3, 1061, 530, 0, 1254, - 1255, 3, 1079, 539, 0, 1255, 1256, 3, 1057, 528, 0, 1256, 1258, 3, 1061, - 530, 0, 1257, 1259, 5, 95, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, - 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 3, 1089, 544, 0, 1261, 1262, - 3, 1061, 530, 0, 1262, 1263, 3, 1091, 545, 0, 1263, 24, 1, 0, 0, 0, 1264, - 1265, 3, 1075, 537, 0, 1265, 1266, 3, 1069, 534, 0, 1266, 1267, 3, 1089, - 544, 0, 1267, 1269, 3, 1091, 545, 0, 1268, 1270, 3, 1, 0, 0, 1269, 1268, - 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1272, - 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 3, 1081, 540, 0, 1274, - 1275, 3, 1063, 531, 0, 1275, 26, 1, 0, 0, 0, 1276, 1277, 3, 1059, 529, - 0, 1277, 1278, 3, 1061, 530, 0, 1278, 1279, 3, 1075, 537, 0, 1279, 1280, - 3, 1061, 530, 0, 1280, 1281, 3, 1091, 545, 0, 1281, 1283, 3, 1061, 530, - 0, 1282, 1284, 3, 1, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, - 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, - 0, 1287, 1288, 3, 1053, 526, 0, 1288, 1289, 3, 1079, 539, 0, 1289, 1291, - 3, 1059, 529, 0, 1290, 1292, 3, 1, 0, 0, 1291, 1290, 1, 0, 0, 0, 1292, - 1293, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, - 1295, 1, 0, 0, 0, 1295, 1296, 3, 1087, 543, 0, 1296, 1297, 3, 1061, 530, - 0, 1297, 1298, 3, 1063, 531, 0, 1298, 1299, 3, 1061, 530, 0, 1299, 1300, - 3, 1087, 543, 0, 1300, 1301, 3, 1061, 530, 0, 1301, 1302, 3, 1079, 539, - 0, 1302, 1303, 3, 1057, 528, 0, 1303, 1304, 3, 1061, 530, 0, 1304, 1305, - 3, 1089, 544, 0, 1305, 1349, 1, 0, 0, 0, 1306, 1307, 3, 1059, 529, 0, 1307, - 1308, 3, 1061, 530, 0, 1308, 1309, 3, 1075, 537, 0, 1309, 1310, 3, 1061, - 530, 0, 1310, 1311, 3, 1091, 545, 0, 1311, 1312, 3, 1061, 530, 0, 1312, - 1313, 5, 95, 0, 0, 1313, 1314, 3, 1053, 526, 0, 1314, 1315, 3, 1079, 539, - 0, 1315, 1316, 3, 1059, 529, 0, 1316, 1317, 5, 95, 0, 0, 1317, 1318, 3, - 1087, 543, 0, 1318, 1319, 3, 1061, 530, 0, 1319, 1320, 3, 1063, 531, 0, - 1320, 1321, 3, 1061, 530, 0, 1321, 1322, 3, 1087, 543, 0, 1322, 1323, 3, - 1061, 530, 0, 1323, 1324, 3, 1079, 539, 0, 1324, 1325, 3, 1057, 528, 0, - 1325, 1326, 3, 1061, 530, 0, 1326, 1327, 3, 1089, 544, 0, 1327, 1349, 1, - 0, 0, 0, 1328, 1329, 3, 1059, 529, 0, 1329, 1330, 3, 1061, 530, 0, 1330, - 1331, 3, 1075, 537, 0, 1331, 1332, 3, 1061, 530, 0, 1332, 1333, 3, 1091, - 545, 0, 1333, 1334, 3, 1061, 530, 0, 1334, 1335, 3, 1053, 526, 0, 1335, - 1336, 3, 1079, 539, 0, 1336, 1337, 3, 1059, 529, 0, 1337, 1338, 3, 1087, - 543, 0, 1338, 1339, 3, 1061, 530, 0, 1339, 1340, 3, 1063, 531, 0, 1340, - 1341, 3, 1061, 530, 0, 1341, 1342, 3, 1087, 543, 0, 1342, 1343, 3, 1061, - 530, 0, 1343, 1344, 3, 1079, 539, 0, 1344, 1345, 3, 1057, 528, 0, 1345, - 1346, 3, 1061, 530, 0, 1346, 1347, 3, 1089, 544, 0, 1347, 1349, 1, 0, 0, - 0, 1348, 1276, 1, 0, 0, 0, 1348, 1306, 1, 0, 0, 0, 1348, 1328, 1, 0, 0, - 0, 1349, 28, 1, 0, 0, 0, 1350, 1351, 3, 1059, 529, 0, 1351, 1352, 3, 1061, - 530, 0, 1352, 1353, 3, 1075, 537, 0, 1353, 1354, 3, 1061, 530, 0, 1354, - 1355, 3, 1091, 545, 0, 1355, 1357, 3, 1061, 530, 0, 1356, 1358, 3, 1, 0, - 0, 1357, 1356, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1357, 1, 0, 0, - 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 3, 1055, - 527, 0, 1362, 1363, 3, 1093, 546, 0, 1363, 1365, 3, 1091, 545, 0, 1364, - 1366, 3, 1, 0, 0, 1365, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, - 1365, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, - 1370, 3, 1073, 536, 0, 1370, 1371, 3, 1061, 530, 0, 1371, 1372, 3, 1061, - 530, 0, 1372, 1374, 3, 1083, 541, 0, 1373, 1375, 3, 1, 0, 0, 1374, 1373, - 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1376, 1377, - 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 3, 1087, 543, 0, 1379, - 1380, 3, 1061, 530, 0, 1380, 1381, 3, 1063, 531, 0, 1381, 1382, 3, 1061, - 530, 0, 1382, 1383, 3, 1087, 543, 0, 1383, 1384, 3, 1061, 530, 0, 1384, - 1385, 3, 1079, 539, 0, 1385, 1386, 3, 1057, 528, 0, 1386, 1387, 3, 1061, - 530, 0, 1387, 1388, 3, 1089, 544, 0, 1388, 1441, 1, 0, 0, 0, 1389, 1390, - 3, 1059, 529, 0, 1390, 1391, 3, 1061, 530, 0, 1391, 1392, 3, 1075, 537, - 0, 1392, 1393, 3, 1061, 530, 0, 1393, 1394, 3, 1091, 545, 0, 1394, 1395, - 3, 1061, 530, 0, 1395, 1396, 5, 95, 0, 0, 1396, 1397, 3, 1055, 527, 0, - 1397, 1398, 3, 1093, 546, 0, 1398, 1399, 3, 1091, 545, 0, 1399, 1400, 5, - 95, 0, 0, 1400, 1401, 3, 1073, 536, 0, 1401, 1402, 3, 1061, 530, 0, 1402, - 1403, 3, 1061, 530, 0, 1403, 1404, 3, 1083, 541, 0, 1404, 1405, 5, 95, - 0, 0, 1405, 1406, 3, 1087, 543, 0, 1406, 1407, 3, 1061, 530, 0, 1407, 1408, - 3, 1063, 531, 0, 1408, 1409, 3, 1061, 530, 0, 1409, 1410, 3, 1087, 543, - 0, 1410, 1411, 3, 1061, 530, 0, 1411, 1412, 3, 1079, 539, 0, 1412, 1413, - 3, 1057, 528, 0, 1413, 1414, 3, 1061, 530, 0, 1414, 1415, 3, 1089, 544, - 0, 1415, 1441, 1, 0, 0, 0, 1416, 1417, 3, 1059, 529, 0, 1417, 1418, 3, - 1061, 530, 0, 1418, 1419, 3, 1075, 537, 0, 1419, 1420, 3, 1061, 530, 0, - 1420, 1421, 3, 1091, 545, 0, 1421, 1422, 3, 1061, 530, 0, 1422, 1423, 3, - 1055, 527, 0, 1423, 1424, 3, 1093, 546, 0, 1424, 1425, 3, 1091, 545, 0, - 1425, 1426, 3, 1073, 536, 0, 1426, 1427, 3, 1061, 530, 0, 1427, 1428, 3, - 1061, 530, 0, 1428, 1429, 3, 1083, 541, 0, 1429, 1430, 3, 1087, 543, 0, - 1430, 1431, 3, 1061, 530, 0, 1431, 1432, 3, 1063, 531, 0, 1432, 1433, 3, - 1061, 530, 0, 1433, 1434, 3, 1087, 543, 0, 1434, 1435, 3, 1061, 530, 0, - 1435, 1436, 3, 1079, 539, 0, 1436, 1437, 3, 1057, 528, 0, 1437, 1438, 3, - 1061, 530, 0, 1438, 1439, 3, 1089, 544, 0, 1439, 1441, 1, 0, 0, 0, 1440, - 1350, 1, 0, 0, 0, 1440, 1389, 1, 0, 0, 0, 1440, 1416, 1, 0, 0, 0, 1441, - 30, 1, 0, 0, 0, 1442, 1443, 3, 1059, 529, 0, 1443, 1444, 3, 1061, 530, - 0, 1444, 1445, 3, 1075, 537, 0, 1445, 1446, 3, 1061, 530, 0, 1446, 1447, - 3, 1091, 545, 0, 1447, 1449, 3, 1061, 530, 0, 1448, 1450, 3, 1, 0, 0, 1449, - 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1449, 1, 0, 0, 0, 1451, - 1452, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 3, 1069, 534, 0, - 1454, 1456, 3, 1063, 531, 0, 1455, 1457, 3, 1, 0, 0, 1456, 1455, 1, 0, - 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1458, 1459, 1, 0, - 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 3, 1079, 539, 0, 1461, 1463, - 3, 1081, 540, 0, 1462, 1464, 3, 1, 0, 0, 1463, 1462, 1, 0, 0, 0, 1464, - 1465, 1, 0, 0, 0, 1465, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, - 1467, 1, 0, 0, 0, 1467, 1468, 3, 1087, 543, 0, 1468, 1469, 3, 1061, 530, - 0, 1469, 1470, 3, 1063, 531, 0, 1470, 1471, 3, 1061, 530, 0, 1471, 1472, - 3, 1087, 543, 0, 1472, 1473, 3, 1061, 530, 0, 1473, 1474, 3, 1079, 539, - 0, 1474, 1475, 3, 1057, 528, 0, 1475, 1476, 3, 1061, 530, 0, 1476, 1477, - 3, 1089, 544, 0, 1477, 1524, 1, 0, 0, 0, 1478, 1479, 3, 1059, 529, 0, 1479, - 1480, 3, 1061, 530, 0, 1480, 1481, 3, 1075, 537, 0, 1481, 1482, 3, 1061, - 530, 0, 1482, 1483, 3, 1091, 545, 0, 1483, 1484, 3, 1061, 530, 0, 1484, - 1485, 5, 95, 0, 0, 1485, 1486, 3, 1069, 534, 0, 1486, 1487, 3, 1063, 531, - 0, 1487, 1488, 5, 95, 0, 0, 1488, 1489, 3, 1079, 539, 0, 1489, 1490, 3, - 1081, 540, 0, 1490, 1491, 5, 95, 0, 0, 1491, 1492, 3, 1087, 543, 0, 1492, - 1493, 3, 1061, 530, 0, 1493, 1494, 3, 1063, 531, 0, 1494, 1495, 3, 1061, - 530, 0, 1495, 1496, 3, 1087, 543, 0, 1496, 1497, 3, 1061, 530, 0, 1497, - 1498, 3, 1079, 539, 0, 1498, 1499, 3, 1057, 528, 0, 1499, 1500, 3, 1061, - 530, 0, 1500, 1501, 3, 1089, 544, 0, 1501, 1524, 1, 0, 0, 0, 1502, 1503, - 3, 1059, 529, 0, 1503, 1504, 3, 1061, 530, 0, 1504, 1505, 3, 1075, 537, - 0, 1505, 1506, 3, 1061, 530, 0, 1506, 1507, 3, 1091, 545, 0, 1507, 1508, - 3, 1061, 530, 0, 1508, 1509, 3, 1069, 534, 0, 1509, 1510, 3, 1063, 531, - 0, 1510, 1511, 3, 1079, 539, 0, 1511, 1512, 3, 1081, 540, 0, 1512, 1513, - 3, 1087, 543, 0, 1513, 1514, 3, 1061, 530, 0, 1514, 1515, 3, 1063, 531, - 0, 1515, 1516, 3, 1061, 530, 0, 1516, 1517, 3, 1087, 543, 0, 1517, 1518, - 3, 1061, 530, 0, 1518, 1519, 3, 1079, 539, 0, 1519, 1520, 3, 1057, 528, - 0, 1520, 1521, 3, 1061, 530, 0, 1521, 1522, 3, 1089, 544, 0, 1522, 1524, - 1, 0, 0, 0, 1523, 1442, 1, 0, 0, 0, 1523, 1478, 1, 0, 0, 0, 1523, 1502, - 1, 0, 0, 0, 1524, 32, 1, 0, 0, 0, 1525, 1526, 3, 1057, 528, 0, 1526, 1527, - 3, 1087, 543, 0, 1527, 1528, 3, 1061, 530, 0, 1528, 1529, 3, 1053, 526, - 0, 1529, 1530, 3, 1091, 545, 0, 1530, 1531, 3, 1061, 530, 0, 1531, 34, - 1, 0, 0, 0, 1532, 1533, 3, 1053, 526, 0, 1533, 1534, 3, 1075, 537, 0, 1534, - 1535, 3, 1091, 545, 0, 1535, 1536, 3, 1061, 530, 0, 1536, 1537, 3, 1087, - 543, 0, 1537, 36, 1, 0, 0, 0, 1538, 1539, 3, 1059, 529, 0, 1539, 1540, - 3, 1087, 543, 0, 1540, 1541, 3, 1081, 540, 0, 1541, 1542, 3, 1083, 541, - 0, 1542, 38, 1, 0, 0, 0, 1543, 1544, 3, 1087, 543, 0, 1544, 1545, 3, 1061, - 530, 0, 1545, 1546, 3, 1079, 539, 0, 1546, 1547, 3, 1053, 526, 0, 1547, - 1548, 3, 1077, 538, 0, 1548, 1549, 3, 1061, 530, 0, 1549, 40, 1, 0, 0, - 0, 1550, 1551, 3, 1077, 538, 0, 1551, 1552, 3, 1081, 540, 0, 1552, 1553, - 3, 1095, 547, 0, 1553, 1554, 3, 1061, 530, 0, 1554, 42, 1, 0, 0, 0, 1555, - 1556, 3, 1077, 538, 0, 1556, 1557, 3, 1081, 540, 0, 1557, 1558, 3, 1059, - 529, 0, 1558, 1559, 3, 1069, 534, 0, 1559, 1560, 3, 1063, 531, 0, 1560, - 1561, 3, 1101, 550, 0, 1561, 44, 1, 0, 0, 0, 1562, 1563, 3, 1061, 530, - 0, 1563, 1564, 3, 1079, 539, 0, 1564, 1565, 3, 1091, 545, 0, 1565, 1566, - 3, 1069, 534, 0, 1566, 1567, 3, 1091, 545, 0, 1567, 1568, 3, 1101, 550, - 0, 1568, 46, 1, 0, 0, 0, 1569, 1570, 3, 1083, 541, 0, 1570, 1571, 3, 1061, - 530, 0, 1571, 1572, 3, 1087, 543, 0, 1572, 1573, 3, 1089, 544, 0, 1573, - 1574, 3, 1069, 534, 0, 1574, 1575, 3, 1089, 544, 0, 1575, 1576, 3, 1091, - 545, 0, 1576, 1577, 3, 1061, 530, 0, 1577, 1578, 3, 1079, 539, 0, 1578, - 1579, 3, 1091, 545, 0, 1579, 48, 1, 0, 0, 0, 1580, 1581, 3, 1095, 547, - 0, 1581, 1582, 3, 1069, 534, 0, 1582, 1583, 3, 1061, 530, 0, 1583, 1584, - 3, 1097, 548, 0, 1584, 50, 1, 0, 0, 0, 1585, 1586, 3, 1061, 530, 0, 1586, - 1587, 3, 1099, 549, 0, 1587, 1588, 3, 1091, 545, 0, 1588, 1589, 3, 1061, - 530, 0, 1589, 1590, 3, 1087, 543, 0, 1590, 1591, 3, 1079, 539, 0, 1591, - 1592, 3, 1053, 526, 0, 1592, 1593, 3, 1075, 537, 0, 1593, 52, 1, 0, 0, - 0, 1594, 1595, 3, 1053, 526, 0, 1595, 1596, 3, 1089, 544, 0, 1596, 1597, - 3, 1089, 544, 0, 1597, 1598, 3, 1081, 540, 0, 1598, 1599, 3, 1057, 528, - 0, 1599, 1600, 3, 1069, 534, 0, 1600, 1601, 3, 1053, 526, 0, 1601, 1602, - 3, 1091, 545, 0, 1602, 1603, 3, 1069, 534, 0, 1603, 1604, 3, 1081, 540, - 0, 1604, 1605, 3, 1079, 539, 0, 1605, 54, 1, 0, 0, 0, 1606, 1607, 3, 1061, - 530, 0, 1607, 1608, 3, 1079, 539, 0, 1608, 1609, 3, 1093, 546, 0, 1609, - 1610, 3, 1077, 538, 0, 1610, 1611, 3, 1061, 530, 0, 1611, 1612, 3, 1087, - 543, 0, 1612, 1613, 3, 1053, 526, 0, 1613, 1614, 3, 1091, 545, 0, 1614, - 1615, 3, 1069, 534, 0, 1615, 1616, 3, 1081, 540, 0, 1616, 1617, 3, 1079, - 539, 0, 1617, 56, 1, 0, 0, 0, 1618, 1619, 3, 1077, 538, 0, 1619, 1620, - 3, 1081, 540, 0, 1620, 1621, 3, 1059, 529, 0, 1621, 1622, 3, 1093, 546, - 0, 1622, 1623, 3, 1075, 537, 0, 1623, 1624, 3, 1061, 530, 0, 1624, 58, - 1, 0, 0, 0, 1625, 1626, 3, 1077, 538, 0, 1626, 1627, 3, 1069, 534, 0, 1627, - 1628, 3, 1057, 528, 0, 1628, 1629, 3, 1087, 543, 0, 1629, 1630, 3, 1081, - 540, 0, 1630, 1631, 3, 1063, 531, 0, 1631, 1632, 3, 1075, 537, 0, 1632, - 1633, 3, 1081, 540, 0, 1633, 1634, 3, 1097, 548, 0, 1634, 60, 1, 0, 0, - 0, 1635, 1636, 3, 1079, 539, 0, 1636, 1637, 3, 1053, 526, 0, 1637, 1638, - 3, 1079, 539, 0, 1638, 1639, 3, 1081, 540, 0, 1639, 1640, 3, 1063, 531, - 0, 1640, 1641, 3, 1075, 537, 0, 1641, 1642, 3, 1081, 540, 0, 1642, 1643, - 3, 1097, 548, 0, 1643, 62, 1, 0, 0, 0, 1644, 1645, 3, 1097, 548, 0, 1645, - 1646, 3, 1081, 540, 0, 1646, 1647, 3, 1087, 543, 0, 1647, 1648, 3, 1073, - 536, 0, 1648, 1649, 3, 1063, 531, 0, 1649, 1650, 3, 1075, 537, 0, 1650, - 1651, 3, 1081, 540, 0, 1651, 1652, 3, 1097, 548, 0, 1652, 64, 1, 0, 0, - 0, 1653, 1654, 3, 1083, 541, 0, 1654, 1655, 3, 1053, 526, 0, 1655, 1656, - 3, 1065, 532, 0, 1656, 1657, 3, 1061, 530, 0, 1657, 66, 1, 0, 0, 0, 1658, - 1659, 3, 1089, 544, 0, 1659, 1660, 3, 1079, 539, 0, 1660, 1661, 3, 1069, - 534, 0, 1661, 1662, 3, 1083, 541, 0, 1662, 1663, 3, 1083, 541, 0, 1663, - 1664, 3, 1061, 530, 0, 1664, 1665, 3, 1091, 545, 0, 1665, 68, 1, 0, 0, - 0, 1666, 1667, 3, 1075, 537, 0, 1667, 1668, 3, 1053, 526, 0, 1668, 1669, - 3, 1101, 550, 0, 1669, 1670, 3, 1081, 540, 0, 1670, 1671, 3, 1093, 546, - 0, 1671, 1672, 3, 1091, 545, 0, 1672, 70, 1, 0, 0, 0, 1673, 1674, 3, 1079, - 539, 0, 1674, 1675, 3, 1081, 540, 0, 1675, 1676, 3, 1091, 545, 0, 1676, - 1677, 3, 1061, 530, 0, 1677, 1678, 3, 1055, 527, 0, 1678, 1679, 3, 1081, - 540, 0, 1679, 1680, 3, 1081, 540, 0, 1680, 1681, 3, 1073, 536, 0, 1681, - 72, 1, 0, 0, 0, 1682, 1683, 3, 1057, 528, 0, 1683, 1684, 3, 1081, 540, - 0, 1684, 1685, 3, 1079, 539, 0, 1685, 1686, 3, 1089, 544, 0, 1686, 1687, - 3, 1091, 545, 0, 1687, 1688, 3, 1053, 526, 0, 1688, 1689, 3, 1079, 539, - 0, 1689, 1690, 3, 1091, 545, 0, 1690, 74, 1, 0, 0, 0, 1691, 1692, 3, 1053, - 526, 0, 1692, 1693, 3, 1091, 545, 0, 1693, 1694, 3, 1091, 545, 0, 1694, - 1695, 3, 1087, 543, 0, 1695, 1696, 3, 1069, 534, 0, 1696, 1697, 3, 1055, - 527, 0, 1697, 1698, 3, 1093, 546, 0, 1698, 1699, 3, 1091, 545, 0, 1699, - 1700, 3, 1061, 530, 0, 1700, 76, 1, 0, 0, 0, 1701, 1702, 3, 1057, 528, - 0, 1702, 1703, 3, 1081, 540, 0, 1703, 1704, 3, 1075, 537, 0, 1704, 1705, - 3, 1093, 546, 0, 1705, 1706, 3, 1077, 538, 0, 1706, 1707, 3, 1079, 539, - 0, 1707, 78, 1, 0, 0, 0, 1708, 1709, 3, 1057, 528, 0, 1709, 1710, 3, 1081, - 540, 0, 1710, 1711, 3, 1075, 537, 0, 1711, 1712, 3, 1093, 546, 0, 1712, - 1713, 3, 1077, 538, 0, 1713, 1714, 3, 1079, 539, 0, 1714, 1715, 3, 1089, - 544, 0, 1715, 80, 1, 0, 0, 0, 1716, 1717, 3, 1069, 534, 0, 1717, 1718, - 3, 1079, 539, 0, 1718, 1719, 3, 1059, 529, 0, 1719, 1720, 3, 1061, 530, - 0, 1720, 1721, 3, 1099, 549, 0, 1721, 82, 1, 0, 0, 0, 1722, 1723, 3, 1081, - 540, 0, 1723, 1724, 3, 1097, 548, 0, 1724, 1725, 3, 1079, 539, 0, 1725, - 1726, 3, 1061, 530, 0, 1726, 1727, 3, 1087, 543, 0, 1727, 84, 1, 0, 0, - 0, 1728, 1729, 3, 1089, 544, 0, 1729, 1730, 3, 1091, 545, 0, 1730, 1731, - 3, 1081, 540, 0, 1731, 1732, 3, 1087, 543, 0, 1732, 1733, 3, 1061, 530, - 0, 1733, 86, 1, 0, 0, 0, 1734, 1735, 3, 1087, 543, 0, 1735, 1736, 3, 1061, - 530, 0, 1736, 1737, 3, 1063, 531, 0, 1737, 1738, 3, 1061, 530, 0, 1738, - 1739, 3, 1087, 543, 0, 1739, 1740, 3, 1061, 530, 0, 1740, 1741, 3, 1079, - 539, 0, 1741, 1742, 3, 1057, 528, 0, 1742, 1743, 3, 1061, 530, 0, 1743, - 88, 1, 0, 0, 0, 1744, 1745, 3, 1065, 532, 0, 1745, 1746, 3, 1061, 530, - 0, 1746, 1747, 3, 1079, 539, 0, 1747, 1748, 3, 1061, 530, 0, 1748, 1749, - 3, 1087, 543, 0, 1749, 1750, 3, 1053, 526, 0, 1750, 1751, 3, 1075, 537, - 0, 1751, 1752, 3, 1069, 534, 0, 1752, 1753, 3, 1103, 551, 0, 1753, 1754, - 3, 1053, 526, 0, 1754, 1755, 3, 1091, 545, 0, 1755, 1756, 3, 1069, 534, - 0, 1756, 1757, 3, 1081, 540, 0, 1757, 1758, 3, 1079, 539, 0, 1758, 90, - 1, 0, 0, 0, 1759, 1760, 3, 1061, 530, 0, 1760, 1761, 3, 1099, 549, 0, 1761, - 1762, 3, 1091, 545, 0, 1762, 1763, 3, 1061, 530, 0, 1763, 1764, 3, 1079, - 539, 0, 1764, 1765, 3, 1059, 529, 0, 1765, 1766, 3, 1089, 544, 0, 1766, - 92, 1, 0, 0, 0, 1767, 1768, 3, 1053, 526, 0, 1768, 1769, 3, 1059, 529, - 0, 1769, 1770, 3, 1059, 529, 0, 1770, 94, 1, 0, 0, 0, 1771, 1772, 3, 1089, - 544, 0, 1772, 1773, 3, 1061, 530, 0, 1773, 1774, 3, 1091, 545, 0, 1774, - 96, 1, 0, 0, 0, 1775, 1776, 3, 1083, 541, 0, 1776, 1777, 3, 1081, 540, - 0, 1777, 1778, 3, 1089, 544, 0, 1778, 1779, 3, 1069, 534, 0, 1779, 1780, - 3, 1091, 545, 0, 1780, 1781, 3, 1069, 534, 0, 1781, 1782, 3, 1081, 540, - 0, 1782, 1783, 3, 1079, 539, 0, 1783, 98, 1, 0, 0, 0, 1784, 1785, 3, 1059, - 529, 0, 1785, 1786, 3, 1081, 540, 0, 1786, 1787, 3, 1057, 528, 0, 1787, - 1788, 3, 1093, 546, 0, 1788, 1789, 3, 1077, 538, 0, 1789, 1790, 3, 1061, - 530, 0, 1790, 1791, 3, 1079, 539, 0, 1791, 1792, 3, 1091, 545, 0, 1792, - 1793, 3, 1053, 526, 0, 1793, 1794, 3, 1091, 545, 0, 1794, 1795, 3, 1069, - 534, 0, 1795, 1796, 3, 1081, 540, 0, 1796, 1797, 3, 1079, 539, 0, 1797, - 100, 1, 0, 0, 0, 1798, 1799, 3, 1089, 544, 0, 1799, 1800, 3, 1091, 545, - 0, 1800, 1801, 3, 1081, 540, 0, 1801, 1802, 3, 1087, 543, 0, 1802, 1803, - 3, 1053, 526, 0, 1803, 1804, 3, 1065, 532, 0, 1804, 1805, 3, 1061, 530, - 0, 1805, 102, 1, 0, 0, 0, 1806, 1807, 3, 1091, 545, 0, 1807, 1808, 3, 1053, - 526, 0, 1808, 1809, 3, 1055, 527, 0, 1809, 1810, 3, 1075, 537, 0, 1810, - 1811, 3, 1061, 530, 0, 1811, 104, 1, 0, 0, 0, 1812, 1813, 3, 1059, 529, - 0, 1813, 1814, 3, 1061, 530, 0, 1814, 1815, 3, 1075, 537, 0, 1815, 1816, - 3, 1061, 530, 0, 1816, 1817, 3, 1091, 545, 0, 1817, 1819, 3, 1061, 530, - 0, 1818, 1820, 5, 95, 0, 0, 1819, 1818, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, - 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 3, 1055, 527, 0, 1822, 1823, 3, - 1061, 530, 0, 1823, 1824, 3, 1067, 533, 0, 1824, 1825, 3, 1053, 526, 0, - 1825, 1826, 3, 1095, 547, 0, 1826, 1827, 3, 1069, 534, 0, 1827, 1828, 3, - 1081, 540, 0, 1828, 1829, 3, 1087, 543, 0, 1829, 106, 1, 0, 0, 0, 1830, - 1831, 3, 1057, 528, 0, 1831, 1832, 3, 1053, 526, 0, 1832, 1833, 3, 1089, - 544, 0, 1833, 1834, 3, 1057, 528, 0, 1834, 1835, 3, 1053, 526, 0, 1835, - 1836, 3, 1059, 529, 0, 1836, 1837, 3, 1061, 530, 0, 1837, 108, 1, 0, 0, - 0, 1838, 1839, 3, 1083, 541, 0, 1839, 1840, 3, 1087, 543, 0, 1840, 1841, - 3, 1061, 530, 0, 1841, 1842, 3, 1095, 547, 0, 1842, 1843, 3, 1061, 530, - 0, 1843, 1844, 3, 1079, 539, 0, 1844, 1845, 3, 1091, 545, 0, 1845, 110, - 1, 0, 0, 0, 1846, 1847, 3, 1057, 528, 0, 1847, 1848, 3, 1081, 540, 0, 1848, - 1849, 3, 1079, 539, 0, 1849, 1850, 3, 1079, 539, 0, 1850, 1851, 3, 1061, - 530, 0, 1851, 1852, 3, 1057, 528, 0, 1852, 1853, 3, 1091, 545, 0, 1853, - 112, 1, 0, 0, 0, 1854, 1855, 3, 1059, 529, 0, 1855, 1856, 3, 1069, 534, - 0, 1856, 1857, 3, 1089, 544, 0, 1857, 1858, 3, 1057, 528, 0, 1858, 1859, - 3, 1081, 540, 0, 1859, 1860, 3, 1079, 539, 0, 1860, 1861, 3, 1079, 539, - 0, 1861, 1862, 3, 1061, 530, 0, 1862, 1863, 3, 1057, 528, 0, 1863, 1864, - 3, 1091, 545, 0, 1864, 114, 1, 0, 0, 0, 1865, 1866, 3, 1075, 537, 0, 1866, - 1867, 3, 1081, 540, 0, 1867, 1868, 3, 1057, 528, 0, 1868, 1869, 3, 1053, - 526, 0, 1869, 1870, 3, 1075, 537, 0, 1870, 116, 1, 0, 0, 0, 1871, 1872, - 3, 1083, 541, 0, 1872, 1873, 3, 1087, 543, 0, 1873, 1874, 3, 1081, 540, - 0, 1874, 1875, 3, 1071, 535, 0, 1875, 1876, 3, 1061, 530, 0, 1876, 1877, - 3, 1057, 528, 0, 1877, 1878, 3, 1091, 545, 0, 1878, 118, 1, 0, 0, 0, 1879, - 1880, 3, 1087, 543, 0, 1880, 1881, 3, 1093, 546, 0, 1881, 1882, 3, 1079, - 539, 0, 1882, 1883, 3, 1091, 545, 0, 1883, 1884, 3, 1069, 534, 0, 1884, - 1885, 3, 1077, 538, 0, 1885, 1886, 3, 1061, 530, 0, 1886, 120, 1, 0, 0, - 0, 1887, 1888, 3, 1055, 527, 0, 1888, 1889, 3, 1087, 543, 0, 1889, 1890, - 3, 1053, 526, 0, 1890, 1891, 3, 1079, 539, 0, 1891, 1892, 3, 1057, 528, - 0, 1892, 1893, 3, 1067, 533, 0, 1893, 122, 1, 0, 0, 0, 1894, 1895, 3, 1091, - 545, 0, 1895, 1896, 3, 1081, 540, 0, 1896, 1897, 3, 1073, 536, 0, 1897, - 1898, 3, 1061, 530, 0, 1898, 1899, 3, 1079, 539, 0, 1899, 124, 1, 0, 0, - 0, 1900, 1901, 3, 1067, 533, 0, 1901, 1902, 3, 1081, 540, 0, 1902, 1903, - 3, 1089, 544, 0, 1903, 1904, 3, 1091, 545, 0, 1904, 126, 1, 0, 0, 0, 1905, - 1906, 3, 1083, 541, 0, 1906, 1907, 3, 1081, 540, 0, 1907, 1908, 3, 1087, - 543, 0, 1908, 1909, 3, 1091, 545, 0, 1909, 128, 1, 0, 0, 0, 1910, 1911, - 3, 1089, 544, 0, 1911, 1912, 3, 1067, 533, 0, 1912, 1913, 3, 1081, 540, - 0, 1913, 1914, 3, 1097, 548, 0, 1914, 130, 1, 0, 0, 0, 1915, 1916, 3, 1059, - 529, 0, 1916, 1917, 3, 1061, 530, 0, 1917, 1918, 3, 1089, 544, 0, 1918, - 1919, 3, 1057, 528, 0, 1919, 1920, 3, 1087, 543, 0, 1920, 1921, 3, 1069, - 534, 0, 1921, 1922, 3, 1055, 527, 0, 1922, 1923, 3, 1061, 530, 0, 1923, - 132, 1, 0, 0, 0, 1924, 1925, 3, 1093, 546, 0, 1925, 1926, 3, 1089, 544, - 0, 1926, 1927, 3, 1061, 530, 0, 1927, 134, 1, 0, 0, 0, 1928, 1929, 3, 1069, - 534, 0, 1929, 1930, 3, 1079, 539, 0, 1930, 1931, 3, 1091, 545, 0, 1931, - 1932, 3, 1087, 543, 0, 1932, 1933, 3, 1081, 540, 0, 1933, 1934, 3, 1089, - 544, 0, 1934, 1935, 3, 1083, 541, 0, 1935, 1936, 3, 1061, 530, 0, 1936, - 1937, 3, 1057, 528, 0, 1937, 1938, 3, 1091, 545, 0, 1938, 136, 1, 0, 0, - 0, 1939, 1940, 3, 1059, 529, 0, 1940, 1941, 3, 1061, 530, 0, 1941, 1942, - 3, 1055, 527, 0, 1942, 1943, 3, 1093, 546, 0, 1943, 1944, 3, 1065, 532, - 0, 1944, 138, 1, 0, 0, 0, 1945, 1946, 3, 1089, 544, 0, 1946, 1947, 3, 1061, - 530, 0, 1947, 1948, 3, 1075, 537, 0, 1948, 1949, 3, 1061, 530, 0, 1949, - 1950, 3, 1057, 528, 0, 1950, 1951, 3, 1091, 545, 0, 1951, 140, 1, 0, 0, - 0, 1952, 1953, 3, 1063, 531, 0, 1953, 1954, 3, 1087, 543, 0, 1954, 1955, - 3, 1081, 540, 0, 1955, 1956, 3, 1077, 538, 0, 1956, 142, 1, 0, 0, 0, 1957, - 1958, 3, 1097, 548, 0, 1958, 1959, 3, 1067, 533, 0, 1959, 1960, 3, 1061, - 530, 0, 1960, 1961, 3, 1087, 543, 0, 1961, 1962, 3, 1061, 530, 0, 1962, - 144, 1, 0, 0, 0, 1963, 1964, 3, 1067, 533, 0, 1964, 1965, 3, 1053, 526, - 0, 1965, 1966, 3, 1095, 547, 0, 1966, 1967, 3, 1069, 534, 0, 1967, 1968, - 3, 1079, 539, 0, 1968, 1969, 3, 1065, 532, 0, 1969, 146, 1, 0, 0, 0, 1970, - 1971, 3, 1081, 540, 0, 1971, 1972, 3, 1063, 531, 0, 1972, 1973, 3, 1063, - 531, 0, 1973, 1974, 3, 1089, 544, 0, 1974, 1975, 3, 1061, 530, 0, 1975, - 1976, 3, 1091, 545, 0, 1976, 148, 1, 0, 0, 0, 1977, 1978, 3, 1075, 537, - 0, 1978, 1979, 3, 1069, 534, 0, 1979, 1980, 3, 1077, 538, 0, 1980, 1981, - 3, 1069, 534, 0, 1981, 1982, 3, 1091, 545, 0, 1982, 150, 1, 0, 0, 0, 1983, - 1984, 3, 1053, 526, 0, 1984, 1985, 3, 1089, 544, 0, 1985, 152, 1, 0, 0, - 0, 1986, 1987, 3, 1087, 543, 0, 1987, 1988, 3, 1061, 530, 0, 1988, 1989, - 3, 1091, 545, 0, 1989, 1990, 3, 1093, 546, 0, 1990, 1991, 3, 1087, 543, - 0, 1991, 1992, 3, 1079, 539, 0, 1992, 1993, 3, 1089, 544, 0, 1993, 154, - 1, 0, 0, 0, 1994, 1995, 3, 1087, 543, 0, 1995, 1996, 3, 1061, 530, 0, 1996, - 1997, 3, 1091, 545, 0, 1997, 1998, 3, 1093, 546, 0, 1998, 1999, 3, 1087, - 543, 0, 1999, 2000, 3, 1079, 539, 0, 2000, 2001, 3, 1069, 534, 0, 2001, - 2002, 3, 1079, 539, 0, 2002, 2003, 3, 1065, 532, 0, 2003, 156, 1, 0, 0, - 0, 2004, 2005, 3, 1057, 528, 0, 2005, 2006, 3, 1053, 526, 0, 2006, 2007, - 3, 1089, 544, 0, 2007, 2008, 3, 1061, 530, 0, 2008, 158, 1, 0, 0, 0, 2009, - 2010, 3, 1097, 548, 0, 2010, 2011, 3, 1067, 533, 0, 2011, 2012, 3, 1061, - 530, 0, 2012, 2013, 3, 1079, 539, 0, 2013, 160, 1, 0, 0, 0, 2014, 2015, - 3, 1091, 545, 0, 2015, 2016, 3, 1067, 533, 0, 2016, 2017, 3, 1061, 530, - 0, 2017, 2018, 3, 1079, 539, 0, 2018, 162, 1, 0, 0, 0, 2019, 2020, 3, 1061, - 530, 0, 2020, 2021, 3, 1075, 537, 0, 2021, 2022, 3, 1089, 544, 0, 2022, - 2023, 3, 1061, 530, 0, 2023, 164, 1, 0, 0, 0, 2024, 2025, 3, 1061, 530, - 0, 2025, 2026, 3, 1079, 539, 0, 2026, 2027, 3, 1059, 529, 0, 2027, 166, - 1, 0, 0, 0, 2028, 2029, 3, 1059, 529, 0, 2029, 2030, 3, 1069, 534, 0, 2030, - 2031, 3, 1089, 544, 0, 2031, 2032, 3, 1091, 545, 0, 2032, 2033, 3, 1069, - 534, 0, 2033, 2034, 3, 1079, 539, 0, 2034, 2035, 3, 1057, 528, 0, 2035, - 2036, 3, 1091, 545, 0, 2036, 168, 1, 0, 0, 0, 2037, 2038, 3, 1053, 526, - 0, 2038, 2039, 3, 1075, 537, 0, 2039, 2040, 3, 1075, 537, 0, 2040, 170, - 1, 0, 0, 0, 2041, 2042, 3, 1071, 535, 0, 2042, 2043, 3, 1081, 540, 0, 2043, - 2044, 3, 1069, 534, 0, 2044, 2045, 3, 1079, 539, 0, 2045, 172, 1, 0, 0, - 0, 2046, 2047, 3, 1075, 537, 0, 2047, 2048, 3, 1061, 530, 0, 2048, 2049, - 3, 1063, 531, 0, 2049, 2050, 3, 1091, 545, 0, 2050, 174, 1, 0, 0, 0, 2051, - 2052, 3, 1087, 543, 0, 2052, 2053, 3, 1069, 534, 0, 2053, 2054, 3, 1065, - 532, 0, 2054, 2055, 3, 1067, 533, 0, 2055, 2056, 3, 1091, 545, 0, 2056, - 176, 1, 0, 0, 0, 2057, 2058, 3, 1069, 534, 0, 2058, 2059, 3, 1079, 539, - 0, 2059, 2060, 3, 1079, 539, 0, 2060, 2061, 3, 1061, 530, 0, 2061, 2062, - 3, 1087, 543, 0, 2062, 178, 1, 0, 0, 0, 2063, 2064, 3, 1081, 540, 0, 2064, - 2065, 3, 1093, 546, 0, 2065, 2066, 3, 1091, 545, 0, 2066, 2067, 3, 1061, - 530, 0, 2067, 2068, 3, 1087, 543, 0, 2068, 180, 1, 0, 0, 0, 2069, 2070, - 3, 1063, 531, 0, 2070, 2071, 3, 1093, 546, 0, 2071, 2072, 3, 1075, 537, - 0, 2072, 2073, 3, 1075, 537, 0, 2073, 182, 1, 0, 0, 0, 2074, 2075, 3, 1057, - 528, 0, 2075, 2076, 3, 1087, 543, 0, 2076, 2077, 3, 1081, 540, 0, 2077, - 2078, 3, 1089, 544, 0, 2078, 2079, 3, 1089, 544, 0, 2079, 184, 1, 0, 0, - 0, 2080, 2081, 3, 1081, 540, 0, 2081, 2082, 3, 1079, 539, 0, 2082, 186, - 1, 0, 0, 0, 2083, 2084, 3, 1053, 526, 0, 2084, 2085, 3, 1089, 544, 0, 2085, - 2086, 3, 1057, 528, 0, 2086, 188, 1, 0, 0, 0, 2087, 2088, 3, 1059, 529, - 0, 2088, 2089, 3, 1061, 530, 0, 2089, 2090, 3, 1089, 544, 0, 2090, 2091, - 3, 1057, 528, 0, 2091, 190, 1, 0, 0, 0, 2092, 2093, 3, 1055, 527, 0, 2093, - 2094, 3, 1061, 530, 0, 2094, 2095, 3, 1065, 532, 0, 2095, 2096, 3, 1069, - 534, 0, 2096, 2097, 3, 1079, 539, 0, 2097, 192, 1, 0, 0, 0, 2098, 2099, - 3, 1059, 529, 0, 2099, 2100, 3, 1061, 530, 0, 2100, 2101, 3, 1057, 528, - 0, 2101, 2102, 3, 1075, 537, 0, 2102, 2103, 3, 1053, 526, 0, 2103, 2104, - 3, 1087, 543, 0, 2104, 2105, 3, 1061, 530, 0, 2105, 194, 1, 0, 0, 0, 2106, - 2107, 3, 1057, 528, 0, 2107, 2108, 3, 1067, 533, 0, 2108, 2109, 3, 1053, - 526, 0, 2109, 2110, 3, 1079, 539, 0, 2110, 2111, 3, 1065, 532, 0, 2111, - 2112, 3, 1061, 530, 0, 2112, 196, 1, 0, 0, 0, 2113, 2114, 3, 1087, 543, - 0, 2114, 2115, 3, 1061, 530, 0, 2115, 2116, 3, 1091, 545, 0, 2116, 2117, - 3, 1087, 543, 0, 2117, 2118, 3, 1069, 534, 0, 2118, 2119, 3, 1061, 530, - 0, 2119, 2120, 3, 1095, 547, 0, 2120, 2121, 3, 1061, 530, 0, 2121, 198, - 1, 0, 0, 0, 2122, 2123, 3, 1059, 529, 0, 2123, 2124, 3, 1061, 530, 0, 2124, - 2125, 3, 1075, 537, 0, 2125, 2126, 3, 1061, 530, 0, 2126, 2127, 3, 1091, - 545, 0, 2127, 2128, 3, 1061, 530, 0, 2128, 200, 1, 0, 0, 0, 2129, 2130, - 3, 1057, 528, 0, 2130, 2131, 3, 1081, 540, 0, 2131, 2132, 3, 1077, 538, - 0, 2132, 2133, 3, 1077, 538, 0, 2133, 2134, 3, 1069, 534, 0, 2134, 2135, - 3, 1091, 545, 0, 2135, 202, 1, 0, 0, 0, 2136, 2137, 3, 1087, 543, 0, 2137, - 2138, 3, 1081, 540, 0, 2138, 2139, 3, 1075, 537, 0, 2139, 2140, 3, 1075, - 537, 0, 2140, 2141, 3, 1055, 527, 0, 2141, 2142, 3, 1053, 526, 0, 2142, - 2143, 3, 1057, 528, 0, 2143, 2144, 3, 1073, 536, 0, 2144, 204, 1, 0, 0, - 0, 2145, 2146, 3, 1075, 537, 0, 2146, 2147, 3, 1081, 540, 0, 2147, 2148, - 3, 1081, 540, 0, 2148, 2149, 3, 1083, 541, 0, 2149, 206, 1, 0, 0, 0, 2150, - 2151, 3, 1097, 548, 0, 2151, 2152, 3, 1067, 533, 0, 2152, 2153, 3, 1069, - 534, 0, 2153, 2154, 3, 1075, 537, 0, 2154, 2155, 3, 1061, 530, 0, 2155, - 208, 1, 0, 0, 0, 2156, 2157, 3, 1069, 534, 0, 2157, 2158, 3, 1063, 531, - 0, 2158, 210, 1, 0, 0, 0, 2159, 2160, 3, 1061, 530, 0, 2160, 2161, 3, 1075, - 537, 0, 2161, 2162, 3, 1089, 544, 0, 2162, 2163, 3, 1069, 534, 0, 2163, - 2164, 3, 1063, 531, 0, 2164, 212, 1, 0, 0, 0, 2165, 2166, 3, 1061, 530, - 0, 2166, 2167, 3, 1075, 537, 0, 2167, 2168, 3, 1089, 544, 0, 2168, 2169, - 3, 1061, 530, 0, 2169, 2170, 3, 1069, 534, 0, 2170, 2171, 3, 1063, 531, - 0, 2171, 214, 1, 0, 0, 0, 2172, 2173, 3, 1057, 528, 0, 2173, 2174, 3, 1081, - 540, 0, 2174, 2175, 3, 1079, 539, 0, 2175, 2176, 3, 1091, 545, 0, 2176, - 2177, 3, 1069, 534, 0, 2177, 2178, 3, 1079, 539, 0, 2178, 2179, 3, 1093, - 546, 0, 2179, 2180, 3, 1061, 530, 0, 2180, 216, 1, 0, 0, 0, 2181, 2182, - 3, 1055, 527, 0, 2182, 2183, 3, 1087, 543, 0, 2183, 2184, 3, 1061, 530, - 0, 2184, 2185, 3, 1053, 526, 0, 2185, 2186, 3, 1073, 536, 0, 2186, 218, - 1, 0, 0, 0, 2187, 2188, 3, 1087, 543, 0, 2188, 2189, 3, 1061, 530, 0, 2189, - 2190, 3, 1091, 545, 0, 2190, 2191, 3, 1093, 546, 0, 2191, 2192, 3, 1087, - 543, 0, 2192, 2193, 3, 1079, 539, 0, 2193, 220, 1, 0, 0, 0, 2194, 2195, - 3, 1091, 545, 0, 2195, 2196, 3, 1067, 533, 0, 2196, 2197, 3, 1087, 543, - 0, 2197, 2198, 3, 1081, 540, 0, 2198, 2199, 3, 1097, 548, 0, 2199, 222, - 1, 0, 0, 0, 2200, 2201, 3, 1075, 537, 0, 2201, 2202, 3, 1081, 540, 0, 2202, - 2203, 3, 1065, 532, 0, 2203, 224, 1, 0, 0, 0, 2204, 2205, 3, 1057, 528, - 0, 2205, 2206, 3, 1053, 526, 0, 2206, 2207, 3, 1075, 537, 0, 2207, 2208, - 3, 1075, 537, 0, 2208, 226, 1, 0, 0, 0, 2209, 2210, 3, 1071, 535, 0, 2210, - 2211, 3, 1053, 526, 0, 2211, 2212, 3, 1095, 547, 0, 2212, 2213, 3, 1053, - 526, 0, 2213, 228, 1, 0, 0, 0, 2214, 2215, 3, 1071, 535, 0, 2215, 2216, - 3, 1053, 526, 0, 2216, 2217, 3, 1095, 547, 0, 2217, 2218, 3, 1053, 526, - 0, 2218, 2219, 3, 1089, 544, 0, 2219, 2220, 3, 1057, 528, 0, 2220, 2221, - 3, 1087, 543, 0, 2221, 2222, 3, 1069, 534, 0, 2222, 2223, 3, 1083, 541, - 0, 2223, 2224, 3, 1091, 545, 0, 2224, 230, 1, 0, 0, 0, 2225, 2226, 3, 1053, - 526, 0, 2226, 2227, 3, 1057, 528, 0, 2227, 2228, 3, 1091, 545, 0, 2228, - 2229, 3, 1069, 534, 0, 2229, 2230, 3, 1081, 540, 0, 2230, 2231, 3, 1079, - 539, 0, 2231, 232, 1, 0, 0, 0, 2232, 2233, 3, 1053, 526, 0, 2233, 2234, - 3, 1057, 528, 0, 2234, 2235, 3, 1091, 545, 0, 2235, 2236, 3, 1069, 534, - 0, 2236, 2237, 3, 1081, 540, 0, 2237, 2238, 3, 1079, 539, 0, 2238, 2239, - 3, 1089, 544, 0, 2239, 234, 1, 0, 0, 0, 2240, 2241, 3, 1057, 528, 0, 2241, - 2242, 3, 1075, 537, 0, 2242, 2243, 3, 1081, 540, 0, 2243, 2244, 3, 1089, - 544, 0, 2244, 2245, 3, 1061, 530, 0, 2245, 236, 1, 0, 0, 0, 2246, 2247, - 3, 1079, 539, 0, 2247, 2248, 3, 1081, 540, 0, 2248, 2249, 3, 1059, 529, - 0, 2249, 2250, 3, 1061, 530, 0, 2250, 238, 1, 0, 0, 0, 2251, 2252, 3, 1061, - 530, 0, 2252, 2253, 3, 1095, 547, 0, 2253, 2254, 3, 1061, 530, 0, 2254, - 2255, 3, 1079, 539, 0, 2255, 2256, 3, 1091, 545, 0, 2256, 2257, 3, 1089, - 544, 0, 2257, 240, 1, 0, 0, 0, 2258, 2259, 3, 1067, 533, 0, 2259, 2260, - 3, 1061, 530, 0, 2260, 2261, 3, 1053, 526, 0, 2261, 2262, 3, 1059, 529, - 0, 2262, 242, 1, 0, 0, 0, 2263, 2264, 3, 1091, 545, 0, 2264, 2265, 3, 1053, - 526, 0, 2265, 2266, 3, 1069, 534, 0, 2266, 2267, 3, 1075, 537, 0, 2267, - 244, 1, 0, 0, 0, 2268, 2269, 3, 1063, 531, 0, 2269, 2270, 3, 1069, 534, - 0, 2270, 2271, 3, 1079, 539, 0, 2271, 2272, 3, 1059, 529, 0, 2272, 246, - 1, 0, 0, 0, 2273, 2274, 3, 1089, 544, 0, 2274, 2275, 3, 1081, 540, 0, 2275, - 2276, 3, 1087, 543, 0, 2276, 2277, 3, 1091, 545, 0, 2277, 248, 1, 0, 0, - 0, 2278, 2279, 3, 1093, 546, 0, 2279, 2280, 3, 1079, 539, 0, 2280, 2281, - 3, 1069, 534, 0, 2281, 2282, 3, 1081, 540, 0, 2282, 2283, 3, 1079, 539, - 0, 2283, 250, 1, 0, 0, 0, 2284, 2285, 3, 1069, 534, 0, 2285, 2286, 3, 1079, - 539, 0, 2286, 2287, 3, 1091, 545, 0, 2287, 2288, 3, 1061, 530, 0, 2288, - 2289, 3, 1087, 543, 0, 2289, 2290, 3, 1089, 544, 0, 2290, 2291, 3, 1061, - 530, 0, 2291, 2292, 3, 1057, 528, 0, 2292, 2293, 3, 1091, 545, 0, 2293, - 252, 1, 0, 0, 0, 2294, 2295, 3, 1089, 544, 0, 2295, 2296, 3, 1093, 546, - 0, 2296, 2297, 3, 1055, 527, 0, 2297, 2298, 3, 1091, 545, 0, 2298, 2299, - 3, 1087, 543, 0, 2299, 2300, 3, 1053, 526, 0, 2300, 2301, 3, 1057, 528, - 0, 2301, 2302, 3, 1091, 545, 0, 2302, 254, 1, 0, 0, 0, 2303, 2304, 3, 1057, - 528, 0, 2304, 2305, 3, 1081, 540, 0, 2305, 2306, 3, 1079, 539, 0, 2306, - 2307, 3, 1091, 545, 0, 2307, 2308, 3, 1053, 526, 0, 2308, 2309, 3, 1069, - 534, 0, 2309, 2310, 3, 1079, 539, 0, 2310, 2311, 3, 1089, 544, 0, 2311, - 256, 1, 0, 0, 0, 2312, 2313, 3, 1053, 526, 0, 2313, 2314, 3, 1095, 547, - 0, 2314, 2315, 3, 1061, 530, 0, 2315, 2316, 3, 1087, 543, 0, 2316, 2317, - 3, 1053, 526, 0, 2317, 2318, 3, 1065, 532, 0, 2318, 2319, 3, 1061, 530, - 0, 2319, 258, 1, 0, 0, 0, 2320, 2321, 3, 1077, 538, 0, 2321, 2322, 3, 1069, - 534, 0, 2322, 2323, 3, 1079, 539, 0, 2323, 2324, 3, 1069, 534, 0, 2324, - 2325, 3, 1077, 538, 0, 2325, 2326, 3, 1093, 546, 0, 2326, 2327, 3, 1077, - 538, 0, 2327, 260, 1, 0, 0, 0, 2328, 2329, 3, 1077, 538, 0, 2329, 2330, - 3, 1053, 526, 0, 2330, 2331, 3, 1099, 549, 0, 2331, 2332, 3, 1069, 534, - 0, 2332, 2333, 3, 1077, 538, 0, 2333, 2334, 3, 1093, 546, 0, 2334, 2335, - 3, 1077, 538, 0, 2335, 262, 1, 0, 0, 0, 2336, 2337, 3, 1075, 537, 0, 2337, - 2338, 3, 1069, 534, 0, 2338, 2339, 3, 1089, 544, 0, 2339, 2340, 3, 1091, - 545, 0, 2340, 264, 1, 0, 0, 0, 2341, 2342, 3, 1087, 543, 0, 2342, 2343, - 3, 1061, 530, 0, 2343, 2344, 3, 1077, 538, 0, 2344, 2345, 3, 1081, 540, - 0, 2345, 2346, 3, 1095, 547, 0, 2346, 2347, 3, 1061, 530, 0, 2347, 266, - 1, 0, 0, 0, 2348, 2349, 3, 1061, 530, 0, 2349, 2350, 3, 1085, 542, 0, 2350, - 2351, 3, 1093, 546, 0, 2351, 2352, 3, 1053, 526, 0, 2352, 2353, 3, 1075, - 537, 0, 2353, 2354, 3, 1089, 544, 0, 2354, 268, 1, 0, 0, 0, 2355, 2356, - 3, 1069, 534, 0, 2356, 2357, 3, 1079, 539, 0, 2357, 2358, 3, 1063, 531, - 0, 2358, 2359, 3, 1081, 540, 0, 2359, 270, 1, 0, 0, 0, 2360, 2361, 3, 1097, - 548, 0, 2361, 2362, 3, 1053, 526, 0, 2362, 2363, 3, 1087, 543, 0, 2363, - 2364, 3, 1079, 539, 0, 2364, 2365, 3, 1069, 534, 0, 2365, 2366, 3, 1079, - 539, 0, 2366, 2367, 3, 1065, 532, 0, 2367, 272, 1, 0, 0, 0, 2368, 2369, - 3, 1091, 545, 0, 2369, 2370, 3, 1087, 543, 0, 2370, 2371, 3, 1053, 526, - 0, 2371, 2372, 3, 1057, 528, 0, 2372, 2373, 3, 1061, 530, 0, 2373, 274, - 1, 0, 0, 0, 2374, 2375, 3, 1057, 528, 0, 2375, 2376, 3, 1087, 543, 0, 2376, - 2377, 3, 1069, 534, 0, 2377, 2378, 3, 1091, 545, 0, 2378, 2379, 3, 1069, - 534, 0, 2379, 2380, 3, 1057, 528, 0, 2380, 2381, 3, 1053, 526, 0, 2381, - 2382, 3, 1075, 537, 0, 2382, 276, 1, 0, 0, 0, 2383, 2384, 3, 1097, 548, - 0, 2384, 2385, 3, 1069, 534, 0, 2385, 2386, 3, 1091, 545, 0, 2386, 2387, - 3, 1067, 533, 0, 2387, 278, 1, 0, 0, 0, 2388, 2389, 3, 1061, 530, 0, 2389, - 2390, 3, 1077, 538, 0, 2390, 2391, 3, 1083, 541, 0, 2391, 2392, 3, 1091, - 545, 0, 2392, 2393, 3, 1101, 550, 0, 2393, 280, 1, 0, 0, 0, 2394, 2395, - 3, 1081, 540, 0, 2395, 2396, 3, 1055, 527, 0, 2396, 2397, 3, 1071, 535, - 0, 2397, 2398, 3, 1061, 530, 0, 2398, 2399, 3, 1057, 528, 0, 2399, 2400, - 3, 1091, 545, 0, 2400, 282, 1, 0, 0, 0, 2401, 2402, 3, 1081, 540, 0, 2402, - 2403, 3, 1055, 527, 0, 2403, 2404, 3, 1071, 535, 0, 2404, 2405, 3, 1061, - 530, 0, 2405, 2406, 3, 1057, 528, 0, 2406, 2407, 3, 1091, 545, 0, 2407, - 2408, 3, 1089, 544, 0, 2408, 284, 1, 0, 0, 0, 2409, 2410, 3, 1083, 541, - 0, 2410, 2411, 3, 1053, 526, 0, 2411, 2412, 3, 1065, 532, 0, 2412, 2413, - 3, 1061, 530, 0, 2413, 2414, 3, 1089, 544, 0, 2414, 286, 1, 0, 0, 0, 2415, - 2416, 3, 1075, 537, 0, 2416, 2417, 3, 1053, 526, 0, 2417, 2418, 3, 1101, - 550, 0, 2418, 2419, 3, 1081, 540, 0, 2419, 2420, 3, 1093, 546, 0, 2420, - 2421, 3, 1091, 545, 0, 2421, 2422, 3, 1089, 544, 0, 2422, 288, 1, 0, 0, - 0, 2423, 2424, 3, 1089, 544, 0, 2424, 2425, 3, 1079, 539, 0, 2425, 2426, - 3, 1069, 534, 0, 2426, 2427, 3, 1083, 541, 0, 2427, 2428, 3, 1083, 541, - 0, 2428, 2429, 3, 1061, 530, 0, 2429, 2430, 3, 1091, 545, 0, 2430, 2431, - 3, 1089, 544, 0, 2431, 290, 1, 0, 0, 0, 2432, 2433, 3, 1079, 539, 0, 2433, - 2434, 3, 1081, 540, 0, 2434, 2435, 3, 1091, 545, 0, 2435, 2436, 3, 1061, - 530, 0, 2436, 2437, 3, 1055, 527, 0, 2437, 2438, 3, 1081, 540, 0, 2438, - 2439, 3, 1081, 540, 0, 2439, 2440, 3, 1073, 536, 0, 2440, 2441, 3, 1089, - 544, 0, 2441, 292, 1, 0, 0, 0, 2442, 2443, 3, 1083, 541, 0, 2443, 2444, - 3, 1075, 537, 0, 2444, 2445, 3, 1053, 526, 0, 2445, 2446, 3, 1057, 528, - 0, 2446, 2447, 3, 1061, 530, 0, 2447, 2448, 3, 1067, 533, 0, 2448, 2449, - 3, 1081, 540, 0, 2449, 2450, 3, 1075, 537, 0, 2450, 2451, 3, 1059, 529, - 0, 2451, 2452, 3, 1061, 530, 0, 2452, 2453, 3, 1087, 543, 0, 2453, 294, - 1, 0, 0, 0, 2454, 2455, 3, 1089, 544, 0, 2455, 2456, 3, 1079, 539, 0, 2456, - 2457, 3, 1069, 534, 0, 2457, 2458, 3, 1083, 541, 0, 2458, 2459, 3, 1083, - 541, 0, 2459, 2460, 3, 1061, 530, 0, 2460, 2461, 3, 1091, 545, 0, 2461, - 2462, 3, 1057, 528, 0, 2462, 2463, 3, 1053, 526, 0, 2463, 2464, 3, 1075, - 537, 0, 2464, 2465, 3, 1075, 537, 0, 2465, 296, 1, 0, 0, 0, 2466, 2467, - 3, 1075, 537, 0, 2467, 2468, 3, 1053, 526, 0, 2468, 2469, 3, 1101, 550, - 0, 2469, 2470, 3, 1081, 540, 0, 2470, 2471, 3, 1093, 546, 0, 2471, 2472, - 3, 1091, 545, 0, 2472, 2473, 3, 1065, 532, 0, 2473, 2474, 3, 1087, 543, - 0, 2474, 2475, 3, 1069, 534, 0, 2475, 2476, 3, 1059, 529, 0, 2476, 298, - 1, 0, 0, 0, 2477, 2478, 3, 1059, 529, 0, 2478, 2479, 3, 1053, 526, 0, 2479, - 2480, 3, 1091, 545, 0, 2480, 2481, 3, 1053, 526, 0, 2481, 2482, 3, 1065, - 532, 0, 2482, 2483, 3, 1087, 543, 0, 2483, 2484, 3, 1069, 534, 0, 2484, - 2485, 3, 1059, 529, 0, 2485, 300, 1, 0, 0, 0, 2486, 2487, 3, 1059, 529, - 0, 2487, 2488, 3, 1053, 526, 0, 2488, 2489, 3, 1091, 545, 0, 2489, 2490, - 3, 1053, 526, 0, 2490, 2491, 3, 1095, 547, 0, 2491, 2492, 3, 1069, 534, - 0, 2492, 2493, 3, 1061, 530, 0, 2493, 2494, 3, 1097, 548, 0, 2494, 302, - 1, 0, 0, 0, 2495, 2496, 3, 1075, 537, 0, 2496, 2497, 3, 1069, 534, 0, 2497, - 2498, 3, 1089, 544, 0, 2498, 2499, 3, 1091, 545, 0, 2499, 2500, 3, 1095, - 547, 0, 2500, 2501, 3, 1069, 534, 0, 2501, 2502, 3, 1061, 530, 0, 2502, - 2503, 3, 1097, 548, 0, 2503, 304, 1, 0, 0, 0, 2504, 2505, 3, 1065, 532, - 0, 2505, 2506, 3, 1053, 526, 0, 2506, 2507, 3, 1075, 537, 0, 2507, 2508, - 3, 1075, 537, 0, 2508, 2509, 3, 1061, 530, 0, 2509, 2510, 3, 1087, 543, - 0, 2510, 2511, 3, 1101, 550, 0, 2511, 306, 1, 0, 0, 0, 2512, 2513, 3, 1057, - 528, 0, 2513, 2514, 3, 1081, 540, 0, 2514, 2515, 3, 1079, 539, 0, 2515, - 2516, 3, 1091, 545, 0, 2516, 2517, 3, 1053, 526, 0, 2517, 2518, 3, 1069, - 534, 0, 2518, 2519, 3, 1079, 539, 0, 2519, 2520, 3, 1061, 530, 0, 2520, - 2521, 3, 1087, 543, 0, 2521, 308, 1, 0, 0, 0, 2522, 2523, 3, 1087, 543, - 0, 2523, 2524, 3, 1081, 540, 0, 2524, 2525, 3, 1097, 548, 0, 2525, 310, - 1, 0, 0, 0, 2526, 2527, 3, 1069, 534, 0, 2527, 2528, 3, 1091, 545, 0, 2528, - 2529, 3, 1061, 530, 0, 2529, 2530, 3, 1077, 538, 0, 2530, 312, 1, 0, 0, - 0, 2531, 2532, 3, 1057, 528, 0, 2532, 2533, 3, 1081, 540, 0, 2533, 2534, - 3, 1079, 539, 0, 2534, 2535, 3, 1091, 545, 0, 2535, 2536, 3, 1087, 543, - 0, 2536, 2537, 3, 1081, 540, 0, 2537, 2538, 3, 1075, 537, 0, 2538, 2539, - 3, 1055, 527, 0, 2539, 2540, 3, 1053, 526, 0, 2540, 2541, 3, 1087, 543, - 0, 2541, 314, 1, 0, 0, 0, 2542, 2543, 3, 1089, 544, 0, 2543, 2544, 3, 1061, - 530, 0, 2544, 2545, 3, 1053, 526, 0, 2545, 2546, 3, 1087, 543, 0, 2546, - 2547, 3, 1057, 528, 0, 2547, 2548, 3, 1067, 533, 0, 2548, 316, 1, 0, 0, - 0, 2549, 2550, 3, 1089, 544, 0, 2550, 2551, 3, 1061, 530, 0, 2551, 2552, - 3, 1053, 526, 0, 2552, 2553, 3, 1087, 543, 0, 2553, 2554, 3, 1057, 528, - 0, 2554, 2555, 3, 1067, 533, 0, 2555, 2556, 3, 1055, 527, 0, 2556, 2557, - 3, 1053, 526, 0, 2557, 2558, 3, 1087, 543, 0, 2558, 318, 1, 0, 0, 0, 2559, - 2560, 3, 1079, 539, 0, 2560, 2561, 3, 1053, 526, 0, 2561, 2562, 3, 1095, - 547, 0, 2562, 2563, 3, 1069, 534, 0, 2563, 2564, 3, 1065, 532, 0, 2564, - 2565, 3, 1053, 526, 0, 2565, 2566, 3, 1091, 545, 0, 2566, 2567, 3, 1069, - 534, 0, 2567, 2568, 3, 1081, 540, 0, 2568, 2569, 3, 1079, 539, 0, 2569, - 2570, 3, 1075, 537, 0, 2570, 2571, 3, 1069, 534, 0, 2571, 2572, 3, 1089, - 544, 0, 2572, 2573, 3, 1091, 545, 0, 2573, 320, 1, 0, 0, 0, 2574, 2575, - 3, 1053, 526, 0, 2575, 2576, 3, 1057, 528, 0, 2576, 2577, 3, 1091, 545, - 0, 2577, 2578, 3, 1069, 534, 0, 2578, 2579, 3, 1081, 540, 0, 2579, 2580, - 3, 1079, 539, 0, 2580, 2581, 3, 1055, 527, 0, 2581, 2582, 3, 1093, 546, - 0, 2582, 2583, 3, 1091, 545, 0, 2583, 2584, 3, 1091, 545, 0, 2584, 2585, - 3, 1081, 540, 0, 2585, 2586, 3, 1079, 539, 0, 2586, 322, 1, 0, 0, 0, 2587, - 2588, 3, 1075, 537, 0, 2588, 2589, 3, 1069, 534, 0, 2589, 2590, 3, 1079, - 539, 0, 2590, 2591, 3, 1073, 536, 0, 2591, 2592, 3, 1055, 527, 0, 2592, - 2593, 3, 1093, 546, 0, 2593, 2594, 3, 1091, 545, 0, 2594, 2595, 3, 1091, - 545, 0, 2595, 2596, 3, 1081, 540, 0, 2596, 2597, 3, 1079, 539, 0, 2597, - 324, 1, 0, 0, 0, 2598, 2599, 3, 1055, 527, 0, 2599, 2600, 3, 1093, 546, - 0, 2600, 2601, 3, 1091, 545, 0, 2601, 2602, 3, 1091, 545, 0, 2602, 2603, - 3, 1081, 540, 0, 2603, 2604, 3, 1079, 539, 0, 2604, 326, 1, 0, 0, 0, 2605, - 2606, 3, 1091, 545, 0, 2606, 2607, 3, 1069, 534, 0, 2607, 2608, 3, 1091, - 545, 0, 2608, 2609, 3, 1075, 537, 0, 2609, 2610, 3, 1061, 530, 0, 2610, - 328, 1, 0, 0, 0, 2611, 2612, 3, 1059, 529, 0, 2612, 2613, 3, 1101, 550, - 0, 2613, 2614, 3, 1079, 539, 0, 2614, 2615, 3, 1053, 526, 0, 2615, 2616, - 3, 1077, 538, 0, 2616, 2617, 3, 1069, 534, 0, 2617, 2618, 3, 1057, 528, - 0, 2618, 2619, 3, 1091, 545, 0, 2619, 2620, 3, 1061, 530, 0, 2620, 2621, - 3, 1099, 549, 0, 2621, 2622, 3, 1091, 545, 0, 2622, 330, 1, 0, 0, 0, 2623, - 2624, 3, 1059, 529, 0, 2624, 2625, 3, 1101, 550, 0, 2625, 2626, 3, 1079, - 539, 0, 2626, 2627, 3, 1053, 526, 0, 2627, 2628, 3, 1077, 538, 0, 2628, - 2629, 3, 1069, 534, 0, 2629, 2630, 3, 1057, 528, 0, 2630, 332, 1, 0, 0, - 0, 2631, 2632, 3, 1089, 544, 0, 2632, 2633, 3, 1091, 545, 0, 2633, 2634, - 3, 1053, 526, 0, 2634, 2635, 3, 1091, 545, 0, 2635, 2636, 3, 1069, 534, - 0, 2636, 2637, 3, 1057, 528, 0, 2637, 2638, 3, 1091, 545, 0, 2638, 2639, - 3, 1061, 530, 0, 2639, 2640, 3, 1099, 549, 0, 2640, 2641, 3, 1091, 545, - 0, 2641, 334, 1, 0, 0, 0, 2642, 2643, 3, 1075, 537, 0, 2643, 2644, 3, 1053, - 526, 0, 2644, 2645, 3, 1055, 527, 0, 2645, 2646, 3, 1061, 530, 0, 2646, - 2647, 3, 1075, 537, 0, 2647, 336, 1, 0, 0, 0, 2648, 2649, 3, 1091, 545, - 0, 2649, 2650, 3, 1061, 530, 0, 2650, 2651, 3, 1099, 549, 0, 2651, 2652, - 3, 1091, 545, 0, 2652, 2653, 3, 1055, 527, 0, 2653, 2654, 3, 1081, 540, - 0, 2654, 2655, 3, 1099, 549, 0, 2655, 338, 1, 0, 0, 0, 2656, 2657, 3, 1091, - 545, 0, 2657, 2658, 3, 1061, 530, 0, 2658, 2659, 3, 1099, 549, 0, 2659, - 2660, 3, 1091, 545, 0, 2660, 2661, 3, 1053, 526, 0, 2661, 2662, 3, 1087, - 543, 0, 2662, 2663, 3, 1061, 530, 0, 2663, 2664, 3, 1053, 526, 0, 2664, - 340, 1, 0, 0, 0, 2665, 2666, 3, 1059, 529, 0, 2666, 2667, 3, 1053, 526, - 0, 2667, 2668, 3, 1091, 545, 0, 2668, 2669, 3, 1061, 530, 0, 2669, 2670, - 3, 1083, 541, 0, 2670, 2671, 3, 1069, 534, 0, 2671, 2672, 3, 1057, 528, - 0, 2672, 2673, 3, 1073, 536, 0, 2673, 2674, 3, 1061, 530, 0, 2674, 2675, - 3, 1087, 543, 0, 2675, 342, 1, 0, 0, 0, 2676, 2677, 3, 1087, 543, 0, 2677, - 2678, 3, 1053, 526, 0, 2678, 2679, 3, 1059, 529, 0, 2679, 2680, 3, 1069, - 534, 0, 2680, 2681, 3, 1081, 540, 0, 2681, 2682, 3, 1055, 527, 0, 2682, - 2683, 3, 1093, 546, 0, 2683, 2684, 3, 1091, 545, 0, 2684, 2685, 3, 1091, - 545, 0, 2685, 2686, 3, 1081, 540, 0, 2686, 2687, 3, 1079, 539, 0, 2687, - 2688, 3, 1089, 544, 0, 2688, 344, 1, 0, 0, 0, 2689, 2690, 3, 1059, 529, - 0, 2690, 2691, 3, 1087, 543, 0, 2691, 2692, 3, 1081, 540, 0, 2692, 2693, - 3, 1083, 541, 0, 2693, 2694, 3, 1059, 529, 0, 2694, 2695, 3, 1081, 540, - 0, 2695, 2696, 3, 1097, 548, 0, 2696, 2697, 3, 1079, 539, 0, 2697, 346, - 1, 0, 0, 0, 2698, 2699, 3, 1057, 528, 0, 2699, 2700, 3, 1081, 540, 0, 2700, - 2701, 3, 1077, 538, 0, 2701, 2702, 3, 1055, 527, 0, 2702, 2703, 3, 1081, - 540, 0, 2703, 2704, 3, 1055, 527, 0, 2704, 2705, 3, 1081, 540, 0, 2705, - 2706, 3, 1099, 549, 0, 2706, 348, 1, 0, 0, 0, 2707, 2708, 3, 1057, 528, - 0, 2708, 2709, 3, 1067, 533, 0, 2709, 2710, 3, 1061, 530, 0, 2710, 2711, - 3, 1057, 528, 0, 2711, 2712, 3, 1073, 536, 0, 2712, 2713, 3, 1055, 527, - 0, 2713, 2714, 3, 1081, 540, 0, 2714, 2715, 3, 1099, 549, 0, 2715, 350, - 1, 0, 0, 0, 2716, 2717, 3, 1087, 543, 0, 2717, 2718, 3, 1061, 530, 0, 2718, - 2719, 3, 1063, 531, 0, 2719, 2720, 3, 1061, 530, 0, 2720, 2721, 3, 1087, - 543, 0, 2721, 2722, 3, 1061, 530, 0, 2722, 2723, 3, 1079, 539, 0, 2723, - 2724, 3, 1057, 528, 0, 2724, 2725, 3, 1061, 530, 0, 2725, 2726, 3, 1089, - 544, 0, 2726, 2727, 3, 1061, 530, 0, 2727, 2728, 3, 1075, 537, 0, 2728, - 2729, 3, 1061, 530, 0, 2729, 2730, 3, 1057, 528, 0, 2730, 2731, 3, 1091, - 545, 0, 2731, 2732, 3, 1081, 540, 0, 2732, 2733, 3, 1087, 543, 0, 2733, - 352, 1, 0, 0, 0, 2734, 2735, 3, 1069, 534, 0, 2735, 2736, 3, 1079, 539, - 0, 2736, 2737, 3, 1083, 541, 0, 2737, 2738, 3, 1093, 546, 0, 2738, 2739, - 3, 1091, 545, 0, 2739, 2740, 3, 1087, 543, 0, 2740, 2741, 3, 1061, 530, - 0, 2741, 2742, 3, 1063, 531, 0, 2742, 2743, 3, 1061, 530, 0, 2743, 2744, - 3, 1087, 543, 0, 2744, 2745, 3, 1061, 530, 0, 2745, 2746, 3, 1079, 539, - 0, 2746, 2747, 3, 1057, 528, 0, 2747, 2748, 3, 1061, 530, 0, 2748, 2749, - 3, 1089, 544, 0, 2749, 2750, 3, 1061, 530, 0, 2750, 2751, 3, 1091, 545, - 0, 2751, 2752, 3, 1089, 544, 0, 2752, 2753, 3, 1061, 530, 0, 2753, 2754, - 3, 1075, 537, 0, 2754, 2755, 3, 1061, 530, 0, 2755, 2756, 3, 1057, 528, - 0, 2756, 2757, 3, 1091, 545, 0, 2757, 2758, 3, 1081, 540, 0, 2758, 2759, - 3, 1087, 543, 0, 2759, 354, 1, 0, 0, 0, 2760, 2761, 3, 1063, 531, 0, 2761, - 2762, 3, 1069, 534, 0, 2762, 2763, 3, 1075, 537, 0, 2763, 2764, 3, 1061, - 530, 0, 2764, 2765, 3, 1069, 534, 0, 2765, 2766, 3, 1079, 539, 0, 2766, - 2767, 3, 1083, 541, 0, 2767, 2768, 3, 1093, 546, 0, 2768, 2769, 3, 1091, - 545, 0, 2769, 356, 1, 0, 0, 0, 2770, 2771, 3, 1069, 534, 0, 2771, 2772, - 3, 1077, 538, 0, 2772, 2773, 3, 1053, 526, 0, 2773, 2774, 3, 1065, 532, - 0, 2774, 2775, 3, 1061, 530, 0, 2775, 2776, 3, 1069, 534, 0, 2776, 2777, - 3, 1079, 539, 0, 2777, 2778, 3, 1083, 541, 0, 2778, 2779, 3, 1093, 546, - 0, 2779, 2780, 3, 1091, 545, 0, 2780, 358, 1, 0, 0, 0, 2781, 2782, 3, 1057, - 528, 0, 2782, 2783, 3, 1093, 546, 0, 2783, 2784, 3, 1089, 544, 0, 2784, - 2785, 3, 1091, 545, 0, 2785, 2786, 3, 1081, 540, 0, 2786, 2787, 3, 1077, - 538, 0, 2787, 2788, 3, 1097, 548, 0, 2788, 2789, 3, 1069, 534, 0, 2789, - 2790, 3, 1059, 529, 0, 2790, 2791, 3, 1065, 532, 0, 2791, 2792, 3, 1061, - 530, 0, 2792, 2793, 3, 1091, 545, 0, 2793, 360, 1, 0, 0, 0, 2794, 2795, - 3, 1091, 545, 0, 2795, 2796, 3, 1061, 530, 0, 2796, 2797, 3, 1099, 549, - 0, 2797, 2798, 3, 1091, 545, 0, 2798, 2799, 3, 1063, 531, 0, 2799, 2800, - 3, 1069, 534, 0, 2800, 2801, 3, 1075, 537, 0, 2801, 2802, 3, 1091, 545, - 0, 2802, 2803, 3, 1061, 530, 0, 2803, 2804, 3, 1087, 543, 0, 2804, 362, - 1, 0, 0, 0, 2805, 2806, 3, 1079, 539, 0, 2806, 2807, 3, 1093, 546, 0, 2807, - 2808, 3, 1077, 538, 0, 2808, 2809, 3, 1055, 527, 0, 2809, 2810, 3, 1061, - 530, 0, 2810, 2811, 3, 1087, 543, 0, 2811, 2812, 3, 1063, 531, 0, 2812, - 2813, 3, 1069, 534, 0, 2813, 2814, 3, 1075, 537, 0, 2814, 2815, 3, 1091, - 545, 0, 2815, 2816, 3, 1061, 530, 0, 2816, 2817, 3, 1087, 543, 0, 2817, - 364, 1, 0, 0, 0, 2818, 2819, 3, 1059, 529, 0, 2819, 2820, 3, 1087, 543, - 0, 2820, 2821, 3, 1081, 540, 0, 2821, 2822, 3, 1083, 541, 0, 2822, 2823, - 3, 1059, 529, 0, 2823, 2824, 3, 1081, 540, 0, 2824, 2825, 3, 1097, 548, - 0, 2825, 2826, 3, 1079, 539, 0, 2826, 2827, 3, 1063, 531, 0, 2827, 2828, - 3, 1069, 534, 0, 2828, 2829, 3, 1075, 537, 0, 2829, 2830, 3, 1091, 545, - 0, 2830, 2831, 3, 1061, 530, 0, 2831, 2832, 3, 1087, 543, 0, 2832, 366, - 1, 0, 0, 0, 2833, 2834, 3, 1059, 529, 0, 2834, 2835, 3, 1053, 526, 0, 2835, - 2836, 3, 1091, 545, 0, 2836, 2837, 3, 1061, 530, 0, 2837, 2838, 3, 1063, - 531, 0, 2838, 2839, 3, 1069, 534, 0, 2839, 2840, 3, 1075, 537, 0, 2840, - 2841, 3, 1091, 545, 0, 2841, 2842, 3, 1061, 530, 0, 2842, 2843, 3, 1087, - 543, 0, 2843, 368, 1, 0, 0, 0, 2844, 2845, 3, 1063, 531, 0, 2845, 2846, - 3, 1069, 534, 0, 2846, 2847, 3, 1075, 537, 0, 2847, 2848, 3, 1091, 545, - 0, 2848, 2849, 3, 1061, 530, 0, 2849, 2850, 3, 1087, 543, 0, 2850, 370, - 1, 0, 0, 0, 2851, 2852, 3, 1097, 548, 0, 2852, 2853, 3, 1069, 534, 0, 2853, - 2854, 3, 1059, 529, 0, 2854, 2855, 3, 1065, 532, 0, 2855, 2856, 3, 1061, - 530, 0, 2856, 2857, 3, 1091, 545, 0, 2857, 372, 1, 0, 0, 0, 2858, 2859, - 3, 1097, 548, 0, 2859, 2860, 3, 1069, 534, 0, 2860, 2861, 3, 1059, 529, - 0, 2861, 2862, 3, 1065, 532, 0, 2862, 2863, 3, 1061, 530, 0, 2863, 2864, - 3, 1091, 545, 0, 2864, 2865, 3, 1089, 544, 0, 2865, 374, 1, 0, 0, 0, 2866, - 2867, 3, 1057, 528, 0, 2867, 2868, 3, 1053, 526, 0, 2868, 2869, 3, 1083, - 541, 0, 2869, 2870, 3, 1091, 545, 0, 2870, 2871, 3, 1069, 534, 0, 2871, - 2872, 3, 1081, 540, 0, 2872, 2873, 3, 1079, 539, 0, 2873, 376, 1, 0, 0, - 0, 2874, 2875, 3, 1069, 534, 0, 2875, 2876, 3, 1057, 528, 0, 2876, 2877, - 3, 1081, 540, 0, 2877, 2878, 3, 1079, 539, 0, 2878, 378, 1, 0, 0, 0, 2879, - 2880, 3, 1091, 545, 0, 2880, 2881, 3, 1081, 540, 0, 2881, 2882, 3, 1081, - 540, 0, 2882, 2883, 3, 1075, 537, 0, 2883, 2884, 3, 1091, 545, 0, 2884, - 2885, 3, 1069, 534, 0, 2885, 2886, 3, 1083, 541, 0, 2886, 380, 1, 0, 0, - 0, 2887, 2888, 3, 1059, 529, 0, 2888, 2889, 3, 1053, 526, 0, 2889, 2890, - 3, 1091, 545, 0, 2890, 2891, 3, 1053, 526, 0, 2891, 2892, 3, 1089, 544, - 0, 2892, 2893, 3, 1081, 540, 0, 2893, 2894, 3, 1093, 546, 0, 2894, 2895, - 3, 1087, 543, 0, 2895, 2896, 3, 1057, 528, 0, 2896, 2897, 3, 1061, 530, - 0, 2897, 382, 1, 0, 0, 0, 2898, 2899, 3, 1089, 544, 0, 2899, 2900, 3, 1081, - 540, 0, 2900, 2901, 3, 1093, 546, 0, 2901, 2902, 3, 1087, 543, 0, 2902, - 2903, 3, 1057, 528, 0, 2903, 2904, 3, 1061, 530, 0, 2904, 384, 1, 0, 0, - 0, 2905, 2906, 3, 1089, 544, 0, 2906, 2907, 3, 1061, 530, 0, 2907, 2908, - 3, 1075, 537, 0, 2908, 2909, 3, 1061, 530, 0, 2909, 2910, 3, 1057, 528, - 0, 2910, 2911, 3, 1091, 545, 0, 2911, 2912, 3, 1069, 534, 0, 2912, 2913, - 3, 1081, 540, 0, 2913, 2914, 3, 1079, 539, 0, 2914, 386, 1, 0, 0, 0, 2915, - 2916, 3, 1063, 531, 0, 2916, 2917, 3, 1081, 540, 0, 2917, 2918, 3, 1081, - 540, 0, 2918, 2919, 3, 1091, 545, 0, 2919, 2920, 3, 1061, 530, 0, 2920, - 2921, 3, 1087, 543, 0, 2921, 388, 1, 0, 0, 0, 2922, 2923, 3, 1067, 533, - 0, 2923, 2924, 3, 1061, 530, 0, 2924, 2925, 3, 1053, 526, 0, 2925, 2926, - 3, 1059, 529, 0, 2926, 2927, 3, 1061, 530, 0, 2927, 2928, 3, 1087, 543, - 0, 2928, 390, 1, 0, 0, 0, 2929, 2930, 3, 1057, 528, 0, 2930, 2931, 3, 1081, - 540, 0, 2931, 2932, 3, 1079, 539, 0, 2932, 2933, 3, 1091, 545, 0, 2933, - 2934, 3, 1061, 530, 0, 2934, 2935, 3, 1079, 539, 0, 2935, 2936, 3, 1091, - 545, 0, 2936, 392, 1, 0, 0, 0, 2937, 2938, 3, 1087, 543, 0, 2938, 2939, - 3, 1061, 530, 0, 2939, 2940, 3, 1079, 539, 0, 2940, 2941, 3, 1059, 529, - 0, 2941, 2942, 3, 1061, 530, 0, 2942, 2943, 3, 1087, 543, 0, 2943, 2944, - 3, 1077, 538, 0, 2944, 2945, 3, 1081, 540, 0, 2945, 2946, 3, 1059, 529, - 0, 2946, 2947, 3, 1061, 530, 0, 2947, 394, 1, 0, 0, 0, 2948, 2949, 3, 1055, - 527, 0, 2949, 2950, 3, 1069, 534, 0, 2950, 2951, 3, 1079, 539, 0, 2951, - 2952, 3, 1059, 529, 0, 2952, 2953, 3, 1089, 544, 0, 2953, 396, 1, 0, 0, - 0, 2954, 2955, 3, 1053, 526, 0, 2955, 2956, 3, 1091, 545, 0, 2956, 2957, - 3, 1091, 545, 0, 2957, 2958, 3, 1087, 543, 0, 2958, 398, 1, 0, 0, 0, 2959, - 2960, 3, 1057, 528, 0, 2960, 2961, 3, 1081, 540, 0, 2961, 2962, 3, 1079, - 539, 0, 2962, 2963, 3, 1091, 545, 0, 2963, 2964, 3, 1061, 530, 0, 2964, - 2965, 3, 1079, 539, 0, 2965, 2966, 3, 1091, 545, 0, 2966, 2967, 3, 1083, - 541, 0, 2967, 2968, 3, 1053, 526, 0, 2968, 2969, 3, 1087, 543, 0, 2969, - 2970, 3, 1053, 526, 0, 2970, 2971, 3, 1077, 538, 0, 2971, 2972, 3, 1089, - 544, 0, 2972, 400, 1, 0, 0, 0, 2973, 2974, 3, 1057, 528, 0, 2974, 2975, - 3, 1053, 526, 0, 2975, 2976, 3, 1083, 541, 0, 2976, 2977, 3, 1091, 545, - 0, 2977, 2978, 3, 1069, 534, 0, 2978, 2979, 3, 1081, 540, 0, 2979, 2980, - 3, 1079, 539, 0, 2980, 2981, 3, 1083, 541, 0, 2981, 2982, 3, 1053, 526, - 0, 2982, 2983, 3, 1087, 543, 0, 2983, 2984, 3, 1053, 526, 0, 2984, 2985, - 3, 1077, 538, 0, 2985, 2986, 3, 1089, 544, 0, 2986, 402, 1, 0, 0, 0, 2987, - 2988, 3, 1083, 541, 0, 2988, 2989, 3, 1053, 526, 0, 2989, 2990, 3, 1087, - 543, 0, 2990, 2991, 3, 1053, 526, 0, 2991, 2992, 3, 1077, 538, 0, 2992, - 2993, 3, 1089, 544, 0, 2993, 404, 1, 0, 0, 0, 2994, 2995, 3, 1095, 547, - 0, 2995, 2996, 3, 1053, 526, 0, 2996, 2997, 3, 1087, 543, 0, 2997, 2998, - 3, 1069, 534, 0, 2998, 2999, 3, 1053, 526, 0, 2999, 3000, 3, 1055, 527, - 0, 3000, 3001, 3, 1075, 537, 0, 3001, 3002, 3, 1061, 530, 0, 3002, 3003, - 3, 1089, 544, 0, 3003, 406, 1, 0, 0, 0, 3004, 3005, 3, 1059, 529, 0, 3005, - 3006, 3, 1061, 530, 0, 3006, 3007, 3, 1089, 544, 0, 3007, 3008, 3, 1073, - 536, 0, 3008, 3009, 3, 1091, 545, 0, 3009, 3010, 3, 1081, 540, 0, 3010, - 3011, 3, 1083, 541, 0, 3011, 3012, 3, 1097, 548, 0, 3012, 3013, 3, 1069, - 534, 0, 3013, 3014, 3, 1059, 529, 0, 3014, 3015, 3, 1091, 545, 0, 3015, - 3016, 3, 1067, 533, 0, 3016, 408, 1, 0, 0, 0, 3017, 3018, 3, 1091, 545, - 0, 3018, 3019, 3, 1053, 526, 0, 3019, 3020, 3, 1055, 527, 0, 3020, 3021, - 3, 1075, 537, 0, 3021, 3022, 3, 1061, 530, 0, 3022, 3023, 3, 1091, 545, - 0, 3023, 3024, 3, 1097, 548, 0, 3024, 3025, 3, 1069, 534, 0, 3025, 3026, - 3, 1059, 529, 0, 3026, 3027, 3, 1091, 545, 0, 3027, 3028, 3, 1067, 533, - 0, 3028, 410, 1, 0, 0, 0, 3029, 3030, 3, 1083, 541, 0, 3030, 3031, 3, 1067, - 533, 0, 3031, 3032, 3, 1081, 540, 0, 3032, 3033, 3, 1079, 539, 0, 3033, - 3034, 3, 1061, 530, 0, 3034, 3035, 3, 1097, 548, 0, 3035, 3036, 3, 1069, - 534, 0, 3036, 3037, 3, 1059, 529, 0, 3037, 3038, 3, 1091, 545, 0, 3038, - 3039, 3, 1067, 533, 0, 3039, 412, 1, 0, 0, 0, 3040, 3041, 3, 1057, 528, - 0, 3041, 3042, 3, 1075, 537, 0, 3042, 3043, 3, 1053, 526, 0, 3043, 3044, - 3, 1089, 544, 0, 3044, 3045, 3, 1089, 544, 0, 3045, 414, 1, 0, 0, 0, 3046, - 3047, 3, 1089, 544, 0, 3047, 3048, 3, 1091, 545, 0, 3048, 3049, 3, 1101, - 550, 0, 3049, 3050, 3, 1075, 537, 0, 3050, 3051, 3, 1061, 530, 0, 3051, - 416, 1, 0, 0, 0, 3052, 3053, 3, 1055, 527, 0, 3053, 3054, 3, 1093, 546, - 0, 3054, 3055, 3, 1091, 545, 0, 3055, 3056, 3, 1091, 545, 0, 3056, 3057, - 3, 1081, 540, 0, 3057, 3058, 3, 1079, 539, 0, 3058, 3059, 3, 1089, 544, - 0, 3059, 3060, 3, 1091, 545, 0, 3060, 3061, 3, 1101, 550, 0, 3061, 3062, - 3, 1075, 537, 0, 3062, 3063, 3, 1061, 530, 0, 3063, 418, 1, 0, 0, 0, 3064, - 3065, 3, 1059, 529, 0, 3065, 3066, 3, 1061, 530, 0, 3066, 3067, 3, 1089, - 544, 0, 3067, 3068, 3, 1069, 534, 0, 3068, 3069, 3, 1065, 532, 0, 3069, - 3070, 3, 1079, 539, 0, 3070, 420, 1, 0, 0, 0, 3071, 3072, 3, 1083, 541, - 0, 3072, 3073, 3, 1087, 543, 0, 3073, 3074, 3, 1081, 540, 0, 3074, 3075, - 3, 1083, 541, 0, 3075, 3076, 3, 1061, 530, 0, 3076, 3077, 3, 1087, 543, - 0, 3077, 3078, 3, 1091, 545, 0, 3078, 3079, 3, 1069, 534, 0, 3079, 3080, - 3, 1061, 530, 0, 3080, 3081, 3, 1089, 544, 0, 3081, 422, 1, 0, 0, 0, 3082, - 3083, 3, 1059, 529, 0, 3083, 3084, 3, 1061, 530, 0, 3084, 3085, 3, 1089, - 544, 0, 3085, 3086, 3, 1069, 534, 0, 3086, 3087, 3, 1065, 532, 0, 3087, - 3088, 3, 1079, 539, 0, 3088, 3089, 3, 1083, 541, 0, 3089, 3090, 3, 1087, - 543, 0, 3090, 3091, 3, 1081, 540, 0, 3091, 3092, 3, 1083, 541, 0, 3092, - 3093, 3, 1061, 530, 0, 3093, 3094, 3, 1087, 543, 0, 3094, 3095, 3, 1091, - 545, 0, 3095, 3096, 3, 1069, 534, 0, 3096, 3097, 3, 1061, 530, 0, 3097, - 3098, 3, 1089, 544, 0, 3098, 424, 1, 0, 0, 0, 3099, 3100, 3, 1089, 544, - 0, 3100, 3101, 3, 1091, 545, 0, 3101, 3102, 3, 1101, 550, 0, 3102, 3103, - 3, 1075, 537, 0, 3103, 3104, 3, 1069, 534, 0, 3104, 3105, 3, 1079, 539, - 0, 3105, 3106, 3, 1065, 532, 0, 3106, 426, 1, 0, 0, 0, 3107, 3108, 3, 1057, - 528, 0, 3108, 3109, 3, 1075, 537, 0, 3109, 3110, 3, 1061, 530, 0, 3110, - 3111, 3, 1053, 526, 0, 3111, 3112, 3, 1087, 543, 0, 3112, 428, 1, 0, 0, - 0, 3113, 3114, 3, 1097, 548, 0, 3114, 3115, 3, 1069, 534, 0, 3115, 3116, - 3, 1059, 529, 0, 3116, 3117, 3, 1091, 545, 0, 3117, 3118, 3, 1067, 533, - 0, 3118, 430, 1, 0, 0, 0, 3119, 3120, 3, 1067, 533, 0, 3120, 3121, 3, 1061, - 530, 0, 3121, 3122, 3, 1069, 534, 0, 3122, 3123, 3, 1065, 532, 0, 3123, - 3124, 3, 1067, 533, 0, 3124, 3125, 3, 1091, 545, 0, 3125, 432, 1, 0, 0, - 0, 3126, 3127, 3, 1053, 526, 0, 3127, 3128, 3, 1093, 546, 0, 3128, 3129, - 3, 1091, 545, 0, 3129, 3130, 3, 1081, 540, 0, 3130, 3131, 3, 1063, 531, - 0, 3131, 3132, 3, 1069, 534, 0, 3132, 3133, 3, 1075, 537, 0, 3133, 3134, - 3, 1075, 537, 0, 3134, 434, 1, 0, 0, 0, 3135, 3136, 3, 1093, 546, 0, 3136, - 3137, 3, 1087, 543, 0, 3137, 3138, 3, 1075, 537, 0, 3138, 436, 1, 0, 0, - 0, 3139, 3140, 3, 1063, 531, 0, 3140, 3141, 3, 1081, 540, 0, 3141, 3142, - 3, 1075, 537, 0, 3142, 3143, 3, 1059, 529, 0, 3143, 3144, 3, 1061, 530, - 0, 3144, 3145, 3, 1087, 543, 0, 3145, 438, 1, 0, 0, 0, 3146, 3147, 3, 1083, - 541, 0, 3147, 3148, 3, 1053, 526, 0, 3148, 3149, 3, 1089, 544, 0, 3149, - 3150, 3, 1089, 544, 0, 3150, 3151, 3, 1069, 534, 0, 3151, 3152, 3, 1079, - 539, 0, 3152, 3153, 3, 1065, 532, 0, 3153, 440, 1, 0, 0, 0, 3154, 3155, - 3, 1057, 528, 0, 3155, 3156, 3, 1081, 540, 0, 3156, 3157, 3, 1079, 539, - 0, 3157, 3158, 3, 1091, 545, 0, 3158, 3159, 3, 1061, 530, 0, 3159, 3160, - 3, 1099, 549, 0, 3160, 3161, 3, 1091, 545, 0, 3161, 442, 1, 0, 0, 0, 3162, - 3163, 3, 1061, 530, 0, 3163, 3164, 3, 1059, 529, 0, 3164, 3165, 3, 1069, - 534, 0, 3165, 3166, 3, 1091, 545, 0, 3166, 3167, 3, 1053, 526, 0, 3167, - 3168, 3, 1055, 527, 0, 3168, 3169, 3, 1075, 537, 0, 3169, 3170, 3, 1061, - 530, 0, 3170, 444, 1, 0, 0, 0, 3171, 3172, 3, 1087, 543, 0, 3172, 3173, - 3, 1061, 530, 0, 3173, 3174, 3, 1053, 526, 0, 3174, 3175, 3, 1059, 529, - 0, 3175, 3176, 3, 1081, 540, 0, 3176, 3177, 3, 1079, 539, 0, 3177, 3178, - 3, 1075, 537, 0, 3178, 3179, 3, 1101, 550, 0, 3179, 446, 1, 0, 0, 0, 3180, - 3181, 3, 1053, 526, 0, 3181, 3182, 3, 1091, 545, 0, 3182, 3183, 3, 1091, - 545, 0, 3183, 3184, 3, 1087, 543, 0, 3184, 3185, 3, 1069, 534, 0, 3185, - 3186, 3, 1055, 527, 0, 3186, 3187, 3, 1093, 546, 0, 3187, 3188, 3, 1091, - 545, 0, 3188, 3189, 3, 1061, 530, 0, 3189, 3190, 3, 1089, 544, 0, 3190, - 448, 1, 0, 0, 0, 3191, 3192, 3, 1063, 531, 0, 3192, 3193, 3, 1069, 534, - 0, 3193, 3194, 3, 1075, 537, 0, 3194, 3195, 3, 1091, 545, 0, 3195, 3196, - 3, 1061, 530, 0, 3196, 3197, 3, 1087, 543, 0, 3197, 3198, 3, 1091, 545, - 0, 3198, 3199, 3, 1101, 550, 0, 3199, 3200, 3, 1083, 541, 0, 3200, 3201, - 3, 1061, 530, 0, 3201, 450, 1, 0, 0, 0, 3202, 3203, 3, 1069, 534, 0, 3203, - 3204, 3, 1077, 538, 0, 3204, 3205, 3, 1053, 526, 0, 3205, 3206, 3, 1065, - 532, 0, 3206, 3207, 3, 1061, 530, 0, 3207, 452, 1, 0, 0, 0, 3208, 3209, - 3, 1057, 528, 0, 3209, 3210, 3, 1081, 540, 0, 3210, 3211, 3, 1075, 537, - 0, 3211, 3212, 3, 1075, 537, 0, 3212, 3213, 3, 1061, 530, 0, 3213, 3214, - 3, 1057, 528, 0, 3214, 3215, 3, 1091, 545, 0, 3215, 3216, 3, 1069, 534, - 0, 3216, 3217, 3, 1081, 540, 0, 3217, 3218, 3, 1079, 539, 0, 3218, 454, - 1, 0, 0, 0, 3219, 3220, 3, 1089, 544, 0, 3220, 3221, 3, 1091, 545, 0, 3221, - 3222, 3, 1053, 526, 0, 3222, 3223, 3, 1091, 545, 0, 3223, 3224, 3, 1069, - 534, 0, 3224, 3225, 3, 1057, 528, 0, 3225, 3226, 3, 1069, 534, 0, 3226, - 3227, 3, 1077, 538, 0, 3227, 3228, 3, 1053, 526, 0, 3228, 3229, 3, 1065, - 532, 0, 3229, 3230, 3, 1061, 530, 0, 3230, 456, 1, 0, 0, 0, 3231, 3232, - 3, 1059, 529, 0, 3232, 3233, 3, 1101, 550, 0, 3233, 3234, 3, 1079, 539, - 0, 3234, 3235, 3, 1053, 526, 0, 3235, 3236, 3, 1077, 538, 0, 3236, 3237, - 3, 1069, 534, 0, 3237, 3238, 3, 1057, 528, 0, 3238, 3239, 3, 1069, 534, - 0, 3239, 3240, 3, 1077, 538, 0, 3240, 3241, 3, 1053, 526, 0, 3241, 3242, - 3, 1065, 532, 0, 3242, 3243, 3, 1061, 530, 0, 3243, 458, 1, 0, 0, 0, 3244, - 3245, 3, 1057, 528, 0, 3245, 3246, 3, 1093, 546, 0, 3246, 3247, 3, 1089, - 544, 0, 3247, 3248, 3, 1091, 545, 0, 3248, 3249, 3, 1081, 540, 0, 3249, - 3250, 3, 1077, 538, 0, 3250, 3251, 3, 1057, 528, 0, 3251, 3252, 3, 1081, - 540, 0, 3252, 3253, 3, 1079, 539, 0, 3253, 3254, 3, 1091, 545, 0, 3254, - 3255, 3, 1053, 526, 0, 3255, 3256, 3, 1069, 534, 0, 3256, 3257, 3, 1079, - 539, 0, 3257, 3258, 3, 1061, 530, 0, 3258, 3259, 3, 1087, 543, 0, 3259, - 460, 1, 0, 0, 0, 3260, 3261, 3, 1065, 532, 0, 3261, 3262, 3, 1087, 543, - 0, 3262, 3263, 3, 1081, 540, 0, 3263, 3264, 3, 1093, 546, 0, 3264, 3265, - 3, 1083, 541, 0, 3265, 3266, 3, 1055, 527, 0, 3266, 3267, 3, 1081, 540, - 0, 3267, 3268, 3, 1099, 549, 0, 3268, 462, 1, 0, 0, 0, 3269, 3270, 3, 1095, - 547, 0, 3270, 3271, 3, 1069, 534, 0, 3271, 3272, 3, 1089, 544, 0, 3272, - 3273, 3, 1069, 534, 0, 3273, 3274, 3, 1055, 527, 0, 3274, 3275, 3, 1075, - 537, 0, 3275, 3276, 3, 1061, 530, 0, 3276, 464, 1, 0, 0, 0, 3277, 3278, - 3, 1089, 544, 0, 3278, 3279, 3, 1053, 526, 0, 3279, 3280, 3, 1095, 547, - 0, 3280, 3281, 3, 1061, 530, 0, 3281, 3282, 3, 1057, 528, 0, 3282, 3283, - 3, 1067, 533, 0, 3283, 3284, 3, 1053, 526, 0, 3284, 3285, 3, 1079, 539, - 0, 3285, 3286, 3, 1065, 532, 0, 3286, 3287, 3, 1061, 530, 0, 3287, 3288, - 3, 1089, 544, 0, 3288, 466, 1, 0, 0, 0, 3289, 3290, 3, 1089, 544, 0, 3290, - 3291, 3, 1053, 526, 0, 3291, 3292, 3, 1095, 547, 0, 3292, 3293, 3, 1061, - 530, 0, 3293, 3294, 5, 95, 0, 0, 3294, 3295, 3, 1057, 528, 0, 3295, 3296, - 3, 1067, 533, 0, 3296, 3297, 3, 1053, 526, 0, 3297, 3298, 3, 1079, 539, - 0, 3298, 3299, 3, 1065, 532, 0, 3299, 3300, 3, 1061, 530, 0, 3300, 3301, - 3, 1089, 544, 0, 3301, 468, 1, 0, 0, 0, 3302, 3303, 3, 1057, 528, 0, 3303, - 3304, 3, 1053, 526, 0, 3304, 3305, 3, 1079, 539, 0, 3305, 3306, 3, 1057, - 528, 0, 3306, 3307, 3, 1061, 530, 0, 3307, 3308, 3, 1075, 537, 0, 3308, - 3309, 5, 95, 0, 0, 3309, 3310, 3, 1057, 528, 0, 3310, 3311, 3, 1067, 533, - 0, 3311, 3312, 3, 1053, 526, 0, 3312, 3313, 3, 1079, 539, 0, 3313, 3314, - 3, 1065, 532, 0, 3314, 3315, 3, 1061, 530, 0, 3315, 3316, 3, 1089, 544, - 0, 3316, 470, 1, 0, 0, 0, 3317, 3318, 3, 1057, 528, 0, 3318, 3319, 3, 1075, - 537, 0, 3319, 3320, 3, 1081, 540, 0, 3320, 3321, 3, 1089, 544, 0, 3321, - 3322, 3, 1061, 530, 0, 3322, 3323, 5, 95, 0, 0, 3323, 3324, 3, 1083, 541, - 0, 3324, 3325, 3, 1053, 526, 0, 3325, 3326, 3, 1065, 532, 0, 3326, 3327, - 3, 1061, 530, 0, 3327, 472, 1, 0, 0, 0, 3328, 3329, 3, 1089, 544, 0, 3329, - 3330, 3, 1067, 533, 0, 3330, 3331, 3, 1081, 540, 0, 3331, 3332, 3, 1097, - 548, 0, 3332, 3333, 5, 95, 0, 0, 3333, 3334, 3, 1083, 541, 0, 3334, 3335, - 3, 1053, 526, 0, 3335, 3336, 3, 1065, 532, 0, 3336, 3337, 3, 1061, 530, - 0, 3337, 474, 1, 0, 0, 0, 3338, 3339, 3, 1059, 529, 0, 3339, 3340, 3, 1061, - 530, 0, 3340, 3341, 3, 1075, 537, 0, 3341, 3342, 3, 1061, 530, 0, 3342, - 3343, 3, 1091, 545, 0, 3343, 3344, 3, 1061, 530, 0, 3344, 3345, 5, 95, - 0, 0, 3345, 3346, 3, 1053, 526, 0, 3346, 3347, 3, 1057, 528, 0, 3347, 3348, - 3, 1091, 545, 0, 3348, 3349, 3, 1069, 534, 0, 3349, 3350, 3, 1081, 540, - 0, 3350, 3351, 3, 1079, 539, 0, 3351, 476, 1, 0, 0, 0, 3352, 3353, 3, 1059, - 529, 0, 3353, 3354, 3, 1061, 530, 0, 3354, 3355, 3, 1075, 537, 0, 3355, - 3356, 3, 1061, 530, 0, 3356, 3357, 3, 1091, 545, 0, 3357, 3358, 3, 1061, - 530, 0, 3358, 3359, 5, 95, 0, 0, 3359, 3360, 3, 1081, 540, 0, 3360, 3361, - 3, 1055, 527, 0, 3361, 3362, 3, 1071, 535, 0, 3362, 3363, 3, 1061, 530, - 0, 3363, 3364, 3, 1057, 528, 0, 3364, 3365, 3, 1091, 545, 0, 3365, 478, - 1, 0, 0, 0, 3366, 3367, 3, 1057, 528, 0, 3367, 3368, 3, 1087, 543, 0, 3368, - 3369, 3, 1061, 530, 0, 3369, 3370, 3, 1053, 526, 0, 3370, 3371, 3, 1091, - 545, 0, 3371, 3372, 3, 1061, 530, 0, 3372, 3373, 5, 95, 0, 0, 3373, 3374, - 3, 1081, 540, 0, 3374, 3375, 3, 1055, 527, 0, 3375, 3376, 3, 1071, 535, - 0, 3376, 3377, 3, 1061, 530, 0, 3377, 3378, 3, 1057, 528, 0, 3378, 3379, - 3, 1091, 545, 0, 3379, 480, 1, 0, 0, 0, 3380, 3381, 3, 1057, 528, 0, 3381, - 3382, 3, 1053, 526, 0, 3382, 3383, 3, 1075, 537, 0, 3383, 3384, 3, 1075, - 537, 0, 3384, 3385, 5, 95, 0, 0, 3385, 3386, 3, 1077, 538, 0, 3386, 3387, - 3, 1069, 534, 0, 3387, 3388, 3, 1057, 528, 0, 3388, 3389, 3, 1087, 543, - 0, 3389, 3390, 3, 1081, 540, 0, 3390, 3391, 3, 1063, 531, 0, 3391, 3392, - 3, 1075, 537, 0, 3392, 3393, 3, 1081, 540, 0, 3393, 3394, 3, 1097, 548, - 0, 3394, 482, 1, 0, 0, 0, 3395, 3396, 3, 1057, 528, 0, 3396, 3397, 3, 1053, - 526, 0, 3397, 3398, 3, 1075, 537, 0, 3398, 3399, 3, 1075, 537, 0, 3399, - 3400, 5, 95, 0, 0, 3400, 3401, 3, 1079, 539, 0, 3401, 3402, 3, 1053, 526, - 0, 3402, 3403, 3, 1079, 539, 0, 3403, 3404, 3, 1081, 540, 0, 3404, 3405, - 3, 1063, 531, 0, 3405, 3406, 3, 1075, 537, 0, 3406, 3407, 3, 1081, 540, - 0, 3407, 3408, 3, 1097, 548, 0, 3408, 484, 1, 0, 0, 0, 3409, 3410, 3, 1081, - 540, 0, 3410, 3411, 3, 1083, 541, 0, 3411, 3412, 3, 1061, 530, 0, 3412, - 3413, 3, 1079, 539, 0, 3413, 3414, 5, 95, 0, 0, 3414, 3415, 3, 1075, 537, - 0, 3415, 3416, 3, 1069, 534, 0, 3416, 3417, 3, 1079, 539, 0, 3417, 3418, - 3, 1073, 536, 0, 3418, 486, 1, 0, 0, 0, 3419, 3420, 3, 1089, 544, 0, 3420, - 3421, 3, 1069, 534, 0, 3421, 3422, 3, 1065, 532, 0, 3422, 3423, 3, 1079, - 539, 0, 3423, 3424, 5, 95, 0, 0, 3424, 3425, 3, 1081, 540, 0, 3425, 3426, - 3, 1093, 546, 0, 3426, 3427, 3, 1091, 545, 0, 3427, 488, 1, 0, 0, 0, 3428, - 3429, 3, 1057, 528, 0, 3429, 3430, 3, 1053, 526, 0, 3430, 3431, 3, 1079, - 539, 0, 3431, 3432, 3, 1057, 528, 0, 3432, 3433, 3, 1061, 530, 0, 3433, - 3434, 3, 1075, 537, 0, 3434, 490, 1, 0, 0, 0, 3435, 3436, 3, 1083, 541, - 0, 3436, 3437, 3, 1087, 543, 0, 3437, 3438, 3, 1069, 534, 0, 3438, 3439, - 3, 1077, 538, 0, 3439, 3440, 3, 1053, 526, 0, 3440, 3441, 3, 1087, 543, - 0, 3441, 3442, 3, 1101, 550, 0, 3442, 492, 1, 0, 0, 0, 3443, 3444, 3, 1089, - 544, 0, 3444, 3445, 3, 1093, 546, 0, 3445, 3446, 3, 1057, 528, 0, 3446, - 3447, 3, 1057, 528, 0, 3447, 3448, 3, 1061, 530, 0, 3448, 3449, 3, 1089, - 544, 0, 3449, 3450, 3, 1089, 544, 0, 3450, 494, 1, 0, 0, 0, 3451, 3452, - 3, 1059, 529, 0, 3452, 3453, 3, 1053, 526, 0, 3453, 3454, 3, 1079, 539, - 0, 3454, 3455, 3, 1065, 532, 0, 3455, 3456, 3, 1061, 530, 0, 3456, 3457, - 3, 1087, 543, 0, 3457, 496, 1, 0, 0, 0, 3458, 3459, 3, 1097, 548, 0, 3459, - 3460, 3, 1053, 526, 0, 3460, 3461, 3, 1087, 543, 0, 3461, 3462, 3, 1079, - 539, 0, 3462, 3463, 3, 1069, 534, 0, 3463, 3464, 3, 1079, 539, 0, 3464, - 3465, 3, 1065, 532, 0, 3465, 498, 1, 0, 0, 0, 3466, 3467, 3, 1069, 534, - 0, 3467, 3468, 3, 1079, 539, 0, 3468, 3469, 3, 1063, 531, 0, 3469, 3470, - 3, 1081, 540, 0, 3470, 500, 1, 0, 0, 0, 3471, 3472, 3, 1091, 545, 0, 3472, - 3473, 3, 1061, 530, 0, 3473, 3474, 3, 1077, 538, 0, 3474, 3475, 3, 1083, - 541, 0, 3475, 3476, 3, 1075, 537, 0, 3476, 3477, 3, 1053, 526, 0, 3477, - 3478, 3, 1091, 545, 0, 3478, 3479, 3, 1061, 530, 0, 3479, 502, 1, 0, 0, - 0, 3480, 3481, 3, 1081, 540, 0, 3481, 3482, 3, 1079, 539, 0, 3482, 3483, - 3, 1057, 528, 0, 3483, 3484, 3, 1075, 537, 0, 3484, 3485, 3, 1069, 534, - 0, 3485, 3486, 3, 1057, 528, 0, 3486, 3487, 3, 1073, 536, 0, 3487, 504, - 1, 0, 0, 0, 3488, 3489, 3, 1081, 540, 0, 3489, 3490, 3, 1079, 539, 0, 3490, - 3491, 3, 1057, 528, 0, 3491, 3492, 3, 1067, 533, 0, 3492, 3493, 3, 1053, - 526, 0, 3493, 3494, 3, 1079, 539, 0, 3494, 3495, 3, 1065, 532, 0, 3495, - 3496, 3, 1061, 530, 0, 3496, 506, 1, 0, 0, 0, 3497, 3498, 3, 1091, 545, - 0, 3498, 3499, 3, 1053, 526, 0, 3499, 3500, 3, 1055, 527, 0, 3500, 3501, - 3, 1069, 534, 0, 3501, 3502, 3, 1079, 539, 0, 3502, 3503, 3, 1059, 529, - 0, 3503, 3504, 3, 1061, 530, 0, 3504, 3505, 3, 1099, 549, 0, 3505, 508, - 1, 0, 0, 0, 3506, 3507, 3, 1067, 533, 0, 3507, 3508, 5, 49, 0, 0, 3508, - 510, 1, 0, 0, 0, 3509, 3510, 3, 1067, 533, 0, 3510, 3511, 5, 50, 0, 0, - 3511, 512, 1, 0, 0, 0, 3512, 3513, 3, 1067, 533, 0, 3513, 3514, 5, 51, - 0, 0, 3514, 514, 1, 0, 0, 0, 3515, 3516, 3, 1067, 533, 0, 3516, 3517, 5, - 52, 0, 0, 3517, 516, 1, 0, 0, 0, 3518, 3519, 3, 1067, 533, 0, 3519, 3520, - 5, 53, 0, 0, 3520, 518, 1, 0, 0, 0, 3521, 3522, 3, 1067, 533, 0, 3522, - 3523, 5, 54, 0, 0, 3523, 520, 1, 0, 0, 0, 3524, 3525, 3, 1083, 541, 0, - 3525, 3526, 3, 1053, 526, 0, 3526, 3527, 3, 1087, 543, 0, 3527, 3528, 3, - 1053, 526, 0, 3528, 3529, 3, 1065, 532, 0, 3529, 3530, 3, 1087, 543, 0, - 3530, 3531, 3, 1053, 526, 0, 3531, 3532, 3, 1083, 541, 0, 3532, 3533, 3, - 1067, 533, 0, 3533, 522, 1, 0, 0, 0, 3534, 3535, 3, 1089, 544, 0, 3535, - 3536, 3, 1091, 545, 0, 3536, 3537, 3, 1087, 543, 0, 3537, 3538, 3, 1069, - 534, 0, 3538, 3539, 3, 1079, 539, 0, 3539, 3540, 3, 1065, 532, 0, 3540, - 524, 1, 0, 0, 0, 3541, 3542, 3, 1069, 534, 0, 3542, 3543, 3, 1079, 539, - 0, 3543, 3544, 3, 1091, 545, 0, 3544, 3545, 3, 1061, 530, 0, 3545, 3546, - 3, 1065, 532, 0, 3546, 3547, 3, 1061, 530, 0, 3547, 3548, 3, 1087, 543, - 0, 3548, 526, 1, 0, 0, 0, 3549, 3550, 3, 1075, 537, 0, 3550, 3551, 3, 1081, - 540, 0, 3551, 3552, 3, 1079, 539, 0, 3552, 3553, 3, 1065, 532, 0, 3553, - 528, 1, 0, 0, 0, 3554, 3555, 3, 1059, 529, 0, 3555, 3556, 3, 1061, 530, - 0, 3556, 3557, 3, 1057, 528, 0, 3557, 3558, 3, 1069, 534, 0, 3558, 3559, - 3, 1077, 538, 0, 3559, 3560, 3, 1053, 526, 0, 3560, 3561, 3, 1075, 537, - 0, 3561, 530, 1, 0, 0, 0, 3562, 3563, 3, 1055, 527, 0, 3563, 3564, 3, 1081, - 540, 0, 3564, 3565, 3, 1081, 540, 0, 3565, 3566, 3, 1075, 537, 0, 3566, - 3567, 3, 1061, 530, 0, 3567, 3568, 3, 1053, 526, 0, 3568, 3569, 3, 1079, - 539, 0, 3569, 532, 1, 0, 0, 0, 3570, 3571, 3, 1059, 529, 0, 3571, 3572, - 3, 1053, 526, 0, 3572, 3573, 3, 1091, 545, 0, 3573, 3574, 3, 1061, 530, - 0, 3574, 3575, 3, 1091, 545, 0, 3575, 3576, 3, 1069, 534, 0, 3576, 3577, - 3, 1077, 538, 0, 3577, 3578, 3, 1061, 530, 0, 3578, 534, 1, 0, 0, 0, 3579, - 3580, 3, 1059, 529, 0, 3580, 3581, 3, 1053, 526, 0, 3581, 3582, 3, 1091, - 545, 0, 3582, 3583, 3, 1061, 530, 0, 3583, 536, 1, 0, 0, 0, 3584, 3585, - 3, 1053, 526, 0, 3585, 3586, 3, 1093, 546, 0, 3586, 3587, 3, 1091, 545, - 0, 3587, 3588, 3, 1081, 540, 0, 3588, 3589, 3, 1079, 539, 0, 3589, 3590, - 3, 1093, 546, 0, 3590, 3591, 3, 1077, 538, 0, 3591, 3592, 3, 1055, 527, - 0, 3592, 3593, 3, 1061, 530, 0, 3593, 3594, 3, 1087, 543, 0, 3594, 538, - 1, 0, 0, 0, 3595, 3596, 3, 1055, 527, 0, 3596, 3597, 3, 1069, 534, 0, 3597, - 3598, 3, 1079, 539, 0, 3598, 3599, 3, 1053, 526, 0, 3599, 3600, 3, 1087, - 543, 0, 3600, 3601, 3, 1101, 550, 0, 3601, 540, 1, 0, 0, 0, 3602, 3603, - 3, 1067, 533, 0, 3603, 3604, 3, 1053, 526, 0, 3604, 3605, 3, 1089, 544, - 0, 3605, 3606, 3, 1067, 533, 0, 3606, 3607, 3, 1061, 530, 0, 3607, 3608, - 3, 1059, 529, 0, 3608, 3609, 3, 1089, 544, 0, 3609, 3610, 3, 1091, 545, - 0, 3610, 3611, 3, 1087, 543, 0, 3611, 3612, 3, 1069, 534, 0, 3612, 3613, - 3, 1079, 539, 0, 3613, 3614, 3, 1065, 532, 0, 3614, 542, 1, 0, 0, 0, 3615, - 3616, 3, 1057, 528, 0, 3616, 3617, 3, 1093, 546, 0, 3617, 3618, 3, 1087, - 543, 0, 3618, 3619, 3, 1087, 543, 0, 3619, 3620, 3, 1061, 530, 0, 3620, - 3621, 3, 1079, 539, 0, 3621, 3622, 3, 1057, 528, 0, 3622, 3623, 3, 1101, - 550, 0, 3623, 544, 1, 0, 0, 0, 3624, 3625, 3, 1063, 531, 0, 3625, 3626, - 3, 1075, 537, 0, 3626, 3627, 3, 1081, 540, 0, 3627, 3628, 3, 1053, 526, - 0, 3628, 3629, 3, 1091, 545, 0, 3629, 546, 1, 0, 0, 0, 3630, 3631, 3, 1089, - 544, 0, 3631, 3632, 3, 1091, 545, 0, 3632, 3633, 3, 1087, 543, 0, 3633, - 3634, 3, 1069, 534, 0, 3634, 3635, 3, 1079, 539, 0, 3635, 3636, 3, 1065, - 532, 0, 3636, 3637, 3, 1091, 545, 0, 3637, 3638, 3, 1061, 530, 0, 3638, - 3639, 3, 1077, 538, 0, 3639, 3640, 3, 1083, 541, 0, 3640, 3641, 3, 1075, - 537, 0, 3641, 3642, 3, 1053, 526, 0, 3642, 3643, 3, 1091, 545, 0, 3643, - 3644, 3, 1061, 530, 0, 3644, 548, 1, 0, 0, 0, 3645, 3646, 3, 1061, 530, - 0, 3646, 3647, 3, 1079, 539, 0, 3647, 3648, 3, 1093, 546, 0, 3648, 3649, - 3, 1077, 538, 0, 3649, 550, 1, 0, 0, 0, 3650, 3651, 3, 1057, 528, 0, 3651, - 3652, 3, 1081, 540, 0, 3652, 3653, 3, 1093, 546, 0, 3653, 3654, 3, 1079, - 539, 0, 3654, 3655, 3, 1091, 545, 0, 3655, 552, 1, 0, 0, 0, 3656, 3657, - 3, 1089, 544, 0, 3657, 3658, 3, 1093, 546, 0, 3658, 3659, 3, 1077, 538, - 0, 3659, 554, 1, 0, 0, 0, 3660, 3661, 3, 1053, 526, 0, 3661, 3662, 3, 1095, - 547, 0, 3662, 3663, 3, 1065, 532, 0, 3663, 556, 1, 0, 0, 0, 3664, 3665, - 3, 1077, 538, 0, 3665, 3666, 3, 1069, 534, 0, 3666, 3667, 3, 1079, 539, - 0, 3667, 558, 1, 0, 0, 0, 3668, 3669, 3, 1077, 538, 0, 3669, 3670, 3, 1053, - 526, 0, 3670, 3671, 3, 1099, 549, 0, 3671, 560, 1, 0, 0, 0, 3672, 3673, - 3, 1075, 537, 0, 3673, 3674, 3, 1061, 530, 0, 3674, 3675, 3, 1079, 539, - 0, 3675, 3676, 3, 1065, 532, 0, 3676, 3677, 3, 1091, 545, 0, 3677, 3678, - 3, 1067, 533, 0, 3678, 562, 1, 0, 0, 0, 3679, 3680, 3, 1091, 545, 0, 3680, - 3681, 3, 1087, 543, 0, 3681, 3682, 3, 1069, 534, 0, 3682, 3683, 3, 1077, - 538, 0, 3683, 564, 1, 0, 0, 0, 3684, 3685, 3, 1057, 528, 0, 3685, 3686, - 3, 1081, 540, 0, 3686, 3687, 3, 1053, 526, 0, 3687, 3688, 3, 1075, 537, - 0, 3688, 3689, 3, 1061, 530, 0, 3689, 3690, 3, 1089, 544, 0, 3690, 3691, - 3, 1057, 528, 0, 3691, 3692, 3, 1061, 530, 0, 3692, 566, 1, 0, 0, 0, 3693, - 3694, 3, 1057, 528, 0, 3694, 3695, 3, 1053, 526, 0, 3695, 3696, 3, 1089, - 544, 0, 3696, 3697, 3, 1091, 545, 0, 3697, 568, 1, 0, 0, 0, 3698, 3699, - 3, 1053, 526, 0, 3699, 3700, 3, 1079, 539, 0, 3700, 3701, 3, 1059, 529, - 0, 3701, 570, 1, 0, 0, 0, 3702, 3703, 3, 1081, 540, 0, 3703, 3704, 3, 1087, - 543, 0, 3704, 572, 1, 0, 0, 0, 3705, 3706, 3, 1079, 539, 0, 3706, 3707, - 3, 1081, 540, 0, 3707, 3708, 3, 1091, 545, 0, 3708, 574, 1, 0, 0, 0, 3709, - 3710, 3, 1079, 539, 0, 3710, 3711, 3, 1093, 546, 0, 3711, 3712, 3, 1075, - 537, 0, 3712, 3713, 3, 1075, 537, 0, 3713, 576, 1, 0, 0, 0, 3714, 3715, - 3, 1069, 534, 0, 3715, 3716, 3, 1079, 539, 0, 3716, 578, 1, 0, 0, 0, 3717, - 3718, 3, 1055, 527, 0, 3718, 3719, 3, 1061, 530, 0, 3719, 3720, 3, 1091, - 545, 0, 3720, 3721, 3, 1097, 548, 0, 3721, 3722, 3, 1061, 530, 0, 3722, - 3723, 3, 1061, 530, 0, 3723, 3724, 3, 1079, 539, 0, 3724, 580, 1, 0, 0, - 0, 3725, 3726, 3, 1075, 537, 0, 3726, 3727, 3, 1069, 534, 0, 3727, 3728, - 3, 1073, 536, 0, 3728, 3729, 3, 1061, 530, 0, 3729, 582, 1, 0, 0, 0, 3730, - 3731, 3, 1077, 538, 0, 3731, 3732, 3, 1053, 526, 0, 3732, 3733, 3, 1091, - 545, 0, 3733, 3734, 3, 1057, 528, 0, 3734, 3735, 3, 1067, 533, 0, 3735, - 584, 1, 0, 0, 0, 3736, 3737, 3, 1061, 530, 0, 3737, 3738, 3, 1099, 549, - 0, 3738, 3739, 3, 1069, 534, 0, 3739, 3740, 3, 1089, 544, 0, 3740, 3741, - 3, 1091, 545, 0, 3741, 3742, 3, 1089, 544, 0, 3742, 586, 1, 0, 0, 0, 3743, - 3744, 3, 1093, 546, 0, 3744, 3745, 3, 1079, 539, 0, 3745, 3746, 3, 1069, - 534, 0, 3746, 3747, 3, 1085, 542, 0, 3747, 3748, 3, 1093, 546, 0, 3748, - 3749, 3, 1061, 530, 0, 3749, 588, 1, 0, 0, 0, 3750, 3751, 3, 1059, 529, - 0, 3751, 3752, 3, 1061, 530, 0, 3752, 3753, 3, 1063, 531, 0, 3753, 3754, - 3, 1053, 526, 0, 3754, 3755, 3, 1093, 546, 0, 3755, 3756, 3, 1075, 537, - 0, 3756, 3757, 3, 1091, 545, 0, 3757, 590, 1, 0, 0, 0, 3758, 3759, 3, 1091, - 545, 0, 3759, 3760, 3, 1087, 543, 0, 3760, 3761, 3, 1093, 546, 0, 3761, - 3762, 3, 1061, 530, 0, 3762, 592, 1, 0, 0, 0, 3763, 3764, 3, 1063, 531, - 0, 3764, 3765, 3, 1053, 526, 0, 3765, 3766, 3, 1075, 537, 0, 3766, 3767, - 3, 1089, 544, 0, 3767, 3768, 3, 1061, 530, 0, 3768, 594, 1, 0, 0, 0, 3769, - 3770, 3, 1095, 547, 0, 3770, 3771, 3, 1053, 526, 0, 3771, 3772, 3, 1075, - 537, 0, 3772, 3773, 3, 1069, 534, 0, 3773, 3774, 3, 1059, 529, 0, 3774, - 3775, 3, 1053, 526, 0, 3775, 3776, 3, 1091, 545, 0, 3776, 3777, 3, 1069, - 534, 0, 3777, 3778, 3, 1081, 540, 0, 3778, 3779, 3, 1079, 539, 0, 3779, - 596, 1, 0, 0, 0, 3780, 3781, 3, 1063, 531, 0, 3781, 3782, 3, 1061, 530, - 0, 3782, 3783, 3, 1061, 530, 0, 3783, 3784, 3, 1059, 529, 0, 3784, 3785, - 3, 1055, 527, 0, 3785, 3786, 3, 1053, 526, 0, 3786, 3787, 3, 1057, 528, - 0, 3787, 3788, 3, 1073, 536, 0, 3788, 598, 1, 0, 0, 0, 3789, 3790, 3, 1087, - 543, 0, 3790, 3791, 3, 1093, 546, 0, 3791, 3792, 3, 1075, 537, 0, 3792, - 3793, 3, 1061, 530, 0, 3793, 600, 1, 0, 0, 0, 3794, 3795, 3, 1087, 543, - 0, 3795, 3796, 3, 1061, 530, 0, 3796, 3797, 3, 1085, 542, 0, 3797, 3798, - 3, 1093, 546, 0, 3798, 3799, 3, 1069, 534, 0, 3799, 3800, 3, 1087, 543, - 0, 3800, 3801, 3, 1061, 530, 0, 3801, 3802, 3, 1059, 529, 0, 3802, 602, - 1, 0, 0, 0, 3803, 3804, 3, 1061, 530, 0, 3804, 3805, 3, 1087, 543, 0, 3805, - 3806, 3, 1087, 543, 0, 3806, 3807, 3, 1081, 540, 0, 3807, 3808, 3, 1087, - 543, 0, 3808, 604, 1, 0, 0, 0, 3809, 3810, 3, 1087, 543, 0, 3810, 3811, - 3, 1053, 526, 0, 3811, 3812, 3, 1069, 534, 0, 3812, 3813, 3, 1089, 544, - 0, 3813, 3814, 3, 1061, 530, 0, 3814, 606, 1, 0, 0, 0, 3815, 3816, 3, 1087, - 543, 0, 3816, 3817, 3, 1053, 526, 0, 3817, 3818, 3, 1079, 539, 0, 3818, - 3819, 3, 1065, 532, 0, 3819, 3820, 3, 1061, 530, 0, 3820, 608, 1, 0, 0, - 0, 3821, 3822, 3, 1087, 543, 0, 3822, 3823, 3, 1061, 530, 0, 3823, 3824, - 3, 1065, 532, 0, 3824, 3825, 3, 1061, 530, 0, 3825, 3826, 3, 1099, 549, - 0, 3826, 610, 1, 0, 0, 0, 3827, 3828, 3, 1083, 541, 0, 3828, 3829, 3, 1053, - 526, 0, 3829, 3830, 3, 1091, 545, 0, 3830, 3831, 3, 1091, 545, 0, 3831, - 3832, 3, 1061, 530, 0, 3832, 3833, 3, 1087, 543, 0, 3833, 3834, 3, 1079, - 539, 0, 3834, 612, 1, 0, 0, 0, 3835, 3836, 3, 1061, 530, 0, 3836, 3837, - 3, 1099, 549, 0, 3837, 3838, 3, 1083, 541, 0, 3838, 3839, 3, 1087, 543, - 0, 3839, 3840, 3, 1061, 530, 0, 3840, 3841, 3, 1089, 544, 0, 3841, 3842, - 3, 1089, 544, 0, 3842, 3843, 3, 1069, 534, 0, 3843, 3844, 3, 1081, 540, - 0, 3844, 3845, 3, 1079, 539, 0, 3845, 614, 1, 0, 0, 0, 3846, 3847, 3, 1099, - 549, 0, 3847, 3848, 3, 1083, 541, 0, 3848, 3849, 3, 1053, 526, 0, 3849, - 3850, 3, 1091, 545, 0, 3850, 3851, 3, 1067, 533, 0, 3851, 616, 1, 0, 0, - 0, 3852, 3853, 3, 1057, 528, 0, 3853, 3854, 3, 1081, 540, 0, 3854, 3855, - 3, 1079, 539, 0, 3855, 3856, 3, 1089, 544, 0, 3856, 3857, 3, 1091, 545, - 0, 3857, 3858, 3, 1087, 543, 0, 3858, 3859, 3, 1053, 526, 0, 3859, 3860, - 3, 1069, 534, 0, 3860, 3861, 3, 1079, 539, 0, 3861, 3862, 3, 1091, 545, - 0, 3862, 618, 1, 0, 0, 0, 3863, 3864, 3, 1057, 528, 0, 3864, 3865, 3, 1053, - 526, 0, 3865, 3866, 3, 1075, 537, 0, 3866, 3867, 3, 1057, 528, 0, 3867, - 3868, 3, 1093, 546, 0, 3868, 3869, 3, 1075, 537, 0, 3869, 3870, 3, 1053, - 526, 0, 3870, 3871, 3, 1091, 545, 0, 3871, 3872, 3, 1061, 530, 0, 3872, - 3873, 3, 1059, 529, 0, 3873, 620, 1, 0, 0, 0, 3874, 3875, 3, 1087, 543, - 0, 3875, 3876, 3, 1061, 530, 0, 3876, 3877, 3, 1089, 544, 0, 3877, 3878, - 3, 1091, 545, 0, 3878, 622, 1, 0, 0, 0, 3879, 3880, 3, 1089, 544, 0, 3880, - 3881, 3, 1061, 530, 0, 3881, 3882, 3, 1087, 543, 0, 3882, 3883, 3, 1095, - 547, 0, 3883, 3884, 3, 1069, 534, 0, 3884, 3885, 3, 1057, 528, 0, 3885, - 3886, 3, 1061, 530, 0, 3886, 624, 1, 0, 0, 0, 3887, 3888, 3, 1089, 544, - 0, 3888, 3889, 3, 1061, 530, 0, 3889, 3890, 3, 1087, 543, 0, 3890, 3891, - 3, 1095, 547, 0, 3891, 3892, 3, 1069, 534, 0, 3892, 3893, 3, 1057, 528, - 0, 3893, 3894, 3, 1061, 530, 0, 3894, 3895, 3, 1089, 544, 0, 3895, 626, - 1, 0, 0, 0, 3896, 3897, 3, 1081, 540, 0, 3897, 3898, 3, 1059, 529, 0, 3898, - 3899, 3, 1053, 526, 0, 3899, 3900, 3, 1091, 545, 0, 3900, 3901, 3, 1053, - 526, 0, 3901, 628, 1, 0, 0, 0, 3902, 3903, 3, 1055, 527, 0, 3903, 3904, - 3, 1053, 526, 0, 3904, 3905, 3, 1089, 544, 0, 3905, 3906, 3, 1061, 530, - 0, 3906, 630, 1, 0, 0, 0, 3907, 3908, 3, 1053, 526, 0, 3908, 3909, 3, 1093, - 546, 0, 3909, 3910, 3, 1091, 545, 0, 3910, 3911, 3, 1067, 533, 0, 3911, - 632, 1, 0, 0, 0, 3912, 3913, 3, 1053, 526, 0, 3913, 3914, 3, 1093, 546, - 0, 3914, 3915, 3, 1091, 545, 0, 3915, 3916, 3, 1067, 533, 0, 3916, 3917, - 3, 1061, 530, 0, 3917, 3918, 3, 1079, 539, 0, 3918, 3919, 3, 1091, 545, - 0, 3919, 3920, 3, 1069, 534, 0, 3920, 3921, 3, 1057, 528, 0, 3921, 3922, - 3, 1053, 526, 0, 3922, 3923, 3, 1091, 545, 0, 3923, 3924, 3, 1069, 534, - 0, 3924, 3925, 3, 1081, 540, 0, 3925, 3926, 3, 1079, 539, 0, 3926, 634, - 1, 0, 0, 0, 3927, 3928, 3, 1055, 527, 0, 3928, 3929, 3, 1053, 526, 0, 3929, - 3930, 3, 1089, 544, 0, 3930, 3931, 3, 1069, 534, 0, 3931, 3932, 3, 1057, - 528, 0, 3932, 636, 1, 0, 0, 0, 3933, 3934, 3, 1079, 539, 0, 3934, 3935, - 3, 1081, 540, 0, 3935, 3936, 3, 1091, 545, 0, 3936, 3937, 3, 1067, 533, - 0, 3937, 3938, 3, 1069, 534, 0, 3938, 3939, 3, 1079, 539, 0, 3939, 3940, - 3, 1065, 532, 0, 3940, 638, 1, 0, 0, 0, 3941, 3942, 3, 1081, 540, 0, 3942, - 3943, 3, 1053, 526, 0, 3943, 3944, 3, 1093, 546, 0, 3944, 3945, 3, 1091, - 545, 0, 3945, 3946, 3, 1067, 533, 0, 3946, 640, 1, 0, 0, 0, 3947, 3948, - 3, 1081, 540, 0, 3948, 3949, 3, 1083, 541, 0, 3949, 3950, 3, 1061, 530, - 0, 3950, 3951, 3, 1087, 543, 0, 3951, 3952, 3, 1053, 526, 0, 3952, 3953, - 3, 1091, 545, 0, 3953, 3954, 3, 1069, 534, 0, 3954, 3955, 3, 1081, 540, - 0, 3955, 3956, 3, 1079, 539, 0, 3956, 642, 1, 0, 0, 0, 3957, 3958, 3, 1077, - 538, 0, 3958, 3959, 3, 1061, 530, 0, 3959, 3960, 3, 1091, 545, 0, 3960, - 3961, 3, 1067, 533, 0, 3961, 3962, 3, 1081, 540, 0, 3962, 3963, 3, 1059, - 529, 0, 3963, 644, 1, 0, 0, 0, 3964, 3965, 3, 1083, 541, 0, 3965, 3966, - 3, 1053, 526, 0, 3966, 3967, 3, 1091, 545, 0, 3967, 3968, 3, 1067, 533, - 0, 3968, 646, 1, 0, 0, 0, 3969, 3970, 3, 1091, 545, 0, 3970, 3971, 3, 1069, - 534, 0, 3971, 3972, 3, 1077, 538, 0, 3972, 3973, 3, 1061, 530, 0, 3973, - 3974, 3, 1081, 540, 0, 3974, 3975, 3, 1093, 546, 0, 3975, 3976, 3, 1091, - 545, 0, 3976, 648, 1, 0, 0, 0, 3977, 3978, 3, 1055, 527, 0, 3978, 3979, - 3, 1081, 540, 0, 3979, 3980, 3, 1059, 529, 0, 3980, 3981, 3, 1101, 550, - 0, 3981, 650, 1, 0, 0, 0, 3982, 3983, 3, 1087, 543, 0, 3983, 3984, 3, 1061, - 530, 0, 3984, 3985, 3, 1089, 544, 0, 3985, 3986, 3, 1083, 541, 0, 3986, - 3987, 3, 1081, 540, 0, 3987, 3988, 3, 1079, 539, 0, 3988, 3989, 3, 1089, - 544, 0, 3989, 3990, 3, 1061, 530, 0, 3990, 652, 1, 0, 0, 0, 3991, 3992, - 3, 1087, 543, 0, 3992, 3993, 3, 1061, 530, 0, 3993, 3994, 3, 1085, 542, - 0, 3994, 3995, 3, 1093, 546, 0, 3995, 3996, 3, 1061, 530, 0, 3996, 3997, - 3, 1089, 544, 0, 3997, 3998, 3, 1091, 545, 0, 3998, 654, 1, 0, 0, 0, 3999, - 4000, 3, 1089, 544, 0, 4000, 4001, 3, 1061, 530, 0, 4001, 4002, 3, 1079, - 539, 0, 4002, 4003, 3, 1059, 529, 0, 4003, 656, 1, 0, 0, 0, 4004, 4005, - 3, 1071, 535, 0, 4005, 4006, 3, 1089, 544, 0, 4006, 4007, 3, 1081, 540, - 0, 4007, 4008, 3, 1079, 539, 0, 4008, 658, 1, 0, 0, 0, 4009, 4010, 3, 1099, - 549, 0, 4010, 4011, 3, 1077, 538, 0, 4011, 4012, 3, 1075, 537, 0, 4012, - 660, 1, 0, 0, 0, 4013, 4014, 3, 1089, 544, 0, 4014, 4015, 3, 1091, 545, - 0, 4015, 4016, 3, 1053, 526, 0, 4016, 4017, 3, 1091, 545, 0, 4017, 4018, - 3, 1093, 546, 0, 4018, 4019, 3, 1089, 544, 0, 4019, 662, 1, 0, 0, 0, 4020, - 4021, 3, 1063, 531, 0, 4021, 4022, 3, 1069, 534, 0, 4022, 4023, 3, 1075, - 537, 0, 4023, 4024, 3, 1061, 530, 0, 4024, 664, 1, 0, 0, 0, 4025, 4026, - 3, 1095, 547, 0, 4026, 4027, 3, 1061, 530, 0, 4027, 4028, 3, 1087, 543, - 0, 4028, 4029, 3, 1089, 544, 0, 4029, 4030, 3, 1069, 534, 0, 4030, 4031, - 3, 1081, 540, 0, 4031, 4032, 3, 1079, 539, 0, 4032, 666, 1, 0, 0, 0, 4033, - 4034, 3, 1065, 532, 0, 4034, 4035, 3, 1061, 530, 0, 4035, 4036, 3, 1091, - 545, 0, 4036, 668, 1, 0, 0, 0, 4037, 4038, 3, 1083, 541, 0, 4038, 4039, - 3, 1081, 540, 0, 4039, 4040, 3, 1089, 544, 0, 4040, 4041, 3, 1091, 545, - 0, 4041, 670, 1, 0, 0, 0, 4042, 4043, 3, 1083, 541, 0, 4043, 4044, 3, 1093, - 546, 0, 4044, 4045, 3, 1091, 545, 0, 4045, 672, 1, 0, 0, 0, 4046, 4047, - 3, 1083, 541, 0, 4047, 4048, 3, 1053, 526, 0, 4048, 4049, 3, 1091, 545, - 0, 4049, 4050, 3, 1057, 528, 0, 4050, 4051, 3, 1067, 533, 0, 4051, 674, - 1, 0, 0, 0, 4052, 4053, 3, 1053, 526, 0, 4053, 4054, 3, 1083, 541, 0, 4054, - 4055, 3, 1069, 534, 0, 4055, 676, 1, 0, 0, 0, 4056, 4057, 3, 1057, 528, - 0, 4057, 4058, 3, 1075, 537, 0, 4058, 4059, 3, 1069, 534, 0, 4059, 4060, - 3, 1061, 530, 0, 4060, 4061, 3, 1079, 539, 0, 4061, 4062, 3, 1091, 545, - 0, 4062, 678, 1, 0, 0, 0, 4063, 4064, 3, 1057, 528, 0, 4064, 4065, 3, 1075, - 537, 0, 4065, 4066, 3, 1069, 534, 0, 4066, 4067, 3, 1061, 530, 0, 4067, - 4068, 3, 1079, 539, 0, 4068, 4069, 3, 1091, 545, 0, 4069, 4070, 3, 1089, - 544, 0, 4070, 680, 1, 0, 0, 0, 4071, 4072, 3, 1083, 541, 0, 4072, 4073, - 3, 1093, 546, 0, 4073, 4074, 3, 1055, 527, 0, 4074, 4075, 3, 1075, 537, - 0, 4075, 4076, 3, 1069, 534, 0, 4076, 4077, 3, 1089, 544, 0, 4077, 4078, - 3, 1067, 533, 0, 4078, 682, 1, 0, 0, 0, 4079, 4080, 3, 1083, 541, 0, 4080, - 4081, 3, 1093, 546, 0, 4081, 4082, 3, 1055, 527, 0, 4082, 4083, 3, 1075, - 537, 0, 4083, 4084, 3, 1069, 534, 0, 4084, 4085, 3, 1089, 544, 0, 4085, - 4086, 3, 1067, 533, 0, 4086, 4087, 3, 1061, 530, 0, 4087, 4088, 3, 1059, - 529, 0, 4088, 684, 1, 0, 0, 0, 4089, 4090, 3, 1061, 530, 0, 4090, 4091, - 3, 1099, 549, 0, 4091, 4092, 3, 1083, 541, 0, 4092, 4093, 3, 1081, 540, - 0, 4093, 4094, 3, 1089, 544, 0, 4094, 4095, 3, 1061, 530, 0, 4095, 686, - 1, 0, 0, 0, 4096, 4097, 3, 1057, 528, 0, 4097, 4098, 3, 1081, 540, 0, 4098, - 4099, 3, 1079, 539, 0, 4099, 4100, 3, 1091, 545, 0, 4100, 4101, 3, 1087, - 543, 0, 4101, 4102, 3, 1053, 526, 0, 4102, 4103, 3, 1057, 528, 0, 4103, - 4104, 3, 1091, 545, 0, 4104, 688, 1, 0, 0, 0, 4105, 4106, 3, 1079, 539, - 0, 4106, 4107, 3, 1053, 526, 0, 4107, 4108, 3, 1077, 538, 0, 4108, 4109, - 3, 1061, 530, 0, 4109, 4110, 3, 1089, 544, 0, 4110, 4111, 3, 1083, 541, - 0, 4111, 4112, 3, 1053, 526, 0, 4112, 4113, 3, 1057, 528, 0, 4113, 4114, - 3, 1061, 530, 0, 4114, 690, 1, 0, 0, 0, 4115, 4116, 3, 1089, 544, 0, 4116, - 4117, 3, 1061, 530, 0, 4117, 4118, 3, 1089, 544, 0, 4118, 4119, 3, 1089, - 544, 0, 4119, 4120, 3, 1069, 534, 0, 4120, 4121, 3, 1081, 540, 0, 4121, - 4122, 3, 1079, 539, 0, 4122, 692, 1, 0, 0, 0, 4123, 4124, 3, 1065, 532, - 0, 4124, 4125, 3, 1093, 546, 0, 4125, 4126, 3, 1061, 530, 0, 4126, 4127, - 3, 1089, 544, 0, 4127, 4128, 3, 1091, 545, 0, 4128, 694, 1, 0, 0, 0, 4129, - 4130, 3, 1083, 541, 0, 4130, 4131, 3, 1053, 526, 0, 4131, 4132, 3, 1065, - 532, 0, 4132, 4133, 3, 1069, 534, 0, 4133, 4134, 3, 1079, 539, 0, 4134, - 4135, 3, 1065, 532, 0, 4135, 696, 1, 0, 0, 0, 4136, 4137, 3, 1079, 539, - 0, 4137, 4138, 3, 1081, 540, 0, 4138, 4139, 3, 1091, 545, 0, 4139, 4140, - 5, 95, 0, 0, 4140, 4141, 3, 1089, 544, 0, 4141, 4142, 3, 1093, 546, 0, - 4142, 4143, 3, 1083, 541, 0, 4143, 4144, 3, 1083, 541, 0, 4144, 4145, 3, - 1081, 540, 0, 4145, 4146, 3, 1087, 543, 0, 4146, 4147, 3, 1091, 545, 0, - 4147, 4148, 3, 1061, 530, 0, 4148, 4149, 3, 1059, 529, 0, 4149, 698, 1, - 0, 0, 0, 4150, 4151, 3, 1093, 546, 0, 4151, 4152, 3, 1089, 544, 0, 4152, - 4153, 3, 1061, 530, 0, 4153, 4154, 3, 1087, 543, 0, 4154, 4155, 3, 1079, - 539, 0, 4155, 4156, 3, 1053, 526, 0, 4156, 4157, 3, 1077, 538, 0, 4157, - 4158, 3, 1061, 530, 0, 4158, 700, 1, 0, 0, 0, 4159, 4160, 3, 1083, 541, - 0, 4160, 4161, 3, 1053, 526, 0, 4161, 4162, 3, 1089, 544, 0, 4162, 4163, - 3, 1089, 544, 0, 4163, 4164, 3, 1097, 548, 0, 4164, 4165, 3, 1081, 540, - 0, 4165, 4166, 3, 1087, 543, 0, 4166, 4167, 3, 1059, 529, 0, 4167, 702, - 1, 0, 0, 0, 4168, 4169, 3, 1057, 528, 0, 4169, 4170, 3, 1081, 540, 0, 4170, - 4171, 3, 1079, 539, 0, 4171, 4172, 3, 1079, 539, 0, 4172, 4173, 3, 1061, - 530, 0, 4173, 4174, 3, 1057, 528, 0, 4174, 4175, 3, 1091, 545, 0, 4175, - 4176, 3, 1069, 534, 0, 4176, 4177, 3, 1081, 540, 0, 4177, 4178, 3, 1079, - 539, 0, 4178, 704, 1, 0, 0, 0, 4179, 4180, 3, 1059, 529, 0, 4180, 4181, - 3, 1053, 526, 0, 4181, 4182, 3, 1091, 545, 0, 4182, 4183, 3, 1053, 526, - 0, 4183, 4184, 3, 1055, 527, 0, 4184, 4185, 3, 1053, 526, 0, 4185, 4186, - 3, 1089, 544, 0, 4186, 4187, 3, 1061, 530, 0, 4187, 706, 1, 0, 0, 0, 4188, - 4189, 3, 1085, 542, 0, 4189, 4190, 3, 1093, 546, 0, 4190, 4191, 3, 1061, - 530, 0, 4191, 4192, 3, 1087, 543, 0, 4192, 4193, 3, 1101, 550, 0, 4193, - 708, 1, 0, 0, 0, 4194, 4195, 3, 1077, 538, 0, 4195, 4196, 3, 1053, 526, - 0, 4196, 4197, 3, 1083, 541, 0, 4197, 710, 1, 0, 0, 0, 4198, 4199, 3, 1077, - 538, 0, 4199, 4200, 3, 1053, 526, 0, 4200, 4201, 3, 1083, 541, 0, 4201, - 4202, 3, 1083, 541, 0, 4202, 4203, 3, 1069, 534, 0, 4203, 4204, 3, 1079, - 539, 0, 4204, 4205, 3, 1065, 532, 0, 4205, 712, 1, 0, 0, 0, 4206, 4207, - 3, 1069, 534, 0, 4207, 4208, 3, 1077, 538, 0, 4208, 4209, 3, 1083, 541, - 0, 4209, 4210, 3, 1081, 540, 0, 4210, 4211, 3, 1087, 543, 0, 4211, 4212, - 3, 1091, 545, 0, 4212, 714, 1, 0, 0, 0, 4213, 4214, 3, 1069, 534, 0, 4214, - 4215, 3, 1079, 539, 0, 4215, 4216, 3, 1091, 545, 0, 4216, 4217, 3, 1081, - 540, 0, 4217, 716, 1, 0, 0, 0, 4218, 4219, 3, 1055, 527, 0, 4219, 4220, - 3, 1053, 526, 0, 4220, 4221, 3, 1091, 545, 0, 4221, 4222, 3, 1057, 528, - 0, 4222, 4223, 3, 1067, 533, 0, 4223, 718, 1, 0, 0, 0, 4224, 4225, 3, 1075, - 537, 0, 4225, 4226, 3, 1069, 534, 0, 4226, 4227, 3, 1079, 539, 0, 4227, - 4228, 3, 1073, 536, 0, 4228, 720, 1, 0, 0, 0, 4229, 4230, 3, 1061, 530, - 0, 4230, 4231, 3, 1099, 549, 0, 4231, 4232, 3, 1083, 541, 0, 4232, 4233, - 3, 1081, 540, 0, 4233, 4234, 3, 1087, 543, 0, 4234, 4235, 3, 1091, 545, - 0, 4235, 722, 1, 0, 0, 0, 4236, 4237, 3, 1065, 532, 0, 4237, 4238, 3, 1061, - 530, 0, 4238, 4239, 3, 1079, 539, 0, 4239, 4240, 3, 1061, 530, 0, 4240, - 4241, 3, 1087, 543, 0, 4241, 4242, 3, 1053, 526, 0, 4242, 4243, 3, 1091, - 545, 0, 4243, 4244, 3, 1061, 530, 0, 4244, 724, 1, 0, 0, 0, 4245, 4246, - 3, 1057, 528, 0, 4246, 4247, 3, 1081, 540, 0, 4247, 4248, 3, 1079, 539, - 0, 4248, 4249, 3, 1079, 539, 0, 4249, 4250, 3, 1061, 530, 0, 4250, 4251, - 3, 1057, 528, 0, 4251, 4252, 3, 1091, 545, 0, 4252, 4253, 3, 1081, 540, - 0, 4253, 4254, 3, 1087, 543, 0, 4254, 726, 1, 0, 0, 0, 4255, 4256, 3, 1061, - 530, 0, 4256, 4257, 3, 1099, 549, 0, 4257, 4258, 3, 1061, 530, 0, 4258, - 4259, 3, 1057, 528, 0, 4259, 728, 1, 0, 0, 0, 4260, 4261, 3, 1091, 545, - 0, 4261, 4262, 3, 1053, 526, 0, 4262, 4263, 3, 1055, 527, 0, 4263, 4264, - 3, 1075, 537, 0, 4264, 4265, 3, 1061, 530, 0, 4265, 4266, 3, 1089, 544, - 0, 4266, 730, 1, 0, 0, 0, 4267, 4268, 3, 1095, 547, 0, 4268, 4269, 3, 1069, - 534, 0, 4269, 4270, 3, 1061, 530, 0, 4270, 4271, 3, 1097, 548, 0, 4271, - 4272, 3, 1089, 544, 0, 4272, 732, 1, 0, 0, 0, 4273, 4274, 3, 1061, 530, - 0, 4274, 4275, 3, 1099, 549, 0, 4275, 4276, 3, 1083, 541, 0, 4276, 4277, - 3, 1081, 540, 0, 4277, 4278, 3, 1089, 544, 0, 4278, 4279, 3, 1061, 530, - 0, 4279, 4280, 3, 1059, 529, 0, 4280, 734, 1, 0, 0, 0, 4281, 4282, 3, 1083, - 541, 0, 4282, 4283, 3, 1053, 526, 0, 4283, 4284, 3, 1087, 543, 0, 4284, - 4285, 3, 1053, 526, 0, 4285, 4286, 3, 1077, 538, 0, 4286, 4287, 3, 1061, - 530, 0, 4287, 4288, 3, 1091, 545, 0, 4288, 4289, 3, 1061, 530, 0, 4289, - 4290, 3, 1087, 543, 0, 4290, 736, 1, 0, 0, 0, 4291, 4292, 3, 1083, 541, - 0, 4292, 4293, 3, 1053, 526, 0, 4293, 4294, 3, 1087, 543, 0, 4294, 4295, - 3, 1053, 526, 0, 4295, 4296, 3, 1077, 538, 0, 4296, 4297, 3, 1061, 530, - 0, 4297, 4298, 3, 1091, 545, 0, 4298, 4299, 3, 1061, 530, 0, 4299, 4300, - 3, 1087, 543, 0, 4300, 4301, 3, 1089, 544, 0, 4301, 738, 1, 0, 0, 0, 4302, - 4303, 3, 1067, 533, 0, 4303, 4304, 3, 1061, 530, 0, 4304, 4305, 3, 1053, - 526, 0, 4305, 4306, 3, 1059, 529, 0, 4306, 4307, 3, 1061, 530, 0, 4307, - 4308, 3, 1087, 543, 0, 4308, 4309, 3, 1089, 544, 0, 4309, 740, 1, 0, 0, - 0, 4310, 4311, 3, 1079, 539, 0, 4311, 4312, 3, 1053, 526, 0, 4312, 4313, - 3, 1095, 547, 0, 4313, 4314, 3, 1069, 534, 0, 4314, 4315, 3, 1065, 532, - 0, 4315, 4316, 3, 1053, 526, 0, 4316, 4317, 3, 1091, 545, 0, 4317, 4318, - 3, 1069, 534, 0, 4318, 4319, 3, 1081, 540, 0, 4319, 4320, 3, 1079, 539, - 0, 4320, 742, 1, 0, 0, 0, 4321, 4322, 3, 1077, 538, 0, 4322, 4323, 3, 1061, - 530, 0, 4323, 4324, 3, 1079, 539, 0, 4324, 4325, 3, 1093, 546, 0, 4325, - 744, 1, 0, 0, 0, 4326, 4327, 3, 1067, 533, 0, 4327, 4328, 3, 1081, 540, - 0, 4328, 4329, 3, 1077, 538, 0, 4329, 4330, 3, 1061, 530, 0, 4330, 4331, - 3, 1089, 544, 0, 4331, 746, 1, 0, 0, 0, 4332, 4333, 3, 1067, 533, 0, 4333, - 4334, 3, 1081, 540, 0, 4334, 4335, 3, 1077, 538, 0, 4335, 4336, 3, 1061, - 530, 0, 4336, 748, 1, 0, 0, 0, 4337, 4338, 3, 1075, 537, 0, 4338, 4339, - 3, 1081, 540, 0, 4339, 4340, 3, 1065, 532, 0, 4340, 4341, 3, 1069, 534, - 0, 4341, 4342, 3, 1079, 539, 0, 4342, 750, 1, 0, 0, 0, 4343, 4344, 3, 1063, - 531, 0, 4344, 4345, 3, 1081, 540, 0, 4345, 4346, 3, 1093, 546, 0, 4346, - 4347, 3, 1079, 539, 0, 4347, 4348, 3, 1059, 529, 0, 4348, 752, 1, 0, 0, - 0, 4349, 4350, 3, 1077, 538, 0, 4350, 4351, 3, 1081, 540, 0, 4351, 4352, - 3, 1059, 529, 0, 4352, 4353, 3, 1093, 546, 0, 4353, 4354, 3, 1075, 537, - 0, 4354, 4355, 3, 1061, 530, 0, 4355, 4356, 3, 1089, 544, 0, 4356, 754, - 1, 0, 0, 0, 4357, 4358, 3, 1061, 530, 0, 4358, 4359, 3, 1079, 539, 0, 4359, - 4360, 3, 1091, 545, 0, 4360, 4361, 3, 1069, 534, 0, 4361, 4362, 3, 1091, - 545, 0, 4362, 4363, 3, 1069, 534, 0, 4363, 4364, 3, 1061, 530, 0, 4364, - 4365, 3, 1089, 544, 0, 4365, 756, 1, 0, 0, 0, 4366, 4367, 3, 1053, 526, - 0, 4367, 4368, 3, 1089, 544, 0, 4368, 4369, 3, 1089, 544, 0, 4369, 4370, - 3, 1081, 540, 0, 4370, 4371, 3, 1057, 528, 0, 4371, 4372, 3, 1069, 534, - 0, 4372, 4373, 3, 1053, 526, 0, 4373, 4374, 3, 1091, 545, 0, 4374, 4375, - 3, 1069, 534, 0, 4375, 4376, 3, 1081, 540, 0, 4376, 4377, 3, 1079, 539, - 0, 4377, 4378, 3, 1089, 544, 0, 4378, 758, 1, 0, 0, 0, 4379, 4380, 3, 1077, - 538, 0, 4380, 4381, 3, 1069, 534, 0, 4381, 4382, 3, 1057, 528, 0, 4382, - 4383, 3, 1087, 543, 0, 4383, 4384, 3, 1081, 540, 0, 4384, 4385, 3, 1063, - 531, 0, 4385, 4386, 3, 1075, 537, 0, 4386, 4387, 3, 1081, 540, 0, 4387, - 4388, 3, 1097, 548, 0, 4388, 4389, 3, 1089, 544, 0, 4389, 760, 1, 0, 0, - 0, 4390, 4391, 3, 1079, 539, 0, 4391, 4392, 3, 1053, 526, 0, 4392, 4393, - 3, 1079, 539, 0, 4393, 4394, 3, 1081, 540, 0, 4394, 4395, 3, 1063, 531, - 0, 4395, 4396, 3, 1075, 537, 0, 4396, 4397, 3, 1081, 540, 0, 4397, 4398, - 3, 1097, 548, 0, 4398, 4399, 3, 1089, 544, 0, 4399, 762, 1, 0, 0, 0, 4400, - 4401, 3, 1097, 548, 0, 4401, 4402, 3, 1081, 540, 0, 4402, 4403, 3, 1087, - 543, 0, 4403, 4404, 3, 1073, 536, 0, 4404, 4405, 3, 1063, 531, 0, 4405, - 4406, 3, 1075, 537, 0, 4406, 4407, 3, 1081, 540, 0, 4407, 4408, 3, 1097, - 548, 0, 4408, 4409, 3, 1089, 544, 0, 4409, 764, 1, 0, 0, 0, 4410, 4411, - 3, 1061, 530, 0, 4411, 4412, 3, 1079, 539, 0, 4412, 4413, 3, 1093, 546, - 0, 4413, 4414, 3, 1077, 538, 0, 4414, 4415, 3, 1061, 530, 0, 4415, 4416, - 3, 1087, 543, 0, 4416, 4417, 3, 1053, 526, 0, 4417, 4418, 3, 1091, 545, - 0, 4418, 4419, 3, 1069, 534, 0, 4419, 4420, 3, 1081, 540, 0, 4420, 4421, - 3, 1079, 539, 0, 4421, 4422, 3, 1089, 544, 0, 4422, 766, 1, 0, 0, 0, 4423, - 4424, 3, 1057, 528, 0, 4424, 4425, 3, 1081, 540, 0, 4425, 4426, 3, 1079, - 539, 0, 4426, 4427, 3, 1089, 544, 0, 4427, 4428, 3, 1091, 545, 0, 4428, - 4429, 3, 1053, 526, 0, 4429, 4430, 3, 1079, 539, 0, 4430, 4431, 3, 1091, - 545, 0, 4431, 4432, 3, 1089, 544, 0, 4432, 768, 1, 0, 0, 0, 4433, 4434, - 3, 1057, 528, 0, 4434, 4435, 3, 1081, 540, 0, 4435, 4436, 3, 1079, 539, - 0, 4436, 4437, 3, 1079, 539, 0, 4437, 4438, 3, 1061, 530, 0, 4438, 4439, - 3, 1057, 528, 0, 4439, 4440, 3, 1091, 545, 0, 4440, 4441, 3, 1069, 534, - 0, 4441, 4442, 3, 1081, 540, 0, 4442, 4443, 3, 1079, 539, 0, 4443, 4444, - 3, 1089, 544, 0, 4444, 770, 1, 0, 0, 0, 4445, 4446, 3, 1059, 529, 0, 4446, - 4447, 3, 1061, 530, 0, 4447, 4448, 3, 1063, 531, 0, 4448, 4449, 3, 1069, - 534, 0, 4449, 4450, 3, 1079, 539, 0, 4450, 4451, 3, 1061, 530, 0, 4451, - 772, 1, 0, 0, 0, 4452, 4453, 3, 1063, 531, 0, 4453, 4454, 3, 1087, 543, - 0, 4454, 4455, 3, 1053, 526, 0, 4455, 4456, 3, 1065, 532, 0, 4456, 4457, - 3, 1077, 538, 0, 4457, 4458, 3, 1061, 530, 0, 4458, 4459, 3, 1079, 539, - 0, 4459, 4460, 3, 1091, 545, 0, 4460, 774, 1, 0, 0, 0, 4461, 4462, 3, 1063, - 531, 0, 4462, 4463, 3, 1087, 543, 0, 4463, 4464, 3, 1053, 526, 0, 4464, - 4465, 3, 1065, 532, 0, 4465, 4466, 3, 1077, 538, 0, 4466, 4467, 3, 1061, - 530, 0, 4467, 4468, 3, 1079, 539, 0, 4468, 4469, 3, 1091, 545, 0, 4469, - 4470, 3, 1089, 544, 0, 4470, 776, 1, 0, 0, 0, 4471, 4472, 3, 1075, 537, - 0, 4472, 4473, 3, 1053, 526, 0, 4473, 4474, 3, 1079, 539, 0, 4474, 4475, - 3, 1065, 532, 0, 4475, 4476, 3, 1093, 546, 0, 4476, 4477, 3, 1053, 526, - 0, 4477, 4478, 3, 1065, 532, 0, 4478, 4479, 3, 1061, 530, 0, 4479, 4480, - 3, 1089, 544, 0, 4480, 778, 1, 0, 0, 0, 4481, 4482, 3, 1069, 534, 0, 4482, - 4483, 3, 1079, 539, 0, 4483, 4484, 3, 1089, 544, 0, 4484, 4485, 3, 1061, - 530, 0, 4485, 4486, 3, 1087, 543, 0, 4486, 4487, 3, 1091, 545, 0, 4487, - 780, 1, 0, 0, 0, 4488, 4489, 3, 1055, 527, 0, 4489, 4490, 3, 1061, 530, - 0, 4490, 4491, 3, 1063, 531, 0, 4491, 4492, 3, 1081, 540, 0, 4492, 4493, - 3, 1087, 543, 0, 4493, 4494, 3, 1061, 530, 0, 4494, 782, 1, 0, 0, 0, 4495, - 4496, 3, 1053, 526, 0, 4496, 4497, 3, 1063, 531, 0, 4497, 4498, 3, 1091, - 545, 0, 4498, 4499, 3, 1061, 530, 0, 4499, 4500, 3, 1087, 543, 0, 4500, - 784, 1, 0, 0, 0, 4501, 4502, 3, 1093, 546, 0, 4502, 4503, 3, 1083, 541, - 0, 4503, 4504, 3, 1059, 529, 0, 4504, 4505, 3, 1053, 526, 0, 4505, 4506, - 3, 1091, 545, 0, 4506, 4507, 3, 1061, 530, 0, 4507, 786, 1, 0, 0, 0, 4508, - 4509, 3, 1087, 543, 0, 4509, 4510, 3, 1061, 530, 0, 4510, 4511, 3, 1063, - 531, 0, 4511, 4512, 3, 1087, 543, 0, 4512, 4513, 3, 1061, 530, 0, 4513, - 4514, 3, 1089, 544, 0, 4514, 4515, 3, 1067, 533, 0, 4515, 788, 1, 0, 0, - 0, 4516, 4517, 3, 1057, 528, 0, 4517, 4518, 3, 1067, 533, 0, 4518, 4519, - 3, 1061, 530, 0, 4519, 4520, 3, 1057, 528, 0, 4520, 4521, 3, 1073, 536, - 0, 4521, 790, 1, 0, 0, 0, 4522, 4523, 3, 1055, 527, 0, 4523, 4524, 3, 1093, - 546, 0, 4524, 4525, 3, 1069, 534, 0, 4525, 4526, 3, 1075, 537, 0, 4526, - 4527, 3, 1059, 529, 0, 4527, 792, 1, 0, 0, 0, 4528, 4529, 3, 1061, 530, - 0, 4529, 4530, 3, 1099, 549, 0, 4530, 4531, 3, 1061, 530, 0, 4531, 4532, - 3, 1057, 528, 0, 4532, 4533, 3, 1093, 546, 0, 4533, 4534, 3, 1091, 545, - 0, 4534, 4535, 3, 1061, 530, 0, 4535, 794, 1, 0, 0, 0, 4536, 4537, 3, 1089, - 544, 0, 4537, 4538, 3, 1057, 528, 0, 4538, 4539, 3, 1087, 543, 0, 4539, - 4540, 3, 1069, 534, 0, 4540, 4541, 3, 1083, 541, 0, 4541, 4542, 3, 1091, - 545, 0, 4542, 796, 1, 0, 0, 0, 4543, 4544, 3, 1075, 537, 0, 4544, 4545, - 3, 1069, 534, 0, 4545, 4546, 3, 1079, 539, 0, 4546, 4547, 3, 1091, 545, - 0, 4547, 798, 1, 0, 0, 0, 4548, 4549, 3, 1087, 543, 0, 4549, 4550, 3, 1093, - 546, 0, 4550, 4551, 3, 1075, 537, 0, 4551, 4552, 3, 1061, 530, 0, 4552, - 4553, 3, 1089, 544, 0, 4553, 800, 1, 0, 0, 0, 4554, 4555, 3, 1091, 545, - 0, 4555, 4556, 3, 1061, 530, 0, 4556, 4557, 3, 1099, 549, 0, 4557, 4558, - 3, 1091, 545, 0, 4558, 802, 1, 0, 0, 0, 4559, 4560, 3, 1089, 544, 0, 4560, - 4561, 3, 1053, 526, 0, 4561, 4562, 3, 1087, 543, 0, 4562, 4563, 3, 1069, - 534, 0, 4563, 4564, 3, 1063, 531, 0, 4564, 804, 1, 0, 0, 0, 4565, 4566, - 3, 1077, 538, 0, 4566, 4567, 3, 1061, 530, 0, 4567, 4568, 3, 1089, 544, - 0, 4568, 4569, 3, 1089, 544, 0, 4569, 4570, 3, 1053, 526, 0, 4570, 4571, - 3, 1065, 532, 0, 4571, 4572, 3, 1061, 530, 0, 4572, 806, 1, 0, 0, 0, 4573, - 4574, 3, 1077, 538, 0, 4574, 4575, 3, 1061, 530, 0, 4575, 4576, 3, 1089, - 544, 0, 4576, 4577, 3, 1089, 544, 0, 4577, 4578, 3, 1053, 526, 0, 4578, - 4579, 3, 1065, 532, 0, 4579, 4580, 3, 1061, 530, 0, 4580, 4581, 3, 1089, - 544, 0, 4581, 808, 1, 0, 0, 0, 4582, 4583, 3, 1057, 528, 0, 4583, 4584, - 3, 1067, 533, 0, 4584, 4585, 3, 1053, 526, 0, 4585, 4586, 3, 1079, 539, - 0, 4586, 4587, 3, 1079, 539, 0, 4587, 4588, 3, 1061, 530, 0, 4588, 4589, - 3, 1075, 537, 0, 4589, 4590, 3, 1089, 544, 0, 4590, 810, 1, 0, 0, 0, 4591, - 4592, 3, 1057, 528, 0, 4592, 4593, 3, 1081, 540, 0, 4593, 4594, 3, 1077, - 538, 0, 4594, 4595, 3, 1077, 538, 0, 4595, 4596, 3, 1061, 530, 0, 4596, - 4597, 3, 1079, 539, 0, 4597, 4598, 3, 1091, 545, 0, 4598, 812, 1, 0, 0, - 0, 4599, 4600, 3, 1057, 528, 0, 4600, 4601, 3, 1093, 546, 0, 4601, 4602, - 3, 1089, 544, 0, 4602, 4603, 3, 1091, 545, 0, 4603, 4604, 3, 1081, 540, - 0, 4604, 4606, 3, 1077, 538, 0, 4605, 4607, 3, 1, 0, 0, 4606, 4605, 1, - 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4609, 1, - 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4611, 3, 1079, 539, 0, 4611, 4612, - 3, 1053, 526, 0, 4612, 4613, 3, 1077, 538, 0, 4613, 4615, 3, 1061, 530, - 0, 4614, 4616, 3, 1, 0, 0, 4615, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, - 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, - 0, 4619, 4620, 3, 1077, 538, 0, 4620, 4621, 3, 1053, 526, 0, 4621, 4622, - 3, 1083, 541, 0, 4622, 814, 1, 0, 0, 0, 4623, 4624, 3, 1057, 528, 0, 4624, - 4625, 3, 1053, 526, 0, 4625, 4626, 3, 1091, 545, 0, 4626, 4627, 3, 1053, - 526, 0, 4627, 4628, 3, 1075, 537, 0, 4628, 4629, 3, 1081, 540, 0, 4629, - 4630, 3, 1065, 532, 0, 4630, 816, 1, 0, 0, 0, 4631, 4632, 3, 1063, 531, - 0, 4632, 4633, 3, 1081, 540, 0, 4633, 4634, 3, 1087, 543, 0, 4634, 4635, - 3, 1057, 528, 0, 4635, 4636, 3, 1061, 530, 0, 4636, 818, 1, 0, 0, 0, 4637, - 4638, 3, 1055, 527, 0, 4638, 4639, 3, 1053, 526, 0, 4639, 4640, 3, 1057, - 528, 0, 4640, 4641, 3, 1073, 536, 0, 4641, 4642, 3, 1065, 532, 0, 4642, - 4643, 3, 1087, 543, 0, 4643, 4644, 3, 1081, 540, 0, 4644, 4645, 3, 1093, - 546, 0, 4645, 4646, 3, 1079, 539, 0, 4646, 4647, 3, 1059, 529, 0, 4647, - 820, 1, 0, 0, 0, 4648, 4649, 3, 1057, 528, 0, 4649, 4650, 3, 1053, 526, - 0, 4650, 4651, 3, 1075, 537, 0, 4651, 4652, 3, 1075, 537, 0, 4652, 4653, - 3, 1061, 530, 0, 4653, 4654, 3, 1087, 543, 0, 4654, 4655, 3, 1089, 544, - 0, 4655, 822, 1, 0, 0, 0, 4656, 4657, 3, 1057, 528, 0, 4657, 4658, 3, 1053, - 526, 0, 4658, 4659, 3, 1075, 537, 0, 4659, 4660, 3, 1075, 537, 0, 4660, - 4661, 3, 1061, 530, 0, 4661, 4662, 3, 1061, 530, 0, 4662, 4663, 3, 1089, - 544, 0, 4663, 824, 1, 0, 0, 0, 4664, 4665, 3, 1087, 543, 0, 4665, 4666, - 3, 1061, 530, 0, 4666, 4667, 3, 1063, 531, 0, 4667, 4668, 3, 1061, 530, - 0, 4668, 4669, 3, 1087, 543, 0, 4669, 4670, 3, 1061, 530, 0, 4670, 4671, - 3, 1079, 539, 0, 4671, 4672, 3, 1057, 528, 0, 4672, 4673, 3, 1061, 530, - 0, 4673, 4674, 3, 1089, 544, 0, 4674, 826, 1, 0, 0, 0, 4675, 4676, 3, 1091, - 545, 0, 4676, 4677, 3, 1087, 543, 0, 4677, 4678, 3, 1053, 526, 0, 4678, - 4679, 3, 1079, 539, 0, 4679, 4680, 3, 1089, 544, 0, 4680, 4681, 3, 1069, - 534, 0, 4681, 4682, 3, 1091, 545, 0, 4682, 4683, 3, 1069, 534, 0, 4683, - 4684, 3, 1095, 547, 0, 4684, 4685, 3, 1061, 530, 0, 4685, 828, 1, 0, 0, - 0, 4686, 4687, 3, 1069, 534, 0, 4687, 4688, 3, 1077, 538, 0, 4688, 4689, - 3, 1083, 541, 0, 4689, 4690, 3, 1053, 526, 0, 4690, 4691, 3, 1057, 528, - 0, 4691, 4692, 3, 1091, 545, 0, 4692, 830, 1, 0, 0, 0, 4693, 4694, 3, 1059, - 529, 0, 4694, 4695, 3, 1061, 530, 0, 4695, 4696, 3, 1083, 541, 0, 4696, - 4697, 3, 1091, 545, 0, 4697, 4698, 3, 1067, 533, 0, 4698, 832, 1, 0, 0, - 0, 4699, 4700, 3, 1089, 544, 0, 4700, 4701, 3, 1091, 545, 0, 4701, 4702, - 3, 1087, 543, 0, 4702, 4703, 3, 1093, 546, 0, 4703, 4704, 3, 1057, 528, - 0, 4704, 4705, 3, 1091, 545, 0, 4705, 4706, 3, 1093, 546, 0, 4706, 4707, - 3, 1087, 543, 0, 4707, 4708, 3, 1061, 530, 0, 4708, 834, 1, 0, 0, 0, 4709, - 4710, 3, 1089, 544, 0, 4710, 4711, 3, 1091, 545, 0, 4711, 4712, 3, 1087, - 543, 0, 4712, 4713, 3, 1093, 546, 0, 4713, 4714, 3, 1057, 528, 0, 4714, - 4715, 3, 1091, 545, 0, 4715, 4716, 3, 1093, 546, 0, 4716, 4717, 3, 1087, - 543, 0, 4717, 4718, 3, 1061, 530, 0, 4718, 4719, 3, 1089, 544, 0, 4719, - 836, 1, 0, 0, 0, 4720, 4721, 3, 1091, 545, 0, 4721, 4722, 3, 1101, 550, - 0, 4722, 4723, 3, 1083, 541, 0, 4723, 4724, 3, 1061, 530, 0, 4724, 838, - 1, 0, 0, 0, 4725, 4726, 3, 1095, 547, 0, 4726, 4727, 3, 1053, 526, 0, 4727, - 4728, 3, 1075, 537, 0, 4728, 4729, 3, 1093, 546, 0, 4729, 4730, 3, 1061, - 530, 0, 4730, 840, 1, 0, 0, 0, 4731, 4732, 3, 1095, 547, 0, 4732, 4733, - 3, 1053, 526, 0, 4733, 4734, 3, 1075, 537, 0, 4734, 4735, 3, 1093, 546, - 0, 4735, 4736, 3, 1061, 530, 0, 4736, 4737, 3, 1089, 544, 0, 4737, 842, - 1, 0, 0, 0, 4738, 4739, 3, 1089, 544, 0, 4739, 4740, 3, 1069, 534, 0, 4740, - 4741, 3, 1079, 539, 0, 4741, 4742, 3, 1065, 532, 0, 4742, 4743, 3, 1075, - 537, 0, 4743, 4744, 3, 1061, 530, 0, 4744, 844, 1, 0, 0, 0, 4745, 4746, - 3, 1077, 538, 0, 4746, 4747, 3, 1093, 546, 0, 4747, 4748, 3, 1075, 537, - 0, 4748, 4749, 3, 1091, 545, 0, 4749, 4750, 3, 1069, 534, 0, 4750, 4751, - 3, 1083, 541, 0, 4751, 4752, 3, 1075, 537, 0, 4752, 4753, 3, 1061, 530, - 0, 4753, 846, 1, 0, 0, 0, 4754, 4755, 3, 1079, 539, 0, 4755, 4756, 3, 1081, - 540, 0, 4756, 4757, 3, 1079, 539, 0, 4757, 4758, 3, 1061, 530, 0, 4758, - 848, 1, 0, 0, 0, 4759, 4760, 3, 1055, 527, 0, 4760, 4761, 3, 1081, 540, - 0, 4761, 4762, 3, 1091, 545, 0, 4762, 4763, 3, 1067, 533, 0, 4763, 850, - 1, 0, 0, 0, 4764, 4765, 3, 1091, 545, 0, 4765, 4766, 3, 1081, 540, 0, 4766, - 852, 1, 0, 0, 0, 4767, 4768, 3, 1081, 540, 0, 4768, 4769, 3, 1063, 531, - 0, 4769, 854, 1, 0, 0, 0, 4770, 4771, 3, 1081, 540, 0, 4771, 4772, 3, 1095, - 547, 0, 4772, 4773, 3, 1061, 530, 0, 4773, 4774, 3, 1087, 543, 0, 4774, - 856, 1, 0, 0, 0, 4775, 4776, 3, 1063, 531, 0, 4776, 4777, 3, 1081, 540, - 0, 4777, 4778, 3, 1087, 543, 0, 4778, 858, 1, 0, 0, 0, 4779, 4780, 3, 1087, - 543, 0, 4780, 4781, 3, 1061, 530, 0, 4781, 4782, 3, 1083, 541, 0, 4782, - 4783, 3, 1075, 537, 0, 4783, 4784, 3, 1053, 526, 0, 4784, 4785, 3, 1057, - 528, 0, 4785, 4786, 3, 1061, 530, 0, 4786, 860, 1, 0, 0, 0, 4787, 4788, - 3, 1077, 538, 0, 4788, 4789, 3, 1061, 530, 0, 4789, 4790, 3, 1077, 538, - 0, 4790, 4791, 3, 1055, 527, 0, 4791, 4792, 3, 1061, 530, 0, 4792, 4793, - 3, 1087, 543, 0, 4793, 4794, 3, 1089, 544, 0, 4794, 862, 1, 0, 0, 0, 4795, - 4796, 3, 1053, 526, 0, 4796, 4797, 3, 1091, 545, 0, 4797, 4798, 3, 1091, - 545, 0, 4798, 4799, 3, 1087, 543, 0, 4799, 4800, 3, 1069, 534, 0, 4800, - 4801, 3, 1055, 527, 0, 4801, 4802, 3, 1093, 546, 0, 4802, 4803, 3, 1091, - 545, 0, 4803, 4804, 3, 1061, 530, 0, 4804, 4805, 3, 1079, 539, 0, 4805, - 4806, 3, 1053, 526, 0, 4806, 4807, 3, 1077, 538, 0, 4807, 4808, 3, 1061, - 530, 0, 4808, 864, 1, 0, 0, 0, 4809, 4810, 3, 1063, 531, 0, 4810, 4811, - 3, 1081, 540, 0, 4811, 4812, 3, 1087, 543, 0, 4812, 4813, 3, 1077, 538, - 0, 4813, 4814, 3, 1053, 526, 0, 4814, 4815, 3, 1091, 545, 0, 4815, 866, - 1, 0, 0, 0, 4816, 4817, 3, 1089, 544, 0, 4817, 4818, 3, 1085, 542, 0, 4818, - 4819, 3, 1075, 537, 0, 4819, 868, 1, 0, 0, 0, 4820, 4821, 3, 1097, 548, - 0, 4821, 4822, 3, 1069, 534, 0, 4822, 4823, 3, 1091, 545, 0, 4823, 4824, - 3, 1067, 533, 0, 4824, 4825, 3, 1081, 540, 0, 4825, 4826, 3, 1093, 546, - 0, 4826, 4827, 3, 1091, 545, 0, 4827, 870, 1, 0, 0, 0, 4828, 4829, 3, 1059, - 529, 0, 4829, 4830, 3, 1087, 543, 0, 4830, 4831, 3, 1101, 550, 0, 4831, - 872, 1, 0, 0, 0, 4832, 4833, 3, 1087, 543, 0, 4833, 4834, 3, 1093, 546, - 0, 4834, 4835, 3, 1079, 539, 0, 4835, 874, 1, 0, 0, 0, 4836, 4837, 3, 1097, - 548, 0, 4837, 4838, 3, 1069, 534, 0, 4838, 4839, 3, 1059, 529, 0, 4839, - 4840, 3, 1065, 532, 0, 4840, 4841, 3, 1061, 530, 0, 4841, 4842, 3, 1091, - 545, 0, 4842, 4843, 3, 1091, 545, 0, 4843, 4844, 3, 1101, 550, 0, 4844, - 4845, 3, 1083, 541, 0, 4845, 4846, 3, 1061, 530, 0, 4846, 876, 1, 0, 0, - 0, 4847, 4848, 3, 1095, 547, 0, 4848, 4849, 5, 51, 0, 0, 4849, 878, 1, - 0, 0, 0, 4850, 4851, 3, 1055, 527, 0, 4851, 4852, 3, 1093, 546, 0, 4852, - 4853, 3, 1089, 544, 0, 4853, 4854, 3, 1069, 534, 0, 4854, 4855, 3, 1079, - 539, 0, 4855, 4856, 3, 1061, 530, 0, 4856, 4857, 3, 1089, 544, 0, 4857, - 4858, 3, 1089, 544, 0, 4858, 880, 1, 0, 0, 0, 4859, 4860, 3, 1061, 530, - 0, 4860, 4861, 3, 1095, 547, 0, 4861, 4862, 3, 1061, 530, 0, 4862, 4863, - 3, 1079, 539, 0, 4863, 4864, 3, 1091, 545, 0, 4864, 882, 1, 0, 0, 0, 4865, - 4866, 3, 1089, 544, 0, 4866, 4867, 3, 1093, 546, 0, 4867, 4868, 3, 1055, - 527, 0, 4868, 4869, 3, 1089, 544, 0, 4869, 4870, 3, 1057, 528, 0, 4870, - 4871, 3, 1087, 543, 0, 4871, 4872, 3, 1069, 534, 0, 4872, 4873, 3, 1055, - 527, 0, 4873, 4874, 3, 1061, 530, 0, 4874, 884, 1, 0, 0, 0, 4875, 4876, - 3, 1089, 544, 0, 4876, 4877, 3, 1061, 530, 0, 4877, 4878, 3, 1091, 545, - 0, 4878, 4879, 3, 1091, 545, 0, 4879, 4880, 3, 1069, 534, 0, 4880, 4881, - 3, 1079, 539, 0, 4881, 4882, 3, 1065, 532, 0, 4882, 4883, 3, 1089, 544, - 0, 4883, 886, 1, 0, 0, 0, 4884, 4885, 3, 1057, 528, 0, 4885, 4886, 3, 1081, - 540, 0, 4886, 4887, 3, 1079, 539, 0, 4887, 4888, 3, 1063, 531, 0, 4888, - 4889, 3, 1069, 534, 0, 4889, 4890, 3, 1065, 532, 0, 4890, 4891, 3, 1093, - 546, 0, 4891, 4892, 3, 1087, 543, 0, 4892, 4893, 3, 1053, 526, 0, 4893, - 4894, 3, 1091, 545, 0, 4894, 4895, 3, 1069, 534, 0, 4895, 4896, 3, 1081, - 540, 0, 4896, 4897, 3, 1079, 539, 0, 4897, 888, 1, 0, 0, 0, 4898, 4899, - 3, 1063, 531, 0, 4899, 4900, 3, 1061, 530, 0, 4900, 4901, 3, 1053, 526, - 0, 4901, 4902, 3, 1091, 545, 0, 4902, 4903, 3, 1093, 546, 0, 4903, 4904, - 3, 1087, 543, 0, 4904, 4905, 3, 1061, 530, 0, 4905, 4906, 3, 1089, 544, - 0, 4906, 890, 1, 0, 0, 0, 4907, 4908, 3, 1053, 526, 0, 4908, 4909, 3, 1059, - 529, 0, 4909, 4910, 3, 1059, 529, 0, 4910, 4911, 3, 1061, 530, 0, 4911, - 4912, 3, 1059, 529, 0, 4912, 892, 1, 0, 0, 0, 4913, 4914, 3, 1089, 544, - 0, 4914, 4915, 3, 1069, 534, 0, 4915, 4916, 3, 1079, 539, 0, 4916, 4917, - 3, 1057, 528, 0, 4917, 4918, 3, 1061, 530, 0, 4918, 894, 1, 0, 0, 0, 4919, - 4920, 3, 1089, 544, 0, 4920, 4921, 3, 1061, 530, 0, 4921, 4922, 3, 1057, - 528, 0, 4922, 4923, 3, 1093, 546, 0, 4923, 4924, 3, 1087, 543, 0, 4924, - 4925, 3, 1069, 534, 0, 4925, 4926, 3, 1091, 545, 0, 4926, 4927, 3, 1101, - 550, 0, 4927, 896, 1, 0, 0, 0, 4928, 4929, 3, 1087, 543, 0, 4929, 4930, - 3, 1081, 540, 0, 4930, 4931, 3, 1075, 537, 0, 4931, 4932, 3, 1061, 530, - 0, 4932, 898, 1, 0, 0, 0, 4933, 4934, 3, 1087, 543, 0, 4934, 4935, 3, 1081, - 540, 0, 4935, 4936, 3, 1075, 537, 0, 4936, 4937, 3, 1061, 530, 0, 4937, - 4938, 3, 1089, 544, 0, 4938, 900, 1, 0, 0, 0, 4939, 4940, 3, 1065, 532, - 0, 4940, 4941, 3, 1087, 543, 0, 4941, 4942, 3, 1053, 526, 0, 4942, 4943, - 3, 1079, 539, 0, 4943, 4944, 3, 1091, 545, 0, 4944, 902, 1, 0, 0, 0, 4945, - 4946, 3, 1087, 543, 0, 4946, 4947, 3, 1061, 530, 0, 4947, 4948, 3, 1095, - 547, 0, 4948, 4949, 3, 1081, 540, 0, 4949, 4950, 3, 1073, 536, 0, 4950, - 4951, 3, 1061, 530, 0, 4951, 904, 1, 0, 0, 0, 4952, 4953, 3, 1083, 541, - 0, 4953, 4954, 3, 1087, 543, 0, 4954, 4955, 3, 1081, 540, 0, 4955, 4956, - 3, 1059, 529, 0, 4956, 4957, 3, 1093, 546, 0, 4957, 4958, 3, 1057, 528, - 0, 4958, 4959, 3, 1091, 545, 0, 4959, 4960, 3, 1069, 534, 0, 4960, 4961, - 3, 1081, 540, 0, 4961, 4962, 3, 1079, 539, 0, 4962, 906, 1, 0, 0, 0, 4963, - 4964, 3, 1083, 541, 0, 4964, 4965, 3, 1087, 543, 0, 4965, 4966, 3, 1081, - 540, 0, 4966, 4967, 3, 1091, 545, 0, 4967, 4968, 3, 1081, 540, 0, 4968, - 4969, 3, 1091, 545, 0, 4969, 4970, 3, 1101, 550, 0, 4970, 4971, 3, 1083, - 541, 0, 4971, 4972, 3, 1061, 530, 0, 4972, 908, 1, 0, 0, 0, 4973, 4974, - 3, 1077, 538, 0, 4974, 4975, 3, 1053, 526, 0, 4975, 4976, 3, 1079, 539, - 0, 4976, 4977, 3, 1053, 526, 0, 4977, 4978, 3, 1065, 532, 0, 4978, 4979, - 3, 1061, 530, 0, 4979, 910, 1, 0, 0, 0, 4980, 4981, 3, 1059, 529, 0, 4981, - 4982, 3, 1061, 530, 0, 4982, 4983, 3, 1077, 538, 0, 4983, 4984, 3, 1081, - 540, 0, 4984, 912, 1, 0, 0, 0, 4985, 4986, 3, 1077, 538, 0, 4986, 4987, - 3, 1053, 526, 0, 4987, 4988, 3, 1091, 545, 0, 4988, 4989, 3, 1087, 543, - 0, 4989, 4990, 3, 1069, 534, 0, 4990, 4991, 3, 1099, 549, 0, 4991, 914, - 1, 0, 0, 0, 4992, 4993, 3, 1053, 526, 0, 4993, 4994, 3, 1083, 541, 0, 4994, - 4995, 3, 1083, 541, 0, 4995, 4996, 3, 1075, 537, 0, 4996, 4997, 3, 1101, - 550, 0, 4997, 916, 1, 0, 0, 0, 4998, 4999, 3, 1053, 526, 0, 4999, 5000, - 3, 1057, 528, 0, 5000, 5001, 3, 1057, 528, 0, 5001, 5002, 3, 1061, 530, - 0, 5002, 5003, 3, 1089, 544, 0, 5003, 5004, 3, 1089, 544, 0, 5004, 918, - 1, 0, 0, 0, 5005, 5006, 3, 1075, 537, 0, 5006, 5007, 3, 1061, 530, 0, 5007, - 5008, 3, 1095, 547, 0, 5008, 5009, 3, 1061, 530, 0, 5009, 5010, 3, 1075, - 537, 0, 5010, 920, 1, 0, 0, 0, 5011, 5012, 3, 1093, 546, 0, 5012, 5013, - 3, 1089, 544, 0, 5013, 5014, 3, 1061, 530, 0, 5014, 5015, 3, 1087, 543, - 0, 5015, 922, 1, 0, 0, 0, 5016, 5017, 3, 1091, 545, 0, 5017, 5018, 3, 1053, - 526, 0, 5018, 5019, 3, 1089, 544, 0, 5019, 5020, 3, 1073, 536, 0, 5020, - 924, 1, 0, 0, 0, 5021, 5022, 3, 1059, 529, 0, 5022, 5023, 3, 1061, 530, - 0, 5023, 5024, 3, 1057, 528, 0, 5024, 5025, 3, 1069, 534, 0, 5025, 5026, - 3, 1089, 544, 0, 5026, 5027, 3, 1069, 534, 0, 5027, 5028, 3, 1081, 540, - 0, 5028, 5029, 3, 1079, 539, 0, 5029, 926, 1, 0, 0, 0, 5030, 5031, 3, 1089, - 544, 0, 5031, 5032, 3, 1083, 541, 0, 5032, 5033, 3, 1075, 537, 0, 5033, - 5034, 3, 1069, 534, 0, 5034, 5035, 3, 1091, 545, 0, 5035, 928, 1, 0, 0, - 0, 5036, 5037, 3, 1081, 540, 0, 5037, 5038, 3, 1093, 546, 0, 5038, 5039, - 3, 1091, 545, 0, 5039, 5040, 3, 1057, 528, 0, 5040, 5041, 3, 1081, 540, - 0, 5041, 5042, 3, 1077, 538, 0, 5042, 5043, 3, 1061, 530, 0, 5043, 5044, - 3, 1089, 544, 0, 5044, 930, 1, 0, 0, 0, 5045, 5046, 3, 1091, 545, 0, 5046, - 5047, 3, 1053, 526, 0, 5047, 5048, 3, 1087, 543, 0, 5048, 5049, 3, 1065, - 532, 0, 5049, 5050, 3, 1061, 530, 0, 5050, 5051, 3, 1091, 545, 0, 5051, - 5052, 3, 1069, 534, 0, 5052, 5053, 3, 1079, 539, 0, 5053, 5054, 3, 1065, - 532, 0, 5054, 932, 1, 0, 0, 0, 5055, 5056, 3, 1079, 539, 0, 5056, 5057, - 3, 1081, 540, 0, 5057, 5058, 3, 1091, 545, 0, 5058, 5059, 3, 1069, 534, - 0, 5059, 5060, 3, 1063, 531, 0, 5060, 5061, 3, 1069, 534, 0, 5061, 5062, - 3, 1057, 528, 0, 5062, 5063, 3, 1053, 526, 0, 5063, 5064, 3, 1091, 545, - 0, 5064, 5065, 3, 1069, 534, 0, 5065, 5066, 3, 1081, 540, 0, 5066, 5067, - 3, 1079, 539, 0, 5067, 934, 1, 0, 0, 0, 5068, 5069, 3, 1091, 545, 0, 5069, - 5070, 3, 1069, 534, 0, 5070, 5071, 3, 1077, 538, 0, 5071, 5072, 3, 1061, - 530, 0, 5072, 5073, 3, 1087, 543, 0, 5073, 936, 1, 0, 0, 0, 5074, 5075, - 3, 1071, 535, 0, 5075, 5076, 3, 1093, 546, 0, 5076, 5077, 3, 1077, 538, - 0, 5077, 5078, 3, 1083, 541, 0, 5078, 938, 1, 0, 0, 0, 5079, 5080, 3, 1059, - 529, 0, 5080, 5081, 3, 1093, 546, 0, 5081, 5082, 3, 1061, 530, 0, 5082, - 940, 1, 0, 0, 0, 5083, 5084, 3, 1081, 540, 0, 5084, 5085, 3, 1095, 547, - 0, 5085, 5086, 3, 1061, 530, 0, 5086, 5087, 3, 1087, 543, 0, 5087, 5088, - 3, 1095, 547, 0, 5088, 5089, 3, 1069, 534, 0, 5089, 5090, 3, 1061, 530, - 0, 5090, 5091, 3, 1097, 548, 0, 5091, 942, 1, 0, 0, 0, 5092, 5093, 3, 1059, - 529, 0, 5093, 5094, 3, 1053, 526, 0, 5094, 5095, 3, 1091, 545, 0, 5095, - 5096, 3, 1061, 530, 0, 5096, 944, 1, 0, 0, 0, 5097, 5098, 3, 1083, 541, - 0, 5098, 5099, 3, 1053, 526, 0, 5099, 5100, 3, 1087, 543, 0, 5100, 5101, - 3, 1053, 526, 0, 5101, 5102, 3, 1075, 537, 0, 5102, 5103, 3, 1075, 537, - 0, 5103, 5104, 3, 1061, 530, 0, 5104, 5105, 3, 1075, 537, 0, 5105, 946, - 1, 0, 0, 0, 5106, 5107, 3, 1097, 548, 0, 5107, 5108, 3, 1053, 526, 0, 5108, - 5109, 3, 1069, 534, 0, 5109, 5110, 3, 1091, 545, 0, 5110, 948, 1, 0, 0, - 0, 5111, 5112, 3, 1053, 526, 0, 5112, 5113, 3, 1079, 539, 0, 5113, 5114, - 3, 1079, 539, 0, 5114, 5115, 3, 1081, 540, 0, 5115, 5116, 3, 1091, 545, - 0, 5116, 5117, 3, 1053, 526, 0, 5117, 5118, 3, 1091, 545, 0, 5118, 5119, - 3, 1069, 534, 0, 5119, 5120, 3, 1081, 540, 0, 5120, 5121, 3, 1079, 539, - 0, 5121, 950, 1, 0, 0, 0, 5122, 5123, 3, 1055, 527, 0, 5123, 5124, 3, 1081, - 540, 0, 5124, 5125, 3, 1093, 546, 0, 5125, 5126, 3, 1079, 539, 0, 5126, - 5127, 3, 1059, 529, 0, 5127, 5128, 3, 1053, 526, 0, 5128, 5129, 3, 1087, - 543, 0, 5129, 5130, 3, 1101, 550, 0, 5130, 952, 1, 0, 0, 0, 5131, 5132, - 3, 1069, 534, 0, 5132, 5133, 3, 1079, 539, 0, 5133, 5134, 3, 1091, 545, - 0, 5134, 5135, 3, 1061, 530, 0, 5135, 5136, 3, 1087, 543, 0, 5136, 5137, - 3, 1087, 543, 0, 5137, 5138, 3, 1093, 546, 0, 5138, 5139, 3, 1083, 541, - 0, 5139, 5140, 3, 1091, 545, 0, 5140, 5141, 3, 1069, 534, 0, 5141, 5142, - 3, 1079, 539, 0, 5142, 5143, 3, 1065, 532, 0, 5143, 954, 1, 0, 0, 0, 5144, - 5145, 3, 1079, 539, 0, 5145, 5146, 3, 1081, 540, 0, 5146, 5147, 3, 1079, - 539, 0, 5147, 956, 1, 0, 0, 0, 5148, 5149, 3, 1077, 538, 0, 5149, 5150, - 3, 1093, 546, 0, 5150, 5151, 3, 1075, 537, 0, 5151, 5152, 3, 1091, 545, - 0, 5152, 5153, 3, 1069, 534, 0, 5153, 958, 1, 0, 0, 0, 5154, 5155, 3, 1055, - 527, 0, 5155, 5156, 3, 1101, 550, 0, 5156, 960, 1, 0, 0, 0, 5157, 5158, - 3, 1087, 543, 0, 5158, 5159, 3, 1061, 530, 0, 5159, 5160, 3, 1053, 526, - 0, 5160, 5161, 3, 1059, 529, 0, 5161, 962, 1, 0, 0, 0, 5162, 5163, 3, 1097, - 548, 0, 5163, 5164, 3, 1087, 543, 0, 5164, 5165, 3, 1069, 534, 0, 5165, - 5166, 3, 1091, 545, 0, 5166, 5167, 3, 1061, 530, 0, 5167, 964, 1, 0, 0, - 0, 5168, 5169, 3, 1059, 529, 0, 5169, 5170, 3, 1061, 530, 0, 5170, 5171, - 3, 1089, 544, 0, 5171, 5172, 3, 1057, 528, 0, 5172, 5173, 3, 1087, 543, - 0, 5173, 5174, 3, 1069, 534, 0, 5174, 5175, 3, 1083, 541, 0, 5175, 5176, - 3, 1091, 545, 0, 5176, 5177, 3, 1069, 534, 0, 5177, 5178, 3, 1081, 540, - 0, 5178, 5179, 3, 1079, 539, 0, 5179, 966, 1, 0, 0, 0, 5180, 5181, 3, 1059, - 529, 0, 5181, 5182, 3, 1069, 534, 0, 5182, 5183, 3, 1089, 544, 0, 5183, - 5184, 3, 1083, 541, 0, 5184, 5185, 3, 1075, 537, 0, 5185, 5186, 3, 1053, - 526, 0, 5186, 5187, 3, 1101, 550, 0, 5187, 968, 1, 0, 0, 0, 5188, 5189, - 3, 1081, 540, 0, 5189, 5190, 3, 1063, 531, 0, 5190, 5191, 3, 1063, 531, - 0, 5191, 970, 1, 0, 0, 0, 5192, 5193, 3, 1093, 546, 0, 5193, 5194, 3, 1089, - 544, 0, 5194, 5195, 3, 1061, 530, 0, 5195, 5196, 3, 1087, 543, 0, 5196, - 5197, 3, 1089, 544, 0, 5197, 972, 1, 0, 0, 0, 5198, 5199, 5, 60, 0, 0, - 5199, 5203, 5, 62, 0, 0, 5200, 5201, 5, 33, 0, 0, 5201, 5203, 5, 61, 0, - 0, 5202, 5198, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5203, 974, 1, 0, 0, - 0, 5204, 5205, 5, 60, 0, 0, 5205, 5206, 5, 61, 0, 0, 5206, 976, 1, 0, 0, - 0, 5207, 5208, 5, 62, 0, 0, 5208, 5209, 5, 61, 0, 0, 5209, 978, 1, 0, 0, - 0, 5210, 5211, 5, 61, 0, 0, 5211, 980, 1, 0, 0, 0, 5212, 5213, 5, 60, 0, - 0, 5213, 982, 1, 0, 0, 0, 5214, 5215, 5, 62, 0, 0, 5215, 984, 1, 0, 0, - 0, 5216, 5217, 5, 43, 0, 0, 5217, 986, 1, 0, 0, 0, 5218, 5219, 5, 45, 0, - 0, 5219, 988, 1, 0, 0, 0, 5220, 5221, 5, 42, 0, 0, 5221, 990, 1, 0, 0, - 0, 5222, 5223, 5, 47, 0, 0, 5223, 992, 1, 0, 0, 0, 5224, 5225, 5, 37, 0, - 0, 5225, 994, 1, 0, 0, 0, 5226, 5227, 3, 1077, 538, 0, 5227, 5228, 3, 1081, - 540, 0, 5228, 5229, 3, 1059, 529, 0, 5229, 996, 1, 0, 0, 0, 5230, 5231, - 3, 1059, 529, 0, 5231, 5232, 3, 1069, 534, 0, 5232, 5233, 3, 1095, 547, - 0, 5233, 998, 1, 0, 0, 0, 5234, 5235, 5, 59, 0, 0, 5235, 1000, 1, 0, 0, - 0, 5236, 5237, 5, 44, 0, 0, 5237, 1002, 1, 0, 0, 0, 5238, 5239, 5, 46, - 0, 0, 5239, 1004, 1, 0, 0, 0, 5240, 5241, 5, 40, 0, 0, 5241, 1006, 1, 0, - 0, 0, 5242, 5243, 5, 41, 0, 0, 5243, 1008, 1, 0, 0, 0, 5244, 5245, 5, 123, - 0, 0, 5245, 1010, 1, 0, 0, 0, 5246, 5247, 5, 125, 0, 0, 5247, 1012, 1, - 0, 0, 0, 5248, 5249, 5, 91, 0, 0, 5249, 1014, 1, 0, 0, 0, 5250, 5251, 5, - 93, 0, 0, 5251, 1016, 1, 0, 0, 0, 5252, 5253, 5, 58, 0, 0, 5253, 1018, - 1, 0, 0, 0, 5254, 5255, 5, 64, 0, 0, 5255, 1020, 1, 0, 0, 0, 5256, 5257, - 5, 124, 0, 0, 5257, 1022, 1, 0, 0, 0, 5258, 5259, 5, 58, 0, 0, 5259, 5260, - 5, 58, 0, 0, 5260, 1024, 1, 0, 0, 0, 5261, 5262, 5, 45, 0, 0, 5262, 5263, - 5, 62, 0, 0, 5263, 1026, 1, 0, 0, 0, 5264, 5265, 5, 63, 0, 0, 5265, 1028, - 1, 0, 0, 0, 5266, 5267, 5, 35, 0, 0, 5267, 1030, 1, 0, 0, 0, 5268, 5269, - 5, 91, 0, 0, 5269, 5270, 5, 37, 0, 0, 5270, 5274, 1, 0, 0, 0, 5271, 5273, - 9, 0, 0, 0, 5272, 5271, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5275, - 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5275, 5277, 1, 0, 0, 0, 5276, 5274, - 1, 0, 0, 0, 5277, 5278, 5, 37, 0, 0, 5278, 5279, 5, 93, 0, 0, 5279, 1032, - 1, 0, 0, 0, 5280, 5288, 5, 39, 0, 0, 5281, 5287, 8, 2, 0, 0, 5282, 5283, - 5, 92, 0, 0, 5283, 5287, 9, 0, 0, 0, 5284, 5285, 5, 39, 0, 0, 5285, 5287, - 5, 39, 0, 0, 5286, 5281, 1, 0, 0, 0, 5286, 5282, 1, 0, 0, 0, 5286, 5284, - 1, 0, 0, 0, 5287, 5290, 1, 0, 0, 0, 5288, 5286, 1, 0, 0, 0, 5288, 5289, - 1, 0, 0, 0, 5289, 5291, 1, 0, 0, 0, 5290, 5288, 1, 0, 0, 0, 5291, 5292, - 5, 39, 0, 0, 5292, 1034, 1, 0, 0, 0, 5293, 5294, 5, 36, 0, 0, 5294, 5295, - 5, 36, 0, 0, 5295, 5299, 1, 0, 0, 0, 5296, 5298, 9, 0, 0, 0, 5297, 5296, - 1, 0, 0, 0, 5298, 5301, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5299, 5297, - 1, 0, 0, 0, 5300, 5302, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5303, - 5, 36, 0, 0, 5303, 5304, 5, 36, 0, 0, 5304, 1036, 1, 0, 0, 0, 5305, 5307, - 5, 45, 0, 0, 5306, 5305, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5309, - 1, 0, 0, 0, 5308, 5310, 3, 1051, 525, 0, 5309, 5308, 1, 0, 0, 0, 5310, - 5311, 1, 0, 0, 0, 5311, 5309, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, - 5319, 1, 0, 0, 0, 5313, 5315, 5, 46, 0, 0, 5314, 5316, 3, 1051, 525, 0, - 5315, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5315, 1, 0, 0, 0, - 5317, 5318, 1, 0, 0, 0, 5318, 5320, 1, 0, 0, 0, 5319, 5313, 1, 0, 0, 0, - 5319, 5320, 1, 0, 0, 0, 5320, 5330, 1, 0, 0, 0, 5321, 5323, 7, 3, 0, 0, - 5322, 5324, 7, 4, 0, 0, 5323, 5322, 1, 0, 0, 0, 5323, 5324, 1, 0, 0, 0, - 5324, 5326, 1, 0, 0, 0, 5325, 5327, 3, 1051, 525, 0, 5326, 5325, 1, 0, - 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5326, 1, 0, 0, 0, 5328, 5329, 1, 0, - 0, 0, 5329, 5331, 1, 0, 0, 0, 5330, 5321, 1, 0, 0, 0, 5330, 5331, 1, 0, - 0, 0, 5331, 1038, 1, 0, 0, 0, 5332, 5334, 5, 36, 0, 0, 5333, 5335, 3, 1049, - 524, 0, 5334, 5333, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5334, 1, - 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 1040, 1, 0, 0, 0, 5338, 5342, 3, - 1047, 523, 0, 5339, 5341, 3, 1049, 524, 0, 5340, 5339, 1, 0, 0, 0, 5341, - 5344, 1, 0, 0, 0, 5342, 5340, 1, 0, 0, 0, 5342, 5343, 1, 0, 0, 0, 5343, - 1042, 1, 0, 0, 0, 5344, 5342, 1, 0, 0, 0, 5345, 5353, 3, 1047, 523, 0, - 5346, 5348, 3, 1049, 524, 0, 5347, 5346, 1, 0, 0, 0, 5348, 5351, 1, 0, - 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5352, 1, 0, - 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5354, 5, 45, 0, 0, 5353, 5349, 1, 0, - 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5353, 1, 0, 0, 0, 5355, 5356, 1, 0, - 0, 0, 5356, 5360, 1, 0, 0, 0, 5357, 5359, 3, 1049, 524, 0, 5358, 5357, - 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, - 1, 0, 0, 0, 5361, 1044, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5367, - 5, 34, 0, 0, 5364, 5366, 8, 5, 0, 0, 5365, 5364, 1, 0, 0, 0, 5366, 5369, - 1, 0, 0, 0, 5367, 5365, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5370, - 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5370, 5380, 5, 34, 0, 0, 5371, 5375, - 5, 96, 0, 0, 5372, 5374, 8, 6, 0, 0, 5373, 5372, 1, 0, 0, 0, 5374, 5377, - 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, - 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 5, 96, 0, 0, 5379, 5363, - 1, 0, 0, 0, 5379, 5371, 1, 0, 0, 0, 5380, 1046, 1, 0, 0, 0, 5381, 5382, - 7, 7, 0, 0, 5382, 1048, 1, 0, 0, 0, 5383, 5384, 7, 8, 0, 0, 5384, 1050, - 1, 0, 0, 0, 5385, 5386, 7, 9, 0, 0, 5386, 1052, 1, 0, 0, 0, 5387, 5388, - 7, 10, 0, 0, 5388, 1054, 1, 0, 0, 0, 5389, 5390, 7, 11, 0, 0, 5390, 1056, - 1, 0, 0, 0, 5391, 5392, 7, 12, 0, 0, 5392, 1058, 1, 0, 0, 0, 5393, 5394, - 7, 13, 0, 0, 5394, 1060, 1, 0, 0, 0, 5395, 5396, 7, 3, 0, 0, 5396, 1062, - 1, 0, 0, 0, 5397, 5398, 7, 14, 0, 0, 5398, 1064, 1, 0, 0, 0, 5399, 5400, - 7, 15, 0, 0, 5400, 1066, 1, 0, 0, 0, 5401, 5402, 7, 16, 0, 0, 5402, 1068, - 1, 0, 0, 0, 5403, 5404, 7, 17, 0, 0, 5404, 1070, 1, 0, 0, 0, 5405, 5406, - 7, 18, 0, 0, 5406, 1072, 1, 0, 0, 0, 5407, 5408, 7, 19, 0, 0, 5408, 1074, - 1, 0, 0, 0, 5409, 5410, 7, 20, 0, 0, 5410, 1076, 1, 0, 0, 0, 5411, 5412, - 7, 21, 0, 0, 5412, 1078, 1, 0, 0, 0, 5413, 5414, 7, 22, 0, 0, 5414, 1080, - 1, 0, 0, 0, 5415, 5416, 7, 23, 0, 0, 5416, 1082, 1, 0, 0, 0, 5417, 5418, - 7, 24, 0, 0, 5418, 1084, 1, 0, 0, 0, 5419, 5420, 7, 25, 0, 0, 5420, 1086, - 1, 0, 0, 0, 5421, 5422, 7, 26, 0, 0, 5422, 1088, 1, 0, 0, 0, 5423, 5424, - 7, 27, 0, 0, 5424, 1090, 1, 0, 0, 0, 5425, 5426, 7, 28, 0, 0, 5426, 1092, - 1, 0, 0, 0, 5427, 5428, 7, 29, 0, 0, 5428, 1094, 1, 0, 0, 0, 5429, 5430, - 7, 30, 0, 0, 5430, 1096, 1, 0, 0, 0, 5431, 5432, 7, 31, 0, 0, 5432, 1098, - 1, 0, 0, 0, 5433, 5434, 7, 32, 0, 0, 5434, 1100, 1, 0, 0, 0, 5435, 5436, - 7, 33, 0, 0, 5436, 1102, 1, 0, 0, 0, 5437, 5438, 7, 34, 0, 0, 5438, 1104, - 1, 0, 0, 0, 48, 0, 1108, 1119, 1131, 1145, 1155, 1163, 1175, 1188, 1203, - 1216, 1228, 1258, 1271, 1285, 1293, 1348, 1359, 1367, 1376, 1440, 1451, - 1458, 1465, 1523, 1819, 4608, 4617, 5202, 5274, 5286, 5288, 5299, 5306, - 5311, 5317, 5319, 5323, 5328, 5330, 5336, 5342, 5349, 5355, 5360, 5367, - 5375, 5379, 1, 6, 0, 0, + 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, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 3, 52, 1828, 8, 52, 1, 52, 1, 52, 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, 53, 1, + 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, + 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, + 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 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, 60, 1, 60, + 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, + 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, + 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, + 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, + 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 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, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, + 71, 1, 72, 1, 72, 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, 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, 76, 1, 76, 1, 76, + 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 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, 79, 1, 80, + 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 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, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, + 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 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, 91, 1, 91, 1, 91, 1, 91, + 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 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, 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, 98, 1, 98, 1, 98, + 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 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, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, + 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, + 1, 104, 1, 104, 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, 106, 1, 107, 1, 107, 1, 107, + 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 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, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, + 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, + 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, + 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 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, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, + 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, + 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, + 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, + 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 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, 127, 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, 128, 1, 128, + 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 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, 131, + 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 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, 133, + 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 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, 137, 1, 137, 1, 137, + 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 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, 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, 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, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 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, 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, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, + 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, 152, 1, 152, 1, 152, 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, 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, 156, 1, 157, 1, 157, + 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, + 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, 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, 160, 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, 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, 164, 1, 164, 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, 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, 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, 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, 171, 1, 171, 1, 171, + 1, 171, 1, 171, 1, 171, 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, 172, + 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 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, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, + 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, + 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, + 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, + 1, 176, 1, 176, 1, 176, 1, 176, 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, 177, 1, 177, + 1, 177, 1, 178, 1, 178, 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, 179, + 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, + 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, + 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, + 1, 181, 1, 181, 1, 181, 1, 181, 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, 182, + 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, + 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, + 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, + 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, + 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 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, 188, 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, 189, 1, 189, 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, 192, 1, 192, 1, 192, 1, 192, 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, 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, 198, + 1, 198, 1, 198, 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, 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, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, + 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 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, 204, 1, 204, 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, 205, 1, 205, + 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, + 1, 206, 1, 206, 1, 206, 1, 206, 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, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, + 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, 210, 1, 210, 1, 210, + 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, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, + 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, + 1, 213, 1, 213, 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, 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, 218, 1, 218, 1, 218, 1, 218, 1, 219, + 1, 219, 1, 219, 1, 219, 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, 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, 225, + 1, 225, 1, 226, 1, 226, 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, 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, 230, + 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 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, 233, 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, 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, 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, 239, + 1, 239, 1, 239, 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, 240, 1, 241, 1, 241, + 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, + 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, + 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, + 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, + 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, + 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, + 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, + 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, + 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, + 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, + 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, + 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, + 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, + 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, + 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, + 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, + 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, + 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, + 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, + 1, 259, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, + 1, 262, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, + 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, + 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, + 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, + 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, + 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, + 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, + 1, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, + 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, + 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, + 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, + 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, + 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, + 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, + 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, + 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, + 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, + 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, + 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, + 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, + 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, + 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 293, + 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 294, 1, 294, + 1, 294, 1, 294, 1, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, + 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 297, 1, 297, + 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 1, 298, + 1, 298, 1, 298, 1, 298, 1, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, + 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, + 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 302, + 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 303, + 1, 303, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, + 1, 304, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, + 1, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, + 1, 307, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, + 1, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, + 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, + 1, 310, 1, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, + 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, + 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, + 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, + 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 316, 1, 316, + 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 317, 1, 317, + 1, 317, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, + 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, + 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, + 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 322, + 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 323, 1, 323, + 1, 323, 1, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, + 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, + 1, 325, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 327, + 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, + 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, + 1, 329, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, + 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, + 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 334, 1, 334, + 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, + 1, 335, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, + 1, 337, 1, 337, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, + 1, 339, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, + 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, + 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, + 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, + 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, + 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, + 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, + 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, + 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, + 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, + 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, + 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, 1, 352, + 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, + 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, + 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, + 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, + 1, 356, 1, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 358, + 1, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, + 1, 359, 1, 359, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, 1, 360, + 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, + 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 364, 1, 364, + 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 365, 1, 365, 1, 365, 1, 365, + 1, 365, 1, 365, 1, 365, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 366, + 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, + 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, 1, 368, + 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, + 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, + 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, + 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, + 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 374, 1, 374, + 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, + 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, + 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 378, 1, 378, + 1, 378, 1, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, + 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, + 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, + 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, + 1, 382, 1, 382, 1, 382, 1, 382, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, + 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, + 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, + 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, + 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, + 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, + 1, 387, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, + 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, + 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, + 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, + 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, + 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, + 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, + 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, + 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 397, 1, 397, + 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, + 1, 398, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, + 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, + 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, + 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, + 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, + 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, + 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, + 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, + 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 410, + 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 4, 410, 4665, 8, 410, 11, + 410, 12, 410, 4666, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 4, 410, 4674, + 8, 410, 11, 410, 12, 410, 4675, 1, 410, 1, 410, 1, 410, 1, 410, 1, 411, + 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 412, 1, 412, + 1, 412, 1, 412, 1, 412, 1, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, + 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, + 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, + 1, 415, 1, 415, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, + 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, + 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, + 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, + 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, + 1, 420, 1, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, + 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, + 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, + 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, + 1, 425, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, + 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, + 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 430, + 1, 430, 1, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, + 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, 1, 433, + 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, + 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, + 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, + 1, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, + 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, + 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, + 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, + 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, + 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, + 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 446, + 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 446, 1, 447, + 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, + 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, + 1, 448, 1, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, + 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 451, 1, 451, + 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, + 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, + 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 455, 1, 455, 1, 455, + 1, 455, 1, 455, 1, 455, 1, 455, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, + 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 457, 1, 457, 1, 457, + 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, + 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, + 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 461, + 1, 461, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, + 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, 1, 463, + 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, + 1, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, + 1, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 1, 468, 1, 468, + 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 468, 1, 469, 1, 469, + 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 469, 1, 470, + 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, 1, 470, + 1, 470, 1, 470, 1, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, 1, 471, + 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 473, 1, 473, 1, 473, 1, 473, + 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, 1, 474, + 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 476, 1, 476, 1, 476, 1, 476, + 1, 476, 1, 476, 1, 476, 1, 476, 1, 476, 1, 477, 1, 477, 1, 477, 1, 477, + 1, 477, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, 1, 478, + 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, 1, 479, + 1, 479, 1, 479, 1, 479, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, + 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 480, 1, 481, 1, 481, + 1, 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 1, 483, + 1, 483, 1, 483, 1, 484, 1, 484, 1, 484, 1, 484, 1, 484, 1, 485, 1, 485, + 1, 485, 1, 485, 1, 485, 1, 485, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, + 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 486, 1, 487, 1, 487, + 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 487, 1, 488, 1, 488, 1, 488, + 1, 488, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 489, 1, 490, 1, 490, + 1, 490, 1, 490, 3, 490, 5261, 8, 490, 1, 491, 1, 491, 1, 491, 1, 492, 1, + 492, 1, 492, 1, 493, 1, 493, 1, 494, 1, 494, 1, 495, 1, 495, 1, 496, 1, + 496, 1, 497, 1, 497, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, + 501, 1, 501, 1, 501, 1, 501, 1, 502, 1, 502, 1, 502, 1, 502, 1, 503, 1, + 503, 1, 504, 1, 504, 1, 505, 1, 505, 1, 506, 1, 506, 1, 507, 1, 507, 1, + 508, 1, 508, 1, 509, 1, 509, 1, 510, 1, 510, 1, 511, 1, 511, 1, 512, 1, + 512, 1, 513, 1, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, 515, 1, 516, 1, + 516, 1, 516, 1, 517, 1, 517, 1, 518, 1, 518, 1, 519, 1, 519, 1, 519, 1, + 519, 5, 519, 5331, 8, 519, 10, 519, 12, 519, 5334, 9, 519, 1, 519, 1, 519, + 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 5, 520, 5345, 8, + 520, 10, 520, 12, 520, 5348, 9, 520, 1, 520, 1, 520, 1, 521, 1, 521, 1, + 521, 1, 521, 5, 521, 5356, 8, 521, 10, 521, 12, 521, 5359, 9, 521, 1, 521, + 1, 521, 1, 521, 1, 522, 3, 522, 5365, 8, 522, 1, 522, 4, 522, 5368, 8, + 522, 11, 522, 12, 522, 5369, 1, 522, 1, 522, 4, 522, 5374, 8, 522, 11, + 522, 12, 522, 5375, 3, 522, 5378, 8, 522, 1, 522, 1, 522, 3, 522, 5382, + 8, 522, 1, 522, 4, 522, 5385, 8, 522, 11, 522, 12, 522, 5386, 3, 522, 5389, + 8, 522, 1, 523, 1, 523, 4, 523, 5393, 8, 523, 11, 523, 12, 523, 5394, 1, + 524, 1, 524, 5, 524, 5399, 8, 524, 10, 524, 12, 524, 5402, 9, 524, 1, 525, + 1, 525, 5, 525, 5406, 8, 525, 10, 525, 12, 525, 5409, 9, 525, 1, 525, 4, + 525, 5412, 8, 525, 11, 525, 12, 525, 5413, 1, 525, 5, 525, 5417, 8, 525, + 10, 525, 12, 525, 5420, 9, 525, 1, 526, 1, 526, 5, 526, 5424, 8, 526, 10, + 526, 12, 526, 5427, 9, 526, 1, 526, 1, 526, 1, 526, 5, 526, 5432, 8, 526, + 10, 526, 12, 526, 5435, 9, 526, 1, 526, 3, 526, 5438, 8, 526, 1, 527, 1, + 527, 1, 528, 1, 528, 1, 529, 1, 529, 1, 530, 1, 530, 1, 531, 1, 531, 1, + 532, 1, 532, 1, 533, 1, 533, 1, 534, 1, 534, 1, 535, 1, 535, 1, 536, 1, + 536, 1, 537, 1, 537, 1, 538, 1, 538, 1, 539, 1, 539, 1, 540, 1, 540, 1, + 541, 1, 541, 1, 542, 1, 542, 1, 543, 1, 543, 1, 544, 1, 544, 1, 545, 1, + 545, 1, 546, 1, 546, 1, 547, 1, 547, 1, 548, 1, 548, 1, 549, 1, 549, 1, + 550, 1, 550, 1, 551, 1, 551, 1, 552, 1, 552, 1, 553, 1, 553, 1, 554, 1, + 554, 1, 555, 1, 555, 4, 1127, 1139, 5332, 5357, 0, 556, 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, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, + 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, + 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, + 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, + 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, + 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, + 569, 285, 571, 286, 573, 287, 575, 288, 577, 289, 579, 290, 581, 291, 583, + 292, 585, 293, 587, 294, 589, 295, 591, 296, 593, 297, 595, 298, 597, 299, + 599, 300, 601, 301, 603, 302, 605, 303, 607, 304, 609, 305, 611, 306, 613, + 307, 615, 308, 617, 309, 619, 310, 621, 311, 623, 312, 625, 313, 627, 314, + 629, 315, 631, 316, 633, 317, 635, 318, 637, 319, 639, 320, 641, 321, 643, + 322, 645, 323, 647, 324, 649, 325, 651, 326, 653, 327, 655, 328, 657, 329, + 659, 330, 661, 331, 663, 332, 665, 333, 667, 334, 669, 335, 671, 336, 673, + 337, 675, 338, 677, 339, 679, 340, 681, 341, 683, 342, 685, 343, 687, 344, + 689, 345, 691, 346, 693, 347, 695, 348, 697, 349, 699, 350, 701, 351, 703, + 352, 705, 353, 707, 354, 709, 355, 711, 356, 713, 357, 715, 358, 717, 359, + 719, 360, 721, 361, 723, 362, 725, 363, 727, 364, 729, 365, 731, 366, 733, + 367, 735, 368, 737, 369, 739, 370, 741, 371, 743, 372, 745, 373, 747, 374, + 749, 375, 751, 376, 753, 377, 755, 378, 757, 379, 759, 380, 761, 381, 763, + 382, 765, 383, 767, 384, 769, 385, 771, 386, 773, 387, 775, 388, 777, 389, + 779, 390, 781, 391, 783, 392, 785, 393, 787, 394, 789, 395, 791, 396, 793, + 397, 795, 398, 797, 399, 799, 400, 801, 401, 803, 402, 805, 403, 807, 404, + 809, 405, 811, 406, 813, 407, 815, 408, 817, 409, 819, 410, 821, 411, 823, + 412, 825, 413, 827, 414, 829, 415, 831, 416, 833, 417, 835, 418, 837, 419, + 839, 420, 841, 421, 843, 422, 845, 423, 847, 424, 849, 425, 851, 426, 853, + 427, 855, 428, 857, 429, 859, 430, 861, 431, 863, 432, 865, 433, 867, 434, + 869, 435, 871, 436, 873, 437, 875, 438, 877, 439, 879, 440, 881, 441, 883, + 442, 885, 443, 887, 444, 889, 445, 891, 446, 893, 447, 895, 448, 897, 449, + 899, 450, 901, 451, 903, 452, 905, 453, 907, 454, 909, 455, 911, 456, 913, + 457, 915, 458, 917, 459, 919, 460, 921, 461, 923, 462, 925, 463, 927, 464, + 929, 465, 931, 466, 933, 467, 935, 468, 937, 469, 939, 470, 941, 471, 943, + 472, 945, 473, 947, 474, 949, 475, 951, 476, 953, 477, 955, 478, 957, 479, + 959, 480, 961, 481, 963, 482, 965, 483, 967, 484, 969, 485, 971, 486, 973, + 487, 975, 488, 977, 489, 979, 490, 981, 491, 983, 492, 985, 493, 987, 494, + 989, 495, 991, 496, 993, 497, 995, 498, 997, 499, 999, 500, 1001, 501, + 1003, 502, 1005, 503, 1007, 504, 1009, 505, 1011, 506, 1013, 507, 1015, + 508, 1017, 509, 1019, 510, 1021, 511, 1023, 512, 1025, 513, 1027, 514, + 1029, 515, 1031, 516, 1033, 517, 1035, 518, 1037, 519, 1039, 520, 1041, + 521, 1043, 522, 1045, 523, 1047, 524, 1049, 525, 1051, 526, 1053, 527, + 1055, 0, 1057, 0, 1059, 0, 1061, 0, 1063, 0, 1065, 0, 1067, 0, 1069, 0, + 1071, 0, 1073, 0, 1075, 0, 1077, 0, 1079, 0, 1081, 0, 1083, 0, 1085, 0, + 1087, 0, 1089, 0, 1091, 0, 1093, 0, 1095, 0, 1097, 0, 1099, 0, 1101, 0, + 1103, 0, 1105, 0, 1107, 0, 1109, 0, 1111, 0, 1, 0, 35, 2, 0, 9, 13, 32, + 32, 2, 0, 10, 10, 13, 13, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 2, 0, 69, + 69, 101, 101, 2, 0, 43, 43, 45, 45, 3, 0, 10, 10, 13, 13, 34, 34, 3, 0, + 10, 10, 13, 13, 96, 96, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, + 90, 95, 95, 97, 122, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, + 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 70, 70, 102, + 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, + 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, + 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, + 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, + 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, + 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, + 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 5518, 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, 483, + 1, 0, 0, 0, 0, 485, 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, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, + 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, + 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, + 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, + 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, + 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, + 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, + 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, + 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, + 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 573, 1, 0, 0, 0, 0, 575, 1, 0, 0, 0, 0, + 577, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, + 0, 0, 0, 585, 1, 0, 0, 0, 0, 587, 1, 0, 0, 0, 0, 589, 1, 0, 0, 0, 0, 591, + 1, 0, 0, 0, 0, 593, 1, 0, 0, 0, 0, 595, 1, 0, 0, 0, 0, 597, 1, 0, 0, 0, + 0, 599, 1, 0, 0, 0, 0, 601, 1, 0, 0, 0, 0, 603, 1, 0, 0, 0, 0, 605, 1, + 0, 0, 0, 0, 607, 1, 0, 0, 0, 0, 609, 1, 0, 0, 0, 0, 611, 1, 0, 0, 0, 0, + 613, 1, 0, 0, 0, 0, 615, 1, 0, 0, 0, 0, 617, 1, 0, 0, 0, 0, 619, 1, 0, + 0, 0, 0, 621, 1, 0, 0, 0, 0, 623, 1, 0, 0, 0, 0, 625, 1, 0, 0, 0, 0, 627, + 1, 0, 0, 0, 0, 629, 1, 0, 0, 0, 0, 631, 1, 0, 0, 0, 0, 633, 1, 0, 0, 0, + 0, 635, 1, 0, 0, 0, 0, 637, 1, 0, 0, 0, 0, 639, 1, 0, 0, 0, 0, 641, 1, + 0, 0, 0, 0, 643, 1, 0, 0, 0, 0, 645, 1, 0, 0, 0, 0, 647, 1, 0, 0, 0, 0, + 649, 1, 0, 0, 0, 0, 651, 1, 0, 0, 0, 0, 653, 1, 0, 0, 0, 0, 655, 1, 0, + 0, 0, 0, 657, 1, 0, 0, 0, 0, 659, 1, 0, 0, 0, 0, 661, 1, 0, 0, 0, 0, 663, + 1, 0, 0, 0, 0, 665, 1, 0, 0, 0, 0, 667, 1, 0, 0, 0, 0, 669, 1, 0, 0, 0, + 0, 671, 1, 0, 0, 0, 0, 673, 1, 0, 0, 0, 0, 675, 1, 0, 0, 0, 0, 677, 1, + 0, 0, 0, 0, 679, 1, 0, 0, 0, 0, 681, 1, 0, 0, 0, 0, 683, 1, 0, 0, 0, 0, + 685, 1, 0, 0, 0, 0, 687, 1, 0, 0, 0, 0, 689, 1, 0, 0, 0, 0, 691, 1, 0, + 0, 0, 0, 693, 1, 0, 0, 0, 0, 695, 1, 0, 0, 0, 0, 697, 1, 0, 0, 0, 0, 699, + 1, 0, 0, 0, 0, 701, 1, 0, 0, 0, 0, 703, 1, 0, 0, 0, 0, 705, 1, 0, 0, 0, + 0, 707, 1, 0, 0, 0, 0, 709, 1, 0, 0, 0, 0, 711, 1, 0, 0, 0, 0, 713, 1, + 0, 0, 0, 0, 715, 1, 0, 0, 0, 0, 717, 1, 0, 0, 0, 0, 719, 1, 0, 0, 0, 0, + 721, 1, 0, 0, 0, 0, 723, 1, 0, 0, 0, 0, 725, 1, 0, 0, 0, 0, 727, 1, 0, + 0, 0, 0, 729, 1, 0, 0, 0, 0, 731, 1, 0, 0, 0, 0, 733, 1, 0, 0, 0, 0, 735, + 1, 0, 0, 0, 0, 737, 1, 0, 0, 0, 0, 739, 1, 0, 0, 0, 0, 741, 1, 0, 0, 0, + 0, 743, 1, 0, 0, 0, 0, 745, 1, 0, 0, 0, 0, 747, 1, 0, 0, 0, 0, 749, 1, + 0, 0, 0, 0, 751, 1, 0, 0, 0, 0, 753, 1, 0, 0, 0, 0, 755, 1, 0, 0, 0, 0, + 757, 1, 0, 0, 0, 0, 759, 1, 0, 0, 0, 0, 761, 1, 0, 0, 0, 0, 763, 1, 0, + 0, 0, 0, 765, 1, 0, 0, 0, 0, 767, 1, 0, 0, 0, 0, 769, 1, 0, 0, 0, 0, 771, + 1, 0, 0, 0, 0, 773, 1, 0, 0, 0, 0, 775, 1, 0, 0, 0, 0, 777, 1, 0, 0, 0, + 0, 779, 1, 0, 0, 0, 0, 781, 1, 0, 0, 0, 0, 783, 1, 0, 0, 0, 0, 785, 1, + 0, 0, 0, 0, 787, 1, 0, 0, 0, 0, 789, 1, 0, 0, 0, 0, 791, 1, 0, 0, 0, 0, + 793, 1, 0, 0, 0, 0, 795, 1, 0, 0, 0, 0, 797, 1, 0, 0, 0, 0, 799, 1, 0, + 0, 0, 0, 801, 1, 0, 0, 0, 0, 803, 1, 0, 0, 0, 0, 805, 1, 0, 0, 0, 0, 807, + 1, 0, 0, 0, 0, 809, 1, 0, 0, 0, 0, 811, 1, 0, 0, 0, 0, 813, 1, 0, 0, 0, + 0, 815, 1, 0, 0, 0, 0, 817, 1, 0, 0, 0, 0, 819, 1, 0, 0, 0, 0, 821, 1, + 0, 0, 0, 0, 823, 1, 0, 0, 0, 0, 825, 1, 0, 0, 0, 0, 827, 1, 0, 0, 0, 0, + 829, 1, 0, 0, 0, 0, 831, 1, 0, 0, 0, 0, 833, 1, 0, 0, 0, 0, 835, 1, 0, + 0, 0, 0, 837, 1, 0, 0, 0, 0, 839, 1, 0, 0, 0, 0, 841, 1, 0, 0, 0, 0, 843, + 1, 0, 0, 0, 0, 845, 1, 0, 0, 0, 0, 847, 1, 0, 0, 0, 0, 849, 1, 0, 0, 0, + 0, 851, 1, 0, 0, 0, 0, 853, 1, 0, 0, 0, 0, 855, 1, 0, 0, 0, 0, 857, 1, + 0, 0, 0, 0, 859, 1, 0, 0, 0, 0, 861, 1, 0, 0, 0, 0, 863, 1, 0, 0, 0, 0, + 865, 1, 0, 0, 0, 0, 867, 1, 0, 0, 0, 0, 869, 1, 0, 0, 0, 0, 871, 1, 0, + 0, 0, 0, 873, 1, 0, 0, 0, 0, 875, 1, 0, 0, 0, 0, 877, 1, 0, 0, 0, 0, 879, + 1, 0, 0, 0, 0, 881, 1, 0, 0, 0, 0, 883, 1, 0, 0, 0, 0, 885, 1, 0, 0, 0, + 0, 887, 1, 0, 0, 0, 0, 889, 1, 0, 0, 0, 0, 891, 1, 0, 0, 0, 0, 893, 1, + 0, 0, 0, 0, 895, 1, 0, 0, 0, 0, 897, 1, 0, 0, 0, 0, 899, 1, 0, 0, 0, 0, + 901, 1, 0, 0, 0, 0, 903, 1, 0, 0, 0, 0, 905, 1, 0, 0, 0, 0, 907, 1, 0, + 0, 0, 0, 909, 1, 0, 0, 0, 0, 911, 1, 0, 0, 0, 0, 913, 1, 0, 0, 0, 0, 915, + 1, 0, 0, 0, 0, 917, 1, 0, 0, 0, 0, 919, 1, 0, 0, 0, 0, 921, 1, 0, 0, 0, + 0, 923, 1, 0, 0, 0, 0, 925, 1, 0, 0, 0, 0, 927, 1, 0, 0, 0, 0, 929, 1, + 0, 0, 0, 0, 931, 1, 0, 0, 0, 0, 933, 1, 0, 0, 0, 0, 935, 1, 0, 0, 0, 0, + 937, 1, 0, 0, 0, 0, 939, 1, 0, 0, 0, 0, 941, 1, 0, 0, 0, 0, 943, 1, 0, + 0, 0, 0, 945, 1, 0, 0, 0, 0, 947, 1, 0, 0, 0, 0, 949, 1, 0, 0, 0, 0, 951, + 1, 0, 0, 0, 0, 953, 1, 0, 0, 0, 0, 955, 1, 0, 0, 0, 0, 957, 1, 0, 0, 0, + 0, 959, 1, 0, 0, 0, 0, 961, 1, 0, 0, 0, 0, 963, 1, 0, 0, 0, 0, 965, 1, + 0, 0, 0, 0, 967, 1, 0, 0, 0, 0, 969, 1, 0, 0, 0, 0, 971, 1, 0, 0, 0, 0, + 973, 1, 0, 0, 0, 0, 975, 1, 0, 0, 0, 0, 977, 1, 0, 0, 0, 0, 979, 1, 0, + 0, 0, 0, 981, 1, 0, 0, 0, 0, 983, 1, 0, 0, 0, 0, 985, 1, 0, 0, 0, 0, 987, + 1, 0, 0, 0, 0, 989, 1, 0, 0, 0, 0, 991, 1, 0, 0, 0, 0, 993, 1, 0, 0, 0, + 0, 995, 1, 0, 0, 0, 0, 997, 1, 0, 0, 0, 0, 999, 1, 0, 0, 0, 0, 1001, 1, + 0, 0, 0, 0, 1003, 1, 0, 0, 0, 0, 1005, 1, 0, 0, 0, 0, 1007, 1, 0, 0, 0, + 0, 1009, 1, 0, 0, 0, 0, 1011, 1, 0, 0, 0, 0, 1013, 1, 0, 0, 0, 0, 1015, + 1, 0, 0, 0, 0, 1017, 1, 0, 0, 0, 0, 1019, 1, 0, 0, 0, 0, 1021, 1, 0, 0, + 0, 0, 1023, 1, 0, 0, 0, 0, 1025, 1, 0, 0, 0, 0, 1027, 1, 0, 0, 0, 0, 1029, + 1, 0, 0, 0, 0, 1031, 1, 0, 0, 0, 0, 1033, 1, 0, 0, 0, 0, 1035, 1, 0, 0, + 0, 0, 1037, 1, 0, 0, 0, 0, 1039, 1, 0, 0, 0, 0, 1041, 1, 0, 0, 0, 0, 1043, + 1, 0, 0, 0, 0, 1045, 1, 0, 0, 0, 0, 1047, 1, 0, 0, 0, 0, 1049, 1, 0, 0, + 0, 0, 1051, 1, 0, 0, 0, 0, 1053, 1, 0, 0, 0, 1, 1114, 1, 0, 0, 0, 3, 1120, + 1, 0, 0, 0, 5, 1133, 1, 0, 0, 0, 7, 1147, 1, 0, 0, 0, 9, 1158, 1, 0, 0, + 0, 11, 1178, 1, 0, 0, 0, 13, 1190, 1, 0, 0, 0, 15, 1203, 1, 0, 0, 0, 17, + 1216, 1, 0, 0, 0, 19, 1229, 1, 0, 0, 0, 21, 1241, 1, 0, 0, 0, 23, 1256, + 1, 0, 0, 0, 25, 1272, 1, 0, 0, 0, 27, 1356, 1, 0, 0, 0, 29, 1448, 1, 0, + 0, 0, 31, 1531, 1, 0, 0, 0, 33, 1533, 1, 0, 0, 0, 35, 1540, 1, 0, 0, 0, + 37, 1546, 1, 0, 0, 0, 39, 1551, 1, 0, 0, 0, 41, 1558, 1, 0, 0, 0, 43, 1563, + 1, 0, 0, 0, 45, 1570, 1, 0, 0, 0, 47, 1577, 1, 0, 0, 0, 49, 1588, 1, 0, + 0, 0, 51, 1593, 1, 0, 0, 0, 53, 1602, 1, 0, 0, 0, 55, 1614, 1, 0, 0, 0, + 57, 1626, 1, 0, 0, 0, 59, 1633, 1, 0, 0, 0, 61, 1643, 1, 0, 0, 0, 63, 1652, + 1, 0, 0, 0, 65, 1661, 1, 0, 0, 0, 67, 1666, 1, 0, 0, 0, 69, 1674, 1, 0, + 0, 0, 71, 1681, 1, 0, 0, 0, 73, 1690, 1, 0, 0, 0, 75, 1699, 1, 0, 0, 0, + 77, 1709, 1, 0, 0, 0, 79, 1716, 1, 0, 0, 0, 81, 1724, 1, 0, 0, 0, 83, 1730, + 1, 0, 0, 0, 85, 1736, 1, 0, 0, 0, 87, 1742, 1, 0, 0, 0, 89, 1752, 1, 0, + 0, 0, 91, 1767, 1, 0, 0, 0, 93, 1775, 1, 0, 0, 0, 95, 1779, 1, 0, 0, 0, + 97, 1783, 1, 0, 0, 0, 99, 1792, 1, 0, 0, 0, 101, 1806, 1, 0, 0, 0, 103, + 1814, 1, 0, 0, 0, 105, 1820, 1, 0, 0, 0, 107, 1838, 1, 0, 0, 0, 109, 1846, + 1, 0, 0, 0, 111, 1854, 1, 0, 0, 0, 113, 1862, 1, 0, 0, 0, 115, 1873, 1, + 0, 0, 0, 117, 1879, 1, 0, 0, 0, 119, 1887, 1, 0, 0, 0, 121, 1895, 1, 0, + 0, 0, 123, 1902, 1, 0, 0, 0, 125, 1908, 1, 0, 0, 0, 127, 1913, 1, 0, 0, + 0, 129, 1918, 1, 0, 0, 0, 131, 1923, 1, 0, 0, 0, 133, 1932, 1, 0, 0, 0, + 135, 1936, 1, 0, 0, 0, 137, 1947, 1, 0, 0, 0, 139, 1953, 1, 0, 0, 0, 141, + 1960, 1, 0, 0, 0, 143, 1965, 1, 0, 0, 0, 145, 1971, 1, 0, 0, 0, 147, 1978, + 1, 0, 0, 0, 149, 1985, 1, 0, 0, 0, 151, 1991, 1, 0, 0, 0, 153, 1994, 1, + 0, 0, 0, 155, 2002, 1, 0, 0, 0, 157, 2012, 1, 0, 0, 0, 159, 2017, 1, 0, + 0, 0, 161, 2022, 1, 0, 0, 0, 163, 2027, 1, 0, 0, 0, 165, 2032, 1, 0, 0, + 0, 167, 2036, 1, 0, 0, 0, 169, 2045, 1, 0, 0, 0, 171, 2049, 1, 0, 0, 0, + 173, 2054, 1, 0, 0, 0, 175, 2059, 1, 0, 0, 0, 177, 2065, 1, 0, 0, 0, 179, + 2071, 1, 0, 0, 0, 181, 2077, 1, 0, 0, 0, 183, 2082, 1, 0, 0, 0, 185, 2088, + 1, 0, 0, 0, 187, 2091, 1, 0, 0, 0, 189, 2095, 1, 0, 0, 0, 191, 2100, 1, + 0, 0, 0, 193, 2106, 1, 0, 0, 0, 195, 2114, 1, 0, 0, 0, 197, 2121, 1, 0, + 0, 0, 199, 2130, 1, 0, 0, 0, 201, 2137, 1, 0, 0, 0, 203, 2144, 1, 0, 0, + 0, 205, 2153, 1, 0, 0, 0, 207, 2158, 1, 0, 0, 0, 209, 2164, 1, 0, 0, 0, + 211, 2167, 1, 0, 0, 0, 213, 2173, 1, 0, 0, 0, 215, 2180, 1, 0, 0, 0, 217, + 2189, 1, 0, 0, 0, 219, 2195, 1, 0, 0, 0, 221, 2202, 1, 0, 0, 0, 223, 2208, + 1, 0, 0, 0, 225, 2212, 1, 0, 0, 0, 227, 2217, 1, 0, 0, 0, 229, 2222, 1, + 0, 0, 0, 231, 2233, 1, 0, 0, 0, 233, 2240, 1, 0, 0, 0, 235, 2248, 1, 0, + 0, 0, 237, 2254, 1, 0, 0, 0, 239, 2259, 1, 0, 0, 0, 241, 2266, 1, 0, 0, + 0, 243, 2271, 1, 0, 0, 0, 245, 2276, 1, 0, 0, 0, 247, 2281, 1, 0, 0, 0, + 249, 2286, 1, 0, 0, 0, 251, 2292, 1, 0, 0, 0, 253, 2302, 1, 0, 0, 0, 255, + 2311, 1, 0, 0, 0, 257, 2320, 1, 0, 0, 0, 259, 2328, 1, 0, 0, 0, 261, 2336, + 1, 0, 0, 0, 263, 2344, 1, 0, 0, 0, 265, 2349, 1, 0, 0, 0, 267, 2356, 1, + 0, 0, 0, 269, 2363, 1, 0, 0, 0, 271, 2368, 1, 0, 0, 0, 273, 2376, 1, 0, + 0, 0, 275, 2382, 1, 0, 0, 0, 277, 2391, 1, 0, 0, 0, 279, 2396, 1, 0, 0, + 0, 281, 2402, 1, 0, 0, 0, 283, 2409, 1, 0, 0, 0, 285, 2417, 1, 0, 0, 0, + 287, 2423, 1, 0, 0, 0, 289, 2431, 1, 0, 0, 0, 291, 2440, 1, 0, 0, 0, 293, + 2450, 1, 0, 0, 0, 295, 2462, 1, 0, 0, 0, 297, 2474, 1, 0, 0, 0, 299, 2485, + 1, 0, 0, 0, 301, 2494, 1, 0, 0, 0, 303, 2503, 1, 0, 0, 0, 305, 2512, 1, + 0, 0, 0, 307, 2520, 1, 0, 0, 0, 309, 2530, 1, 0, 0, 0, 311, 2534, 1, 0, + 0, 0, 313, 2539, 1, 0, 0, 0, 315, 2550, 1, 0, 0, 0, 317, 2557, 1, 0, 0, + 0, 319, 2567, 1, 0, 0, 0, 321, 2582, 1, 0, 0, 0, 323, 2595, 1, 0, 0, 0, + 325, 2606, 1, 0, 0, 0, 327, 2613, 1, 0, 0, 0, 329, 2619, 1, 0, 0, 0, 331, + 2631, 1, 0, 0, 0, 333, 2639, 1, 0, 0, 0, 335, 2650, 1, 0, 0, 0, 337, 2656, + 1, 0, 0, 0, 339, 2664, 1, 0, 0, 0, 341, 2673, 1, 0, 0, 0, 343, 2684, 1, + 0, 0, 0, 345, 2697, 1, 0, 0, 0, 347, 2706, 1, 0, 0, 0, 349, 2715, 1, 0, + 0, 0, 351, 2724, 1, 0, 0, 0, 353, 2742, 1, 0, 0, 0, 355, 2768, 1, 0, 0, + 0, 357, 2778, 1, 0, 0, 0, 359, 2789, 1, 0, 0, 0, 361, 2802, 1, 0, 0, 0, + 363, 2818, 1, 0, 0, 0, 365, 2829, 1, 0, 0, 0, 367, 2842, 1, 0, 0, 0, 369, + 2857, 1, 0, 0, 0, 371, 2868, 1, 0, 0, 0, 373, 2881, 1, 0, 0, 0, 375, 2888, + 1, 0, 0, 0, 377, 2895, 1, 0, 0, 0, 379, 2903, 1, 0, 0, 0, 381, 2911, 1, + 0, 0, 0, 383, 2916, 1, 0, 0, 0, 385, 2924, 1, 0, 0, 0, 387, 2935, 1, 0, + 0, 0, 389, 2942, 1, 0, 0, 0, 391, 2952, 1, 0, 0, 0, 393, 2959, 1, 0, 0, + 0, 395, 2966, 1, 0, 0, 0, 397, 2974, 1, 0, 0, 0, 399, 2985, 1, 0, 0, 0, + 401, 2991, 1, 0, 0, 0, 403, 2996, 1, 0, 0, 0, 405, 3010, 1, 0, 0, 0, 407, + 3024, 1, 0, 0, 0, 409, 3031, 1, 0, 0, 0, 411, 3041, 1, 0, 0, 0, 413, 3054, + 1, 0, 0, 0, 415, 3066, 1, 0, 0, 0, 417, 3077, 1, 0, 0, 0, 419, 3083, 1, + 0, 0, 0, 421, 3089, 1, 0, 0, 0, 423, 3101, 1, 0, 0, 0, 425, 3108, 1, 0, + 0, 0, 427, 3119, 1, 0, 0, 0, 429, 3136, 1, 0, 0, 0, 431, 3144, 1, 0, 0, + 0, 433, 3150, 1, 0, 0, 0, 435, 3156, 1, 0, 0, 0, 437, 3163, 1, 0, 0, 0, + 439, 3172, 1, 0, 0, 0, 441, 3176, 1, 0, 0, 0, 443, 3183, 1, 0, 0, 0, 445, + 3191, 1, 0, 0, 0, 447, 3199, 1, 0, 0, 0, 449, 3208, 1, 0, 0, 0, 451, 3217, + 1, 0, 0, 0, 453, 3228, 1, 0, 0, 0, 455, 3239, 1, 0, 0, 0, 457, 3245, 1, + 0, 0, 0, 459, 3256, 1, 0, 0, 0, 461, 3268, 1, 0, 0, 0, 463, 3281, 1, 0, + 0, 0, 465, 3297, 1, 0, 0, 0, 467, 3310, 1, 0, 0, 0, 469, 3318, 1, 0, 0, + 0, 471, 3327, 1, 0, 0, 0, 473, 3335, 1, 0, 0, 0, 475, 3347, 1, 0, 0, 0, + 477, 3360, 1, 0, 0, 0, 479, 3375, 1, 0, 0, 0, 481, 3386, 1, 0, 0, 0, 483, + 3396, 1, 0, 0, 0, 485, 3410, 1, 0, 0, 0, 487, 3424, 1, 0, 0, 0, 489, 3438, + 1, 0, 0, 0, 491, 3453, 1, 0, 0, 0, 493, 3467, 1, 0, 0, 0, 495, 3477, 1, + 0, 0, 0, 497, 3486, 1, 0, 0, 0, 499, 3493, 1, 0, 0, 0, 501, 3501, 1, 0, + 0, 0, 503, 3509, 1, 0, 0, 0, 505, 3516, 1, 0, 0, 0, 507, 3524, 1, 0, 0, + 0, 509, 3529, 1, 0, 0, 0, 511, 3538, 1, 0, 0, 0, 513, 3546, 1, 0, 0, 0, + 515, 3555, 1, 0, 0, 0, 517, 3564, 1, 0, 0, 0, 519, 3567, 1, 0, 0, 0, 521, + 3570, 1, 0, 0, 0, 523, 3573, 1, 0, 0, 0, 525, 3576, 1, 0, 0, 0, 527, 3579, + 1, 0, 0, 0, 529, 3582, 1, 0, 0, 0, 531, 3592, 1, 0, 0, 0, 533, 3599, 1, + 0, 0, 0, 535, 3607, 1, 0, 0, 0, 537, 3612, 1, 0, 0, 0, 539, 3620, 1, 0, + 0, 0, 541, 3628, 1, 0, 0, 0, 543, 3637, 1, 0, 0, 0, 545, 3642, 1, 0, 0, + 0, 547, 3653, 1, 0, 0, 0, 549, 3660, 1, 0, 0, 0, 551, 3673, 1, 0, 0, 0, + 553, 3682, 1, 0, 0, 0, 555, 3688, 1, 0, 0, 0, 557, 3703, 1, 0, 0, 0, 559, + 3708, 1, 0, 0, 0, 561, 3714, 1, 0, 0, 0, 563, 3718, 1, 0, 0, 0, 565, 3722, + 1, 0, 0, 0, 567, 3726, 1, 0, 0, 0, 569, 3730, 1, 0, 0, 0, 571, 3737, 1, + 0, 0, 0, 573, 3742, 1, 0, 0, 0, 575, 3751, 1, 0, 0, 0, 577, 3756, 1, 0, + 0, 0, 579, 3760, 1, 0, 0, 0, 581, 3763, 1, 0, 0, 0, 583, 3767, 1, 0, 0, + 0, 585, 3772, 1, 0, 0, 0, 587, 3775, 1, 0, 0, 0, 589, 3783, 1, 0, 0, 0, + 591, 3788, 1, 0, 0, 0, 593, 3794, 1, 0, 0, 0, 595, 3801, 1, 0, 0, 0, 597, + 3808, 1, 0, 0, 0, 599, 3816, 1, 0, 0, 0, 601, 3821, 1, 0, 0, 0, 603, 3827, + 1, 0, 0, 0, 605, 3838, 1, 0, 0, 0, 607, 3847, 1, 0, 0, 0, 609, 3852, 1, + 0, 0, 0, 611, 3861, 1, 0, 0, 0, 613, 3867, 1, 0, 0, 0, 615, 3873, 1, 0, + 0, 0, 617, 3879, 1, 0, 0, 0, 619, 3885, 1, 0, 0, 0, 621, 3893, 1, 0, 0, + 0, 623, 3904, 1, 0, 0, 0, 625, 3910, 1, 0, 0, 0, 627, 3921, 1, 0, 0, 0, + 629, 3932, 1, 0, 0, 0, 631, 3937, 1, 0, 0, 0, 633, 3945, 1, 0, 0, 0, 635, + 3954, 1, 0, 0, 0, 637, 3960, 1, 0, 0, 0, 639, 3965, 1, 0, 0, 0, 641, 3970, + 1, 0, 0, 0, 643, 3985, 1, 0, 0, 0, 645, 3991, 1, 0, 0, 0, 647, 3999, 1, + 0, 0, 0, 649, 4005, 1, 0, 0, 0, 651, 4015, 1, 0, 0, 0, 653, 4022, 1, 0, + 0, 0, 655, 4027, 1, 0, 0, 0, 657, 4035, 1, 0, 0, 0, 659, 4040, 1, 0, 0, + 0, 661, 4049, 1, 0, 0, 0, 663, 4057, 1, 0, 0, 0, 665, 4062, 1, 0, 0, 0, + 667, 4067, 1, 0, 0, 0, 669, 4071, 1, 0, 0, 0, 671, 4078, 1, 0, 0, 0, 673, + 4083, 1, 0, 0, 0, 675, 4091, 1, 0, 0, 0, 677, 4095, 1, 0, 0, 0, 679, 4100, + 1, 0, 0, 0, 681, 4104, 1, 0, 0, 0, 683, 4110, 1, 0, 0, 0, 685, 4114, 1, + 0, 0, 0, 687, 4121, 1, 0, 0, 0, 689, 4129, 1, 0, 0, 0, 691, 4137, 1, 0, + 0, 0, 693, 4147, 1, 0, 0, 0, 695, 4154, 1, 0, 0, 0, 697, 4163, 1, 0, 0, + 0, 699, 4173, 1, 0, 0, 0, 701, 4181, 1, 0, 0, 0, 703, 4187, 1, 0, 0, 0, + 705, 4194, 1, 0, 0, 0, 707, 4208, 1, 0, 0, 0, 709, 4217, 1, 0, 0, 0, 711, + 4226, 1, 0, 0, 0, 713, 4237, 1, 0, 0, 0, 715, 4246, 1, 0, 0, 0, 717, 4252, + 1, 0, 0, 0, 719, 4256, 1, 0, 0, 0, 721, 4264, 1, 0, 0, 0, 723, 4271, 1, + 0, 0, 0, 725, 4276, 1, 0, 0, 0, 727, 4282, 1, 0, 0, 0, 729, 4287, 1, 0, + 0, 0, 731, 4294, 1, 0, 0, 0, 733, 4303, 1, 0, 0, 0, 735, 4313, 1, 0, 0, + 0, 737, 4318, 1, 0, 0, 0, 739, 4325, 1, 0, 0, 0, 741, 4331, 1, 0, 0, 0, + 743, 4339, 1, 0, 0, 0, 745, 4349, 1, 0, 0, 0, 747, 4360, 1, 0, 0, 0, 749, + 4368, 1, 0, 0, 0, 751, 4379, 1, 0, 0, 0, 753, 4384, 1, 0, 0, 0, 755, 4390, + 1, 0, 0, 0, 757, 4395, 1, 0, 0, 0, 759, 4401, 1, 0, 0, 0, 761, 4407, 1, + 0, 0, 0, 763, 4415, 1, 0, 0, 0, 765, 4424, 1, 0, 0, 0, 767, 4437, 1, 0, + 0, 0, 769, 4448, 1, 0, 0, 0, 771, 4458, 1, 0, 0, 0, 773, 4468, 1, 0, 0, + 0, 775, 4481, 1, 0, 0, 0, 777, 4491, 1, 0, 0, 0, 779, 4503, 1, 0, 0, 0, + 781, 4510, 1, 0, 0, 0, 783, 4519, 1, 0, 0, 0, 785, 4529, 1, 0, 0, 0, 787, + 4539, 1, 0, 0, 0, 789, 4546, 1, 0, 0, 0, 791, 4553, 1, 0, 0, 0, 793, 4559, + 1, 0, 0, 0, 795, 4566, 1, 0, 0, 0, 797, 4574, 1, 0, 0, 0, 799, 4580, 1, + 0, 0, 0, 801, 4586, 1, 0, 0, 0, 803, 4594, 1, 0, 0, 0, 805, 4601, 1, 0, + 0, 0, 807, 4606, 1, 0, 0, 0, 809, 4612, 1, 0, 0, 0, 811, 4617, 1, 0, 0, + 0, 813, 4623, 1, 0, 0, 0, 815, 4631, 1, 0, 0, 0, 817, 4640, 1, 0, 0, 0, + 819, 4649, 1, 0, 0, 0, 821, 4657, 1, 0, 0, 0, 823, 4681, 1, 0, 0, 0, 825, + 4689, 1, 0, 0, 0, 827, 4695, 1, 0, 0, 0, 829, 4706, 1, 0, 0, 0, 831, 4714, + 1, 0, 0, 0, 833, 4722, 1, 0, 0, 0, 835, 4733, 1, 0, 0, 0, 837, 4744, 1, + 0, 0, 0, 839, 4751, 1, 0, 0, 0, 841, 4757, 1, 0, 0, 0, 843, 4767, 1, 0, + 0, 0, 845, 4778, 1, 0, 0, 0, 847, 4783, 1, 0, 0, 0, 849, 4789, 1, 0, 0, + 0, 851, 4796, 1, 0, 0, 0, 853, 4803, 1, 0, 0, 0, 855, 4812, 1, 0, 0, 0, + 857, 4817, 1, 0, 0, 0, 859, 4822, 1, 0, 0, 0, 861, 4825, 1, 0, 0, 0, 863, + 4828, 1, 0, 0, 0, 865, 4833, 1, 0, 0, 0, 867, 4837, 1, 0, 0, 0, 869, 4845, + 1, 0, 0, 0, 871, 4853, 1, 0, 0, 0, 873, 4867, 1, 0, 0, 0, 875, 4874, 1, + 0, 0, 0, 877, 4878, 1, 0, 0, 0, 879, 4886, 1, 0, 0, 0, 881, 4890, 1, 0, + 0, 0, 883, 4894, 1, 0, 0, 0, 885, 4905, 1, 0, 0, 0, 887, 4908, 1, 0, 0, + 0, 889, 4917, 1, 0, 0, 0, 891, 4923, 1, 0, 0, 0, 893, 4933, 1, 0, 0, 0, + 895, 4942, 1, 0, 0, 0, 897, 4956, 1, 0, 0, 0, 899, 4965, 1, 0, 0, 0, 901, + 4971, 1, 0, 0, 0, 903, 4977, 1, 0, 0, 0, 905, 4986, 1, 0, 0, 0, 907, 4991, + 1, 0, 0, 0, 909, 4997, 1, 0, 0, 0, 911, 5003, 1, 0, 0, 0, 913, 5010, 1, + 0, 0, 0, 915, 5021, 1, 0, 0, 0, 917, 5031, 1, 0, 0, 0, 919, 5038, 1, 0, + 0, 0, 921, 5043, 1, 0, 0, 0, 923, 5050, 1, 0, 0, 0, 925, 5056, 1, 0, 0, + 0, 927, 5063, 1, 0, 0, 0, 929, 5069, 1, 0, 0, 0, 931, 5074, 1, 0, 0, 0, + 933, 5079, 1, 0, 0, 0, 935, 5088, 1, 0, 0, 0, 937, 5094, 1, 0, 0, 0, 939, + 5103, 1, 0, 0, 0, 941, 5113, 1, 0, 0, 0, 943, 5126, 1, 0, 0, 0, 945, 5132, + 1, 0, 0, 0, 947, 5137, 1, 0, 0, 0, 949, 5141, 1, 0, 0, 0, 951, 5150, 1, + 0, 0, 0, 953, 5155, 1, 0, 0, 0, 955, 5164, 1, 0, 0, 0, 957, 5169, 1, 0, + 0, 0, 959, 5180, 1, 0, 0, 0, 961, 5189, 1, 0, 0, 0, 963, 5202, 1, 0, 0, + 0, 965, 5206, 1, 0, 0, 0, 967, 5212, 1, 0, 0, 0, 969, 5215, 1, 0, 0, 0, + 971, 5220, 1, 0, 0, 0, 973, 5226, 1, 0, 0, 0, 975, 5238, 1, 0, 0, 0, 977, + 5246, 1, 0, 0, 0, 979, 5250, 1, 0, 0, 0, 981, 5260, 1, 0, 0, 0, 983, 5262, + 1, 0, 0, 0, 985, 5265, 1, 0, 0, 0, 987, 5268, 1, 0, 0, 0, 989, 5270, 1, + 0, 0, 0, 991, 5272, 1, 0, 0, 0, 993, 5274, 1, 0, 0, 0, 995, 5276, 1, 0, + 0, 0, 997, 5278, 1, 0, 0, 0, 999, 5280, 1, 0, 0, 0, 1001, 5282, 1, 0, 0, + 0, 1003, 5284, 1, 0, 0, 0, 1005, 5288, 1, 0, 0, 0, 1007, 5292, 1, 0, 0, + 0, 1009, 5294, 1, 0, 0, 0, 1011, 5296, 1, 0, 0, 0, 1013, 5298, 1, 0, 0, + 0, 1015, 5300, 1, 0, 0, 0, 1017, 5302, 1, 0, 0, 0, 1019, 5304, 1, 0, 0, + 0, 1021, 5306, 1, 0, 0, 0, 1023, 5308, 1, 0, 0, 0, 1025, 5310, 1, 0, 0, + 0, 1027, 5312, 1, 0, 0, 0, 1029, 5314, 1, 0, 0, 0, 1031, 5316, 1, 0, 0, + 0, 1033, 5319, 1, 0, 0, 0, 1035, 5322, 1, 0, 0, 0, 1037, 5324, 1, 0, 0, + 0, 1039, 5326, 1, 0, 0, 0, 1041, 5338, 1, 0, 0, 0, 1043, 5351, 1, 0, 0, + 0, 1045, 5364, 1, 0, 0, 0, 1047, 5390, 1, 0, 0, 0, 1049, 5396, 1, 0, 0, + 0, 1051, 5403, 1, 0, 0, 0, 1053, 5437, 1, 0, 0, 0, 1055, 5439, 1, 0, 0, + 0, 1057, 5441, 1, 0, 0, 0, 1059, 5443, 1, 0, 0, 0, 1061, 5445, 1, 0, 0, + 0, 1063, 5447, 1, 0, 0, 0, 1065, 5449, 1, 0, 0, 0, 1067, 5451, 1, 0, 0, + 0, 1069, 5453, 1, 0, 0, 0, 1071, 5455, 1, 0, 0, 0, 1073, 5457, 1, 0, 0, + 0, 1075, 5459, 1, 0, 0, 0, 1077, 5461, 1, 0, 0, 0, 1079, 5463, 1, 0, 0, + 0, 1081, 5465, 1, 0, 0, 0, 1083, 5467, 1, 0, 0, 0, 1085, 5469, 1, 0, 0, + 0, 1087, 5471, 1, 0, 0, 0, 1089, 5473, 1, 0, 0, 0, 1091, 5475, 1, 0, 0, + 0, 1093, 5477, 1, 0, 0, 0, 1095, 5479, 1, 0, 0, 0, 1097, 5481, 1, 0, 0, + 0, 1099, 5483, 1, 0, 0, 0, 1101, 5485, 1, 0, 0, 0, 1103, 5487, 1, 0, 0, + 0, 1105, 5489, 1, 0, 0, 0, 1107, 5491, 1, 0, 0, 0, 1109, 5493, 1, 0, 0, + 0, 1111, 5495, 1, 0, 0, 0, 1113, 1115, 7, 0, 0, 0, 1114, 1113, 1, 0, 0, + 0, 1115, 1116, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, + 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 6, 0, 0, 0, 1119, 2, 1, 0, 0, 0, + 1120, 1121, 5, 47, 0, 0, 1121, 1122, 5, 42, 0, 0, 1122, 1123, 5, 42, 0, + 0, 1123, 1127, 1, 0, 0, 0, 1124, 1126, 9, 0, 0, 0, 1125, 1124, 1, 0, 0, + 0, 1126, 1129, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, + 0, 1128, 1130, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1131, 5, 42, 0, + 0, 1131, 1132, 5, 47, 0, 0, 1132, 4, 1, 0, 0, 0, 1133, 1134, 5, 47, 0, + 0, 1134, 1135, 5, 42, 0, 0, 1135, 1139, 1, 0, 0, 0, 1136, 1138, 9, 0, 0, + 0, 1137, 1136, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, + 0, 1139, 1137, 1, 0, 0, 0, 1140, 1142, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, + 0, 1142, 1143, 5, 42, 0, 0, 1143, 1144, 5, 47, 0, 0, 1144, 1145, 1, 0, + 0, 0, 1145, 1146, 6, 2, 0, 0, 1146, 6, 1, 0, 0, 0, 1147, 1148, 5, 45, 0, + 0, 1148, 1149, 5, 45, 0, 0, 1149, 1153, 1, 0, 0, 0, 1150, 1152, 8, 1, 0, + 0, 1151, 1150, 1, 0, 0, 0, 1152, 1155, 1, 0, 0, 0, 1153, 1151, 1, 0, 0, + 0, 1153, 1154, 1, 0, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, + 0, 1156, 1157, 6, 3, 0, 0, 1157, 8, 1, 0, 0, 0, 1158, 1159, 3, 1077, 538, + 0, 1159, 1161, 3, 1097, 548, 0, 1160, 1162, 3, 1, 0, 0, 1161, 1160, 1, + 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, + 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 3, 1087, 543, 0, 1166, 1167, + 3, 1089, 544, 0, 1167, 1169, 3, 1099, 549, 0, 1168, 1170, 3, 1, 0, 0, 1169, + 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1171, + 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 3, 1087, 543, 0, + 1174, 1175, 3, 1101, 550, 0, 1175, 1176, 3, 1083, 541, 0, 1176, 1177, 3, + 1083, 541, 0, 1177, 10, 1, 0, 0, 0, 1178, 1179, 3, 1077, 538, 0, 1179, + 1181, 3, 1097, 548, 0, 1180, 1182, 3, 1, 0, 0, 1181, 1180, 1, 0, 0, 0, + 1182, 1183, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, + 1184, 1185, 1, 0, 0, 0, 1185, 1186, 3, 1087, 543, 0, 1186, 1187, 3, 1101, + 550, 0, 1187, 1188, 3, 1083, 541, 0, 1188, 1189, 3, 1083, 541, 0, 1189, + 12, 1, 0, 0, 0, 1190, 1191, 3, 1087, 543, 0, 1191, 1192, 3, 1089, 544, + 0, 1192, 1194, 3, 1099, 549, 0, 1193, 1195, 3, 1, 0, 0, 1194, 1193, 1, + 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, + 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 3, 1087, 543, 0, 1199, 1200, + 3, 1101, 550, 0, 1200, 1201, 3, 1083, 541, 0, 1201, 1202, 3, 1083, 541, + 0, 1202, 14, 1, 0, 0, 0, 1203, 1204, 3, 1073, 536, 0, 1204, 1205, 3, 1095, + 547, 0, 1205, 1206, 3, 1089, 544, 0, 1206, 1207, 3, 1101, 550, 0, 1207, + 1209, 3, 1091, 545, 0, 1208, 1210, 3, 1, 0, 0, 1209, 1208, 1, 0, 0, 0, + 1210, 1211, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, + 1212, 1213, 1, 0, 0, 0, 1213, 1214, 3, 1063, 531, 0, 1214, 1215, 3, 1109, + 554, 0, 1215, 16, 1, 0, 0, 0, 1216, 1217, 3, 1089, 544, 0, 1217, 1218, + 3, 1095, 547, 0, 1218, 1219, 3, 1067, 533, 0, 1219, 1220, 3, 1069, 534, + 0, 1220, 1222, 3, 1095, 547, 0, 1221, 1223, 3, 1, 0, 0, 1222, 1221, 1, + 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1225, 1, + 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 1063, 531, 0, 1227, 1228, + 3, 1109, 554, 0, 1228, 18, 1, 0, 0, 0, 1229, 1230, 3, 1097, 548, 0, 1230, + 1231, 3, 1089, 544, 0, 1231, 1232, 3, 1095, 547, 0, 1232, 1234, 3, 1099, + 549, 0, 1233, 1235, 3, 1, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1236, 1, + 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, + 0, 0, 0, 1238, 1239, 3, 1063, 531, 0, 1239, 1240, 3, 1109, 554, 0, 1240, + 20, 1, 0, 0, 0, 1241, 1242, 3, 1087, 543, 0, 1242, 1243, 3, 1089, 544, + 0, 1243, 1244, 3, 1087, 543, 0, 1244, 1245, 5, 45, 0, 0, 1245, 1246, 3, + 1091, 545, 0, 1246, 1247, 3, 1069, 534, 0, 1247, 1248, 3, 1095, 547, 0, + 1248, 1249, 3, 1097, 548, 0, 1249, 1250, 3, 1077, 538, 0, 1250, 1251, 3, + 1097, 548, 0, 1251, 1252, 3, 1099, 549, 0, 1252, 1253, 3, 1069, 534, 0, + 1253, 1254, 3, 1087, 543, 0, 1254, 1255, 3, 1099, 549, 0, 1255, 22, 1, + 0, 0, 0, 1256, 1257, 3, 1095, 547, 0, 1257, 1258, 3, 1069, 534, 0, 1258, + 1259, 3, 1071, 535, 0, 1259, 1260, 3, 1069, 534, 0, 1260, 1261, 3, 1095, + 547, 0, 1261, 1262, 3, 1069, 534, 0, 1262, 1263, 3, 1087, 543, 0, 1263, + 1264, 3, 1065, 532, 0, 1264, 1266, 3, 1069, 534, 0, 1265, 1267, 5, 95, + 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, + 0, 0, 1268, 1269, 3, 1097, 548, 0, 1269, 1270, 3, 1069, 534, 0, 1270, 1271, + 3, 1099, 549, 0, 1271, 24, 1, 0, 0, 0, 1272, 1273, 3, 1083, 541, 0, 1273, + 1274, 3, 1077, 538, 0, 1274, 1275, 3, 1097, 548, 0, 1275, 1277, 3, 1099, + 549, 0, 1276, 1278, 3, 1, 0, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1279, 1, + 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, + 0, 0, 0, 1281, 1282, 3, 1089, 544, 0, 1282, 1283, 3, 1071, 535, 0, 1283, + 26, 1, 0, 0, 0, 1284, 1285, 3, 1067, 533, 0, 1285, 1286, 3, 1069, 534, + 0, 1286, 1287, 3, 1083, 541, 0, 1287, 1288, 3, 1069, 534, 0, 1288, 1289, + 3, 1099, 549, 0, 1289, 1291, 3, 1069, 534, 0, 1290, 1292, 3, 1, 0, 0, 1291, + 1290, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1293, + 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 3, 1061, 530, 0, + 1296, 1297, 3, 1087, 543, 0, 1297, 1299, 3, 1067, 533, 0, 1298, 1300, 3, + 1, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1299, 1, + 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 3, + 1095, 547, 0, 1304, 1305, 3, 1069, 534, 0, 1305, 1306, 3, 1071, 535, 0, + 1306, 1307, 3, 1069, 534, 0, 1307, 1308, 3, 1095, 547, 0, 1308, 1309, 3, + 1069, 534, 0, 1309, 1310, 3, 1087, 543, 0, 1310, 1311, 3, 1065, 532, 0, + 1311, 1312, 3, 1069, 534, 0, 1312, 1313, 3, 1097, 548, 0, 1313, 1357, 1, + 0, 0, 0, 1314, 1315, 3, 1067, 533, 0, 1315, 1316, 3, 1069, 534, 0, 1316, + 1317, 3, 1083, 541, 0, 1317, 1318, 3, 1069, 534, 0, 1318, 1319, 3, 1099, + 549, 0, 1319, 1320, 3, 1069, 534, 0, 1320, 1321, 5, 95, 0, 0, 1321, 1322, + 3, 1061, 530, 0, 1322, 1323, 3, 1087, 543, 0, 1323, 1324, 3, 1067, 533, + 0, 1324, 1325, 5, 95, 0, 0, 1325, 1326, 3, 1095, 547, 0, 1326, 1327, 3, + 1069, 534, 0, 1327, 1328, 3, 1071, 535, 0, 1328, 1329, 3, 1069, 534, 0, + 1329, 1330, 3, 1095, 547, 0, 1330, 1331, 3, 1069, 534, 0, 1331, 1332, 3, + 1087, 543, 0, 1332, 1333, 3, 1065, 532, 0, 1333, 1334, 3, 1069, 534, 0, + 1334, 1335, 3, 1097, 548, 0, 1335, 1357, 1, 0, 0, 0, 1336, 1337, 3, 1067, + 533, 0, 1337, 1338, 3, 1069, 534, 0, 1338, 1339, 3, 1083, 541, 0, 1339, + 1340, 3, 1069, 534, 0, 1340, 1341, 3, 1099, 549, 0, 1341, 1342, 3, 1069, + 534, 0, 1342, 1343, 3, 1061, 530, 0, 1343, 1344, 3, 1087, 543, 0, 1344, + 1345, 3, 1067, 533, 0, 1345, 1346, 3, 1095, 547, 0, 1346, 1347, 3, 1069, + 534, 0, 1347, 1348, 3, 1071, 535, 0, 1348, 1349, 3, 1069, 534, 0, 1349, + 1350, 3, 1095, 547, 0, 1350, 1351, 3, 1069, 534, 0, 1351, 1352, 3, 1087, + 543, 0, 1352, 1353, 3, 1065, 532, 0, 1353, 1354, 3, 1069, 534, 0, 1354, + 1355, 3, 1097, 548, 0, 1355, 1357, 1, 0, 0, 0, 1356, 1284, 1, 0, 0, 0, + 1356, 1314, 1, 0, 0, 0, 1356, 1336, 1, 0, 0, 0, 1357, 28, 1, 0, 0, 0, 1358, + 1359, 3, 1067, 533, 0, 1359, 1360, 3, 1069, 534, 0, 1360, 1361, 3, 1083, + 541, 0, 1361, 1362, 3, 1069, 534, 0, 1362, 1363, 3, 1099, 549, 0, 1363, + 1365, 3, 1069, 534, 0, 1364, 1366, 3, 1, 0, 0, 1365, 1364, 1, 0, 0, 0, + 1366, 1367, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, + 1368, 1369, 1, 0, 0, 0, 1369, 1370, 3, 1063, 531, 0, 1370, 1371, 3, 1101, + 550, 0, 1371, 1373, 3, 1099, 549, 0, 1372, 1374, 3, 1, 0, 0, 1373, 1372, + 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1376, + 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 3, 1081, 540, 0, 1378, + 1379, 3, 1069, 534, 0, 1379, 1380, 3, 1069, 534, 0, 1380, 1382, 3, 1091, + 545, 0, 1381, 1383, 3, 1, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 1384, 1, + 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, + 0, 0, 0, 1386, 1387, 3, 1095, 547, 0, 1387, 1388, 3, 1069, 534, 0, 1388, + 1389, 3, 1071, 535, 0, 1389, 1390, 3, 1069, 534, 0, 1390, 1391, 3, 1095, + 547, 0, 1391, 1392, 3, 1069, 534, 0, 1392, 1393, 3, 1087, 543, 0, 1393, + 1394, 3, 1065, 532, 0, 1394, 1395, 3, 1069, 534, 0, 1395, 1396, 3, 1097, + 548, 0, 1396, 1449, 1, 0, 0, 0, 1397, 1398, 3, 1067, 533, 0, 1398, 1399, + 3, 1069, 534, 0, 1399, 1400, 3, 1083, 541, 0, 1400, 1401, 3, 1069, 534, + 0, 1401, 1402, 3, 1099, 549, 0, 1402, 1403, 3, 1069, 534, 0, 1403, 1404, + 5, 95, 0, 0, 1404, 1405, 3, 1063, 531, 0, 1405, 1406, 3, 1101, 550, 0, + 1406, 1407, 3, 1099, 549, 0, 1407, 1408, 5, 95, 0, 0, 1408, 1409, 3, 1081, + 540, 0, 1409, 1410, 3, 1069, 534, 0, 1410, 1411, 3, 1069, 534, 0, 1411, + 1412, 3, 1091, 545, 0, 1412, 1413, 5, 95, 0, 0, 1413, 1414, 3, 1095, 547, + 0, 1414, 1415, 3, 1069, 534, 0, 1415, 1416, 3, 1071, 535, 0, 1416, 1417, + 3, 1069, 534, 0, 1417, 1418, 3, 1095, 547, 0, 1418, 1419, 3, 1069, 534, + 0, 1419, 1420, 3, 1087, 543, 0, 1420, 1421, 3, 1065, 532, 0, 1421, 1422, + 3, 1069, 534, 0, 1422, 1423, 3, 1097, 548, 0, 1423, 1449, 1, 0, 0, 0, 1424, + 1425, 3, 1067, 533, 0, 1425, 1426, 3, 1069, 534, 0, 1426, 1427, 3, 1083, + 541, 0, 1427, 1428, 3, 1069, 534, 0, 1428, 1429, 3, 1099, 549, 0, 1429, + 1430, 3, 1069, 534, 0, 1430, 1431, 3, 1063, 531, 0, 1431, 1432, 3, 1101, + 550, 0, 1432, 1433, 3, 1099, 549, 0, 1433, 1434, 3, 1081, 540, 0, 1434, + 1435, 3, 1069, 534, 0, 1435, 1436, 3, 1069, 534, 0, 1436, 1437, 3, 1091, + 545, 0, 1437, 1438, 3, 1095, 547, 0, 1438, 1439, 3, 1069, 534, 0, 1439, + 1440, 3, 1071, 535, 0, 1440, 1441, 3, 1069, 534, 0, 1441, 1442, 3, 1095, + 547, 0, 1442, 1443, 3, 1069, 534, 0, 1443, 1444, 3, 1087, 543, 0, 1444, + 1445, 3, 1065, 532, 0, 1445, 1446, 3, 1069, 534, 0, 1446, 1447, 3, 1097, + 548, 0, 1447, 1449, 1, 0, 0, 0, 1448, 1358, 1, 0, 0, 0, 1448, 1397, 1, + 0, 0, 0, 1448, 1424, 1, 0, 0, 0, 1449, 30, 1, 0, 0, 0, 1450, 1451, 3, 1067, + 533, 0, 1451, 1452, 3, 1069, 534, 0, 1452, 1453, 3, 1083, 541, 0, 1453, + 1454, 3, 1069, 534, 0, 1454, 1455, 3, 1099, 549, 0, 1455, 1457, 3, 1069, + 534, 0, 1456, 1458, 3, 1, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 1459, 1, + 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 1, + 0, 0, 0, 1461, 1462, 3, 1077, 538, 0, 1462, 1464, 3, 1071, 535, 0, 1463, + 1465, 3, 1, 0, 0, 1464, 1463, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, + 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, + 1469, 3, 1087, 543, 0, 1469, 1471, 3, 1089, 544, 0, 1470, 1472, 3, 1, 0, + 0, 1471, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, + 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 3, 1095, + 547, 0, 1476, 1477, 3, 1069, 534, 0, 1477, 1478, 3, 1071, 535, 0, 1478, + 1479, 3, 1069, 534, 0, 1479, 1480, 3, 1095, 547, 0, 1480, 1481, 3, 1069, + 534, 0, 1481, 1482, 3, 1087, 543, 0, 1482, 1483, 3, 1065, 532, 0, 1483, + 1484, 3, 1069, 534, 0, 1484, 1485, 3, 1097, 548, 0, 1485, 1532, 1, 0, 0, + 0, 1486, 1487, 3, 1067, 533, 0, 1487, 1488, 3, 1069, 534, 0, 1488, 1489, + 3, 1083, 541, 0, 1489, 1490, 3, 1069, 534, 0, 1490, 1491, 3, 1099, 549, + 0, 1491, 1492, 3, 1069, 534, 0, 1492, 1493, 5, 95, 0, 0, 1493, 1494, 3, + 1077, 538, 0, 1494, 1495, 3, 1071, 535, 0, 1495, 1496, 5, 95, 0, 0, 1496, + 1497, 3, 1087, 543, 0, 1497, 1498, 3, 1089, 544, 0, 1498, 1499, 5, 95, + 0, 0, 1499, 1500, 3, 1095, 547, 0, 1500, 1501, 3, 1069, 534, 0, 1501, 1502, + 3, 1071, 535, 0, 1502, 1503, 3, 1069, 534, 0, 1503, 1504, 3, 1095, 547, + 0, 1504, 1505, 3, 1069, 534, 0, 1505, 1506, 3, 1087, 543, 0, 1506, 1507, + 3, 1065, 532, 0, 1507, 1508, 3, 1069, 534, 0, 1508, 1509, 3, 1097, 548, + 0, 1509, 1532, 1, 0, 0, 0, 1510, 1511, 3, 1067, 533, 0, 1511, 1512, 3, + 1069, 534, 0, 1512, 1513, 3, 1083, 541, 0, 1513, 1514, 3, 1069, 534, 0, + 1514, 1515, 3, 1099, 549, 0, 1515, 1516, 3, 1069, 534, 0, 1516, 1517, 3, + 1077, 538, 0, 1517, 1518, 3, 1071, 535, 0, 1518, 1519, 3, 1087, 543, 0, + 1519, 1520, 3, 1089, 544, 0, 1520, 1521, 3, 1095, 547, 0, 1521, 1522, 3, + 1069, 534, 0, 1522, 1523, 3, 1071, 535, 0, 1523, 1524, 3, 1069, 534, 0, + 1524, 1525, 3, 1095, 547, 0, 1525, 1526, 3, 1069, 534, 0, 1526, 1527, 3, + 1087, 543, 0, 1527, 1528, 3, 1065, 532, 0, 1528, 1529, 3, 1069, 534, 0, + 1529, 1530, 3, 1097, 548, 0, 1530, 1532, 1, 0, 0, 0, 1531, 1450, 1, 0, + 0, 0, 1531, 1486, 1, 0, 0, 0, 1531, 1510, 1, 0, 0, 0, 1532, 32, 1, 0, 0, + 0, 1533, 1534, 3, 1065, 532, 0, 1534, 1535, 3, 1095, 547, 0, 1535, 1536, + 3, 1069, 534, 0, 1536, 1537, 3, 1061, 530, 0, 1537, 1538, 3, 1099, 549, + 0, 1538, 1539, 3, 1069, 534, 0, 1539, 34, 1, 0, 0, 0, 1540, 1541, 3, 1061, + 530, 0, 1541, 1542, 3, 1083, 541, 0, 1542, 1543, 3, 1099, 549, 0, 1543, + 1544, 3, 1069, 534, 0, 1544, 1545, 3, 1095, 547, 0, 1545, 36, 1, 0, 0, + 0, 1546, 1547, 3, 1067, 533, 0, 1547, 1548, 3, 1095, 547, 0, 1548, 1549, + 3, 1089, 544, 0, 1549, 1550, 3, 1091, 545, 0, 1550, 38, 1, 0, 0, 0, 1551, + 1552, 3, 1095, 547, 0, 1552, 1553, 3, 1069, 534, 0, 1553, 1554, 3, 1087, + 543, 0, 1554, 1555, 3, 1061, 530, 0, 1555, 1556, 3, 1085, 542, 0, 1556, + 1557, 3, 1069, 534, 0, 1557, 40, 1, 0, 0, 0, 1558, 1559, 3, 1085, 542, + 0, 1559, 1560, 3, 1089, 544, 0, 1560, 1561, 3, 1103, 551, 0, 1561, 1562, + 3, 1069, 534, 0, 1562, 42, 1, 0, 0, 0, 1563, 1564, 3, 1085, 542, 0, 1564, + 1565, 3, 1089, 544, 0, 1565, 1566, 3, 1067, 533, 0, 1566, 1567, 3, 1077, + 538, 0, 1567, 1568, 3, 1071, 535, 0, 1568, 1569, 3, 1109, 554, 0, 1569, + 44, 1, 0, 0, 0, 1570, 1571, 3, 1069, 534, 0, 1571, 1572, 3, 1087, 543, + 0, 1572, 1573, 3, 1099, 549, 0, 1573, 1574, 3, 1077, 538, 0, 1574, 1575, + 3, 1099, 549, 0, 1575, 1576, 3, 1109, 554, 0, 1576, 46, 1, 0, 0, 0, 1577, + 1578, 3, 1091, 545, 0, 1578, 1579, 3, 1069, 534, 0, 1579, 1580, 3, 1095, + 547, 0, 1580, 1581, 3, 1097, 548, 0, 1581, 1582, 3, 1077, 538, 0, 1582, + 1583, 3, 1097, 548, 0, 1583, 1584, 3, 1099, 549, 0, 1584, 1585, 3, 1069, + 534, 0, 1585, 1586, 3, 1087, 543, 0, 1586, 1587, 3, 1099, 549, 0, 1587, + 48, 1, 0, 0, 0, 1588, 1589, 3, 1103, 551, 0, 1589, 1590, 3, 1077, 538, + 0, 1590, 1591, 3, 1069, 534, 0, 1591, 1592, 3, 1105, 552, 0, 1592, 50, + 1, 0, 0, 0, 1593, 1594, 3, 1069, 534, 0, 1594, 1595, 3, 1107, 553, 0, 1595, + 1596, 3, 1099, 549, 0, 1596, 1597, 3, 1069, 534, 0, 1597, 1598, 3, 1095, + 547, 0, 1598, 1599, 3, 1087, 543, 0, 1599, 1600, 3, 1061, 530, 0, 1600, + 1601, 3, 1083, 541, 0, 1601, 52, 1, 0, 0, 0, 1602, 1603, 3, 1061, 530, + 0, 1603, 1604, 3, 1097, 548, 0, 1604, 1605, 3, 1097, 548, 0, 1605, 1606, + 3, 1089, 544, 0, 1606, 1607, 3, 1065, 532, 0, 1607, 1608, 3, 1077, 538, + 0, 1608, 1609, 3, 1061, 530, 0, 1609, 1610, 3, 1099, 549, 0, 1610, 1611, + 3, 1077, 538, 0, 1611, 1612, 3, 1089, 544, 0, 1612, 1613, 3, 1087, 543, + 0, 1613, 54, 1, 0, 0, 0, 1614, 1615, 3, 1069, 534, 0, 1615, 1616, 3, 1087, + 543, 0, 1616, 1617, 3, 1101, 550, 0, 1617, 1618, 3, 1085, 542, 0, 1618, + 1619, 3, 1069, 534, 0, 1619, 1620, 3, 1095, 547, 0, 1620, 1621, 3, 1061, + 530, 0, 1621, 1622, 3, 1099, 549, 0, 1622, 1623, 3, 1077, 538, 0, 1623, + 1624, 3, 1089, 544, 0, 1624, 1625, 3, 1087, 543, 0, 1625, 56, 1, 0, 0, + 0, 1626, 1627, 3, 1085, 542, 0, 1627, 1628, 3, 1089, 544, 0, 1628, 1629, + 3, 1067, 533, 0, 1629, 1630, 3, 1101, 550, 0, 1630, 1631, 3, 1083, 541, + 0, 1631, 1632, 3, 1069, 534, 0, 1632, 58, 1, 0, 0, 0, 1633, 1634, 3, 1085, + 542, 0, 1634, 1635, 3, 1077, 538, 0, 1635, 1636, 3, 1065, 532, 0, 1636, + 1637, 3, 1095, 547, 0, 1637, 1638, 3, 1089, 544, 0, 1638, 1639, 3, 1071, + 535, 0, 1639, 1640, 3, 1083, 541, 0, 1640, 1641, 3, 1089, 544, 0, 1641, + 1642, 3, 1105, 552, 0, 1642, 60, 1, 0, 0, 0, 1643, 1644, 3, 1087, 543, + 0, 1644, 1645, 3, 1061, 530, 0, 1645, 1646, 3, 1087, 543, 0, 1646, 1647, + 3, 1089, 544, 0, 1647, 1648, 3, 1071, 535, 0, 1648, 1649, 3, 1083, 541, + 0, 1649, 1650, 3, 1089, 544, 0, 1650, 1651, 3, 1105, 552, 0, 1651, 62, + 1, 0, 0, 0, 1652, 1653, 3, 1105, 552, 0, 1653, 1654, 3, 1089, 544, 0, 1654, + 1655, 3, 1095, 547, 0, 1655, 1656, 3, 1081, 540, 0, 1656, 1657, 3, 1071, + 535, 0, 1657, 1658, 3, 1083, 541, 0, 1658, 1659, 3, 1089, 544, 0, 1659, + 1660, 3, 1105, 552, 0, 1660, 64, 1, 0, 0, 0, 1661, 1662, 3, 1091, 545, + 0, 1662, 1663, 3, 1061, 530, 0, 1663, 1664, 3, 1073, 536, 0, 1664, 1665, + 3, 1069, 534, 0, 1665, 66, 1, 0, 0, 0, 1666, 1667, 3, 1097, 548, 0, 1667, + 1668, 3, 1087, 543, 0, 1668, 1669, 3, 1077, 538, 0, 1669, 1670, 3, 1091, + 545, 0, 1670, 1671, 3, 1091, 545, 0, 1671, 1672, 3, 1069, 534, 0, 1672, + 1673, 3, 1099, 549, 0, 1673, 68, 1, 0, 0, 0, 1674, 1675, 3, 1083, 541, + 0, 1675, 1676, 3, 1061, 530, 0, 1676, 1677, 3, 1109, 554, 0, 1677, 1678, + 3, 1089, 544, 0, 1678, 1679, 3, 1101, 550, 0, 1679, 1680, 3, 1099, 549, + 0, 1680, 70, 1, 0, 0, 0, 1681, 1682, 3, 1087, 543, 0, 1682, 1683, 3, 1089, + 544, 0, 1683, 1684, 3, 1099, 549, 0, 1684, 1685, 3, 1069, 534, 0, 1685, + 1686, 3, 1063, 531, 0, 1686, 1687, 3, 1089, 544, 0, 1687, 1688, 3, 1089, + 544, 0, 1688, 1689, 3, 1081, 540, 0, 1689, 72, 1, 0, 0, 0, 1690, 1691, + 3, 1065, 532, 0, 1691, 1692, 3, 1089, 544, 0, 1692, 1693, 3, 1087, 543, + 0, 1693, 1694, 3, 1097, 548, 0, 1694, 1695, 3, 1099, 549, 0, 1695, 1696, + 3, 1061, 530, 0, 1696, 1697, 3, 1087, 543, 0, 1697, 1698, 3, 1099, 549, + 0, 1698, 74, 1, 0, 0, 0, 1699, 1700, 3, 1061, 530, 0, 1700, 1701, 3, 1099, + 549, 0, 1701, 1702, 3, 1099, 549, 0, 1702, 1703, 3, 1095, 547, 0, 1703, + 1704, 3, 1077, 538, 0, 1704, 1705, 3, 1063, 531, 0, 1705, 1706, 3, 1101, + 550, 0, 1706, 1707, 3, 1099, 549, 0, 1707, 1708, 3, 1069, 534, 0, 1708, + 76, 1, 0, 0, 0, 1709, 1710, 3, 1065, 532, 0, 1710, 1711, 3, 1089, 544, + 0, 1711, 1712, 3, 1083, 541, 0, 1712, 1713, 3, 1101, 550, 0, 1713, 1714, + 3, 1085, 542, 0, 1714, 1715, 3, 1087, 543, 0, 1715, 78, 1, 0, 0, 0, 1716, + 1717, 3, 1065, 532, 0, 1717, 1718, 3, 1089, 544, 0, 1718, 1719, 3, 1083, + 541, 0, 1719, 1720, 3, 1101, 550, 0, 1720, 1721, 3, 1085, 542, 0, 1721, + 1722, 3, 1087, 543, 0, 1722, 1723, 3, 1097, 548, 0, 1723, 80, 1, 0, 0, + 0, 1724, 1725, 3, 1077, 538, 0, 1725, 1726, 3, 1087, 543, 0, 1726, 1727, + 3, 1067, 533, 0, 1727, 1728, 3, 1069, 534, 0, 1728, 1729, 3, 1107, 553, + 0, 1729, 82, 1, 0, 0, 0, 1730, 1731, 3, 1089, 544, 0, 1731, 1732, 3, 1105, + 552, 0, 1732, 1733, 3, 1087, 543, 0, 1733, 1734, 3, 1069, 534, 0, 1734, + 1735, 3, 1095, 547, 0, 1735, 84, 1, 0, 0, 0, 1736, 1737, 3, 1097, 548, + 0, 1737, 1738, 3, 1099, 549, 0, 1738, 1739, 3, 1089, 544, 0, 1739, 1740, + 3, 1095, 547, 0, 1740, 1741, 3, 1069, 534, 0, 1741, 86, 1, 0, 0, 0, 1742, + 1743, 3, 1095, 547, 0, 1743, 1744, 3, 1069, 534, 0, 1744, 1745, 3, 1071, + 535, 0, 1745, 1746, 3, 1069, 534, 0, 1746, 1747, 3, 1095, 547, 0, 1747, + 1748, 3, 1069, 534, 0, 1748, 1749, 3, 1087, 543, 0, 1749, 1750, 3, 1065, + 532, 0, 1750, 1751, 3, 1069, 534, 0, 1751, 88, 1, 0, 0, 0, 1752, 1753, + 3, 1073, 536, 0, 1753, 1754, 3, 1069, 534, 0, 1754, 1755, 3, 1087, 543, + 0, 1755, 1756, 3, 1069, 534, 0, 1756, 1757, 3, 1095, 547, 0, 1757, 1758, + 3, 1061, 530, 0, 1758, 1759, 3, 1083, 541, 0, 1759, 1760, 3, 1077, 538, + 0, 1760, 1761, 3, 1111, 555, 0, 1761, 1762, 3, 1061, 530, 0, 1762, 1763, + 3, 1099, 549, 0, 1763, 1764, 3, 1077, 538, 0, 1764, 1765, 3, 1089, 544, + 0, 1765, 1766, 3, 1087, 543, 0, 1766, 90, 1, 0, 0, 0, 1767, 1768, 3, 1069, + 534, 0, 1768, 1769, 3, 1107, 553, 0, 1769, 1770, 3, 1099, 549, 0, 1770, + 1771, 3, 1069, 534, 0, 1771, 1772, 3, 1087, 543, 0, 1772, 1773, 3, 1067, + 533, 0, 1773, 1774, 3, 1097, 548, 0, 1774, 92, 1, 0, 0, 0, 1775, 1776, + 3, 1061, 530, 0, 1776, 1777, 3, 1067, 533, 0, 1777, 1778, 3, 1067, 533, + 0, 1778, 94, 1, 0, 0, 0, 1779, 1780, 3, 1097, 548, 0, 1780, 1781, 3, 1069, + 534, 0, 1781, 1782, 3, 1099, 549, 0, 1782, 96, 1, 0, 0, 0, 1783, 1784, + 3, 1091, 545, 0, 1784, 1785, 3, 1089, 544, 0, 1785, 1786, 3, 1097, 548, + 0, 1786, 1787, 3, 1077, 538, 0, 1787, 1788, 3, 1099, 549, 0, 1788, 1789, + 3, 1077, 538, 0, 1789, 1790, 3, 1089, 544, 0, 1790, 1791, 3, 1087, 543, + 0, 1791, 98, 1, 0, 0, 0, 1792, 1793, 3, 1067, 533, 0, 1793, 1794, 3, 1089, + 544, 0, 1794, 1795, 3, 1065, 532, 0, 1795, 1796, 3, 1101, 550, 0, 1796, + 1797, 3, 1085, 542, 0, 1797, 1798, 3, 1069, 534, 0, 1798, 1799, 3, 1087, + 543, 0, 1799, 1800, 3, 1099, 549, 0, 1800, 1801, 3, 1061, 530, 0, 1801, + 1802, 3, 1099, 549, 0, 1802, 1803, 3, 1077, 538, 0, 1803, 1804, 3, 1089, + 544, 0, 1804, 1805, 3, 1087, 543, 0, 1805, 100, 1, 0, 0, 0, 1806, 1807, + 3, 1097, 548, 0, 1807, 1808, 3, 1099, 549, 0, 1808, 1809, 3, 1089, 544, + 0, 1809, 1810, 3, 1095, 547, 0, 1810, 1811, 3, 1061, 530, 0, 1811, 1812, + 3, 1073, 536, 0, 1812, 1813, 3, 1069, 534, 0, 1813, 102, 1, 0, 0, 0, 1814, + 1815, 3, 1099, 549, 0, 1815, 1816, 3, 1061, 530, 0, 1816, 1817, 3, 1063, + 531, 0, 1817, 1818, 3, 1083, 541, 0, 1818, 1819, 3, 1069, 534, 0, 1819, + 104, 1, 0, 0, 0, 1820, 1821, 3, 1067, 533, 0, 1821, 1822, 3, 1069, 534, + 0, 1822, 1823, 3, 1083, 541, 0, 1823, 1824, 3, 1069, 534, 0, 1824, 1825, + 3, 1099, 549, 0, 1825, 1827, 3, 1069, 534, 0, 1826, 1828, 5, 95, 0, 0, + 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, + 1829, 1830, 3, 1063, 531, 0, 1830, 1831, 3, 1069, 534, 0, 1831, 1832, 3, + 1075, 537, 0, 1832, 1833, 3, 1061, 530, 0, 1833, 1834, 3, 1103, 551, 0, + 1834, 1835, 3, 1077, 538, 0, 1835, 1836, 3, 1089, 544, 0, 1836, 1837, 3, + 1095, 547, 0, 1837, 106, 1, 0, 0, 0, 1838, 1839, 3, 1065, 532, 0, 1839, + 1840, 3, 1061, 530, 0, 1840, 1841, 3, 1097, 548, 0, 1841, 1842, 3, 1065, + 532, 0, 1842, 1843, 3, 1061, 530, 0, 1843, 1844, 3, 1067, 533, 0, 1844, + 1845, 3, 1069, 534, 0, 1845, 108, 1, 0, 0, 0, 1846, 1847, 3, 1091, 545, + 0, 1847, 1848, 3, 1095, 547, 0, 1848, 1849, 3, 1069, 534, 0, 1849, 1850, + 3, 1103, 551, 0, 1850, 1851, 3, 1069, 534, 0, 1851, 1852, 3, 1087, 543, + 0, 1852, 1853, 3, 1099, 549, 0, 1853, 110, 1, 0, 0, 0, 1854, 1855, 3, 1065, + 532, 0, 1855, 1856, 3, 1089, 544, 0, 1856, 1857, 3, 1087, 543, 0, 1857, + 1858, 3, 1087, 543, 0, 1858, 1859, 3, 1069, 534, 0, 1859, 1860, 3, 1065, + 532, 0, 1860, 1861, 3, 1099, 549, 0, 1861, 112, 1, 0, 0, 0, 1862, 1863, + 3, 1067, 533, 0, 1863, 1864, 3, 1077, 538, 0, 1864, 1865, 3, 1097, 548, + 0, 1865, 1866, 3, 1065, 532, 0, 1866, 1867, 3, 1089, 544, 0, 1867, 1868, + 3, 1087, 543, 0, 1868, 1869, 3, 1087, 543, 0, 1869, 1870, 3, 1069, 534, + 0, 1870, 1871, 3, 1065, 532, 0, 1871, 1872, 3, 1099, 549, 0, 1872, 114, + 1, 0, 0, 0, 1873, 1874, 3, 1083, 541, 0, 1874, 1875, 3, 1089, 544, 0, 1875, + 1876, 3, 1065, 532, 0, 1876, 1877, 3, 1061, 530, 0, 1877, 1878, 3, 1083, + 541, 0, 1878, 116, 1, 0, 0, 0, 1879, 1880, 3, 1091, 545, 0, 1880, 1881, + 3, 1095, 547, 0, 1881, 1882, 3, 1089, 544, 0, 1882, 1883, 3, 1079, 539, + 0, 1883, 1884, 3, 1069, 534, 0, 1884, 1885, 3, 1065, 532, 0, 1885, 1886, + 3, 1099, 549, 0, 1886, 118, 1, 0, 0, 0, 1887, 1888, 3, 1095, 547, 0, 1888, + 1889, 3, 1101, 550, 0, 1889, 1890, 3, 1087, 543, 0, 1890, 1891, 3, 1099, + 549, 0, 1891, 1892, 3, 1077, 538, 0, 1892, 1893, 3, 1085, 542, 0, 1893, + 1894, 3, 1069, 534, 0, 1894, 120, 1, 0, 0, 0, 1895, 1896, 3, 1063, 531, + 0, 1896, 1897, 3, 1095, 547, 0, 1897, 1898, 3, 1061, 530, 0, 1898, 1899, + 3, 1087, 543, 0, 1899, 1900, 3, 1065, 532, 0, 1900, 1901, 3, 1075, 537, + 0, 1901, 122, 1, 0, 0, 0, 1902, 1903, 3, 1099, 549, 0, 1903, 1904, 3, 1089, + 544, 0, 1904, 1905, 3, 1081, 540, 0, 1905, 1906, 3, 1069, 534, 0, 1906, + 1907, 3, 1087, 543, 0, 1907, 124, 1, 0, 0, 0, 1908, 1909, 3, 1075, 537, + 0, 1909, 1910, 3, 1089, 544, 0, 1910, 1911, 3, 1097, 548, 0, 1911, 1912, + 3, 1099, 549, 0, 1912, 126, 1, 0, 0, 0, 1913, 1914, 3, 1091, 545, 0, 1914, + 1915, 3, 1089, 544, 0, 1915, 1916, 3, 1095, 547, 0, 1916, 1917, 3, 1099, + 549, 0, 1917, 128, 1, 0, 0, 0, 1918, 1919, 3, 1097, 548, 0, 1919, 1920, + 3, 1075, 537, 0, 1920, 1921, 3, 1089, 544, 0, 1921, 1922, 3, 1105, 552, + 0, 1922, 130, 1, 0, 0, 0, 1923, 1924, 3, 1067, 533, 0, 1924, 1925, 3, 1069, + 534, 0, 1925, 1926, 3, 1097, 548, 0, 1926, 1927, 3, 1065, 532, 0, 1927, + 1928, 3, 1095, 547, 0, 1928, 1929, 3, 1077, 538, 0, 1929, 1930, 3, 1063, + 531, 0, 1930, 1931, 3, 1069, 534, 0, 1931, 132, 1, 0, 0, 0, 1932, 1933, + 3, 1101, 550, 0, 1933, 1934, 3, 1097, 548, 0, 1934, 1935, 3, 1069, 534, + 0, 1935, 134, 1, 0, 0, 0, 1936, 1937, 3, 1077, 538, 0, 1937, 1938, 3, 1087, + 543, 0, 1938, 1939, 3, 1099, 549, 0, 1939, 1940, 3, 1095, 547, 0, 1940, + 1941, 3, 1089, 544, 0, 1941, 1942, 3, 1097, 548, 0, 1942, 1943, 3, 1091, + 545, 0, 1943, 1944, 3, 1069, 534, 0, 1944, 1945, 3, 1065, 532, 0, 1945, + 1946, 3, 1099, 549, 0, 1946, 136, 1, 0, 0, 0, 1947, 1948, 3, 1067, 533, + 0, 1948, 1949, 3, 1069, 534, 0, 1949, 1950, 3, 1063, 531, 0, 1950, 1951, + 3, 1101, 550, 0, 1951, 1952, 3, 1073, 536, 0, 1952, 138, 1, 0, 0, 0, 1953, + 1954, 3, 1097, 548, 0, 1954, 1955, 3, 1069, 534, 0, 1955, 1956, 3, 1083, + 541, 0, 1956, 1957, 3, 1069, 534, 0, 1957, 1958, 3, 1065, 532, 0, 1958, + 1959, 3, 1099, 549, 0, 1959, 140, 1, 0, 0, 0, 1960, 1961, 3, 1071, 535, + 0, 1961, 1962, 3, 1095, 547, 0, 1962, 1963, 3, 1089, 544, 0, 1963, 1964, + 3, 1085, 542, 0, 1964, 142, 1, 0, 0, 0, 1965, 1966, 3, 1105, 552, 0, 1966, + 1967, 3, 1075, 537, 0, 1967, 1968, 3, 1069, 534, 0, 1968, 1969, 3, 1095, + 547, 0, 1969, 1970, 3, 1069, 534, 0, 1970, 144, 1, 0, 0, 0, 1971, 1972, + 3, 1075, 537, 0, 1972, 1973, 3, 1061, 530, 0, 1973, 1974, 3, 1103, 551, + 0, 1974, 1975, 3, 1077, 538, 0, 1975, 1976, 3, 1087, 543, 0, 1976, 1977, + 3, 1073, 536, 0, 1977, 146, 1, 0, 0, 0, 1978, 1979, 3, 1089, 544, 0, 1979, + 1980, 3, 1071, 535, 0, 1980, 1981, 3, 1071, 535, 0, 1981, 1982, 3, 1097, + 548, 0, 1982, 1983, 3, 1069, 534, 0, 1983, 1984, 3, 1099, 549, 0, 1984, + 148, 1, 0, 0, 0, 1985, 1986, 3, 1083, 541, 0, 1986, 1987, 3, 1077, 538, + 0, 1987, 1988, 3, 1085, 542, 0, 1988, 1989, 3, 1077, 538, 0, 1989, 1990, + 3, 1099, 549, 0, 1990, 150, 1, 0, 0, 0, 1991, 1992, 3, 1061, 530, 0, 1992, + 1993, 3, 1097, 548, 0, 1993, 152, 1, 0, 0, 0, 1994, 1995, 3, 1095, 547, + 0, 1995, 1996, 3, 1069, 534, 0, 1996, 1997, 3, 1099, 549, 0, 1997, 1998, + 3, 1101, 550, 0, 1998, 1999, 3, 1095, 547, 0, 1999, 2000, 3, 1087, 543, + 0, 2000, 2001, 3, 1097, 548, 0, 2001, 154, 1, 0, 0, 0, 2002, 2003, 3, 1095, + 547, 0, 2003, 2004, 3, 1069, 534, 0, 2004, 2005, 3, 1099, 549, 0, 2005, + 2006, 3, 1101, 550, 0, 2006, 2007, 3, 1095, 547, 0, 2007, 2008, 3, 1087, + 543, 0, 2008, 2009, 3, 1077, 538, 0, 2009, 2010, 3, 1087, 543, 0, 2010, + 2011, 3, 1073, 536, 0, 2011, 156, 1, 0, 0, 0, 2012, 2013, 3, 1065, 532, + 0, 2013, 2014, 3, 1061, 530, 0, 2014, 2015, 3, 1097, 548, 0, 2015, 2016, + 3, 1069, 534, 0, 2016, 158, 1, 0, 0, 0, 2017, 2018, 3, 1105, 552, 0, 2018, + 2019, 3, 1075, 537, 0, 2019, 2020, 3, 1069, 534, 0, 2020, 2021, 3, 1087, + 543, 0, 2021, 160, 1, 0, 0, 0, 2022, 2023, 3, 1099, 549, 0, 2023, 2024, + 3, 1075, 537, 0, 2024, 2025, 3, 1069, 534, 0, 2025, 2026, 3, 1087, 543, + 0, 2026, 162, 1, 0, 0, 0, 2027, 2028, 3, 1069, 534, 0, 2028, 2029, 3, 1083, + 541, 0, 2029, 2030, 3, 1097, 548, 0, 2030, 2031, 3, 1069, 534, 0, 2031, + 164, 1, 0, 0, 0, 2032, 2033, 3, 1069, 534, 0, 2033, 2034, 3, 1087, 543, + 0, 2034, 2035, 3, 1067, 533, 0, 2035, 166, 1, 0, 0, 0, 2036, 2037, 3, 1067, + 533, 0, 2037, 2038, 3, 1077, 538, 0, 2038, 2039, 3, 1097, 548, 0, 2039, + 2040, 3, 1099, 549, 0, 2040, 2041, 3, 1077, 538, 0, 2041, 2042, 3, 1087, + 543, 0, 2042, 2043, 3, 1065, 532, 0, 2043, 2044, 3, 1099, 549, 0, 2044, + 168, 1, 0, 0, 0, 2045, 2046, 3, 1061, 530, 0, 2046, 2047, 3, 1083, 541, + 0, 2047, 2048, 3, 1083, 541, 0, 2048, 170, 1, 0, 0, 0, 2049, 2050, 3, 1079, + 539, 0, 2050, 2051, 3, 1089, 544, 0, 2051, 2052, 3, 1077, 538, 0, 2052, + 2053, 3, 1087, 543, 0, 2053, 172, 1, 0, 0, 0, 2054, 2055, 3, 1083, 541, + 0, 2055, 2056, 3, 1069, 534, 0, 2056, 2057, 3, 1071, 535, 0, 2057, 2058, + 3, 1099, 549, 0, 2058, 174, 1, 0, 0, 0, 2059, 2060, 3, 1095, 547, 0, 2060, + 2061, 3, 1077, 538, 0, 2061, 2062, 3, 1073, 536, 0, 2062, 2063, 3, 1075, + 537, 0, 2063, 2064, 3, 1099, 549, 0, 2064, 176, 1, 0, 0, 0, 2065, 2066, + 3, 1077, 538, 0, 2066, 2067, 3, 1087, 543, 0, 2067, 2068, 3, 1087, 543, + 0, 2068, 2069, 3, 1069, 534, 0, 2069, 2070, 3, 1095, 547, 0, 2070, 178, + 1, 0, 0, 0, 2071, 2072, 3, 1089, 544, 0, 2072, 2073, 3, 1101, 550, 0, 2073, + 2074, 3, 1099, 549, 0, 2074, 2075, 3, 1069, 534, 0, 2075, 2076, 3, 1095, + 547, 0, 2076, 180, 1, 0, 0, 0, 2077, 2078, 3, 1071, 535, 0, 2078, 2079, + 3, 1101, 550, 0, 2079, 2080, 3, 1083, 541, 0, 2080, 2081, 3, 1083, 541, + 0, 2081, 182, 1, 0, 0, 0, 2082, 2083, 3, 1065, 532, 0, 2083, 2084, 3, 1095, + 547, 0, 2084, 2085, 3, 1089, 544, 0, 2085, 2086, 3, 1097, 548, 0, 2086, + 2087, 3, 1097, 548, 0, 2087, 184, 1, 0, 0, 0, 2088, 2089, 3, 1089, 544, + 0, 2089, 2090, 3, 1087, 543, 0, 2090, 186, 1, 0, 0, 0, 2091, 2092, 3, 1061, + 530, 0, 2092, 2093, 3, 1097, 548, 0, 2093, 2094, 3, 1065, 532, 0, 2094, + 188, 1, 0, 0, 0, 2095, 2096, 3, 1067, 533, 0, 2096, 2097, 3, 1069, 534, + 0, 2097, 2098, 3, 1097, 548, 0, 2098, 2099, 3, 1065, 532, 0, 2099, 190, + 1, 0, 0, 0, 2100, 2101, 3, 1063, 531, 0, 2101, 2102, 3, 1069, 534, 0, 2102, + 2103, 3, 1073, 536, 0, 2103, 2104, 3, 1077, 538, 0, 2104, 2105, 3, 1087, + 543, 0, 2105, 192, 1, 0, 0, 0, 2106, 2107, 3, 1067, 533, 0, 2107, 2108, + 3, 1069, 534, 0, 2108, 2109, 3, 1065, 532, 0, 2109, 2110, 3, 1083, 541, + 0, 2110, 2111, 3, 1061, 530, 0, 2111, 2112, 3, 1095, 547, 0, 2112, 2113, + 3, 1069, 534, 0, 2113, 194, 1, 0, 0, 0, 2114, 2115, 3, 1065, 532, 0, 2115, + 2116, 3, 1075, 537, 0, 2116, 2117, 3, 1061, 530, 0, 2117, 2118, 3, 1087, + 543, 0, 2118, 2119, 3, 1073, 536, 0, 2119, 2120, 3, 1069, 534, 0, 2120, + 196, 1, 0, 0, 0, 2121, 2122, 3, 1095, 547, 0, 2122, 2123, 3, 1069, 534, + 0, 2123, 2124, 3, 1099, 549, 0, 2124, 2125, 3, 1095, 547, 0, 2125, 2126, + 3, 1077, 538, 0, 2126, 2127, 3, 1069, 534, 0, 2127, 2128, 3, 1103, 551, + 0, 2128, 2129, 3, 1069, 534, 0, 2129, 198, 1, 0, 0, 0, 2130, 2131, 3, 1067, + 533, 0, 2131, 2132, 3, 1069, 534, 0, 2132, 2133, 3, 1083, 541, 0, 2133, + 2134, 3, 1069, 534, 0, 2134, 2135, 3, 1099, 549, 0, 2135, 2136, 3, 1069, + 534, 0, 2136, 200, 1, 0, 0, 0, 2137, 2138, 3, 1065, 532, 0, 2138, 2139, + 3, 1089, 544, 0, 2139, 2140, 3, 1085, 542, 0, 2140, 2141, 3, 1085, 542, + 0, 2141, 2142, 3, 1077, 538, 0, 2142, 2143, 3, 1099, 549, 0, 2143, 202, + 1, 0, 0, 0, 2144, 2145, 3, 1095, 547, 0, 2145, 2146, 3, 1089, 544, 0, 2146, + 2147, 3, 1083, 541, 0, 2147, 2148, 3, 1083, 541, 0, 2148, 2149, 3, 1063, + 531, 0, 2149, 2150, 3, 1061, 530, 0, 2150, 2151, 3, 1065, 532, 0, 2151, + 2152, 3, 1081, 540, 0, 2152, 204, 1, 0, 0, 0, 2153, 2154, 3, 1083, 541, + 0, 2154, 2155, 3, 1089, 544, 0, 2155, 2156, 3, 1089, 544, 0, 2156, 2157, + 3, 1091, 545, 0, 2157, 206, 1, 0, 0, 0, 2158, 2159, 3, 1105, 552, 0, 2159, + 2160, 3, 1075, 537, 0, 2160, 2161, 3, 1077, 538, 0, 2161, 2162, 3, 1083, + 541, 0, 2162, 2163, 3, 1069, 534, 0, 2163, 208, 1, 0, 0, 0, 2164, 2165, + 3, 1077, 538, 0, 2165, 2166, 3, 1071, 535, 0, 2166, 210, 1, 0, 0, 0, 2167, + 2168, 3, 1069, 534, 0, 2168, 2169, 3, 1083, 541, 0, 2169, 2170, 3, 1097, + 548, 0, 2170, 2171, 3, 1077, 538, 0, 2171, 2172, 3, 1071, 535, 0, 2172, + 212, 1, 0, 0, 0, 2173, 2174, 3, 1069, 534, 0, 2174, 2175, 3, 1083, 541, + 0, 2175, 2176, 3, 1097, 548, 0, 2176, 2177, 3, 1069, 534, 0, 2177, 2178, + 3, 1077, 538, 0, 2178, 2179, 3, 1071, 535, 0, 2179, 214, 1, 0, 0, 0, 2180, + 2181, 3, 1065, 532, 0, 2181, 2182, 3, 1089, 544, 0, 2182, 2183, 3, 1087, + 543, 0, 2183, 2184, 3, 1099, 549, 0, 2184, 2185, 3, 1077, 538, 0, 2185, + 2186, 3, 1087, 543, 0, 2186, 2187, 3, 1101, 550, 0, 2187, 2188, 3, 1069, + 534, 0, 2188, 216, 1, 0, 0, 0, 2189, 2190, 3, 1063, 531, 0, 2190, 2191, + 3, 1095, 547, 0, 2191, 2192, 3, 1069, 534, 0, 2192, 2193, 3, 1061, 530, + 0, 2193, 2194, 3, 1081, 540, 0, 2194, 218, 1, 0, 0, 0, 2195, 2196, 3, 1095, + 547, 0, 2196, 2197, 3, 1069, 534, 0, 2197, 2198, 3, 1099, 549, 0, 2198, + 2199, 3, 1101, 550, 0, 2199, 2200, 3, 1095, 547, 0, 2200, 2201, 3, 1087, + 543, 0, 2201, 220, 1, 0, 0, 0, 2202, 2203, 3, 1099, 549, 0, 2203, 2204, + 3, 1075, 537, 0, 2204, 2205, 3, 1095, 547, 0, 2205, 2206, 3, 1089, 544, + 0, 2206, 2207, 3, 1105, 552, 0, 2207, 222, 1, 0, 0, 0, 2208, 2209, 3, 1083, + 541, 0, 2209, 2210, 3, 1089, 544, 0, 2210, 2211, 3, 1073, 536, 0, 2211, + 224, 1, 0, 0, 0, 2212, 2213, 3, 1065, 532, 0, 2213, 2214, 3, 1061, 530, + 0, 2214, 2215, 3, 1083, 541, 0, 2215, 2216, 3, 1083, 541, 0, 2216, 226, + 1, 0, 0, 0, 2217, 2218, 3, 1079, 539, 0, 2218, 2219, 3, 1061, 530, 0, 2219, + 2220, 3, 1103, 551, 0, 2220, 2221, 3, 1061, 530, 0, 2221, 228, 1, 0, 0, + 0, 2222, 2223, 3, 1079, 539, 0, 2223, 2224, 3, 1061, 530, 0, 2224, 2225, + 3, 1103, 551, 0, 2225, 2226, 3, 1061, 530, 0, 2226, 2227, 3, 1097, 548, + 0, 2227, 2228, 3, 1065, 532, 0, 2228, 2229, 3, 1095, 547, 0, 2229, 2230, + 3, 1077, 538, 0, 2230, 2231, 3, 1091, 545, 0, 2231, 2232, 3, 1099, 549, + 0, 2232, 230, 1, 0, 0, 0, 2233, 2234, 3, 1061, 530, 0, 2234, 2235, 3, 1065, + 532, 0, 2235, 2236, 3, 1099, 549, 0, 2236, 2237, 3, 1077, 538, 0, 2237, + 2238, 3, 1089, 544, 0, 2238, 2239, 3, 1087, 543, 0, 2239, 232, 1, 0, 0, + 0, 2240, 2241, 3, 1061, 530, 0, 2241, 2242, 3, 1065, 532, 0, 2242, 2243, + 3, 1099, 549, 0, 2243, 2244, 3, 1077, 538, 0, 2244, 2245, 3, 1089, 544, + 0, 2245, 2246, 3, 1087, 543, 0, 2246, 2247, 3, 1097, 548, 0, 2247, 234, + 1, 0, 0, 0, 2248, 2249, 3, 1065, 532, 0, 2249, 2250, 3, 1083, 541, 0, 2250, + 2251, 3, 1089, 544, 0, 2251, 2252, 3, 1097, 548, 0, 2252, 2253, 3, 1069, + 534, 0, 2253, 236, 1, 0, 0, 0, 2254, 2255, 3, 1087, 543, 0, 2255, 2256, + 3, 1089, 544, 0, 2256, 2257, 3, 1067, 533, 0, 2257, 2258, 3, 1069, 534, + 0, 2258, 238, 1, 0, 0, 0, 2259, 2260, 3, 1069, 534, 0, 2260, 2261, 3, 1103, + 551, 0, 2261, 2262, 3, 1069, 534, 0, 2262, 2263, 3, 1087, 543, 0, 2263, + 2264, 3, 1099, 549, 0, 2264, 2265, 3, 1097, 548, 0, 2265, 240, 1, 0, 0, + 0, 2266, 2267, 3, 1075, 537, 0, 2267, 2268, 3, 1069, 534, 0, 2268, 2269, + 3, 1061, 530, 0, 2269, 2270, 3, 1067, 533, 0, 2270, 242, 1, 0, 0, 0, 2271, + 2272, 3, 1099, 549, 0, 2272, 2273, 3, 1061, 530, 0, 2273, 2274, 3, 1077, + 538, 0, 2274, 2275, 3, 1083, 541, 0, 2275, 244, 1, 0, 0, 0, 2276, 2277, + 3, 1071, 535, 0, 2277, 2278, 3, 1077, 538, 0, 2278, 2279, 3, 1087, 543, + 0, 2279, 2280, 3, 1067, 533, 0, 2280, 246, 1, 0, 0, 0, 2281, 2282, 3, 1097, + 548, 0, 2282, 2283, 3, 1089, 544, 0, 2283, 2284, 3, 1095, 547, 0, 2284, + 2285, 3, 1099, 549, 0, 2285, 248, 1, 0, 0, 0, 2286, 2287, 3, 1101, 550, + 0, 2287, 2288, 3, 1087, 543, 0, 2288, 2289, 3, 1077, 538, 0, 2289, 2290, + 3, 1089, 544, 0, 2290, 2291, 3, 1087, 543, 0, 2291, 250, 1, 0, 0, 0, 2292, + 2293, 3, 1077, 538, 0, 2293, 2294, 3, 1087, 543, 0, 2294, 2295, 3, 1099, + 549, 0, 2295, 2296, 3, 1069, 534, 0, 2296, 2297, 3, 1095, 547, 0, 2297, + 2298, 3, 1097, 548, 0, 2298, 2299, 3, 1069, 534, 0, 2299, 2300, 3, 1065, + 532, 0, 2300, 2301, 3, 1099, 549, 0, 2301, 252, 1, 0, 0, 0, 2302, 2303, + 3, 1097, 548, 0, 2303, 2304, 3, 1101, 550, 0, 2304, 2305, 3, 1063, 531, + 0, 2305, 2306, 3, 1099, 549, 0, 2306, 2307, 3, 1095, 547, 0, 2307, 2308, + 3, 1061, 530, 0, 2308, 2309, 3, 1065, 532, 0, 2309, 2310, 3, 1099, 549, + 0, 2310, 254, 1, 0, 0, 0, 2311, 2312, 3, 1065, 532, 0, 2312, 2313, 3, 1089, + 544, 0, 2313, 2314, 3, 1087, 543, 0, 2314, 2315, 3, 1099, 549, 0, 2315, + 2316, 3, 1061, 530, 0, 2316, 2317, 3, 1077, 538, 0, 2317, 2318, 3, 1087, + 543, 0, 2318, 2319, 3, 1097, 548, 0, 2319, 256, 1, 0, 0, 0, 2320, 2321, + 3, 1061, 530, 0, 2321, 2322, 3, 1103, 551, 0, 2322, 2323, 3, 1069, 534, + 0, 2323, 2324, 3, 1095, 547, 0, 2324, 2325, 3, 1061, 530, 0, 2325, 2326, + 3, 1073, 536, 0, 2326, 2327, 3, 1069, 534, 0, 2327, 258, 1, 0, 0, 0, 2328, + 2329, 3, 1085, 542, 0, 2329, 2330, 3, 1077, 538, 0, 2330, 2331, 3, 1087, + 543, 0, 2331, 2332, 3, 1077, 538, 0, 2332, 2333, 3, 1085, 542, 0, 2333, + 2334, 3, 1101, 550, 0, 2334, 2335, 3, 1085, 542, 0, 2335, 260, 1, 0, 0, + 0, 2336, 2337, 3, 1085, 542, 0, 2337, 2338, 3, 1061, 530, 0, 2338, 2339, + 3, 1107, 553, 0, 2339, 2340, 3, 1077, 538, 0, 2340, 2341, 3, 1085, 542, + 0, 2341, 2342, 3, 1101, 550, 0, 2342, 2343, 3, 1085, 542, 0, 2343, 262, + 1, 0, 0, 0, 2344, 2345, 3, 1083, 541, 0, 2345, 2346, 3, 1077, 538, 0, 2346, + 2347, 3, 1097, 548, 0, 2347, 2348, 3, 1099, 549, 0, 2348, 264, 1, 0, 0, + 0, 2349, 2350, 3, 1095, 547, 0, 2350, 2351, 3, 1069, 534, 0, 2351, 2352, + 3, 1085, 542, 0, 2352, 2353, 3, 1089, 544, 0, 2353, 2354, 3, 1103, 551, + 0, 2354, 2355, 3, 1069, 534, 0, 2355, 266, 1, 0, 0, 0, 2356, 2357, 3, 1069, + 534, 0, 2357, 2358, 3, 1093, 546, 0, 2358, 2359, 3, 1101, 550, 0, 2359, + 2360, 3, 1061, 530, 0, 2360, 2361, 3, 1083, 541, 0, 2361, 2362, 3, 1097, + 548, 0, 2362, 268, 1, 0, 0, 0, 2363, 2364, 3, 1077, 538, 0, 2364, 2365, + 3, 1087, 543, 0, 2365, 2366, 3, 1071, 535, 0, 2366, 2367, 3, 1089, 544, + 0, 2367, 270, 1, 0, 0, 0, 2368, 2369, 3, 1105, 552, 0, 2369, 2370, 3, 1061, + 530, 0, 2370, 2371, 3, 1095, 547, 0, 2371, 2372, 3, 1087, 543, 0, 2372, + 2373, 3, 1077, 538, 0, 2373, 2374, 3, 1087, 543, 0, 2374, 2375, 3, 1073, + 536, 0, 2375, 272, 1, 0, 0, 0, 2376, 2377, 3, 1099, 549, 0, 2377, 2378, + 3, 1095, 547, 0, 2378, 2379, 3, 1061, 530, 0, 2379, 2380, 3, 1065, 532, + 0, 2380, 2381, 3, 1069, 534, 0, 2381, 274, 1, 0, 0, 0, 2382, 2383, 3, 1065, + 532, 0, 2383, 2384, 3, 1095, 547, 0, 2384, 2385, 3, 1077, 538, 0, 2385, + 2386, 3, 1099, 549, 0, 2386, 2387, 3, 1077, 538, 0, 2387, 2388, 3, 1065, + 532, 0, 2388, 2389, 3, 1061, 530, 0, 2389, 2390, 3, 1083, 541, 0, 2390, + 276, 1, 0, 0, 0, 2391, 2392, 3, 1105, 552, 0, 2392, 2393, 3, 1077, 538, + 0, 2393, 2394, 3, 1099, 549, 0, 2394, 2395, 3, 1075, 537, 0, 2395, 278, + 1, 0, 0, 0, 2396, 2397, 3, 1069, 534, 0, 2397, 2398, 3, 1085, 542, 0, 2398, + 2399, 3, 1091, 545, 0, 2399, 2400, 3, 1099, 549, 0, 2400, 2401, 3, 1109, + 554, 0, 2401, 280, 1, 0, 0, 0, 2402, 2403, 3, 1089, 544, 0, 2403, 2404, + 3, 1063, 531, 0, 2404, 2405, 3, 1079, 539, 0, 2405, 2406, 3, 1069, 534, + 0, 2406, 2407, 3, 1065, 532, 0, 2407, 2408, 3, 1099, 549, 0, 2408, 282, + 1, 0, 0, 0, 2409, 2410, 3, 1089, 544, 0, 2410, 2411, 3, 1063, 531, 0, 2411, + 2412, 3, 1079, 539, 0, 2412, 2413, 3, 1069, 534, 0, 2413, 2414, 3, 1065, + 532, 0, 2414, 2415, 3, 1099, 549, 0, 2415, 2416, 3, 1097, 548, 0, 2416, + 284, 1, 0, 0, 0, 2417, 2418, 3, 1091, 545, 0, 2418, 2419, 3, 1061, 530, + 0, 2419, 2420, 3, 1073, 536, 0, 2420, 2421, 3, 1069, 534, 0, 2421, 2422, + 3, 1097, 548, 0, 2422, 286, 1, 0, 0, 0, 2423, 2424, 3, 1083, 541, 0, 2424, + 2425, 3, 1061, 530, 0, 2425, 2426, 3, 1109, 554, 0, 2426, 2427, 3, 1089, + 544, 0, 2427, 2428, 3, 1101, 550, 0, 2428, 2429, 3, 1099, 549, 0, 2429, + 2430, 3, 1097, 548, 0, 2430, 288, 1, 0, 0, 0, 2431, 2432, 3, 1097, 548, + 0, 2432, 2433, 3, 1087, 543, 0, 2433, 2434, 3, 1077, 538, 0, 2434, 2435, + 3, 1091, 545, 0, 2435, 2436, 3, 1091, 545, 0, 2436, 2437, 3, 1069, 534, + 0, 2437, 2438, 3, 1099, 549, 0, 2438, 2439, 3, 1097, 548, 0, 2439, 290, + 1, 0, 0, 0, 2440, 2441, 3, 1087, 543, 0, 2441, 2442, 3, 1089, 544, 0, 2442, + 2443, 3, 1099, 549, 0, 2443, 2444, 3, 1069, 534, 0, 2444, 2445, 3, 1063, + 531, 0, 2445, 2446, 3, 1089, 544, 0, 2446, 2447, 3, 1089, 544, 0, 2447, + 2448, 3, 1081, 540, 0, 2448, 2449, 3, 1097, 548, 0, 2449, 292, 1, 0, 0, + 0, 2450, 2451, 3, 1091, 545, 0, 2451, 2452, 3, 1083, 541, 0, 2452, 2453, + 3, 1061, 530, 0, 2453, 2454, 3, 1065, 532, 0, 2454, 2455, 3, 1069, 534, + 0, 2455, 2456, 3, 1075, 537, 0, 2456, 2457, 3, 1089, 544, 0, 2457, 2458, + 3, 1083, 541, 0, 2458, 2459, 3, 1067, 533, 0, 2459, 2460, 3, 1069, 534, + 0, 2460, 2461, 3, 1095, 547, 0, 2461, 294, 1, 0, 0, 0, 2462, 2463, 3, 1097, + 548, 0, 2463, 2464, 3, 1087, 543, 0, 2464, 2465, 3, 1077, 538, 0, 2465, + 2466, 3, 1091, 545, 0, 2466, 2467, 3, 1091, 545, 0, 2467, 2468, 3, 1069, + 534, 0, 2468, 2469, 3, 1099, 549, 0, 2469, 2470, 3, 1065, 532, 0, 2470, + 2471, 3, 1061, 530, 0, 2471, 2472, 3, 1083, 541, 0, 2472, 2473, 3, 1083, + 541, 0, 2473, 296, 1, 0, 0, 0, 2474, 2475, 3, 1083, 541, 0, 2475, 2476, + 3, 1061, 530, 0, 2476, 2477, 3, 1109, 554, 0, 2477, 2478, 3, 1089, 544, + 0, 2478, 2479, 3, 1101, 550, 0, 2479, 2480, 3, 1099, 549, 0, 2480, 2481, + 3, 1073, 536, 0, 2481, 2482, 3, 1095, 547, 0, 2482, 2483, 3, 1077, 538, + 0, 2483, 2484, 3, 1067, 533, 0, 2484, 298, 1, 0, 0, 0, 2485, 2486, 3, 1067, + 533, 0, 2486, 2487, 3, 1061, 530, 0, 2487, 2488, 3, 1099, 549, 0, 2488, + 2489, 3, 1061, 530, 0, 2489, 2490, 3, 1073, 536, 0, 2490, 2491, 3, 1095, + 547, 0, 2491, 2492, 3, 1077, 538, 0, 2492, 2493, 3, 1067, 533, 0, 2493, + 300, 1, 0, 0, 0, 2494, 2495, 3, 1067, 533, 0, 2495, 2496, 3, 1061, 530, + 0, 2496, 2497, 3, 1099, 549, 0, 2497, 2498, 3, 1061, 530, 0, 2498, 2499, + 3, 1103, 551, 0, 2499, 2500, 3, 1077, 538, 0, 2500, 2501, 3, 1069, 534, + 0, 2501, 2502, 3, 1105, 552, 0, 2502, 302, 1, 0, 0, 0, 2503, 2504, 3, 1083, + 541, 0, 2504, 2505, 3, 1077, 538, 0, 2505, 2506, 3, 1097, 548, 0, 2506, + 2507, 3, 1099, 549, 0, 2507, 2508, 3, 1103, 551, 0, 2508, 2509, 3, 1077, + 538, 0, 2509, 2510, 3, 1069, 534, 0, 2510, 2511, 3, 1105, 552, 0, 2511, + 304, 1, 0, 0, 0, 2512, 2513, 3, 1073, 536, 0, 2513, 2514, 3, 1061, 530, + 0, 2514, 2515, 3, 1083, 541, 0, 2515, 2516, 3, 1083, 541, 0, 2516, 2517, + 3, 1069, 534, 0, 2517, 2518, 3, 1095, 547, 0, 2518, 2519, 3, 1109, 554, + 0, 2519, 306, 1, 0, 0, 0, 2520, 2521, 3, 1065, 532, 0, 2521, 2522, 3, 1089, + 544, 0, 2522, 2523, 3, 1087, 543, 0, 2523, 2524, 3, 1099, 549, 0, 2524, + 2525, 3, 1061, 530, 0, 2525, 2526, 3, 1077, 538, 0, 2526, 2527, 3, 1087, + 543, 0, 2527, 2528, 3, 1069, 534, 0, 2528, 2529, 3, 1095, 547, 0, 2529, + 308, 1, 0, 0, 0, 2530, 2531, 3, 1095, 547, 0, 2531, 2532, 3, 1089, 544, + 0, 2532, 2533, 3, 1105, 552, 0, 2533, 310, 1, 0, 0, 0, 2534, 2535, 3, 1077, + 538, 0, 2535, 2536, 3, 1099, 549, 0, 2536, 2537, 3, 1069, 534, 0, 2537, + 2538, 3, 1085, 542, 0, 2538, 312, 1, 0, 0, 0, 2539, 2540, 3, 1065, 532, + 0, 2540, 2541, 3, 1089, 544, 0, 2541, 2542, 3, 1087, 543, 0, 2542, 2543, + 3, 1099, 549, 0, 2543, 2544, 3, 1095, 547, 0, 2544, 2545, 3, 1089, 544, + 0, 2545, 2546, 3, 1083, 541, 0, 2546, 2547, 3, 1063, 531, 0, 2547, 2548, + 3, 1061, 530, 0, 2548, 2549, 3, 1095, 547, 0, 2549, 314, 1, 0, 0, 0, 2550, + 2551, 3, 1097, 548, 0, 2551, 2552, 3, 1069, 534, 0, 2552, 2553, 3, 1061, + 530, 0, 2553, 2554, 3, 1095, 547, 0, 2554, 2555, 3, 1065, 532, 0, 2555, + 2556, 3, 1075, 537, 0, 2556, 316, 1, 0, 0, 0, 2557, 2558, 3, 1097, 548, + 0, 2558, 2559, 3, 1069, 534, 0, 2559, 2560, 3, 1061, 530, 0, 2560, 2561, + 3, 1095, 547, 0, 2561, 2562, 3, 1065, 532, 0, 2562, 2563, 3, 1075, 537, + 0, 2563, 2564, 3, 1063, 531, 0, 2564, 2565, 3, 1061, 530, 0, 2565, 2566, + 3, 1095, 547, 0, 2566, 318, 1, 0, 0, 0, 2567, 2568, 3, 1087, 543, 0, 2568, + 2569, 3, 1061, 530, 0, 2569, 2570, 3, 1103, 551, 0, 2570, 2571, 3, 1077, + 538, 0, 2571, 2572, 3, 1073, 536, 0, 2572, 2573, 3, 1061, 530, 0, 2573, + 2574, 3, 1099, 549, 0, 2574, 2575, 3, 1077, 538, 0, 2575, 2576, 3, 1089, + 544, 0, 2576, 2577, 3, 1087, 543, 0, 2577, 2578, 3, 1083, 541, 0, 2578, + 2579, 3, 1077, 538, 0, 2579, 2580, 3, 1097, 548, 0, 2580, 2581, 3, 1099, + 549, 0, 2581, 320, 1, 0, 0, 0, 2582, 2583, 3, 1061, 530, 0, 2583, 2584, + 3, 1065, 532, 0, 2584, 2585, 3, 1099, 549, 0, 2585, 2586, 3, 1077, 538, + 0, 2586, 2587, 3, 1089, 544, 0, 2587, 2588, 3, 1087, 543, 0, 2588, 2589, + 3, 1063, 531, 0, 2589, 2590, 3, 1101, 550, 0, 2590, 2591, 3, 1099, 549, + 0, 2591, 2592, 3, 1099, 549, 0, 2592, 2593, 3, 1089, 544, 0, 2593, 2594, + 3, 1087, 543, 0, 2594, 322, 1, 0, 0, 0, 2595, 2596, 3, 1083, 541, 0, 2596, + 2597, 3, 1077, 538, 0, 2597, 2598, 3, 1087, 543, 0, 2598, 2599, 3, 1081, + 540, 0, 2599, 2600, 3, 1063, 531, 0, 2600, 2601, 3, 1101, 550, 0, 2601, + 2602, 3, 1099, 549, 0, 2602, 2603, 3, 1099, 549, 0, 2603, 2604, 3, 1089, + 544, 0, 2604, 2605, 3, 1087, 543, 0, 2605, 324, 1, 0, 0, 0, 2606, 2607, + 3, 1063, 531, 0, 2607, 2608, 3, 1101, 550, 0, 2608, 2609, 3, 1099, 549, + 0, 2609, 2610, 3, 1099, 549, 0, 2610, 2611, 3, 1089, 544, 0, 2611, 2612, + 3, 1087, 543, 0, 2612, 326, 1, 0, 0, 0, 2613, 2614, 3, 1099, 549, 0, 2614, + 2615, 3, 1077, 538, 0, 2615, 2616, 3, 1099, 549, 0, 2616, 2617, 3, 1083, + 541, 0, 2617, 2618, 3, 1069, 534, 0, 2618, 328, 1, 0, 0, 0, 2619, 2620, + 3, 1067, 533, 0, 2620, 2621, 3, 1109, 554, 0, 2621, 2622, 3, 1087, 543, + 0, 2622, 2623, 3, 1061, 530, 0, 2623, 2624, 3, 1085, 542, 0, 2624, 2625, + 3, 1077, 538, 0, 2625, 2626, 3, 1065, 532, 0, 2626, 2627, 3, 1099, 549, + 0, 2627, 2628, 3, 1069, 534, 0, 2628, 2629, 3, 1107, 553, 0, 2629, 2630, + 3, 1099, 549, 0, 2630, 330, 1, 0, 0, 0, 2631, 2632, 3, 1067, 533, 0, 2632, + 2633, 3, 1109, 554, 0, 2633, 2634, 3, 1087, 543, 0, 2634, 2635, 3, 1061, + 530, 0, 2635, 2636, 3, 1085, 542, 0, 2636, 2637, 3, 1077, 538, 0, 2637, + 2638, 3, 1065, 532, 0, 2638, 332, 1, 0, 0, 0, 2639, 2640, 3, 1097, 548, + 0, 2640, 2641, 3, 1099, 549, 0, 2641, 2642, 3, 1061, 530, 0, 2642, 2643, + 3, 1099, 549, 0, 2643, 2644, 3, 1077, 538, 0, 2644, 2645, 3, 1065, 532, + 0, 2645, 2646, 3, 1099, 549, 0, 2646, 2647, 3, 1069, 534, 0, 2647, 2648, + 3, 1107, 553, 0, 2648, 2649, 3, 1099, 549, 0, 2649, 334, 1, 0, 0, 0, 2650, + 2651, 3, 1083, 541, 0, 2651, 2652, 3, 1061, 530, 0, 2652, 2653, 3, 1063, + 531, 0, 2653, 2654, 3, 1069, 534, 0, 2654, 2655, 3, 1083, 541, 0, 2655, + 336, 1, 0, 0, 0, 2656, 2657, 3, 1099, 549, 0, 2657, 2658, 3, 1069, 534, + 0, 2658, 2659, 3, 1107, 553, 0, 2659, 2660, 3, 1099, 549, 0, 2660, 2661, + 3, 1063, 531, 0, 2661, 2662, 3, 1089, 544, 0, 2662, 2663, 3, 1107, 553, + 0, 2663, 338, 1, 0, 0, 0, 2664, 2665, 3, 1099, 549, 0, 2665, 2666, 3, 1069, + 534, 0, 2666, 2667, 3, 1107, 553, 0, 2667, 2668, 3, 1099, 549, 0, 2668, + 2669, 3, 1061, 530, 0, 2669, 2670, 3, 1095, 547, 0, 2670, 2671, 3, 1069, + 534, 0, 2671, 2672, 3, 1061, 530, 0, 2672, 340, 1, 0, 0, 0, 2673, 2674, + 3, 1067, 533, 0, 2674, 2675, 3, 1061, 530, 0, 2675, 2676, 3, 1099, 549, + 0, 2676, 2677, 3, 1069, 534, 0, 2677, 2678, 3, 1091, 545, 0, 2678, 2679, + 3, 1077, 538, 0, 2679, 2680, 3, 1065, 532, 0, 2680, 2681, 3, 1081, 540, + 0, 2681, 2682, 3, 1069, 534, 0, 2682, 2683, 3, 1095, 547, 0, 2683, 342, + 1, 0, 0, 0, 2684, 2685, 3, 1095, 547, 0, 2685, 2686, 3, 1061, 530, 0, 2686, + 2687, 3, 1067, 533, 0, 2687, 2688, 3, 1077, 538, 0, 2688, 2689, 3, 1089, + 544, 0, 2689, 2690, 3, 1063, 531, 0, 2690, 2691, 3, 1101, 550, 0, 2691, + 2692, 3, 1099, 549, 0, 2692, 2693, 3, 1099, 549, 0, 2693, 2694, 3, 1089, + 544, 0, 2694, 2695, 3, 1087, 543, 0, 2695, 2696, 3, 1097, 548, 0, 2696, + 344, 1, 0, 0, 0, 2697, 2698, 3, 1067, 533, 0, 2698, 2699, 3, 1095, 547, + 0, 2699, 2700, 3, 1089, 544, 0, 2700, 2701, 3, 1091, 545, 0, 2701, 2702, + 3, 1067, 533, 0, 2702, 2703, 3, 1089, 544, 0, 2703, 2704, 3, 1105, 552, + 0, 2704, 2705, 3, 1087, 543, 0, 2705, 346, 1, 0, 0, 0, 2706, 2707, 3, 1065, + 532, 0, 2707, 2708, 3, 1089, 544, 0, 2708, 2709, 3, 1085, 542, 0, 2709, + 2710, 3, 1063, 531, 0, 2710, 2711, 3, 1089, 544, 0, 2711, 2712, 3, 1063, + 531, 0, 2712, 2713, 3, 1089, 544, 0, 2713, 2714, 3, 1107, 553, 0, 2714, + 348, 1, 0, 0, 0, 2715, 2716, 3, 1065, 532, 0, 2716, 2717, 3, 1075, 537, + 0, 2717, 2718, 3, 1069, 534, 0, 2718, 2719, 3, 1065, 532, 0, 2719, 2720, + 3, 1081, 540, 0, 2720, 2721, 3, 1063, 531, 0, 2721, 2722, 3, 1089, 544, + 0, 2722, 2723, 3, 1107, 553, 0, 2723, 350, 1, 0, 0, 0, 2724, 2725, 3, 1095, + 547, 0, 2725, 2726, 3, 1069, 534, 0, 2726, 2727, 3, 1071, 535, 0, 2727, + 2728, 3, 1069, 534, 0, 2728, 2729, 3, 1095, 547, 0, 2729, 2730, 3, 1069, + 534, 0, 2730, 2731, 3, 1087, 543, 0, 2731, 2732, 3, 1065, 532, 0, 2732, + 2733, 3, 1069, 534, 0, 2733, 2734, 3, 1097, 548, 0, 2734, 2735, 3, 1069, + 534, 0, 2735, 2736, 3, 1083, 541, 0, 2736, 2737, 3, 1069, 534, 0, 2737, + 2738, 3, 1065, 532, 0, 2738, 2739, 3, 1099, 549, 0, 2739, 2740, 3, 1089, + 544, 0, 2740, 2741, 3, 1095, 547, 0, 2741, 352, 1, 0, 0, 0, 2742, 2743, + 3, 1077, 538, 0, 2743, 2744, 3, 1087, 543, 0, 2744, 2745, 3, 1091, 545, + 0, 2745, 2746, 3, 1101, 550, 0, 2746, 2747, 3, 1099, 549, 0, 2747, 2748, + 3, 1095, 547, 0, 2748, 2749, 3, 1069, 534, 0, 2749, 2750, 3, 1071, 535, + 0, 2750, 2751, 3, 1069, 534, 0, 2751, 2752, 3, 1095, 547, 0, 2752, 2753, + 3, 1069, 534, 0, 2753, 2754, 3, 1087, 543, 0, 2754, 2755, 3, 1065, 532, + 0, 2755, 2756, 3, 1069, 534, 0, 2756, 2757, 3, 1097, 548, 0, 2757, 2758, + 3, 1069, 534, 0, 2758, 2759, 3, 1099, 549, 0, 2759, 2760, 3, 1097, 548, + 0, 2760, 2761, 3, 1069, 534, 0, 2761, 2762, 3, 1083, 541, 0, 2762, 2763, + 3, 1069, 534, 0, 2763, 2764, 3, 1065, 532, 0, 2764, 2765, 3, 1099, 549, + 0, 2765, 2766, 3, 1089, 544, 0, 2766, 2767, 3, 1095, 547, 0, 2767, 354, + 1, 0, 0, 0, 2768, 2769, 3, 1071, 535, 0, 2769, 2770, 3, 1077, 538, 0, 2770, + 2771, 3, 1083, 541, 0, 2771, 2772, 3, 1069, 534, 0, 2772, 2773, 3, 1077, + 538, 0, 2773, 2774, 3, 1087, 543, 0, 2774, 2775, 3, 1091, 545, 0, 2775, + 2776, 3, 1101, 550, 0, 2776, 2777, 3, 1099, 549, 0, 2777, 356, 1, 0, 0, + 0, 2778, 2779, 3, 1077, 538, 0, 2779, 2780, 3, 1085, 542, 0, 2780, 2781, + 3, 1061, 530, 0, 2781, 2782, 3, 1073, 536, 0, 2782, 2783, 3, 1069, 534, + 0, 2783, 2784, 3, 1077, 538, 0, 2784, 2785, 3, 1087, 543, 0, 2785, 2786, + 3, 1091, 545, 0, 2786, 2787, 3, 1101, 550, 0, 2787, 2788, 3, 1099, 549, + 0, 2788, 358, 1, 0, 0, 0, 2789, 2790, 3, 1065, 532, 0, 2790, 2791, 3, 1101, + 550, 0, 2791, 2792, 3, 1097, 548, 0, 2792, 2793, 3, 1099, 549, 0, 2793, + 2794, 3, 1089, 544, 0, 2794, 2795, 3, 1085, 542, 0, 2795, 2796, 3, 1105, + 552, 0, 2796, 2797, 3, 1077, 538, 0, 2797, 2798, 3, 1067, 533, 0, 2798, + 2799, 3, 1073, 536, 0, 2799, 2800, 3, 1069, 534, 0, 2800, 2801, 3, 1099, + 549, 0, 2801, 360, 1, 0, 0, 0, 2802, 2803, 3, 1091, 545, 0, 2803, 2804, + 3, 1083, 541, 0, 2804, 2805, 3, 1101, 550, 0, 2805, 2806, 3, 1073, 536, + 0, 2806, 2807, 3, 1073, 536, 0, 2807, 2808, 3, 1061, 530, 0, 2808, 2809, + 3, 1063, 531, 0, 2809, 2810, 3, 1083, 541, 0, 2810, 2811, 3, 1069, 534, + 0, 2811, 2812, 3, 1105, 552, 0, 2812, 2813, 3, 1077, 538, 0, 2813, 2814, + 3, 1067, 533, 0, 2814, 2815, 3, 1073, 536, 0, 2815, 2816, 3, 1069, 534, + 0, 2816, 2817, 3, 1099, 549, 0, 2817, 362, 1, 0, 0, 0, 2818, 2819, 3, 1099, + 549, 0, 2819, 2820, 3, 1069, 534, 0, 2820, 2821, 3, 1107, 553, 0, 2821, + 2822, 3, 1099, 549, 0, 2822, 2823, 3, 1071, 535, 0, 2823, 2824, 3, 1077, + 538, 0, 2824, 2825, 3, 1083, 541, 0, 2825, 2826, 3, 1099, 549, 0, 2826, + 2827, 3, 1069, 534, 0, 2827, 2828, 3, 1095, 547, 0, 2828, 364, 1, 0, 0, + 0, 2829, 2830, 3, 1087, 543, 0, 2830, 2831, 3, 1101, 550, 0, 2831, 2832, + 3, 1085, 542, 0, 2832, 2833, 3, 1063, 531, 0, 2833, 2834, 3, 1069, 534, + 0, 2834, 2835, 3, 1095, 547, 0, 2835, 2836, 3, 1071, 535, 0, 2836, 2837, + 3, 1077, 538, 0, 2837, 2838, 3, 1083, 541, 0, 2838, 2839, 3, 1099, 549, + 0, 2839, 2840, 3, 1069, 534, 0, 2840, 2841, 3, 1095, 547, 0, 2841, 366, + 1, 0, 0, 0, 2842, 2843, 3, 1067, 533, 0, 2843, 2844, 3, 1095, 547, 0, 2844, + 2845, 3, 1089, 544, 0, 2845, 2846, 3, 1091, 545, 0, 2846, 2847, 3, 1067, + 533, 0, 2847, 2848, 3, 1089, 544, 0, 2848, 2849, 3, 1105, 552, 0, 2849, + 2850, 3, 1087, 543, 0, 2850, 2851, 3, 1071, 535, 0, 2851, 2852, 3, 1077, + 538, 0, 2852, 2853, 3, 1083, 541, 0, 2853, 2854, 3, 1099, 549, 0, 2854, + 2855, 3, 1069, 534, 0, 2855, 2856, 3, 1095, 547, 0, 2856, 368, 1, 0, 0, + 0, 2857, 2858, 3, 1067, 533, 0, 2858, 2859, 3, 1061, 530, 0, 2859, 2860, + 3, 1099, 549, 0, 2860, 2861, 3, 1069, 534, 0, 2861, 2862, 3, 1071, 535, + 0, 2862, 2863, 3, 1077, 538, 0, 2863, 2864, 3, 1083, 541, 0, 2864, 2865, + 3, 1099, 549, 0, 2865, 2866, 3, 1069, 534, 0, 2866, 2867, 3, 1095, 547, + 0, 2867, 370, 1, 0, 0, 0, 2868, 2869, 3, 1067, 533, 0, 2869, 2870, 3, 1095, + 547, 0, 2870, 2871, 3, 1089, 544, 0, 2871, 2872, 3, 1091, 545, 0, 2872, + 2873, 3, 1067, 533, 0, 2873, 2874, 3, 1089, 544, 0, 2874, 2875, 3, 1105, + 552, 0, 2875, 2876, 3, 1087, 543, 0, 2876, 2877, 3, 1097, 548, 0, 2877, + 2878, 3, 1089, 544, 0, 2878, 2879, 3, 1095, 547, 0, 2879, 2880, 3, 1099, + 549, 0, 2880, 372, 1, 0, 0, 0, 2881, 2882, 3, 1071, 535, 0, 2882, 2883, + 3, 1077, 538, 0, 2883, 2884, 3, 1083, 541, 0, 2884, 2885, 3, 1099, 549, + 0, 2885, 2886, 3, 1069, 534, 0, 2886, 2887, 3, 1095, 547, 0, 2887, 374, + 1, 0, 0, 0, 2888, 2889, 3, 1105, 552, 0, 2889, 2890, 3, 1077, 538, 0, 2890, + 2891, 3, 1067, 533, 0, 2891, 2892, 3, 1073, 536, 0, 2892, 2893, 3, 1069, + 534, 0, 2893, 2894, 3, 1099, 549, 0, 2894, 376, 1, 0, 0, 0, 2895, 2896, + 3, 1105, 552, 0, 2896, 2897, 3, 1077, 538, 0, 2897, 2898, 3, 1067, 533, + 0, 2898, 2899, 3, 1073, 536, 0, 2899, 2900, 3, 1069, 534, 0, 2900, 2901, + 3, 1099, 549, 0, 2901, 2902, 3, 1097, 548, 0, 2902, 378, 1, 0, 0, 0, 2903, + 2904, 3, 1065, 532, 0, 2904, 2905, 3, 1061, 530, 0, 2905, 2906, 3, 1091, + 545, 0, 2906, 2907, 3, 1099, 549, 0, 2907, 2908, 3, 1077, 538, 0, 2908, + 2909, 3, 1089, 544, 0, 2909, 2910, 3, 1087, 543, 0, 2910, 380, 1, 0, 0, + 0, 2911, 2912, 3, 1077, 538, 0, 2912, 2913, 3, 1065, 532, 0, 2913, 2914, + 3, 1089, 544, 0, 2914, 2915, 3, 1087, 543, 0, 2915, 382, 1, 0, 0, 0, 2916, + 2917, 3, 1099, 549, 0, 2917, 2918, 3, 1089, 544, 0, 2918, 2919, 3, 1089, + 544, 0, 2919, 2920, 3, 1083, 541, 0, 2920, 2921, 3, 1099, 549, 0, 2921, + 2922, 3, 1077, 538, 0, 2922, 2923, 3, 1091, 545, 0, 2923, 384, 1, 0, 0, + 0, 2924, 2925, 3, 1067, 533, 0, 2925, 2926, 3, 1061, 530, 0, 2926, 2927, + 3, 1099, 549, 0, 2927, 2928, 3, 1061, 530, 0, 2928, 2929, 3, 1097, 548, + 0, 2929, 2930, 3, 1089, 544, 0, 2930, 2931, 3, 1101, 550, 0, 2931, 2932, + 3, 1095, 547, 0, 2932, 2933, 3, 1065, 532, 0, 2933, 2934, 3, 1069, 534, + 0, 2934, 386, 1, 0, 0, 0, 2935, 2936, 3, 1097, 548, 0, 2936, 2937, 3, 1089, + 544, 0, 2937, 2938, 3, 1101, 550, 0, 2938, 2939, 3, 1095, 547, 0, 2939, + 2940, 3, 1065, 532, 0, 2940, 2941, 3, 1069, 534, 0, 2941, 388, 1, 0, 0, + 0, 2942, 2943, 3, 1097, 548, 0, 2943, 2944, 3, 1069, 534, 0, 2944, 2945, + 3, 1083, 541, 0, 2945, 2946, 3, 1069, 534, 0, 2946, 2947, 3, 1065, 532, + 0, 2947, 2948, 3, 1099, 549, 0, 2948, 2949, 3, 1077, 538, 0, 2949, 2950, + 3, 1089, 544, 0, 2950, 2951, 3, 1087, 543, 0, 2951, 390, 1, 0, 0, 0, 2952, + 2953, 3, 1071, 535, 0, 2953, 2954, 3, 1089, 544, 0, 2954, 2955, 3, 1089, + 544, 0, 2955, 2956, 3, 1099, 549, 0, 2956, 2957, 3, 1069, 534, 0, 2957, + 2958, 3, 1095, 547, 0, 2958, 392, 1, 0, 0, 0, 2959, 2960, 3, 1075, 537, + 0, 2960, 2961, 3, 1069, 534, 0, 2961, 2962, 3, 1061, 530, 0, 2962, 2963, + 3, 1067, 533, 0, 2963, 2964, 3, 1069, 534, 0, 2964, 2965, 3, 1095, 547, + 0, 2965, 394, 1, 0, 0, 0, 2966, 2967, 3, 1065, 532, 0, 2967, 2968, 3, 1089, + 544, 0, 2968, 2969, 3, 1087, 543, 0, 2969, 2970, 3, 1099, 549, 0, 2970, + 2971, 3, 1069, 534, 0, 2971, 2972, 3, 1087, 543, 0, 2972, 2973, 3, 1099, + 549, 0, 2973, 396, 1, 0, 0, 0, 2974, 2975, 3, 1095, 547, 0, 2975, 2976, + 3, 1069, 534, 0, 2976, 2977, 3, 1087, 543, 0, 2977, 2978, 3, 1067, 533, + 0, 2978, 2979, 3, 1069, 534, 0, 2979, 2980, 3, 1095, 547, 0, 2980, 2981, + 3, 1085, 542, 0, 2981, 2982, 3, 1089, 544, 0, 2982, 2983, 3, 1067, 533, + 0, 2983, 2984, 3, 1069, 534, 0, 2984, 398, 1, 0, 0, 0, 2985, 2986, 3, 1063, + 531, 0, 2986, 2987, 3, 1077, 538, 0, 2987, 2988, 3, 1087, 543, 0, 2988, + 2989, 3, 1067, 533, 0, 2989, 2990, 3, 1097, 548, 0, 2990, 400, 1, 0, 0, + 0, 2991, 2992, 3, 1061, 530, 0, 2992, 2993, 3, 1099, 549, 0, 2993, 2994, + 3, 1099, 549, 0, 2994, 2995, 3, 1095, 547, 0, 2995, 402, 1, 0, 0, 0, 2996, + 2997, 3, 1065, 532, 0, 2997, 2998, 3, 1089, 544, 0, 2998, 2999, 3, 1087, + 543, 0, 2999, 3000, 3, 1099, 549, 0, 3000, 3001, 3, 1069, 534, 0, 3001, + 3002, 3, 1087, 543, 0, 3002, 3003, 3, 1099, 549, 0, 3003, 3004, 3, 1091, + 545, 0, 3004, 3005, 3, 1061, 530, 0, 3005, 3006, 3, 1095, 547, 0, 3006, + 3007, 3, 1061, 530, 0, 3007, 3008, 3, 1085, 542, 0, 3008, 3009, 3, 1097, + 548, 0, 3009, 404, 1, 0, 0, 0, 3010, 3011, 3, 1065, 532, 0, 3011, 3012, + 3, 1061, 530, 0, 3012, 3013, 3, 1091, 545, 0, 3013, 3014, 3, 1099, 549, + 0, 3014, 3015, 3, 1077, 538, 0, 3015, 3016, 3, 1089, 544, 0, 3016, 3017, + 3, 1087, 543, 0, 3017, 3018, 3, 1091, 545, 0, 3018, 3019, 3, 1061, 530, + 0, 3019, 3020, 3, 1095, 547, 0, 3020, 3021, 3, 1061, 530, 0, 3021, 3022, + 3, 1085, 542, 0, 3022, 3023, 3, 1097, 548, 0, 3023, 406, 1, 0, 0, 0, 3024, + 3025, 3, 1091, 545, 0, 3025, 3026, 3, 1061, 530, 0, 3026, 3027, 3, 1095, + 547, 0, 3027, 3028, 3, 1061, 530, 0, 3028, 3029, 3, 1085, 542, 0, 3029, + 3030, 3, 1097, 548, 0, 3030, 408, 1, 0, 0, 0, 3031, 3032, 3, 1103, 551, + 0, 3032, 3033, 3, 1061, 530, 0, 3033, 3034, 3, 1095, 547, 0, 3034, 3035, + 3, 1077, 538, 0, 3035, 3036, 3, 1061, 530, 0, 3036, 3037, 3, 1063, 531, + 0, 3037, 3038, 3, 1083, 541, 0, 3038, 3039, 3, 1069, 534, 0, 3039, 3040, + 3, 1097, 548, 0, 3040, 410, 1, 0, 0, 0, 3041, 3042, 3, 1067, 533, 0, 3042, + 3043, 3, 1069, 534, 0, 3043, 3044, 3, 1097, 548, 0, 3044, 3045, 3, 1081, + 540, 0, 3045, 3046, 3, 1099, 549, 0, 3046, 3047, 3, 1089, 544, 0, 3047, + 3048, 3, 1091, 545, 0, 3048, 3049, 3, 1105, 552, 0, 3049, 3050, 3, 1077, + 538, 0, 3050, 3051, 3, 1067, 533, 0, 3051, 3052, 3, 1099, 549, 0, 3052, + 3053, 3, 1075, 537, 0, 3053, 412, 1, 0, 0, 0, 3054, 3055, 3, 1099, 549, + 0, 3055, 3056, 3, 1061, 530, 0, 3056, 3057, 3, 1063, 531, 0, 3057, 3058, + 3, 1083, 541, 0, 3058, 3059, 3, 1069, 534, 0, 3059, 3060, 3, 1099, 549, + 0, 3060, 3061, 3, 1105, 552, 0, 3061, 3062, 3, 1077, 538, 0, 3062, 3063, + 3, 1067, 533, 0, 3063, 3064, 3, 1099, 549, 0, 3064, 3065, 3, 1075, 537, + 0, 3065, 414, 1, 0, 0, 0, 3066, 3067, 3, 1091, 545, 0, 3067, 3068, 3, 1075, + 537, 0, 3068, 3069, 3, 1089, 544, 0, 3069, 3070, 3, 1087, 543, 0, 3070, + 3071, 3, 1069, 534, 0, 3071, 3072, 3, 1105, 552, 0, 3072, 3073, 3, 1077, + 538, 0, 3073, 3074, 3, 1067, 533, 0, 3074, 3075, 3, 1099, 549, 0, 3075, + 3076, 3, 1075, 537, 0, 3076, 416, 1, 0, 0, 0, 3077, 3078, 3, 1065, 532, + 0, 3078, 3079, 3, 1083, 541, 0, 3079, 3080, 3, 1061, 530, 0, 3080, 3081, + 3, 1097, 548, 0, 3081, 3082, 3, 1097, 548, 0, 3082, 418, 1, 0, 0, 0, 3083, + 3084, 3, 1097, 548, 0, 3084, 3085, 3, 1099, 549, 0, 3085, 3086, 3, 1109, + 554, 0, 3086, 3087, 3, 1083, 541, 0, 3087, 3088, 3, 1069, 534, 0, 3088, + 420, 1, 0, 0, 0, 3089, 3090, 3, 1063, 531, 0, 3090, 3091, 3, 1101, 550, + 0, 3091, 3092, 3, 1099, 549, 0, 3092, 3093, 3, 1099, 549, 0, 3093, 3094, + 3, 1089, 544, 0, 3094, 3095, 3, 1087, 543, 0, 3095, 3096, 3, 1097, 548, + 0, 3096, 3097, 3, 1099, 549, 0, 3097, 3098, 3, 1109, 554, 0, 3098, 3099, + 3, 1083, 541, 0, 3099, 3100, 3, 1069, 534, 0, 3100, 422, 1, 0, 0, 0, 3101, + 3102, 3, 1067, 533, 0, 3102, 3103, 3, 1069, 534, 0, 3103, 3104, 3, 1097, + 548, 0, 3104, 3105, 3, 1077, 538, 0, 3105, 3106, 3, 1073, 536, 0, 3106, + 3107, 3, 1087, 543, 0, 3107, 424, 1, 0, 0, 0, 3108, 3109, 3, 1091, 545, + 0, 3109, 3110, 3, 1095, 547, 0, 3110, 3111, 3, 1089, 544, 0, 3111, 3112, + 3, 1091, 545, 0, 3112, 3113, 3, 1069, 534, 0, 3113, 3114, 3, 1095, 547, + 0, 3114, 3115, 3, 1099, 549, 0, 3115, 3116, 3, 1077, 538, 0, 3116, 3117, + 3, 1069, 534, 0, 3117, 3118, 3, 1097, 548, 0, 3118, 426, 1, 0, 0, 0, 3119, + 3120, 3, 1067, 533, 0, 3120, 3121, 3, 1069, 534, 0, 3121, 3122, 3, 1097, + 548, 0, 3122, 3123, 3, 1077, 538, 0, 3123, 3124, 3, 1073, 536, 0, 3124, + 3125, 3, 1087, 543, 0, 3125, 3126, 3, 1091, 545, 0, 3126, 3127, 3, 1095, + 547, 0, 3127, 3128, 3, 1089, 544, 0, 3128, 3129, 3, 1091, 545, 0, 3129, + 3130, 3, 1069, 534, 0, 3130, 3131, 3, 1095, 547, 0, 3131, 3132, 3, 1099, + 549, 0, 3132, 3133, 3, 1077, 538, 0, 3133, 3134, 3, 1069, 534, 0, 3134, + 3135, 3, 1097, 548, 0, 3135, 428, 1, 0, 0, 0, 3136, 3137, 3, 1097, 548, + 0, 3137, 3138, 3, 1099, 549, 0, 3138, 3139, 3, 1109, 554, 0, 3139, 3140, + 3, 1083, 541, 0, 3140, 3141, 3, 1077, 538, 0, 3141, 3142, 3, 1087, 543, + 0, 3142, 3143, 3, 1073, 536, 0, 3143, 430, 1, 0, 0, 0, 3144, 3145, 3, 1065, + 532, 0, 3145, 3146, 3, 1083, 541, 0, 3146, 3147, 3, 1069, 534, 0, 3147, + 3148, 3, 1061, 530, 0, 3148, 3149, 3, 1095, 547, 0, 3149, 432, 1, 0, 0, + 0, 3150, 3151, 3, 1105, 552, 0, 3151, 3152, 3, 1077, 538, 0, 3152, 3153, + 3, 1067, 533, 0, 3153, 3154, 3, 1099, 549, 0, 3154, 3155, 3, 1075, 537, + 0, 3155, 434, 1, 0, 0, 0, 3156, 3157, 3, 1075, 537, 0, 3157, 3158, 3, 1069, + 534, 0, 3158, 3159, 3, 1077, 538, 0, 3159, 3160, 3, 1073, 536, 0, 3160, + 3161, 3, 1075, 537, 0, 3161, 3162, 3, 1099, 549, 0, 3162, 436, 1, 0, 0, + 0, 3163, 3164, 3, 1061, 530, 0, 3164, 3165, 3, 1101, 550, 0, 3165, 3166, + 3, 1099, 549, 0, 3166, 3167, 3, 1089, 544, 0, 3167, 3168, 3, 1071, 535, + 0, 3168, 3169, 3, 1077, 538, 0, 3169, 3170, 3, 1083, 541, 0, 3170, 3171, + 3, 1083, 541, 0, 3171, 438, 1, 0, 0, 0, 3172, 3173, 3, 1101, 550, 0, 3173, + 3174, 3, 1095, 547, 0, 3174, 3175, 3, 1083, 541, 0, 3175, 440, 1, 0, 0, + 0, 3176, 3177, 3, 1071, 535, 0, 3177, 3178, 3, 1089, 544, 0, 3178, 3179, + 3, 1083, 541, 0, 3179, 3180, 3, 1067, 533, 0, 3180, 3181, 3, 1069, 534, + 0, 3181, 3182, 3, 1095, 547, 0, 3182, 442, 1, 0, 0, 0, 3183, 3184, 3, 1091, + 545, 0, 3184, 3185, 3, 1061, 530, 0, 3185, 3186, 3, 1097, 548, 0, 3186, + 3187, 3, 1097, 548, 0, 3187, 3188, 3, 1077, 538, 0, 3188, 3189, 3, 1087, + 543, 0, 3189, 3190, 3, 1073, 536, 0, 3190, 444, 1, 0, 0, 0, 3191, 3192, + 3, 1065, 532, 0, 3192, 3193, 3, 1089, 544, 0, 3193, 3194, 3, 1087, 543, + 0, 3194, 3195, 3, 1099, 549, 0, 3195, 3196, 3, 1069, 534, 0, 3196, 3197, + 3, 1107, 553, 0, 3197, 3198, 3, 1099, 549, 0, 3198, 446, 1, 0, 0, 0, 3199, + 3200, 3, 1069, 534, 0, 3200, 3201, 3, 1067, 533, 0, 3201, 3202, 3, 1077, + 538, 0, 3202, 3203, 3, 1099, 549, 0, 3203, 3204, 3, 1061, 530, 0, 3204, + 3205, 3, 1063, 531, 0, 3205, 3206, 3, 1083, 541, 0, 3206, 3207, 3, 1069, + 534, 0, 3207, 448, 1, 0, 0, 0, 3208, 3209, 3, 1095, 547, 0, 3209, 3210, + 3, 1069, 534, 0, 3210, 3211, 3, 1061, 530, 0, 3211, 3212, 3, 1067, 533, + 0, 3212, 3213, 3, 1089, 544, 0, 3213, 3214, 3, 1087, 543, 0, 3214, 3215, + 3, 1083, 541, 0, 3215, 3216, 3, 1109, 554, 0, 3216, 450, 1, 0, 0, 0, 3217, + 3218, 3, 1061, 530, 0, 3218, 3219, 3, 1099, 549, 0, 3219, 3220, 3, 1099, + 549, 0, 3220, 3221, 3, 1095, 547, 0, 3221, 3222, 3, 1077, 538, 0, 3222, + 3223, 3, 1063, 531, 0, 3223, 3224, 3, 1101, 550, 0, 3224, 3225, 3, 1099, + 549, 0, 3225, 3226, 3, 1069, 534, 0, 3226, 3227, 3, 1097, 548, 0, 3227, + 452, 1, 0, 0, 0, 3228, 3229, 3, 1071, 535, 0, 3229, 3230, 3, 1077, 538, + 0, 3230, 3231, 3, 1083, 541, 0, 3231, 3232, 3, 1099, 549, 0, 3232, 3233, + 3, 1069, 534, 0, 3233, 3234, 3, 1095, 547, 0, 3234, 3235, 3, 1099, 549, + 0, 3235, 3236, 3, 1109, 554, 0, 3236, 3237, 3, 1091, 545, 0, 3237, 3238, + 3, 1069, 534, 0, 3238, 454, 1, 0, 0, 0, 3239, 3240, 3, 1077, 538, 0, 3240, + 3241, 3, 1085, 542, 0, 3241, 3242, 3, 1061, 530, 0, 3242, 3243, 3, 1073, + 536, 0, 3243, 3244, 3, 1069, 534, 0, 3244, 456, 1, 0, 0, 0, 3245, 3246, + 3, 1065, 532, 0, 3246, 3247, 3, 1089, 544, 0, 3247, 3248, 3, 1083, 541, + 0, 3248, 3249, 3, 1083, 541, 0, 3249, 3250, 3, 1069, 534, 0, 3250, 3251, + 3, 1065, 532, 0, 3251, 3252, 3, 1099, 549, 0, 3252, 3253, 3, 1077, 538, + 0, 3253, 3254, 3, 1089, 544, 0, 3254, 3255, 3, 1087, 543, 0, 3255, 458, + 1, 0, 0, 0, 3256, 3257, 3, 1097, 548, 0, 3257, 3258, 3, 1099, 549, 0, 3258, + 3259, 3, 1061, 530, 0, 3259, 3260, 3, 1099, 549, 0, 3260, 3261, 3, 1077, + 538, 0, 3261, 3262, 3, 1065, 532, 0, 3262, 3263, 3, 1077, 538, 0, 3263, + 3264, 3, 1085, 542, 0, 3264, 3265, 3, 1061, 530, 0, 3265, 3266, 3, 1073, + 536, 0, 3266, 3267, 3, 1069, 534, 0, 3267, 460, 1, 0, 0, 0, 3268, 3269, + 3, 1067, 533, 0, 3269, 3270, 3, 1109, 554, 0, 3270, 3271, 3, 1087, 543, + 0, 3271, 3272, 3, 1061, 530, 0, 3272, 3273, 3, 1085, 542, 0, 3273, 3274, + 3, 1077, 538, 0, 3274, 3275, 3, 1065, 532, 0, 3275, 3276, 3, 1077, 538, + 0, 3276, 3277, 3, 1085, 542, 0, 3277, 3278, 3, 1061, 530, 0, 3278, 3279, + 3, 1073, 536, 0, 3279, 3280, 3, 1069, 534, 0, 3280, 462, 1, 0, 0, 0, 3281, + 3282, 3, 1065, 532, 0, 3282, 3283, 3, 1101, 550, 0, 3283, 3284, 3, 1097, + 548, 0, 3284, 3285, 3, 1099, 549, 0, 3285, 3286, 3, 1089, 544, 0, 3286, + 3287, 3, 1085, 542, 0, 3287, 3288, 3, 1065, 532, 0, 3288, 3289, 3, 1089, + 544, 0, 3289, 3290, 3, 1087, 543, 0, 3290, 3291, 3, 1099, 549, 0, 3291, + 3292, 3, 1061, 530, 0, 3292, 3293, 3, 1077, 538, 0, 3293, 3294, 3, 1087, + 543, 0, 3294, 3295, 3, 1069, 534, 0, 3295, 3296, 3, 1095, 547, 0, 3296, + 464, 1, 0, 0, 0, 3297, 3298, 3, 1099, 549, 0, 3298, 3299, 3, 1061, 530, + 0, 3299, 3300, 3, 1063, 531, 0, 3300, 3301, 3, 1065, 532, 0, 3301, 3302, + 3, 1089, 544, 0, 3302, 3303, 3, 1087, 543, 0, 3303, 3304, 3, 1099, 549, + 0, 3304, 3305, 3, 1061, 530, 0, 3305, 3306, 3, 1077, 538, 0, 3306, 3307, + 3, 1087, 543, 0, 3307, 3308, 3, 1069, 534, 0, 3308, 3309, 3, 1095, 547, + 0, 3309, 466, 1, 0, 0, 0, 3310, 3311, 3, 1099, 549, 0, 3311, 3312, 3, 1061, + 530, 0, 3312, 3313, 3, 1063, 531, 0, 3313, 3314, 3, 1091, 545, 0, 3314, + 3315, 3, 1061, 530, 0, 3315, 3316, 3, 1073, 536, 0, 3316, 3317, 3, 1069, + 534, 0, 3317, 468, 1, 0, 0, 0, 3318, 3319, 3, 1073, 536, 0, 3319, 3320, + 3, 1095, 547, 0, 3320, 3321, 3, 1089, 544, 0, 3321, 3322, 3, 1101, 550, + 0, 3322, 3323, 3, 1091, 545, 0, 3323, 3324, 3, 1063, 531, 0, 3324, 3325, + 3, 1089, 544, 0, 3325, 3326, 3, 1107, 553, 0, 3326, 470, 1, 0, 0, 0, 3327, + 3328, 3, 1103, 551, 0, 3328, 3329, 3, 1077, 538, 0, 3329, 3330, 3, 1097, + 548, 0, 3330, 3331, 3, 1077, 538, 0, 3331, 3332, 3, 1063, 531, 0, 3332, + 3333, 3, 1083, 541, 0, 3333, 3334, 3, 1069, 534, 0, 3334, 472, 1, 0, 0, + 0, 3335, 3336, 3, 1097, 548, 0, 3336, 3337, 3, 1061, 530, 0, 3337, 3338, + 3, 1103, 551, 0, 3338, 3339, 3, 1069, 534, 0, 3339, 3340, 3, 1065, 532, + 0, 3340, 3341, 3, 1075, 537, 0, 3341, 3342, 3, 1061, 530, 0, 3342, 3343, + 3, 1087, 543, 0, 3343, 3344, 3, 1073, 536, 0, 3344, 3345, 3, 1069, 534, + 0, 3345, 3346, 3, 1097, 548, 0, 3346, 474, 1, 0, 0, 0, 3347, 3348, 3, 1097, + 548, 0, 3348, 3349, 3, 1061, 530, 0, 3349, 3350, 3, 1103, 551, 0, 3350, + 3351, 3, 1069, 534, 0, 3351, 3352, 5, 95, 0, 0, 3352, 3353, 3, 1065, 532, + 0, 3353, 3354, 3, 1075, 537, 0, 3354, 3355, 3, 1061, 530, 0, 3355, 3356, + 3, 1087, 543, 0, 3356, 3357, 3, 1073, 536, 0, 3357, 3358, 3, 1069, 534, + 0, 3358, 3359, 3, 1097, 548, 0, 3359, 476, 1, 0, 0, 0, 3360, 3361, 3, 1065, + 532, 0, 3361, 3362, 3, 1061, 530, 0, 3362, 3363, 3, 1087, 543, 0, 3363, + 3364, 3, 1065, 532, 0, 3364, 3365, 3, 1069, 534, 0, 3365, 3366, 3, 1083, + 541, 0, 3366, 3367, 5, 95, 0, 0, 3367, 3368, 3, 1065, 532, 0, 3368, 3369, + 3, 1075, 537, 0, 3369, 3370, 3, 1061, 530, 0, 3370, 3371, 3, 1087, 543, + 0, 3371, 3372, 3, 1073, 536, 0, 3372, 3373, 3, 1069, 534, 0, 3373, 3374, + 3, 1097, 548, 0, 3374, 478, 1, 0, 0, 0, 3375, 3376, 3, 1065, 532, 0, 3376, + 3377, 3, 1083, 541, 0, 3377, 3378, 3, 1089, 544, 0, 3378, 3379, 3, 1097, + 548, 0, 3379, 3380, 3, 1069, 534, 0, 3380, 3381, 5, 95, 0, 0, 3381, 3382, + 3, 1091, 545, 0, 3382, 3383, 3, 1061, 530, 0, 3383, 3384, 3, 1073, 536, + 0, 3384, 3385, 3, 1069, 534, 0, 3385, 480, 1, 0, 0, 0, 3386, 3387, 3, 1097, + 548, 0, 3387, 3388, 3, 1075, 537, 0, 3388, 3389, 3, 1089, 544, 0, 3389, + 3390, 3, 1105, 552, 0, 3390, 3391, 5, 95, 0, 0, 3391, 3392, 3, 1091, 545, + 0, 3392, 3393, 3, 1061, 530, 0, 3393, 3394, 3, 1073, 536, 0, 3394, 3395, + 3, 1069, 534, 0, 3395, 482, 1, 0, 0, 0, 3396, 3397, 3, 1067, 533, 0, 3397, + 3398, 3, 1069, 534, 0, 3398, 3399, 3, 1083, 541, 0, 3399, 3400, 3, 1069, + 534, 0, 3400, 3401, 3, 1099, 549, 0, 3401, 3402, 3, 1069, 534, 0, 3402, + 3403, 5, 95, 0, 0, 3403, 3404, 3, 1061, 530, 0, 3404, 3405, 3, 1065, 532, + 0, 3405, 3406, 3, 1099, 549, 0, 3406, 3407, 3, 1077, 538, 0, 3407, 3408, + 3, 1089, 544, 0, 3408, 3409, 3, 1087, 543, 0, 3409, 484, 1, 0, 0, 0, 3410, + 3411, 3, 1067, 533, 0, 3411, 3412, 3, 1069, 534, 0, 3412, 3413, 3, 1083, + 541, 0, 3413, 3414, 3, 1069, 534, 0, 3414, 3415, 3, 1099, 549, 0, 3415, + 3416, 3, 1069, 534, 0, 3416, 3417, 5, 95, 0, 0, 3417, 3418, 3, 1089, 544, + 0, 3418, 3419, 3, 1063, 531, 0, 3419, 3420, 3, 1079, 539, 0, 3420, 3421, + 3, 1069, 534, 0, 3421, 3422, 3, 1065, 532, 0, 3422, 3423, 3, 1099, 549, + 0, 3423, 486, 1, 0, 0, 0, 3424, 3425, 3, 1065, 532, 0, 3425, 3426, 3, 1095, + 547, 0, 3426, 3427, 3, 1069, 534, 0, 3427, 3428, 3, 1061, 530, 0, 3428, + 3429, 3, 1099, 549, 0, 3429, 3430, 3, 1069, 534, 0, 3430, 3431, 5, 95, + 0, 0, 3431, 3432, 3, 1089, 544, 0, 3432, 3433, 3, 1063, 531, 0, 3433, 3434, + 3, 1079, 539, 0, 3434, 3435, 3, 1069, 534, 0, 3435, 3436, 3, 1065, 532, + 0, 3436, 3437, 3, 1099, 549, 0, 3437, 488, 1, 0, 0, 0, 3438, 3439, 3, 1065, + 532, 0, 3439, 3440, 3, 1061, 530, 0, 3440, 3441, 3, 1083, 541, 0, 3441, + 3442, 3, 1083, 541, 0, 3442, 3443, 5, 95, 0, 0, 3443, 3444, 3, 1085, 542, + 0, 3444, 3445, 3, 1077, 538, 0, 3445, 3446, 3, 1065, 532, 0, 3446, 3447, + 3, 1095, 547, 0, 3447, 3448, 3, 1089, 544, 0, 3448, 3449, 3, 1071, 535, + 0, 3449, 3450, 3, 1083, 541, 0, 3450, 3451, 3, 1089, 544, 0, 3451, 3452, + 3, 1105, 552, 0, 3452, 490, 1, 0, 0, 0, 3453, 3454, 3, 1065, 532, 0, 3454, + 3455, 3, 1061, 530, 0, 3455, 3456, 3, 1083, 541, 0, 3456, 3457, 3, 1083, + 541, 0, 3457, 3458, 5, 95, 0, 0, 3458, 3459, 3, 1087, 543, 0, 3459, 3460, + 3, 1061, 530, 0, 3460, 3461, 3, 1087, 543, 0, 3461, 3462, 3, 1089, 544, + 0, 3462, 3463, 3, 1071, 535, 0, 3463, 3464, 3, 1083, 541, 0, 3464, 3465, + 3, 1089, 544, 0, 3465, 3466, 3, 1105, 552, 0, 3466, 492, 1, 0, 0, 0, 3467, + 3468, 3, 1089, 544, 0, 3468, 3469, 3, 1091, 545, 0, 3469, 3470, 3, 1069, + 534, 0, 3470, 3471, 3, 1087, 543, 0, 3471, 3472, 5, 95, 0, 0, 3472, 3473, + 3, 1083, 541, 0, 3473, 3474, 3, 1077, 538, 0, 3474, 3475, 3, 1087, 543, + 0, 3475, 3476, 3, 1081, 540, 0, 3476, 494, 1, 0, 0, 0, 3477, 3478, 3, 1097, + 548, 0, 3478, 3479, 3, 1077, 538, 0, 3479, 3480, 3, 1073, 536, 0, 3480, + 3481, 3, 1087, 543, 0, 3481, 3482, 5, 95, 0, 0, 3482, 3483, 3, 1089, 544, + 0, 3483, 3484, 3, 1101, 550, 0, 3484, 3485, 3, 1099, 549, 0, 3485, 496, + 1, 0, 0, 0, 3486, 3487, 3, 1065, 532, 0, 3487, 3488, 3, 1061, 530, 0, 3488, + 3489, 3, 1087, 543, 0, 3489, 3490, 3, 1065, 532, 0, 3490, 3491, 3, 1069, + 534, 0, 3491, 3492, 3, 1083, 541, 0, 3492, 498, 1, 0, 0, 0, 3493, 3494, + 3, 1091, 545, 0, 3494, 3495, 3, 1095, 547, 0, 3495, 3496, 3, 1077, 538, + 0, 3496, 3497, 3, 1085, 542, 0, 3497, 3498, 3, 1061, 530, 0, 3498, 3499, + 3, 1095, 547, 0, 3499, 3500, 3, 1109, 554, 0, 3500, 500, 1, 0, 0, 0, 3501, + 3502, 3, 1097, 548, 0, 3502, 3503, 3, 1101, 550, 0, 3503, 3504, 3, 1065, + 532, 0, 3504, 3505, 3, 1065, 532, 0, 3505, 3506, 3, 1069, 534, 0, 3506, + 3507, 3, 1097, 548, 0, 3507, 3508, 3, 1097, 548, 0, 3508, 502, 1, 0, 0, + 0, 3509, 3510, 3, 1067, 533, 0, 3510, 3511, 3, 1061, 530, 0, 3511, 3512, + 3, 1087, 543, 0, 3512, 3513, 3, 1073, 536, 0, 3513, 3514, 3, 1069, 534, + 0, 3514, 3515, 3, 1095, 547, 0, 3515, 504, 1, 0, 0, 0, 3516, 3517, 3, 1105, + 552, 0, 3517, 3518, 3, 1061, 530, 0, 3518, 3519, 3, 1095, 547, 0, 3519, + 3520, 3, 1087, 543, 0, 3520, 3521, 3, 1077, 538, 0, 3521, 3522, 3, 1087, + 543, 0, 3522, 3523, 3, 1073, 536, 0, 3523, 506, 1, 0, 0, 0, 3524, 3525, + 3, 1077, 538, 0, 3525, 3526, 3, 1087, 543, 0, 3526, 3527, 3, 1071, 535, + 0, 3527, 3528, 3, 1089, 544, 0, 3528, 508, 1, 0, 0, 0, 3529, 3530, 3, 1099, + 549, 0, 3530, 3531, 3, 1069, 534, 0, 3531, 3532, 3, 1085, 542, 0, 3532, + 3533, 3, 1091, 545, 0, 3533, 3534, 3, 1083, 541, 0, 3534, 3535, 3, 1061, + 530, 0, 3535, 3536, 3, 1099, 549, 0, 3536, 3537, 3, 1069, 534, 0, 3537, + 510, 1, 0, 0, 0, 3538, 3539, 3, 1089, 544, 0, 3539, 3540, 3, 1087, 543, + 0, 3540, 3541, 3, 1065, 532, 0, 3541, 3542, 3, 1083, 541, 0, 3542, 3543, + 3, 1077, 538, 0, 3543, 3544, 3, 1065, 532, 0, 3544, 3545, 3, 1081, 540, + 0, 3545, 512, 1, 0, 0, 0, 3546, 3547, 3, 1089, 544, 0, 3547, 3548, 3, 1087, + 543, 0, 3548, 3549, 3, 1065, 532, 0, 3549, 3550, 3, 1075, 537, 0, 3550, + 3551, 3, 1061, 530, 0, 3551, 3552, 3, 1087, 543, 0, 3552, 3553, 3, 1073, + 536, 0, 3553, 3554, 3, 1069, 534, 0, 3554, 514, 1, 0, 0, 0, 3555, 3556, + 3, 1099, 549, 0, 3556, 3557, 3, 1061, 530, 0, 3557, 3558, 3, 1063, 531, + 0, 3558, 3559, 3, 1077, 538, 0, 3559, 3560, 3, 1087, 543, 0, 3560, 3561, + 3, 1067, 533, 0, 3561, 3562, 3, 1069, 534, 0, 3562, 3563, 3, 1107, 553, + 0, 3563, 516, 1, 0, 0, 0, 3564, 3565, 3, 1075, 537, 0, 3565, 3566, 5, 49, + 0, 0, 3566, 518, 1, 0, 0, 0, 3567, 3568, 3, 1075, 537, 0, 3568, 3569, 5, + 50, 0, 0, 3569, 520, 1, 0, 0, 0, 3570, 3571, 3, 1075, 537, 0, 3571, 3572, + 5, 51, 0, 0, 3572, 522, 1, 0, 0, 0, 3573, 3574, 3, 1075, 537, 0, 3574, + 3575, 5, 52, 0, 0, 3575, 524, 1, 0, 0, 0, 3576, 3577, 3, 1075, 537, 0, + 3577, 3578, 5, 53, 0, 0, 3578, 526, 1, 0, 0, 0, 3579, 3580, 3, 1075, 537, + 0, 3580, 3581, 5, 54, 0, 0, 3581, 528, 1, 0, 0, 0, 3582, 3583, 3, 1091, + 545, 0, 3583, 3584, 3, 1061, 530, 0, 3584, 3585, 3, 1095, 547, 0, 3585, + 3586, 3, 1061, 530, 0, 3586, 3587, 3, 1073, 536, 0, 3587, 3588, 3, 1095, + 547, 0, 3588, 3589, 3, 1061, 530, 0, 3589, 3590, 3, 1091, 545, 0, 3590, + 3591, 3, 1075, 537, 0, 3591, 530, 1, 0, 0, 0, 3592, 3593, 3, 1097, 548, + 0, 3593, 3594, 3, 1099, 549, 0, 3594, 3595, 3, 1095, 547, 0, 3595, 3596, + 3, 1077, 538, 0, 3596, 3597, 3, 1087, 543, 0, 3597, 3598, 3, 1073, 536, + 0, 3598, 532, 1, 0, 0, 0, 3599, 3600, 3, 1077, 538, 0, 3600, 3601, 3, 1087, + 543, 0, 3601, 3602, 3, 1099, 549, 0, 3602, 3603, 3, 1069, 534, 0, 3603, + 3604, 3, 1073, 536, 0, 3604, 3605, 3, 1069, 534, 0, 3605, 3606, 3, 1095, + 547, 0, 3606, 534, 1, 0, 0, 0, 3607, 3608, 3, 1083, 541, 0, 3608, 3609, + 3, 1089, 544, 0, 3609, 3610, 3, 1087, 543, 0, 3610, 3611, 3, 1073, 536, + 0, 3611, 536, 1, 0, 0, 0, 3612, 3613, 3, 1067, 533, 0, 3613, 3614, 3, 1069, + 534, 0, 3614, 3615, 3, 1065, 532, 0, 3615, 3616, 3, 1077, 538, 0, 3616, + 3617, 3, 1085, 542, 0, 3617, 3618, 3, 1061, 530, 0, 3618, 3619, 3, 1083, + 541, 0, 3619, 538, 1, 0, 0, 0, 3620, 3621, 3, 1063, 531, 0, 3621, 3622, + 3, 1089, 544, 0, 3622, 3623, 3, 1089, 544, 0, 3623, 3624, 3, 1083, 541, + 0, 3624, 3625, 3, 1069, 534, 0, 3625, 3626, 3, 1061, 530, 0, 3626, 3627, + 3, 1087, 543, 0, 3627, 540, 1, 0, 0, 0, 3628, 3629, 3, 1067, 533, 0, 3629, + 3630, 3, 1061, 530, 0, 3630, 3631, 3, 1099, 549, 0, 3631, 3632, 3, 1069, + 534, 0, 3632, 3633, 3, 1099, 549, 0, 3633, 3634, 3, 1077, 538, 0, 3634, + 3635, 3, 1085, 542, 0, 3635, 3636, 3, 1069, 534, 0, 3636, 542, 1, 0, 0, + 0, 3637, 3638, 3, 1067, 533, 0, 3638, 3639, 3, 1061, 530, 0, 3639, 3640, + 3, 1099, 549, 0, 3640, 3641, 3, 1069, 534, 0, 3641, 544, 1, 0, 0, 0, 3642, + 3643, 3, 1061, 530, 0, 3643, 3644, 3, 1101, 550, 0, 3644, 3645, 3, 1099, + 549, 0, 3645, 3646, 3, 1089, 544, 0, 3646, 3647, 3, 1087, 543, 0, 3647, + 3648, 3, 1101, 550, 0, 3648, 3649, 3, 1085, 542, 0, 3649, 3650, 3, 1063, + 531, 0, 3650, 3651, 3, 1069, 534, 0, 3651, 3652, 3, 1095, 547, 0, 3652, + 546, 1, 0, 0, 0, 3653, 3654, 3, 1063, 531, 0, 3654, 3655, 3, 1077, 538, + 0, 3655, 3656, 3, 1087, 543, 0, 3656, 3657, 3, 1061, 530, 0, 3657, 3658, + 3, 1095, 547, 0, 3658, 3659, 3, 1109, 554, 0, 3659, 548, 1, 0, 0, 0, 3660, + 3661, 3, 1075, 537, 0, 3661, 3662, 3, 1061, 530, 0, 3662, 3663, 3, 1097, + 548, 0, 3663, 3664, 3, 1075, 537, 0, 3664, 3665, 3, 1069, 534, 0, 3665, + 3666, 3, 1067, 533, 0, 3666, 3667, 3, 1097, 548, 0, 3667, 3668, 3, 1099, + 549, 0, 3668, 3669, 3, 1095, 547, 0, 3669, 3670, 3, 1077, 538, 0, 3670, + 3671, 3, 1087, 543, 0, 3671, 3672, 3, 1073, 536, 0, 3672, 550, 1, 0, 0, + 0, 3673, 3674, 3, 1065, 532, 0, 3674, 3675, 3, 1101, 550, 0, 3675, 3676, + 3, 1095, 547, 0, 3676, 3677, 3, 1095, 547, 0, 3677, 3678, 3, 1069, 534, + 0, 3678, 3679, 3, 1087, 543, 0, 3679, 3680, 3, 1065, 532, 0, 3680, 3681, + 3, 1109, 554, 0, 3681, 552, 1, 0, 0, 0, 3682, 3683, 3, 1071, 535, 0, 3683, + 3684, 3, 1083, 541, 0, 3684, 3685, 3, 1089, 544, 0, 3685, 3686, 3, 1061, + 530, 0, 3686, 3687, 3, 1099, 549, 0, 3687, 554, 1, 0, 0, 0, 3688, 3689, + 3, 1097, 548, 0, 3689, 3690, 3, 1099, 549, 0, 3690, 3691, 3, 1095, 547, + 0, 3691, 3692, 3, 1077, 538, 0, 3692, 3693, 3, 1087, 543, 0, 3693, 3694, + 3, 1073, 536, 0, 3694, 3695, 3, 1099, 549, 0, 3695, 3696, 3, 1069, 534, + 0, 3696, 3697, 3, 1085, 542, 0, 3697, 3698, 3, 1091, 545, 0, 3698, 3699, + 3, 1083, 541, 0, 3699, 3700, 3, 1061, 530, 0, 3700, 3701, 3, 1099, 549, + 0, 3701, 3702, 3, 1069, 534, 0, 3702, 556, 1, 0, 0, 0, 3703, 3704, 3, 1069, + 534, 0, 3704, 3705, 3, 1087, 543, 0, 3705, 3706, 3, 1101, 550, 0, 3706, + 3707, 3, 1085, 542, 0, 3707, 558, 1, 0, 0, 0, 3708, 3709, 3, 1065, 532, + 0, 3709, 3710, 3, 1089, 544, 0, 3710, 3711, 3, 1101, 550, 0, 3711, 3712, + 3, 1087, 543, 0, 3712, 3713, 3, 1099, 549, 0, 3713, 560, 1, 0, 0, 0, 3714, + 3715, 3, 1097, 548, 0, 3715, 3716, 3, 1101, 550, 0, 3716, 3717, 3, 1085, + 542, 0, 3717, 562, 1, 0, 0, 0, 3718, 3719, 3, 1061, 530, 0, 3719, 3720, + 3, 1103, 551, 0, 3720, 3721, 3, 1073, 536, 0, 3721, 564, 1, 0, 0, 0, 3722, + 3723, 3, 1085, 542, 0, 3723, 3724, 3, 1077, 538, 0, 3724, 3725, 3, 1087, + 543, 0, 3725, 566, 1, 0, 0, 0, 3726, 3727, 3, 1085, 542, 0, 3727, 3728, + 3, 1061, 530, 0, 3728, 3729, 3, 1107, 553, 0, 3729, 568, 1, 0, 0, 0, 3730, + 3731, 3, 1083, 541, 0, 3731, 3732, 3, 1069, 534, 0, 3732, 3733, 3, 1087, + 543, 0, 3733, 3734, 3, 1073, 536, 0, 3734, 3735, 3, 1099, 549, 0, 3735, + 3736, 3, 1075, 537, 0, 3736, 570, 1, 0, 0, 0, 3737, 3738, 3, 1099, 549, + 0, 3738, 3739, 3, 1095, 547, 0, 3739, 3740, 3, 1077, 538, 0, 3740, 3741, + 3, 1085, 542, 0, 3741, 572, 1, 0, 0, 0, 3742, 3743, 3, 1065, 532, 0, 3743, + 3744, 3, 1089, 544, 0, 3744, 3745, 3, 1061, 530, 0, 3745, 3746, 3, 1083, + 541, 0, 3746, 3747, 3, 1069, 534, 0, 3747, 3748, 3, 1097, 548, 0, 3748, + 3749, 3, 1065, 532, 0, 3749, 3750, 3, 1069, 534, 0, 3750, 574, 1, 0, 0, + 0, 3751, 3752, 3, 1065, 532, 0, 3752, 3753, 3, 1061, 530, 0, 3753, 3754, + 3, 1097, 548, 0, 3754, 3755, 3, 1099, 549, 0, 3755, 576, 1, 0, 0, 0, 3756, + 3757, 3, 1061, 530, 0, 3757, 3758, 3, 1087, 543, 0, 3758, 3759, 3, 1067, + 533, 0, 3759, 578, 1, 0, 0, 0, 3760, 3761, 3, 1089, 544, 0, 3761, 3762, + 3, 1095, 547, 0, 3762, 580, 1, 0, 0, 0, 3763, 3764, 3, 1087, 543, 0, 3764, + 3765, 3, 1089, 544, 0, 3765, 3766, 3, 1099, 549, 0, 3766, 582, 1, 0, 0, + 0, 3767, 3768, 3, 1087, 543, 0, 3768, 3769, 3, 1101, 550, 0, 3769, 3770, + 3, 1083, 541, 0, 3770, 3771, 3, 1083, 541, 0, 3771, 584, 1, 0, 0, 0, 3772, + 3773, 3, 1077, 538, 0, 3773, 3774, 3, 1087, 543, 0, 3774, 586, 1, 0, 0, + 0, 3775, 3776, 3, 1063, 531, 0, 3776, 3777, 3, 1069, 534, 0, 3777, 3778, + 3, 1099, 549, 0, 3778, 3779, 3, 1105, 552, 0, 3779, 3780, 3, 1069, 534, + 0, 3780, 3781, 3, 1069, 534, 0, 3781, 3782, 3, 1087, 543, 0, 3782, 588, + 1, 0, 0, 0, 3783, 3784, 3, 1083, 541, 0, 3784, 3785, 3, 1077, 538, 0, 3785, + 3786, 3, 1081, 540, 0, 3786, 3787, 3, 1069, 534, 0, 3787, 590, 1, 0, 0, + 0, 3788, 3789, 3, 1085, 542, 0, 3789, 3790, 3, 1061, 530, 0, 3790, 3791, + 3, 1099, 549, 0, 3791, 3792, 3, 1065, 532, 0, 3792, 3793, 3, 1075, 537, + 0, 3793, 592, 1, 0, 0, 0, 3794, 3795, 3, 1069, 534, 0, 3795, 3796, 3, 1107, + 553, 0, 3796, 3797, 3, 1077, 538, 0, 3797, 3798, 3, 1097, 548, 0, 3798, + 3799, 3, 1099, 549, 0, 3799, 3800, 3, 1097, 548, 0, 3800, 594, 1, 0, 0, + 0, 3801, 3802, 3, 1101, 550, 0, 3802, 3803, 3, 1087, 543, 0, 3803, 3804, + 3, 1077, 538, 0, 3804, 3805, 3, 1093, 546, 0, 3805, 3806, 3, 1101, 550, + 0, 3806, 3807, 3, 1069, 534, 0, 3807, 596, 1, 0, 0, 0, 3808, 3809, 3, 1067, + 533, 0, 3809, 3810, 3, 1069, 534, 0, 3810, 3811, 3, 1071, 535, 0, 3811, + 3812, 3, 1061, 530, 0, 3812, 3813, 3, 1101, 550, 0, 3813, 3814, 3, 1083, + 541, 0, 3814, 3815, 3, 1099, 549, 0, 3815, 598, 1, 0, 0, 0, 3816, 3817, + 3, 1099, 549, 0, 3817, 3818, 3, 1095, 547, 0, 3818, 3819, 3, 1101, 550, + 0, 3819, 3820, 3, 1069, 534, 0, 3820, 600, 1, 0, 0, 0, 3821, 3822, 3, 1071, + 535, 0, 3822, 3823, 3, 1061, 530, 0, 3823, 3824, 3, 1083, 541, 0, 3824, + 3825, 3, 1097, 548, 0, 3825, 3826, 3, 1069, 534, 0, 3826, 602, 1, 0, 0, + 0, 3827, 3828, 3, 1103, 551, 0, 3828, 3829, 3, 1061, 530, 0, 3829, 3830, + 3, 1083, 541, 0, 3830, 3831, 3, 1077, 538, 0, 3831, 3832, 3, 1067, 533, + 0, 3832, 3833, 3, 1061, 530, 0, 3833, 3834, 3, 1099, 549, 0, 3834, 3835, + 3, 1077, 538, 0, 3835, 3836, 3, 1089, 544, 0, 3836, 3837, 3, 1087, 543, + 0, 3837, 604, 1, 0, 0, 0, 3838, 3839, 3, 1071, 535, 0, 3839, 3840, 3, 1069, + 534, 0, 3840, 3841, 3, 1069, 534, 0, 3841, 3842, 3, 1067, 533, 0, 3842, + 3843, 3, 1063, 531, 0, 3843, 3844, 3, 1061, 530, 0, 3844, 3845, 3, 1065, + 532, 0, 3845, 3846, 3, 1081, 540, 0, 3846, 606, 1, 0, 0, 0, 3847, 3848, + 3, 1095, 547, 0, 3848, 3849, 3, 1101, 550, 0, 3849, 3850, 3, 1083, 541, + 0, 3850, 3851, 3, 1069, 534, 0, 3851, 608, 1, 0, 0, 0, 3852, 3853, 3, 1095, + 547, 0, 3853, 3854, 3, 1069, 534, 0, 3854, 3855, 3, 1093, 546, 0, 3855, + 3856, 3, 1101, 550, 0, 3856, 3857, 3, 1077, 538, 0, 3857, 3858, 3, 1095, + 547, 0, 3858, 3859, 3, 1069, 534, 0, 3859, 3860, 3, 1067, 533, 0, 3860, + 610, 1, 0, 0, 0, 3861, 3862, 3, 1069, 534, 0, 3862, 3863, 3, 1095, 547, + 0, 3863, 3864, 3, 1095, 547, 0, 3864, 3865, 3, 1089, 544, 0, 3865, 3866, + 3, 1095, 547, 0, 3866, 612, 1, 0, 0, 0, 3867, 3868, 3, 1095, 547, 0, 3868, + 3869, 3, 1061, 530, 0, 3869, 3870, 3, 1077, 538, 0, 3870, 3871, 3, 1097, + 548, 0, 3871, 3872, 3, 1069, 534, 0, 3872, 614, 1, 0, 0, 0, 3873, 3874, + 3, 1095, 547, 0, 3874, 3875, 3, 1061, 530, 0, 3875, 3876, 3, 1087, 543, + 0, 3876, 3877, 3, 1073, 536, 0, 3877, 3878, 3, 1069, 534, 0, 3878, 616, + 1, 0, 0, 0, 3879, 3880, 3, 1095, 547, 0, 3880, 3881, 3, 1069, 534, 0, 3881, + 3882, 3, 1073, 536, 0, 3882, 3883, 3, 1069, 534, 0, 3883, 3884, 3, 1107, + 553, 0, 3884, 618, 1, 0, 0, 0, 3885, 3886, 3, 1091, 545, 0, 3886, 3887, + 3, 1061, 530, 0, 3887, 3888, 3, 1099, 549, 0, 3888, 3889, 3, 1099, 549, + 0, 3889, 3890, 3, 1069, 534, 0, 3890, 3891, 3, 1095, 547, 0, 3891, 3892, + 3, 1087, 543, 0, 3892, 620, 1, 0, 0, 0, 3893, 3894, 3, 1069, 534, 0, 3894, + 3895, 3, 1107, 553, 0, 3895, 3896, 3, 1091, 545, 0, 3896, 3897, 3, 1095, + 547, 0, 3897, 3898, 3, 1069, 534, 0, 3898, 3899, 3, 1097, 548, 0, 3899, + 3900, 3, 1097, 548, 0, 3900, 3901, 3, 1077, 538, 0, 3901, 3902, 3, 1089, + 544, 0, 3902, 3903, 3, 1087, 543, 0, 3903, 622, 1, 0, 0, 0, 3904, 3905, + 3, 1107, 553, 0, 3905, 3906, 3, 1091, 545, 0, 3906, 3907, 3, 1061, 530, + 0, 3907, 3908, 3, 1099, 549, 0, 3908, 3909, 3, 1075, 537, 0, 3909, 624, + 1, 0, 0, 0, 3910, 3911, 3, 1065, 532, 0, 3911, 3912, 3, 1089, 544, 0, 3912, + 3913, 3, 1087, 543, 0, 3913, 3914, 3, 1097, 548, 0, 3914, 3915, 3, 1099, + 549, 0, 3915, 3916, 3, 1095, 547, 0, 3916, 3917, 3, 1061, 530, 0, 3917, + 3918, 3, 1077, 538, 0, 3918, 3919, 3, 1087, 543, 0, 3919, 3920, 3, 1099, + 549, 0, 3920, 626, 1, 0, 0, 0, 3921, 3922, 3, 1065, 532, 0, 3922, 3923, + 3, 1061, 530, 0, 3923, 3924, 3, 1083, 541, 0, 3924, 3925, 3, 1065, 532, + 0, 3925, 3926, 3, 1101, 550, 0, 3926, 3927, 3, 1083, 541, 0, 3927, 3928, + 3, 1061, 530, 0, 3928, 3929, 3, 1099, 549, 0, 3929, 3930, 3, 1069, 534, + 0, 3930, 3931, 3, 1067, 533, 0, 3931, 628, 1, 0, 0, 0, 3932, 3933, 3, 1095, + 547, 0, 3933, 3934, 3, 1069, 534, 0, 3934, 3935, 3, 1097, 548, 0, 3935, + 3936, 3, 1099, 549, 0, 3936, 630, 1, 0, 0, 0, 3937, 3938, 3, 1097, 548, + 0, 3938, 3939, 3, 1069, 534, 0, 3939, 3940, 3, 1095, 547, 0, 3940, 3941, + 3, 1103, 551, 0, 3941, 3942, 3, 1077, 538, 0, 3942, 3943, 3, 1065, 532, + 0, 3943, 3944, 3, 1069, 534, 0, 3944, 632, 1, 0, 0, 0, 3945, 3946, 3, 1097, + 548, 0, 3946, 3947, 3, 1069, 534, 0, 3947, 3948, 3, 1095, 547, 0, 3948, + 3949, 3, 1103, 551, 0, 3949, 3950, 3, 1077, 538, 0, 3950, 3951, 3, 1065, + 532, 0, 3951, 3952, 3, 1069, 534, 0, 3952, 3953, 3, 1097, 548, 0, 3953, + 634, 1, 0, 0, 0, 3954, 3955, 3, 1089, 544, 0, 3955, 3956, 3, 1067, 533, + 0, 3956, 3957, 3, 1061, 530, 0, 3957, 3958, 3, 1099, 549, 0, 3958, 3959, + 3, 1061, 530, 0, 3959, 636, 1, 0, 0, 0, 3960, 3961, 3, 1063, 531, 0, 3961, + 3962, 3, 1061, 530, 0, 3962, 3963, 3, 1097, 548, 0, 3963, 3964, 3, 1069, + 534, 0, 3964, 638, 1, 0, 0, 0, 3965, 3966, 3, 1061, 530, 0, 3966, 3967, + 3, 1101, 550, 0, 3967, 3968, 3, 1099, 549, 0, 3968, 3969, 3, 1075, 537, + 0, 3969, 640, 1, 0, 0, 0, 3970, 3971, 3, 1061, 530, 0, 3971, 3972, 3, 1101, + 550, 0, 3972, 3973, 3, 1099, 549, 0, 3973, 3974, 3, 1075, 537, 0, 3974, + 3975, 3, 1069, 534, 0, 3975, 3976, 3, 1087, 543, 0, 3976, 3977, 3, 1099, + 549, 0, 3977, 3978, 3, 1077, 538, 0, 3978, 3979, 3, 1065, 532, 0, 3979, + 3980, 3, 1061, 530, 0, 3980, 3981, 3, 1099, 549, 0, 3981, 3982, 3, 1077, + 538, 0, 3982, 3983, 3, 1089, 544, 0, 3983, 3984, 3, 1087, 543, 0, 3984, + 642, 1, 0, 0, 0, 3985, 3986, 3, 1063, 531, 0, 3986, 3987, 3, 1061, 530, + 0, 3987, 3988, 3, 1097, 548, 0, 3988, 3989, 3, 1077, 538, 0, 3989, 3990, + 3, 1065, 532, 0, 3990, 644, 1, 0, 0, 0, 3991, 3992, 3, 1087, 543, 0, 3992, + 3993, 3, 1089, 544, 0, 3993, 3994, 3, 1099, 549, 0, 3994, 3995, 3, 1075, + 537, 0, 3995, 3996, 3, 1077, 538, 0, 3996, 3997, 3, 1087, 543, 0, 3997, + 3998, 3, 1073, 536, 0, 3998, 646, 1, 0, 0, 0, 3999, 4000, 3, 1089, 544, + 0, 4000, 4001, 3, 1061, 530, 0, 4001, 4002, 3, 1101, 550, 0, 4002, 4003, + 3, 1099, 549, 0, 4003, 4004, 3, 1075, 537, 0, 4004, 648, 1, 0, 0, 0, 4005, + 4006, 3, 1089, 544, 0, 4006, 4007, 3, 1091, 545, 0, 4007, 4008, 3, 1069, + 534, 0, 4008, 4009, 3, 1095, 547, 0, 4009, 4010, 3, 1061, 530, 0, 4010, + 4011, 3, 1099, 549, 0, 4011, 4012, 3, 1077, 538, 0, 4012, 4013, 3, 1089, + 544, 0, 4013, 4014, 3, 1087, 543, 0, 4014, 650, 1, 0, 0, 0, 4015, 4016, + 3, 1085, 542, 0, 4016, 4017, 3, 1069, 534, 0, 4017, 4018, 3, 1099, 549, + 0, 4018, 4019, 3, 1075, 537, 0, 4019, 4020, 3, 1089, 544, 0, 4020, 4021, + 3, 1067, 533, 0, 4021, 652, 1, 0, 0, 0, 4022, 4023, 3, 1091, 545, 0, 4023, + 4024, 3, 1061, 530, 0, 4024, 4025, 3, 1099, 549, 0, 4025, 4026, 3, 1075, + 537, 0, 4026, 654, 1, 0, 0, 0, 4027, 4028, 3, 1099, 549, 0, 4028, 4029, + 3, 1077, 538, 0, 4029, 4030, 3, 1085, 542, 0, 4030, 4031, 3, 1069, 534, + 0, 4031, 4032, 3, 1089, 544, 0, 4032, 4033, 3, 1101, 550, 0, 4033, 4034, + 3, 1099, 549, 0, 4034, 656, 1, 0, 0, 0, 4035, 4036, 3, 1063, 531, 0, 4036, + 4037, 3, 1089, 544, 0, 4037, 4038, 3, 1067, 533, 0, 4038, 4039, 3, 1109, + 554, 0, 4039, 658, 1, 0, 0, 0, 4040, 4041, 3, 1095, 547, 0, 4041, 4042, + 3, 1069, 534, 0, 4042, 4043, 3, 1097, 548, 0, 4043, 4044, 3, 1091, 545, + 0, 4044, 4045, 3, 1089, 544, 0, 4045, 4046, 3, 1087, 543, 0, 4046, 4047, + 3, 1097, 548, 0, 4047, 4048, 3, 1069, 534, 0, 4048, 660, 1, 0, 0, 0, 4049, + 4050, 3, 1095, 547, 0, 4050, 4051, 3, 1069, 534, 0, 4051, 4052, 3, 1093, + 546, 0, 4052, 4053, 3, 1101, 550, 0, 4053, 4054, 3, 1069, 534, 0, 4054, + 4055, 3, 1097, 548, 0, 4055, 4056, 3, 1099, 549, 0, 4056, 662, 1, 0, 0, + 0, 4057, 4058, 3, 1097, 548, 0, 4058, 4059, 3, 1069, 534, 0, 4059, 4060, + 3, 1087, 543, 0, 4060, 4061, 3, 1067, 533, 0, 4061, 664, 1, 0, 0, 0, 4062, + 4063, 3, 1079, 539, 0, 4063, 4064, 3, 1097, 548, 0, 4064, 4065, 3, 1089, + 544, 0, 4065, 4066, 3, 1087, 543, 0, 4066, 666, 1, 0, 0, 0, 4067, 4068, + 3, 1107, 553, 0, 4068, 4069, 3, 1085, 542, 0, 4069, 4070, 3, 1083, 541, + 0, 4070, 668, 1, 0, 0, 0, 4071, 4072, 3, 1097, 548, 0, 4072, 4073, 3, 1099, + 549, 0, 4073, 4074, 3, 1061, 530, 0, 4074, 4075, 3, 1099, 549, 0, 4075, + 4076, 3, 1101, 550, 0, 4076, 4077, 3, 1097, 548, 0, 4077, 670, 1, 0, 0, + 0, 4078, 4079, 3, 1071, 535, 0, 4079, 4080, 3, 1077, 538, 0, 4080, 4081, + 3, 1083, 541, 0, 4081, 4082, 3, 1069, 534, 0, 4082, 672, 1, 0, 0, 0, 4083, + 4084, 3, 1103, 551, 0, 4084, 4085, 3, 1069, 534, 0, 4085, 4086, 3, 1095, + 547, 0, 4086, 4087, 3, 1097, 548, 0, 4087, 4088, 3, 1077, 538, 0, 4088, + 4089, 3, 1089, 544, 0, 4089, 4090, 3, 1087, 543, 0, 4090, 674, 1, 0, 0, + 0, 4091, 4092, 3, 1073, 536, 0, 4092, 4093, 3, 1069, 534, 0, 4093, 4094, + 3, 1099, 549, 0, 4094, 676, 1, 0, 0, 0, 4095, 4096, 3, 1091, 545, 0, 4096, + 4097, 3, 1089, 544, 0, 4097, 4098, 3, 1097, 548, 0, 4098, 4099, 3, 1099, + 549, 0, 4099, 678, 1, 0, 0, 0, 4100, 4101, 3, 1091, 545, 0, 4101, 4102, + 3, 1101, 550, 0, 4102, 4103, 3, 1099, 549, 0, 4103, 680, 1, 0, 0, 0, 4104, + 4105, 3, 1091, 545, 0, 4105, 4106, 3, 1061, 530, 0, 4106, 4107, 3, 1099, + 549, 0, 4107, 4108, 3, 1065, 532, 0, 4108, 4109, 3, 1075, 537, 0, 4109, + 682, 1, 0, 0, 0, 4110, 4111, 3, 1061, 530, 0, 4111, 4112, 3, 1091, 545, + 0, 4112, 4113, 3, 1077, 538, 0, 4113, 684, 1, 0, 0, 0, 4114, 4115, 3, 1065, + 532, 0, 4115, 4116, 3, 1083, 541, 0, 4116, 4117, 3, 1077, 538, 0, 4117, + 4118, 3, 1069, 534, 0, 4118, 4119, 3, 1087, 543, 0, 4119, 4120, 3, 1099, + 549, 0, 4120, 686, 1, 0, 0, 0, 4121, 4122, 3, 1065, 532, 0, 4122, 4123, + 3, 1083, 541, 0, 4123, 4124, 3, 1077, 538, 0, 4124, 4125, 3, 1069, 534, + 0, 4125, 4126, 3, 1087, 543, 0, 4126, 4127, 3, 1099, 549, 0, 4127, 4128, + 3, 1097, 548, 0, 4128, 688, 1, 0, 0, 0, 4129, 4130, 3, 1091, 545, 0, 4130, + 4131, 3, 1101, 550, 0, 4131, 4132, 3, 1063, 531, 0, 4132, 4133, 3, 1083, + 541, 0, 4133, 4134, 3, 1077, 538, 0, 4134, 4135, 3, 1097, 548, 0, 4135, + 4136, 3, 1075, 537, 0, 4136, 690, 1, 0, 0, 0, 4137, 4138, 3, 1091, 545, + 0, 4138, 4139, 3, 1101, 550, 0, 4139, 4140, 3, 1063, 531, 0, 4140, 4141, + 3, 1083, 541, 0, 4141, 4142, 3, 1077, 538, 0, 4142, 4143, 3, 1097, 548, + 0, 4143, 4144, 3, 1075, 537, 0, 4144, 4145, 3, 1069, 534, 0, 4145, 4146, + 3, 1067, 533, 0, 4146, 692, 1, 0, 0, 0, 4147, 4148, 3, 1069, 534, 0, 4148, + 4149, 3, 1107, 553, 0, 4149, 4150, 3, 1091, 545, 0, 4150, 4151, 3, 1089, + 544, 0, 4151, 4152, 3, 1097, 548, 0, 4152, 4153, 3, 1069, 534, 0, 4153, + 694, 1, 0, 0, 0, 4154, 4155, 3, 1065, 532, 0, 4155, 4156, 3, 1089, 544, + 0, 4156, 4157, 3, 1087, 543, 0, 4157, 4158, 3, 1099, 549, 0, 4158, 4159, + 3, 1095, 547, 0, 4159, 4160, 3, 1061, 530, 0, 4160, 4161, 3, 1065, 532, + 0, 4161, 4162, 3, 1099, 549, 0, 4162, 696, 1, 0, 0, 0, 4163, 4164, 3, 1087, + 543, 0, 4164, 4165, 3, 1061, 530, 0, 4165, 4166, 3, 1085, 542, 0, 4166, + 4167, 3, 1069, 534, 0, 4167, 4168, 3, 1097, 548, 0, 4168, 4169, 3, 1091, + 545, 0, 4169, 4170, 3, 1061, 530, 0, 4170, 4171, 3, 1065, 532, 0, 4171, + 4172, 3, 1069, 534, 0, 4172, 698, 1, 0, 0, 0, 4173, 4174, 3, 1097, 548, + 0, 4174, 4175, 3, 1069, 534, 0, 4175, 4176, 3, 1097, 548, 0, 4176, 4177, + 3, 1097, 548, 0, 4177, 4178, 3, 1077, 538, 0, 4178, 4179, 3, 1089, 544, + 0, 4179, 4180, 3, 1087, 543, 0, 4180, 700, 1, 0, 0, 0, 4181, 4182, 3, 1073, + 536, 0, 4182, 4183, 3, 1101, 550, 0, 4183, 4184, 3, 1069, 534, 0, 4184, + 4185, 3, 1097, 548, 0, 4185, 4186, 3, 1099, 549, 0, 4186, 702, 1, 0, 0, + 0, 4187, 4188, 3, 1091, 545, 0, 4188, 4189, 3, 1061, 530, 0, 4189, 4190, + 3, 1073, 536, 0, 4190, 4191, 3, 1077, 538, 0, 4191, 4192, 3, 1087, 543, + 0, 4192, 4193, 3, 1073, 536, 0, 4193, 704, 1, 0, 0, 0, 4194, 4195, 3, 1087, + 543, 0, 4195, 4196, 3, 1089, 544, 0, 4196, 4197, 3, 1099, 549, 0, 4197, + 4198, 5, 95, 0, 0, 4198, 4199, 3, 1097, 548, 0, 4199, 4200, 3, 1101, 550, + 0, 4200, 4201, 3, 1091, 545, 0, 4201, 4202, 3, 1091, 545, 0, 4202, 4203, + 3, 1089, 544, 0, 4203, 4204, 3, 1095, 547, 0, 4204, 4205, 3, 1099, 549, + 0, 4205, 4206, 3, 1069, 534, 0, 4206, 4207, 3, 1067, 533, 0, 4207, 706, + 1, 0, 0, 0, 4208, 4209, 3, 1101, 550, 0, 4209, 4210, 3, 1097, 548, 0, 4210, + 4211, 3, 1069, 534, 0, 4211, 4212, 3, 1095, 547, 0, 4212, 4213, 3, 1087, + 543, 0, 4213, 4214, 3, 1061, 530, 0, 4214, 4215, 3, 1085, 542, 0, 4215, + 4216, 3, 1069, 534, 0, 4216, 708, 1, 0, 0, 0, 4217, 4218, 3, 1091, 545, + 0, 4218, 4219, 3, 1061, 530, 0, 4219, 4220, 3, 1097, 548, 0, 4220, 4221, + 3, 1097, 548, 0, 4221, 4222, 3, 1105, 552, 0, 4222, 4223, 3, 1089, 544, + 0, 4223, 4224, 3, 1095, 547, 0, 4224, 4225, 3, 1067, 533, 0, 4225, 710, + 1, 0, 0, 0, 4226, 4227, 3, 1065, 532, 0, 4227, 4228, 3, 1089, 544, 0, 4228, + 4229, 3, 1087, 543, 0, 4229, 4230, 3, 1087, 543, 0, 4230, 4231, 3, 1069, + 534, 0, 4231, 4232, 3, 1065, 532, 0, 4232, 4233, 3, 1099, 549, 0, 4233, + 4234, 3, 1077, 538, 0, 4234, 4235, 3, 1089, 544, 0, 4235, 4236, 3, 1087, + 543, 0, 4236, 712, 1, 0, 0, 0, 4237, 4238, 3, 1067, 533, 0, 4238, 4239, + 3, 1061, 530, 0, 4239, 4240, 3, 1099, 549, 0, 4240, 4241, 3, 1061, 530, + 0, 4241, 4242, 3, 1063, 531, 0, 4242, 4243, 3, 1061, 530, 0, 4243, 4244, + 3, 1097, 548, 0, 4244, 4245, 3, 1069, 534, 0, 4245, 714, 1, 0, 0, 0, 4246, + 4247, 3, 1093, 546, 0, 4247, 4248, 3, 1101, 550, 0, 4248, 4249, 3, 1069, + 534, 0, 4249, 4250, 3, 1095, 547, 0, 4250, 4251, 3, 1109, 554, 0, 4251, + 716, 1, 0, 0, 0, 4252, 4253, 3, 1085, 542, 0, 4253, 4254, 3, 1061, 530, + 0, 4254, 4255, 3, 1091, 545, 0, 4255, 718, 1, 0, 0, 0, 4256, 4257, 3, 1085, + 542, 0, 4257, 4258, 3, 1061, 530, 0, 4258, 4259, 3, 1091, 545, 0, 4259, + 4260, 3, 1091, 545, 0, 4260, 4261, 3, 1077, 538, 0, 4261, 4262, 3, 1087, + 543, 0, 4262, 4263, 3, 1073, 536, 0, 4263, 720, 1, 0, 0, 0, 4264, 4265, + 3, 1077, 538, 0, 4265, 4266, 3, 1085, 542, 0, 4266, 4267, 3, 1091, 545, + 0, 4267, 4268, 3, 1089, 544, 0, 4268, 4269, 3, 1095, 547, 0, 4269, 4270, + 3, 1099, 549, 0, 4270, 722, 1, 0, 0, 0, 4271, 4272, 3, 1077, 538, 0, 4272, + 4273, 3, 1087, 543, 0, 4273, 4274, 3, 1099, 549, 0, 4274, 4275, 3, 1089, + 544, 0, 4275, 724, 1, 0, 0, 0, 4276, 4277, 3, 1063, 531, 0, 4277, 4278, + 3, 1061, 530, 0, 4278, 4279, 3, 1099, 549, 0, 4279, 4280, 3, 1065, 532, + 0, 4280, 4281, 3, 1075, 537, 0, 4281, 726, 1, 0, 0, 0, 4282, 4283, 3, 1083, + 541, 0, 4283, 4284, 3, 1077, 538, 0, 4284, 4285, 3, 1087, 543, 0, 4285, + 4286, 3, 1081, 540, 0, 4286, 728, 1, 0, 0, 0, 4287, 4288, 3, 1069, 534, + 0, 4288, 4289, 3, 1107, 553, 0, 4289, 4290, 3, 1091, 545, 0, 4290, 4291, + 3, 1089, 544, 0, 4291, 4292, 3, 1095, 547, 0, 4292, 4293, 3, 1099, 549, + 0, 4293, 730, 1, 0, 0, 0, 4294, 4295, 3, 1073, 536, 0, 4295, 4296, 3, 1069, + 534, 0, 4296, 4297, 3, 1087, 543, 0, 4297, 4298, 3, 1069, 534, 0, 4298, + 4299, 3, 1095, 547, 0, 4299, 4300, 3, 1061, 530, 0, 4300, 4301, 3, 1099, + 549, 0, 4301, 4302, 3, 1069, 534, 0, 4302, 732, 1, 0, 0, 0, 4303, 4304, + 3, 1065, 532, 0, 4304, 4305, 3, 1089, 544, 0, 4305, 4306, 3, 1087, 543, + 0, 4306, 4307, 3, 1087, 543, 0, 4307, 4308, 3, 1069, 534, 0, 4308, 4309, + 3, 1065, 532, 0, 4309, 4310, 3, 1099, 549, 0, 4310, 4311, 3, 1089, 544, + 0, 4311, 4312, 3, 1095, 547, 0, 4312, 734, 1, 0, 0, 0, 4313, 4314, 3, 1069, + 534, 0, 4314, 4315, 3, 1107, 553, 0, 4315, 4316, 3, 1069, 534, 0, 4316, + 4317, 3, 1065, 532, 0, 4317, 736, 1, 0, 0, 0, 4318, 4319, 3, 1099, 549, + 0, 4319, 4320, 3, 1061, 530, 0, 4320, 4321, 3, 1063, 531, 0, 4321, 4322, + 3, 1083, 541, 0, 4322, 4323, 3, 1069, 534, 0, 4323, 4324, 3, 1097, 548, + 0, 4324, 738, 1, 0, 0, 0, 4325, 4326, 3, 1103, 551, 0, 4326, 4327, 3, 1077, + 538, 0, 4327, 4328, 3, 1069, 534, 0, 4328, 4329, 3, 1105, 552, 0, 4329, + 4330, 3, 1097, 548, 0, 4330, 740, 1, 0, 0, 0, 4331, 4332, 3, 1069, 534, + 0, 4332, 4333, 3, 1107, 553, 0, 4333, 4334, 3, 1091, 545, 0, 4334, 4335, + 3, 1089, 544, 0, 4335, 4336, 3, 1097, 548, 0, 4336, 4337, 3, 1069, 534, + 0, 4337, 4338, 3, 1067, 533, 0, 4338, 742, 1, 0, 0, 0, 4339, 4340, 3, 1091, + 545, 0, 4340, 4341, 3, 1061, 530, 0, 4341, 4342, 3, 1095, 547, 0, 4342, + 4343, 3, 1061, 530, 0, 4343, 4344, 3, 1085, 542, 0, 4344, 4345, 3, 1069, + 534, 0, 4345, 4346, 3, 1099, 549, 0, 4346, 4347, 3, 1069, 534, 0, 4347, + 4348, 3, 1095, 547, 0, 4348, 744, 1, 0, 0, 0, 4349, 4350, 3, 1091, 545, + 0, 4350, 4351, 3, 1061, 530, 0, 4351, 4352, 3, 1095, 547, 0, 4352, 4353, + 3, 1061, 530, 0, 4353, 4354, 3, 1085, 542, 0, 4354, 4355, 3, 1069, 534, + 0, 4355, 4356, 3, 1099, 549, 0, 4356, 4357, 3, 1069, 534, 0, 4357, 4358, + 3, 1095, 547, 0, 4358, 4359, 3, 1097, 548, 0, 4359, 746, 1, 0, 0, 0, 4360, + 4361, 3, 1075, 537, 0, 4361, 4362, 3, 1069, 534, 0, 4362, 4363, 3, 1061, + 530, 0, 4363, 4364, 3, 1067, 533, 0, 4364, 4365, 3, 1069, 534, 0, 4365, + 4366, 3, 1095, 547, 0, 4366, 4367, 3, 1097, 548, 0, 4367, 748, 1, 0, 0, + 0, 4368, 4369, 3, 1087, 543, 0, 4369, 4370, 3, 1061, 530, 0, 4370, 4371, + 3, 1103, 551, 0, 4371, 4372, 3, 1077, 538, 0, 4372, 4373, 3, 1073, 536, + 0, 4373, 4374, 3, 1061, 530, 0, 4374, 4375, 3, 1099, 549, 0, 4375, 4376, + 3, 1077, 538, 0, 4376, 4377, 3, 1089, 544, 0, 4377, 4378, 3, 1087, 543, + 0, 4378, 750, 1, 0, 0, 0, 4379, 4380, 3, 1085, 542, 0, 4380, 4381, 3, 1069, + 534, 0, 4381, 4382, 3, 1087, 543, 0, 4382, 4383, 3, 1101, 550, 0, 4383, + 752, 1, 0, 0, 0, 4384, 4385, 3, 1075, 537, 0, 4385, 4386, 3, 1089, 544, + 0, 4386, 4387, 3, 1085, 542, 0, 4387, 4388, 3, 1069, 534, 0, 4388, 4389, + 3, 1097, 548, 0, 4389, 754, 1, 0, 0, 0, 4390, 4391, 3, 1075, 537, 0, 4391, + 4392, 3, 1089, 544, 0, 4392, 4393, 3, 1085, 542, 0, 4393, 4394, 3, 1069, + 534, 0, 4394, 756, 1, 0, 0, 0, 4395, 4396, 3, 1083, 541, 0, 4396, 4397, + 3, 1089, 544, 0, 4397, 4398, 3, 1073, 536, 0, 4398, 4399, 3, 1077, 538, + 0, 4399, 4400, 3, 1087, 543, 0, 4400, 758, 1, 0, 0, 0, 4401, 4402, 3, 1071, + 535, 0, 4402, 4403, 3, 1089, 544, 0, 4403, 4404, 3, 1101, 550, 0, 4404, + 4405, 3, 1087, 543, 0, 4405, 4406, 3, 1067, 533, 0, 4406, 760, 1, 0, 0, + 0, 4407, 4408, 3, 1085, 542, 0, 4408, 4409, 3, 1089, 544, 0, 4409, 4410, + 3, 1067, 533, 0, 4410, 4411, 3, 1101, 550, 0, 4411, 4412, 3, 1083, 541, + 0, 4412, 4413, 3, 1069, 534, 0, 4413, 4414, 3, 1097, 548, 0, 4414, 762, + 1, 0, 0, 0, 4415, 4416, 3, 1069, 534, 0, 4416, 4417, 3, 1087, 543, 0, 4417, + 4418, 3, 1099, 549, 0, 4418, 4419, 3, 1077, 538, 0, 4419, 4420, 3, 1099, + 549, 0, 4420, 4421, 3, 1077, 538, 0, 4421, 4422, 3, 1069, 534, 0, 4422, + 4423, 3, 1097, 548, 0, 4423, 764, 1, 0, 0, 0, 4424, 4425, 3, 1061, 530, + 0, 4425, 4426, 3, 1097, 548, 0, 4426, 4427, 3, 1097, 548, 0, 4427, 4428, + 3, 1089, 544, 0, 4428, 4429, 3, 1065, 532, 0, 4429, 4430, 3, 1077, 538, + 0, 4430, 4431, 3, 1061, 530, 0, 4431, 4432, 3, 1099, 549, 0, 4432, 4433, + 3, 1077, 538, 0, 4433, 4434, 3, 1089, 544, 0, 4434, 4435, 3, 1087, 543, + 0, 4435, 4436, 3, 1097, 548, 0, 4436, 766, 1, 0, 0, 0, 4437, 4438, 3, 1085, + 542, 0, 4438, 4439, 3, 1077, 538, 0, 4439, 4440, 3, 1065, 532, 0, 4440, + 4441, 3, 1095, 547, 0, 4441, 4442, 3, 1089, 544, 0, 4442, 4443, 3, 1071, + 535, 0, 4443, 4444, 3, 1083, 541, 0, 4444, 4445, 3, 1089, 544, 0, 4445, + 4446, 3, 1105, 552, 0, 4446, 4447, 3, 1097, 548, 0, 4447, 768, 1, 0, 0, + 0, 4448, 4449, 3, 1087, 543, 0, 4449, 4450, 3, 1061, 530, 0, 4450, 4451, + 3, 1087, 543, 0, 4451, 4452, 3, 1089, 544, 0, 4452, 4453, 3, 1071, 535, + 0, 4453, 4454, 3, 1083, 541, 0, 4454, 4455, 3, 1089, 544, 0, 4455, 4456, + 3, 1105, 552, 0, 4456, 4457, 3, 1097, 548, 0, 4457, 770, 1, 0, 0, 0, 4458, + 4459, 3, 1105, 552, 0, 4459, 4460, 3, 1089, 544, 0, 4460, 4461, 3, 1095, + 547, 0, 4461, 4462, 3, 1081, 540, 0, 4462, 4463, 3, 1071, 535, 0, 4463, + 4464, 3, 1083, 541, 0, 4464, 4465, 3, 1089, 544, 0, 4465, 4466, 3, 1105, + 552, 0, 4466, 4467, 3, 1097, 548, 0, 4467, 772, 1, 0, 0, 0, 4468, 4469, + 3, 1069, 534, 0, 4469, 4470, 3, 1087, 543, 0, 4470, 4471, 3, 1101, 550, + 0, 4471, 4472, 3, 1085, 542, 0, 4472, 4473, 3, 1069, 534, 0, 4473, 4474, + 3, 1095, 547, 0, 4474, 4475, 3, 1061, 530, 0, 4475, 4476, 3, 1099, 549, + 0, 4476, 4477, 3, 1077, 538, 0, 4477, 4478, 3, 1089, 544, 0, 4478, 4479, + 3, 1087, 543, 0, 4479, 4480, 3, 1097, 548, 0, 4480, 774, 1, 0, 0, 0, 4481, + 4482, 3, 1065, 532, 0, 4482, 4483, 3, 1089, 544, 0, 4483, 4484, 3, 1087, + 543, 0, 4484, 4485, 3, 1097, 548, 0, 4485, 4486, 3, 1099, 549, 0, 4486, + 4487, 3, 1061, 530, 0, 4487, 4488, 3, 1087, 543, 0, 4488, 4489, 3, 1099, + 549, 0, 4489, 4490, 3, 1097, 548, 0, 4490, 776, 1, 0, 0, 0, 4491, 4492, + 3, 1065, 532, 0, 4492, 4493, 3, 1089, 544, 0, 4493, 4494, 3, 1087, 543, + 0, 4494, 4495, 3, 1087, 543, 0, 4495, 4496, 3, 1069, 534, 0, 4496, 4497, + 3, 1065, 532, 0, 4497, 4498, 3, 1099, 549, 0, 4498, 4499, 3, 1077, 538, + 0, 4499, 4500, 3, 1089, 544, 0, 4500, 4501, 3, 1087, 543, 0, 4501, 4502, + 3, 1097, 548, 0, 4502, 778, 1, 0, 0, 0, 4503, 4504, 3, 1067, 533, 0, 4504, + 4505, 3, 1069, 534, 0, 4505, 4506, 3, 1071, 535, 0, 4506, 4507, 3, 1077, + 538, 0, 4507, 4508, 3, 1087, 543, 0, 4508, 4509, 3, 1069, 534, 0, 4509, + 780, 1, 0, 0, 0, 4510, 4511, 3, 1071, 535, 0, 4511, 4512, 3, 1095, 547, + 0, 4512, 4513, 3, 1061, 530, 0, 4513, 4514, 3, 1073, 536, 0, 4514, 4515, + 3, 1085, 542, 0, 4515, 4516, 3, 1069, 534, 0, 4516, 4517, 3, 1087, 543, + 0, 4517, 4518, 3, 1099, 549, 0, 4518, 782, 1, 0, 0, 0, 4519, 4520, 3, 1071, + 535, 0, 4520, 4521, 3, 1095, 547, 0, 4521, 4522, 3, 1061, 530, 0, 4522, + 4523, 3, 1073, 536, 0, 4523, 4524, 3, 1085, 542, 0, 4524, 4525, 3, 1069, + 534, 0, 4525, 4526, 3, 1087, 543, 0, 4526, 4527, 3, 1099, 549, 0, 4527, + 4528, 3, 1097, 548, 0, 4528, 784, 1, 0, 0, 0, 4529, 4530, 3, 1083, 541, + 0, 4530, 4531, 3, 1061, 530, 0, 4531, 4532, 3, 1087, 543, 0, 4532, 4533, + 3, 1073, 536, 0, 4533, 4534, 3, 1101, 550, 0, 4534, 4535, 3, 1061, 530, + 0, 4535, 4536, 3, 1073, 536, 0, 4536, 4537, 3, 1069, 534, 0, 4537, 4538, + 3, 1097, 548, 0, 4538, 786, 1, 0, 0, 0, 4539, 4540, 3, 1077, 538, 0, 4540, + 4541, 3, 1087, 543, 0, 4541, 4542, 3, 1097, 548, 0, 4542, 4543, 3, 1069, + 534, 0, 4543, 4544, 3, 1095, 547, 0, 4544, 4545, 3, 1099, 549, 0, 4545, + 788, 1, 0, 0, 0, 4546, 4547, 3, 1063, 531, 0, 4547, 4548, 3, 1069, 534, + 0, 4548, 4549, 3, 1071, 535, 0, 4549, 4550, 3, 1089, 544, 0, 4550, 4551, + 3, 1095, 547, 0, 4551, 4552, 3, 1069, 534, 0, 4552, 790, 1, 0, 0, 0, 4553, + 4554, 3, 1061, 530, 0, 4554, 4555, 3, 1071, 535, 0, 4555, 4556, 3, 1099, + 549, 0, 4556, 4557, 3, 1069, 534, 0, 4557, 4558, 3, 1095, 547, 0, 4558, + 792, 1, 0, 0, 0, 4559, 4560, 3, 1101, 550, 0, 4560, 4561, 3, 1091, 545, + 0, 4561, 4562, 3, 1067, 533, 0, 4562, 4563, 3, 1061, 530, 0, 4563, 4564, + 3, 1099, 549, 0, 4564, 4565, 3, 1069, 534, 0, 4565, 794, 1, 0, 0, 0, 4566, + 4567, 3, 1095, 547, 0, 4567, 4568, 3, 1069, 534, 0, 4568, 4569, 3, 1071, + 535, 0, 4569, 4570, 3, 1095, 547, 0, 4570, 4571, 3, 1069, 534, 0, 4571, + 4572, 3, 1097, 548, 0, 4572, 4573, 3, 1075, 537, 0, 4573, 796, 1, 0, 0, + 0, 4574, 4575, 3, 1065, 532, 0, 4575, 4576, 3, 1075, 537, 0, 4576, 4577, + 3, 1069, 534, 0, 4577, 4578, 3, 1065, 532, 0, 4578, 4579, 3, 1081, 540, + 0, 4579, 798, 1, 0, 0, 0, 4580, 4581, 3, 1063, 531, 0, 4581, 4582, 3, 1101, + 550, 0, 4582, 4583, 3, 1077, 538, 0, 4583, 4584, 3, 1083, 541, 0, 4584, + 4585, 3, 1067, 533, 0, 4585, 800, 1, 0, 0, 0, 4586, 4587, 3, 1069, 534, + 0, 4587, 4588, 3, 1107, 553, 0, 4588, 4589, 3, 1069, 534, 0, 4589, 4590, + 3, 1065, 532, 0, 4590, 4591, 3, 1101, 550, 0, 4591, 4592, 3, 1099, 549, + 0, 4592, 4593, 3, 1069, 534, 0, 4593, 802, 1, 0, 0, 0, 4594, 4595, 3, 1097, + 548, 0, 4595, 4596, 3, 1065, 532, 0, 4596, 4597, 3, 1095, 547, 0, 4597, + 4598, 3, 1077, 538, 0, 4598, 4599, 3, 1091, 545, 0, 4599, 4600, 3, 1099, + 549, 0, 4600, 804, 1, 0, 0, 0, 4601, 4602, 3, 1083, 541, 0, 4602, 4603, + 3, 1077, 538, 0, 4603, 4604, 3, 1087, 543, 0, 4604, 4605, 3, 1099, 549, + 0, 4605, 806, 1, 0, 0, 0, 4606, 4607, 3, 1095, 547, 0, 4607, 4608, 3, 1101, + 550, 0, 4608, 4609, 3, 1083, 541, 0, 4609, 4610, 3, 1069, 534, 0, 4610, + 4611, 3, 1097, 548, 0, 4611, 808, 1, 0, 0, 0, 4612, 4613, 3, 1099, 549, + 0, 4613, 4614, 3, 1069, 534, 0, 4614, 4615, 3, 1107, 553, 0, 4615, 4616, + 3, 1099, 549, 0, 4616, 810, 1, 0, 0, 0, 4617, 4618, 3, 1097, 548, 0, 4618, + 4619, 3, 1061, 530, 0, 4619, 4620, 3, 1095, 547, 0, 4620, 4621, 3, 1077, + 538, 0, 4621, 4622, 3, 1071, 535, 0, 4622, 812, 1, 0, 0, 0, 4623, 4624, + 3, 1085, 542, 0, 4624, 4625, 3, 1069, 534, 0, 4625, 4626, 3, 1097, 548, + 0, 4626, 4627, 3, 1097, 548, 0, 4627, 4628, 3, 1061, 530, 0, 4628, 4629, + 3, 1073, 536, 0, 4629, 4630, 3, 1069, 534, 0, 4630, 814, 1, 0, 0, 0, 4631, + 4632, 3, 1085, 542, 0, 4632, 4633, 3, 1069, 534, 0, 4633, 4634, 3, 1097, + 548, 0, 4634, 4635, 3, 1097, 548, 0, 4635, 4636, 3, 1061, 530, 0, 4636, + 4637, 3, 1073, 536, 0, 4637, 4638, 3, 1069, 534, 0, 4638, 4639, 3, 1097, + 548, 0, 4639, 816, 1, 0, 0, 0, 4640, 4641, 3, 1065, 532, 0, 4641, 4642, + 3, 1075, 537, 0, 4642, 4643, 3, 1061, 530, 0, 4643, 4644, 3, 1087, 543, + 0, 4644, 4645, 3, 1087, 543, 0, 4645, 4646, 3, 1069, 534, 0, 4646, 4647, + 3, 1083, 541, 0, 4647, 4648, 3, 1097, 548, 0, 4648, 818, 1, 0, 0, 0, 4649, + 4650, 3, 1065, 532, 0, 4650, 4651, 3, 1089, 544, 0, 4651, 4652, 3, 1085, + 542, 0, 4652, 4653, 3, 1085, 542, 0, 4653, 4654, 3, 1069, 534, 0, 4654, + 4655, 3, 1087, 543, 0, 4655, 4656, 3, 1099, 549, 0, 4656, 820, 1, 0, 0, + 0, 4657, 4658, 3, 1065, 532, 0, 4658, 4659, 3, 1101, 550, 0, 4659, 4660, + 3, 1097, 548, 0, 4660, 4661, 3, 1099, 549, 0, 4661, 4662, 3, 1089, 544, + 0, 4662, 4664, 3, 1085, 542, 0, 4663, 4665, 3, 1, 0, 0, 4664, 4663, 1, + 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4667, 1, + 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4669, 3, 1087, 543, 0, 4669, 4670, + 3, 1061, 530, 0, 4670, 4671, 3, 1085, 542, 0, 4671, 4673, 3, 1069, 534, + 0, 4672, 4674, 3, 1, 0, 0, 4673, 4672, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, + 0, 4675, 4673, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 4677, 1, 0, 0, + 0, 4677, 4678, 3, 1085, 542, 0, 4678, 4679, 3, 1061, 530, 0, 4679, 4680, + 3, 1091, 545, 0, 4680, 822, 1, 0, 0, 0, 4681, 4682, 3, 1065, 532, 0, 4682, + 4683, 3, 1061, 530, 0, 4683, 4684, 3, 1099, 549, 0, 4684, 4685, 3, 1061, + 530, 0, 4685, 4686, 3, 1083, 541, 0, 4686, 4687, 3, 1089, 544, 0, 4687, + 4688, 3, 1073, 536, 0, 4688, 824, 1, 0, 0, 0, 4689, 4690, 3, 1071, 535, + 0, 4690, 4691, 3, 1089, 544, 0, 4691, 4692, 3, 1095, 547, 0, 4692, 4693, + 3, 1065, 532, 0, 4693, 4694, 3, 1069, 534, 0, 4694, 826, 1, 0, 0, 0, 4695, + 4696, 3, 1063, 531, 0, 4696, 4697, 3, 1061, 530, 0, 4697, 4698, 3, 1065, + 532, 0, 4698, 4699, 3, 1081, 540, 0, 4699, 4700, 3, 1073, 536, 0, 4700, + 4701, 3, 1095, 547, 0, 4701, 4702, 3, 1089, 544, 0, 4702, 4703, 3, 1101, + 550, 0, 4703, 4704, 3, 1087, 543, 0, 4704, 4705, 3, 1067, 533, 0, 4705, + 828, 1, 0, 0, 0, 4706, 4707, 3, 1065, 532, 0, 4707, 4708, 3, 1061, 530, + 0, 4708, 4709, 3, 1083, 541, 0, 4709, 4710, 3, 1083, 541, 0, 4710, 4711, + 3, 1069, 534, 0, 4711, 4712, 3, 1095, 547, 0, 4712, 4713, 3, 1097, 548, + 0, 4713, 830, 1, 0, 0, 0, 4714, 4715, 3, 1065, 532, 0, 4715, 4716, 3, 1061, + 530, 0, 4716, 4717, 3, 1083, 541, 0, 4717, 4718, 3, 1083, 541, 0, 4718, + 4719, 3, 1069, 534, 0, 4719, 4720, 3, 1069, 534, 0, 4720, 4721, 3, 1097, + 548, 0, 4721, 832, 1, 0, 0, 0, 4722, 4723, 3, 1095, 547, 0, 4723, 4724, + 3, 1069, 534, 0, 4724, 4725, 3, 1071, 535, 0, 4725, 4726, 3, 1069, 534, + 0, 4726, 4727, 3, 1095, 547, 0, 4727, 4728, 3, 1069, 534, 0, 4728, 4729, + 3, 1087, 543, 0, 4729, 4730, 3, 1065, 532, 0, 4730, 4731, 3, 1069, 534, + 0, 4731, 4732, 3, 1097, 548, 0, 4732, 834, 1, 0, 0, 0, 4733, 4734, 3, 1099, + 549, 0, 4734, 4735, 3, 1095, 547, 0, 4735, 4736, 3, 1061, 530, 0, 4736, + 4737, 3, 1087, 543, 0, 4737, 4738, 3, 1097, 548, 0, 4738, 4739, 3, 1077, + 538, 0, 4739, 4740, 3, 1099, 549, 0, 4740, 4741, 3, 1077, 538, 0, 4741, + 4742, 3, 1103, 551, 0, 4742, 4743, 3, 1069, 534, 0, 4743, 836, 1, 0, 0, + 0, 4744, 4745, 3, 1077, 538, 0, 4745, 4746, 3, 1085, 542, 0, 4746, 4747, + 3, 1091, 545, 0, 4747, 4748, 3, 1061, 530, 0, 4748, 4749, 3, 1065, 532, + 0, 4749, 4750, 3, 1099, 549, 0, 4750, 838, 1, 0, 0, 0, 4751, 4752, 3, 1067, + 533, 0, 4752, 4753, 3, 1069, 534, 0, 4753, 4754, 3, 1091, 545, 0, 4754, + 4755, 3, 1099, 549, 0, 4755, 4756, 3, 1075, 537, 0, 4756, 840, 1, 0, 0, + 0, 4757, 4758, 3, 1097, 548, 0, 4758, 4759, 3, 1099, 549, 0, 4759, 4760, + 3, 1095, 547, 0, 4760, 4761, 3, 1101, 550, 0, 4761, 4762, 3, 1065, 532, + 0, 4762, 4763, 3, 1099, 549, 0, 4763, 4764, 3, 1101, 550, 0, 4764, 4765, + 3, 1095, 547, 0, 4765, 4766, 3, 1069, 534, 0, 4766, 842, 1, 0, 0, 0, 4767, + 4768, 3, 1097, 548, 0, 4768, 4769, 3, 1099, 549, 0, 4769, 4770, 3, 1095, + 547, 0, 4770, 4771, 3, 1101, 550, 0, 4771, 4772, 3, 1065, 532, 0, 4772, + 4773, 3, 1099, 549, 0, 4773, 4774, 3, 1101, 550, 0, 4774, 4775, 3, 1095, + 547, 0, 4775, 4776, 3, 1069, 534, 0, 4776, 4777, 3, 1097, 548, 0, 4777, + 844, 1, 0, 0, 0, 4778, 4779, 3, 1099, 549, 0, 4779, 4780, 3, 1109, 554, + 0, 4780, 4781, 3, 1091, 545, 0, 4781, 4782, 3, 1069, 534, 0, 4782, 846, + 1, 0, 0, 0, 4783, 4784, 3, 1103, 551, 0, 4784, 4785, 3, 1061, 530, 0, 4785, + 4786, 3, 1083, 541, 0, 4786, 4787, 3, 1101, 550, 0, 4787, 4788, 3, 1069, + 534, 0, 4788, 848, 1, 0, 0, 0, 4789, 4790, 3, 1103, 551, 0, 4790, 4791, + 3, 1061, 530, 0, 4791, 4792, 3, 1083, 541, 0, 4792, 4793, 3, 1101, 550, + 0, 4793, 4794, 3, 1069, 534, 0, 4794, 4795, 3, 1097, 548, 0, 4795, 850, + 1, 0, 0, 0, 4796, 4797, 3, 1097, 548, 0, 4797, 4798, 3, 1077, 538, 0, 4798, + 4799, 3, 1087, 543, 0, 4799, 4800, 3, 1073, 536, 0, 4800, 4801, 3, 1083, + 541, 0, 4801, 4802, 3, 1069, 534, 0, 4802, 852, 1, 0, 0, 0, 4803, 4804, + 3, 1085, 542, 0, 4804, 4805, 3, 1101, 550, 0, 4805, 4806, 3, 1083, 541, + 0, 4806, 4807, 3, 1099, 549, 0, 4807, 4808, 3, 1077, 538, 0, 4808, 4809, + 3, 1091, 545, 0, 4809, 4810, 3, 1083, 541, 0, 4810, 4811, 3, 1069, 534, + 0, 4811, 854, 1, 0, 0, 0, 4812, 4813, 3, 1087, 543, 0, 4813, 4814, 3, 1089, + 544, 0, 4814, 4815, 3, 1087, 543, 0, 4815, 4816, 3, 1069, 534, 0, 4816, + 856, 1, 0, 0, 0, 4817, 4818, 3, 1063, 531, 0, 4818, 4819, 3, 1089, 544, + 0, 4819, 4820, 3, 1099, 549, 0, 4820, 4821, 3, 1075, 537, 0, 4821, 858, + 1, 0, 0, 0, 4822, 4823, 3, 1099, 549, 0, 4823, 4824, 3, 1089, 544, 0, 4824, + 860, 1, 0, 0, 0, 4825, 4826, 3, 1089, 544, 0, 4826, 4827, 3, 1071, 535, + 0, 4827, 862, 1, 0, 0, 0, 4828, 4829, 3, 1089, 544, 0, 4829, 4830, 3, 1103, + 551, 0, 4830, 4831, 3, 1069, 534, 0, 4831, 4832, 3, 1095, 547, 0, 4832, + 864, 1, 0, 0, 0, 4833, 4834, 3, 1071, 535, 0, 4834, 4835, 3, 1089, 544, + 0, 4835, 4836, 3, 1095, 547, 0, 4836, 866, 1, 0, 0, 0, 4837, 4838, 3, 1095, + 547, 0, 4838, 4839, 3, 1069, 534, 0, 4839, 4840, 3, 1091, 545, 0, 4840, + 4841, 3, 1083, 541, 0, 4841, 4842, 3, 1061, 530, 0, 4842, 4843, 3, 1065, + 532, 0, 4843, 4844, 3, 1069, 534, 0, 4844, 868, 1, 0, 0, 0, 4845, 4846, + 3, 1085, 542, 0, 4846, 4847, 3, 1069, 534, 0, 4847, 4848, 3, 1085, 542, + 0, 4848, 4849, 3, 1063, 531, 0, 4849, 4850, 3, 1069, 534, 0, 4850, 4851, + 3, 1095, 547, 0, 4851, 4852, 3, 1097, 548, 0, 4852, 870, 1, 0, 0, 0, 4853, + 4854, 3, 1061, 530, 0, 4854, 4855, 3, 1099, 549, 0, 4855, 4856, 3, 1099, + 549, 0, 4856, 4857, 3, 1095, 547, 0, 4857, 4858, 3, 1077, 538, 0, 4858, + 4859, 3, 1063, 531, 0, 4859, 4860, 3, 1101, 550, 0, 4860, 4861, 3, 1099, + 549, 0, 4861, 4862, 3, 1069, 534, 0, 4862, 4863, 3, 1087, 543, 0, 4863, + 4864, 3, 1061, 530, 0, 4864, 4865, 3, 1085, 542, 0, 4865, 4866, 3, 1069, + 534, 0, 4866, 872, 1, 0, 0, 0, 4867, 4868, 3, 1071, 535, 0, 4868, 4869, + 3, 1089, 544, 0, 4869, 4870, 3, 1095, 547, 0, 4870, 4871, 3, 1085, 542, + 0, 4871, 4872, 3, 1061, 530, 0, 4872, 4873, 3, 1099, 549, 0, 4873, 874, + 1, 0, 0, 0, 4874, 4875, 3, 1097, 548, 0, 4875, 4876, 3, 1093, 546, 0, 4876, + 4877, 3, 1083, 541, 0, 4877, 876, 1, 0, 0, 0, 4878, 4879, 3, 1105, 552, + 0, 4879, 4880, 3, 1077, 538, 0, 4880, 4881, 3, 1099, 549, 0, 4881, 4882, + 3, 1075, 537, 0, 4882, 4883, 3, 1089, 544, 0, 4883, 4884, 3, 1101, 550, + 0, 4884, 4885, 3, 1099, 549, 0, 4885, 878, 1, 0, 0, 0, 4886, 4887, 3, 1067, + 533, 0, 4887, 4888, 3, 1095, 547, 0, 4888, 4889, 3, 1109, 554, 0, 4889, + 880, 1, 0, 0, 0, 4890, 4891, 3, 1095, 547, 0, 4891, 4892, 3, 1101, 550, + 0, 4892, 4893, 3, 1087, 543, 0, 4893, 882, 1, 0, 0, 0, 4894, 4895, 3, 1105, + 552, 0, 4895, 4896, 3, 1077, 538, 0, 4896, 4897, 3, 1067, 533, 0, 4897, + 4898, 3, 1073, 536, 0, 4898, 4899, 3, 1069, 534, 0, 4899, 4900, 3, 1099, + 549, 0, 4900, 4901, 3, 1099, 549, 0, 4901, 4902, 3, 1109, 554, 0, 4902, + 4903, 3, 1091, 545, 0, 4903, 4904, 3, 1069, 534, 0, 4904, 884, 1, 0, 0, + 0, 4905, 4906, 3, 1103, 551, 0, 4906, 4907, 5, 51, 0, 0, 4907, 886, 1, + 0, 0, 0, 4908, 4909, 3, 1063, 531, 0, 4909, 4910, 3, 1101, 550, 0, 4910, + 4911, 3, 1097, 548, 0, 4911, 4912, 3, 1077, 538, 0, 4912, 4913, 3, 1087, + 543, 0, 4913, 4914, 3, 1069, 534, 0, 4914, 4915, 3, 1097, 548, 0, 4915, + 4916, 3, 1097, 548, 0, 4916, 888, 1, 0, 0, 0, 4917, 4918, 3, 1069, 534, + 0, 4918, 4919, 3, 1103, 551, 0, 4919, 4920, 3, 1069, 534, 0, 4920, 4921, + 3, 1087, 543, 0, 4921, 4922, 3, 1099, 549, 0, 4922, 890, 1, 0, 0, 0, 4923, + 4924, 3, 1097, 548, 0, 4924, 4925, 3, 1101, 550, 0, 4925, 4926, 3, 1063, + 531, 0, 4926, 4927, 3, 1097, 548, 0, 4927, 4928, 3, 1065, 532, 0, 4928, + 4929, 3, 1095, 547, 0, 4929, 4930, 3, 1077, 538, 0, 4930, 4931, 3, 1063, + 531, 0, 4931, 4932, 3, 1069, 534, 0, 4932, 892, 1, 0, 0, 0, 4933, 4934, + 3, 1097, 548, 0, 4934, 4935, 3, 1069, 534, 0, 4935, 4936, 3, 1099, 549, + 0, 4936, 4937, 3, 1099, 549, 0, 4937, 4938, 3, 1077, 538, 0, 4938, 4939, + 3, 1087, 543, 0, 4939, 4940, 3, 1073, 536, 0, 4940, 4941, 3, 1097, 548, + 0, 4941, 894, 1, 0, 0, 0, 4942, 4943, 3, 1065, 532, 0, 4943, 4944, 3, 1089, + 544, 0, 4944, 4945, 3, 1087, 543, 0, 4945, 4946, 3, 1071, 535, 0, 4946, + 4947, 3, 1077, 538, 0, 4947, 4948, 3, 1073, 536, 0, 4948, 4949, 3, 1101, + 550, 0, 4949, 4950, 3, 1095, 547, 0, 4950, 4951, 3, 1061, 530, 0, 4951, + 4952, 3, 1099, 549, 0, 4952, 4953, 3, 1077, 538, 0, 4953, 4954, 3, 1089, + 544, 0, 4954, 4955, 3, 1087, 543, 0, 4955, 896, 1, 0, 0, 0, 4956, 4957, + 3, 1071, 535, 0, 4957, 4958, 3, 1069, 534, 0, 4958, 4959, 3, 1061, 530, + 0, 4959, 4960, 3, 1099, 549, 0, 4960, 4961, 3, 1101, 550, 0, 4961, 4962, + 3, 1095, 547, 0, 4962, 4963, 3, 1069, 534, 0, 4963, 4964, 3, 1097, 548, + 0, 4964, 898, 1, 0, 0, 0, 4965, 4966, 3, 1061, 530, 0, 4966, 4967, 3, 1067, + 533, 0, 4967, 4968, 3, 1067, 533, 0, 4968, 4969, 3, 1069, 534, 0, 4969, + 4970, 3, 1067, 533, 0, 4970, 900, 1, 0, 0, 0, 4971, 4972, 3, 1097, 548, + 0, 4972, 4973, 3, 1077, 538, 0, 4973, 4974, 3, 1087, 543, 0, 4974, 4975, + 3, 1065, 532, 0, 4975, 4976, 3, 1069, 534, 0, 4976, 902, 1, 0, 0, 0, 4977, + 4978, 3, 1097, 548, 0, 4978, 4979, 3, 1069, 534, 0, 4979, 4980, 3, 1065, + 532, 0, 4980, 4981, 3, 1101, 550, 0, 4981, 4982, 3, 1095, 547, 0, 4982, + 4983, 3, 1077, 538, 0, 4983, 4984, 3, 1099, 549, 0, 4984, 4985, 3, 1109, + 554, 0, 4985, 904, 1, 0, 0, 0, 4986, 4987, 3, 1095, 547, 0, 4987, 4988, + 3, 1089, 544, 0, 4988, 4989, 3, 1083, 541, 0, 4989, 4990, 3, 1069, 534, + 0, 4990, 906, 1, 0, 0, 0, 4991, 4992, 3, 1095, 547, 0, 4992, 4993, 3, 1089, + 544, 0, 4993, 4994, 3, 1083, 541, 0, 4994, 4995, 3, 1069, 534, 0, 4995, + 4996, 3, 1097, 548, 0, 4996, 908, 1, 0, 0, 0, 4997, 4998, 3, 1073, 536, + 0, 4998, 4999, 3, 1095, 547, 0, 4999, 5000, 3, 1061, 530, 0, 5000, 5001, + 3, 1087, 543, 0, 5001, 5002, 3, 1099, 549, 0, 5002, 910, 1, 0, 0, 0, 5003, + 5004, 3, 1095, 547, 0, 5004, 5005, 3, 1069, 534, 0, 5005, 5006, 3, 1103, + 551, 0, 5006, 5007, 3, 1089, 544, 0, 5007, 5008, 3, 1081, 540, 0, 5008, + 5009, 3, 1069, 534, 0, 5009, 912, 1, 0, 0, 0, 5010, 5011, 3, 1091, 545, + 0, 5011, 5012, 3, 1095, 547, 0, 5012, 5013, 3, 1089, 544, 0, 5013, 5014, + 3, 1067, 533, 0, 5014, 5015, 3, 1101, 550, 0, 5015, 5016, 3, 1065, 532, + 0, 5016, 5017, 3, 1099, 549, 0, 5017, 5018, 3, 1077, 538, 0, 5018, 5019, + 3, 1089, 544, 0, 5019, 5020, 3, 1087, 543, 0, 5020, 914, 1, 0, 0, 0, 5021, + 5022, 3, 1091, 545, 0, 5022, 5023, 3, 1095, 547, 0, 5023, 5024, 3, 1089, + 544, 0, 5024, 5025, 3, 1099, 549, 0, 5025, 5026, 3, 1089, 544, 0, 5026, + 5027, 3, 1099, 549, 0, 5027, 5028, 3, 1109, 554, 0, 5028, 5029, 3, 1091, + 545, 0, 5029, 5030, 3, 1069, 534, 0, 5030, 916, 1, 0, 0, 0, 5031, 5032, + 3, 1085, 542, 0, 5032, 5033, 3, 1061, 530, 0, 5033, 5034, 3, 1087, 543, + 0, 5034, 5035, 3, 1061, 530, 0, 5035, 5036, 3, 1073, 536, 0, 5036, 5037, + 3, 1069, 534, 0, 5037, 918, 1, 0, 0, 0, 5038, 5039, 3, 1067, 533, 0, 5039, + 5040, 3, 1069, 534, 0, 5040, 5041, 3, 1085, 542, 0, 5041, 5042, 3, 1089, + 544, 0, 5042, 920, 1, 0, 0, 0, 5043, 5044, 3, 1085, 542, 0, 5044, 5045, + 3, 1061, 530, 0, 5045, 5046, 3, 1099, 549, 0, 5046, 5047, 3, 1095, 547, + 0, 5047, 5048, 3, 1077, 538, 0, 5048, 5049, 3, 1107, 553, 0, 5049, 922, + 1, 0, 0, 0, 5050, 5051, 3, 1061, 530, 0, 5051, 5052, 3, 1091, 545, 0, 5052, + 5053, 3, 1091, 545, 0, 5053, 5054, 3, 1083, 541, 0, 5054, 5055, 3, 1109, + 554, 0, 5055, 924, 1, 0, 0, 0, 5056, 5057, 3, 1061, 530, 0, 5057, 5058, + 3, 1065, 532, 0, 5058, 5059, 3, 1065, 532, 0, 5059, 5060, 3, 1069, 534, + 0, 5060, 5061, 3, 1097, 548, 0, 5061, 5062, 3, 1097, 548, 0, 5062, 926, + 1, 0, 0, 0, 5063, 5064, 3, 1083, 541, 0, 5064, 5065, 3, 1069, 534, 0, 5065, + 5066, 3, 1103, 551, 0, 5066, 5067, 3, 1069, 534, 0, 5067, 5068, 3, 1083, + 541, 0, 5068, 928, 1, 0, 0, 0, 5069, 5070, 3, 1101, 550, 0, 5070, 5071, + 3, 1097, 548, 0, 5071, 5072, 3, 1069, 534, 0, 5072, 5073, 3, 1095, 547, + 0, 5073, 930, 1, 0, 0, 0, 5074, 5075, 3, 1099, 549, 0, 5075, 5076, 3, 1061, + 530, 0, 5076, 5077, 3, 1097, 548, 0, 5077, 5078, 3, 1081, 540, 0, 5078, + 932, 1, 0, 0, 0, 5079, 5080, 3, 1067, 533, 0, 5080, 5081, 3, 1069, 534, + 0, 5081, 5082, 3, 1065, 532, 0, 5082, 5083, 3, 1077, 538, 0, 5083, 5084, + 3, 1097, 548, 0, 5084, 5085, 3, 1077, 538, 0, 5085, 5086, 3, 1089, 544, + 0, 5086, 5087, 3, 1087, 543, 0, 5087, 934, 1, 0, 0, 0, 5088, 5089, 3, 1097, + 548, 0, 5089, 5090, 3, 1091, 545, 0, 5090, 5091, 3, 1083, 541, 0, 5091, + 5092, 3, 1077, 538, 0, 5092, 5093, 3, 1099, 549, 0, 5093, 936, 1, 0, 0, + 0, 5094, 5095, 3, 1089, 544, 0, 5095, 5096, 3, 1101, 550, 0, 5096, 5097, + 3, 1099, 549, 0, 5097, 5098, 3, 1065, 532, 0, 5098, 5099, 3, 1089, 544, + 0, 5099, 5100, 3, 1085, 542, 0, 5100, 5101, 3, 1069, 534, 0, 5101, 5102, + 3, 1097, 548, 0, 5102, 938, 1, 0, 0, 0, 5103, 5104, 3, 1099, 549, 0, 5104, + 5105, 3, 1061, 530, 0, 5105, 5106, 3, 1095, 547, 0, 5106, 5107, 3, 1073, + 536, 0, 5107, 5108, 3, 1069, 534, 0, 5108, 5109, 3, 1099, 549, 0, 5109, + 5110, 3, 1077, 538, 0, 5110, 5111, 3, 1087, 543, 0, 5111, 5112, 3, 1073, + 536, 0, 5112, 940, 1, 0, 0, 0, 5113, 5114, 3, 1087, 543, 0, 5114, 5115, + 3, 1089, 544, 0, 5115, 5116, 3, 1099, 549, 0, 5116, 5117, 3, 1077, 538, + 0, 5117, 5118, 3, 1071, 535, 0, 5118, 5119, 3, 1077, 538, 0, 5119, 5120, + 3, 1065, 532, 0, 5120, 5121, 3, 1061, 530, 0, 5121, 5122, 3, 1099, 549, + 0, 5122, 5123, 3, 1077, 538, 0, 5123, 5124, 3, 1089, 544, 0, 5124, 5125, + 3, 1087, 543, 0, 5125, 942, 1, 0, 0, 0, 5126, 5127, 3, 1099, 549, 0, 5127, + 5128, 3, 1077, 538, 0, 5128, 5129, 3, 1085, 542, 0, 5129, 5130, 3, 1069, + 534, 0, 5130, 5131, 3, 1095, 547, 0, 5131, 944, 1, 0, 0, 0, 5132, 5133, + 3, 1079, 539, 0, 5133, 5134, 3, 1101, 550, 0, 5134, 5135, 3, 1085, 542, + 0, 5135, 5136, 3, 1091, 545, 0, 5136, 946, 1, 0, 0, 0, 5137, 5138, 3, 1067, + 533, 0, 5138, 5139, 3, 1101, 550, 0, 5139, 5140, 3, 1069, 534, 0, 5140, + 948, 1, 0, 0, 0, 5141, 5142, 3, 1089, 544, 0, 5142, 5143, 3, 1103, 551, + 0, 5143, 5144, 3, 1069, 534, 0, 5144, 5145, 3, 1095, 547, 0, 5145, 5146, + 3, 1103, 551, 0, 5146, 5147, 3, 1077, 538, 0, 5147, 5148, 3, 1069, 534, + 0, 5148, 5149, 3, 1105, 552, 0, 5149, 950, 1, 0, 0, 0, 5150, 5151, 3, 1067, + 533, 0, 5151, 5152, 3, 1061, 530, 0, 5152, 5153, 3, 1099, 549, 0, 5153, + 5154, 3, 1069, 534, 0, 5154, 952, 1, 0, 0, 0, 5155, 5156, 3, 1091, 545, + 0, 5156, 5157, 3, 1061, 530, 0, 5157, 5158, 3, 1095, 547, 0, 5158, 5159, + 3, 1061, 530, 0, 5159, 5160, 3, 1083, 541, 0, 5160, 5161, 3, 1083, 541, + 0, 5161, 5162, 3, 1069, 534, 0, 5162, 5163, 3, 1083, 541, 0, 5163, 954, + 1, 0, 0, 0, 5164, 5165, 3, 1105, 552, 0, 5165, 5166, 3, 1061, 530, 0, 5166, + 5167, 3, 1077, 538, 0, 5167, 5168, 3, 1099, 549, 0, 5168, 956, 1, 0, 0, + 0, 5169, 5170, 3, 1061, 530, 0, 5170, 5171, 3, 1087, 543, 0, 5171, 5172, + 3, 1087, 543, 0, 5172, 5173, 3, 1089, 544, 0, 5173, 5174, 3, 1099, 549, + 0, 5174, 5175, 3, 1061, 530, 0, 5175, 5176, 3, 1099, 549, 0, 5176, 5177, + 3, 1077, 538, 0, 5177, 5178, 3, 1089, 544, 0, 5178, 5179, 3, 1087, 543, + 0, 5179, 958, 1, 0, 0, 0, 5180, 5181, 3, 1063, 531, 0, 5181, 5182, 3, 1089, + 544, 0, 5182, 5183, 3, 1101, 550, 0, 5183, 5184, 3, 1087, 543, 0, 5184, + 5185, 3, 1067, 533, 0, 5185, 5186, 3, 1061, 530, 0, 5186, 5187, 3, 1095, + 547, 0, 5187, 5188, 3, 1109, 554, 0, 5188, 960, 1, 0, 0, 0, 5189, 5190, + 3, 1077, 538, 0, 5190, 5191, 3, 1087, 543, 0, 5191, 5192, 3, 1099, 549, + 0, 5192, 5193, 3, 1069, 534, 0, 5193, 5194, 3, 1095, 547, 0, 5194, 5195, + 3, 1095, 547, 0, 5195, 5196, 3, 1101, 550, 0, 5196, 5197, 3, 1091, 545, + 0, 5197, 5198, 3, 1099, 549, 0, 5198, 5199, 3, 1077, 538, 0, 5199, 5200, + 3, 1087, 543, 0, 5200, 5201, 3, 1073, 536, 0, 5201, 962, 1, 0, 0, 0, 5202, + 5203, 3, 1087, 543, 0, 5203, 5204, 3, 1089, 544, 0, 5204, 5205, 3, 1087, + 543, 0, 5205, 964, 1, 0, 0, 0, 5206, 5207, 3, 1085, 542, 0, 5207, 5208, + 3, 1101, 550, 0, 5208, 5209, 3, 1083, 541, 0, 5209, 5210, 3, 1099, 549, + 0, 5210, 5211, 3, 1077, 538, 0, 5211, 966, 1, 0, 0, 0, 5212, 5213, 3, 1063, + 531, 0, 5213, 5214, 3, 1109, 554, 0, 5214, 968, 1, 0, 0, 0, 5215, 5216, + 3, 1095, 547, 0, 5216, 5217, 3, 1069, 534, 0, 5217, 5218, 3, 1061, 530, + 0, 5218, 5219, 3, 1067, 533, 0, 5219, 970, 1, 0, 0, 0, 5220, 5221, 3, 1105, + 552, 0, 5221, 5222, 3, 1095, 547, 0, 5222, 5223, 3, 1077, 538, 0, 5223, + 5224, 3, 1099, 549, 0, 5224, 5225, 3, 1069, 534, 0, 5225, 972, 1, 0, 0, + 0, 5226, 5227, 3, 1067, 533, 0, 5227, 5228, 3, 1069, 534, 0, 5228, 5229, + 3, 1097, 548, 0, 5229, 5230, 3, 1065, 532, 0, 5230, 5231, 3, 1095, 547, + 0, 5231, 5232, 3, 1077, 538, 0, 5232, 5233, 3, 1091, 545, 0, 5233, 5234, + 3, 1099, 549, 0, 5234, 5235, 3, 1077, 538, 0, 5235, 5236, 3, 1089, 544, + 0, 5236, 5237, 3, 1087, 543, 0, 5237, 974, 1, 0, 0, 0, 5238, 5239, 3, 1067, + 533, 0, 5239, 5240, 3, 1077, 538, 0, 5240, 5241, 3, 1097, 548, 0, 5241, + 5242, 3, 1091, 545, 0, 5242, 5243, 3, 1083, 541, 0, 5243, 5244, 3, 1061, + 530, 0, 5244, 5245, 3, 1109, 554, 0, 5245, 976, 1, 0, 0, 0, 5246, 5247, + 3, 1089, 544, 0, 5247, 5248, 3, 1071, 535, 0, 5248, 5249, 3, 1071, 535, + 0, 5249, 978, 1, 0, 0, 0, 5250, 5251, 3, 1101, 550, 0, 5251, 5252, 3, 1097, + 548, 0, 5252, 5253, 3, 1069, 534, 0, 5253, 5254, 3, 1095, 547, 0, 5254, + 5255, 3, 1097, 548, 0, 5255, 980, 1, 0, 0, 0, 5256, 5257, 5, 60, 0, 0, + 5257, 5261, 5, 62, 0, 0, 5258, 5259, 5, 33, 0, 0, 5259, 5261, 5, 61, 0, + 0, 5260, 5256, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5261, 982, 1, 0, 0, + 0, 5262, 5263, 5, 60, 0, 0, 5263, 5264, 5, 61, 0, 0, 5264, 984, 1, 0, 0, + 0, 5265, 5266, 5, 62, 0, 0, 5266, 5267, 5, 61, 0, 0, 5267, 986, 1, 0, 0, + 0, 5268, 5269, 5, 61, 0, 0, 5269, 988, 1, 0, 0, 0, 5270, 5271, 5, 60, 0, + 0, 5271, 990, 1, 0, 0, 0, 5272, 5273, 5, 62, 0, 0, 5273, 992, 1, 0, 0, + 0, 5274, 5275, 5, 43, 0, 0, 5275, 994, 1, 0, 0, 0, 5276, 5277, 5, 45, 0, + 0, 5277, 996, 1, 0, 0, 0, 5278, 5279, 5, 42, 0, 0, 5279, 998, 1, 0, 0, + 0, 5280, 5281, 5, 47, 0, 0, 5281, 1000, 1, 0, 0, 0, 5282, 5283, 5, 37, + 0, 0, 5283, 1002, 1, 0, 0, 0, 5284, 5285, 3, 1085, 542, 0, 5285, 5286, + 3, 1089, 544, 0, 5286, 5287, 3, 1067, 533, 0, 5287, 1004, 1, 0, 0, 0, 5288, + 5289, 3, 1067, 533, 0, 5289, 5290, 3, 1077, 538, 0, 5290, 5291, 3, 1103, + 551, 0, 5291, 1006, 1, 0, 0, 0, 5292, 5293, 5, 59, 0, 0, 5293, 1008, 1, + 0, 0, 0, 5294, 5295, 5, 44, 0, 0, 5295, 1010, 1, 0, 0, 0, 5296, 5297, 5, + 46, 0, 0, 5297, 1012, 1, 0, 0, 0, 5298, 5299, 5, 40, 0, 0, 5299, 1014, + 1, 0, 0, 0, 5300, 5301, 5, 41, 0, 0, 5301, 1016, 1, 0, 0, 0, 5302, 5303, + 5, 123, 0, 0, 5303, 1018, 1, 0, 0, 0, 5304, 5305, 5, 125, 0, 0, 5305, 1020, + 1, 0, 0, 0, 5306, 5307, 5, 91, 0, 0, 5307, 1022, 1, 0, 0, 0, 5308, 5309, + 5, 93, 0, 0, 5309, 1024, 1, 0, 0, 0, 5310, 5311, 5, 58, 0, 0, 5311, 1026, + 1, 0, 0, 0, 5312, 5313, 5, 64, 0, 0, 5313, 1028, 1, 0, 0, 0, 5314, 5315, + 5, 124, 0, 0, 5315, 1030, 1, 0, 0, 0, 5316, 5317, 5, 58, 0, 0, 5317, 5318, + 5, 58, 0, 0, 5318, 1032, 1, 0, 0, 0, 5319, 5320, 5, 45, 0, 0, 5320, 5321, + 5, 62, 0, 0, 5321, 1034, 1, 0, 0, 0, 5322, 5323, 5, 63, 0, 0, 5323, 1036, + 1, 0, 0, 0, 5324, 5325, 5, 35, 0, 0, 5325, 1038, 1, 0, 0, 0, 5326, 5327, + 5, 91, 0, 0, 5327, 5328, 5, 37, 0, 0, 5328, 5332, 1, 0, 0, 0, 5329, 5331, + 9, 0, 0, 0, 5330, 5329, 1, 0, 0, 0, 5331, 5334, 1, 0, 0, 0, 5332, 5333, + 1, 0, 0, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5335, 1, 0, 0, 0, 5334, 5332, + 1, 0, 0, 0, 5335, 5336, 5, 37, 0, 0, 5336, 5337, 5, 93, 0, 0, 5337, 1040, + 1, 0, 0, 0, 5338, 5346, 5, 39, 0, 0, 5339, 5345, 8, 2, 0, 0, 5340, 5341, + 5, 92, 0, 0, 5341, 5345, 9, 0, 0, 0, 5342, 5343, 5, 39, 0, 0, 5343, 5345, + 5, 39, 0, 0, 5344, 5339, 1, 0, 0, 0, 5344, 5340, 1, 0, 0, 0, 5344, 5342, + 1, 0, 0, 0, 5345, 5348, 1, 0, 0, 0, 5346, 5344, 1, 0, 0, 0, 5346, 5347, + 1, 0, 0, 0, 5347, 5349, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5349, 5350, + 5, 39, 0, 0, 5350, 1042, 1, 0, 0, 0, 5351, 5352, 5, 36, 0, 0, 5352, 5353, + 5, 36, 0, 0, 5353, 5357, 1, 0, 0, 0, 5354, 5356, 9, 0, 0, 0, 5355, 5354, + 1, 0, 0, 0, 5356, 5359, 1, 0, 0, 0, 5357, 5358, 1, 0, 0, 0, 5357, 5355, + 1, 0, 0, 0, 5358, 5360, 1, 0, 0, 0, 5359, 5357, 1, 0, 0, 0, 5360, 5361, + 5, 36, 0, 0, 5361, 5362, 5, 36, 0, 0, 5362, 1044, 1, 0, 0, 0, 5363, 5365, + 5, 45, 0, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5367, + 1, 0, 0, 0, 5366, 5368, 3, 1059, 529, 0, 5367, 5366, 1, 0, 0, 0, 5368, + 5369, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, + 5377, 1, 0, 0, 0, 5371, 5373, 5, 46, 0, 0, 5372, 5374, 3, 1059, 529, 0, + 5373, 5372, 1, 0, 0, 0, 5374, 5375, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, + 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5371, 1, 0, 0, 0, + 5377, 5378, 1, 0, 0, 0, 5378, 5388, 1, 0, 0, 0, 5379, 5381, 7, 3, 0, 0, + 5380, 5382, 7, 4, 0, 0, 5381, 5380, 1, 0, 0, 0, 5381, 5382, 1, 0, 0, 0, + 5382, 5384, 1, 0, 0, 0, 5383, 5385, 3, 1059, 529, 0, 5384, 5383, 1, 0, + 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5384, 1, 0, 0, 0, 5386, 5387, 1, 0, + 0, 0, 5387, 5389, 1, 0, 0, 0, 5388, 5379, 1, 0, 0, 0, 5388, 5389, 1, 0, + 0, 0, 5389, 1046, 1, 0, 0, 0, 5390, 5392, 5, 36, 0, 0, 5391, 5393, 3, 1057, + 528, 0, 5392, 5391, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5392, 1, + 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 1048, 1, 0, 0, 0, 5396, 5400, 3, + 1055, 527, 0, 5397, 5399, 3, 1057, 528, 0, 5398, 5397, 1, 0, 0, 0, 5399, + 5402, 1, 0, 0, 0, 5400, 5398, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, + 1050, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5403, 5411, 3, 1055, 527, 0, + 5404, 5406, 3, 1057, 528, 0, 5405, 5404, 1, 0, 0, 0, 5406, 5409, 1, 0, + 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5410, 1, 0, + 0, 0, 5409, 5407, 1, 0, 0, 0, 5410, 5412, 5, 45, 0, 0, 5411, 5407, 1, 0, + 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5411, 1, 0, 0, 0, 5413, 5414, 1, 0, + 0, 0, 5414, 5418, 1, 0, 0, 0, 5415, 5417, 3, 1057, 528, 0, 5416, 5415, + 1, 0, 0, 0, 5417, 5420, 1, 0, 0, 0, 5418, 5416, 1, 0, 0, 0, 5418, 5419, + 1, 0, 0, 0, 5419, 1052, 1, 0, 0, 0, 5420, 5418, 1, 0, 0, 0, 5421, 5425, + 5, 34, 0, 0, 5422, 5424, 8, 5, 0, 0, 5423, 5422, 1, 0, 0, 0, 5424, 5427, + 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5425, 5426, 1, 0, 0, 0, 5426, 5428, + 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5428, 5438, 5, 34, 0, 0, 5429, 5433, + 5, 96, 0, 0, 5430, 5432, 8, 6, 0, 0, 5431, 5430, 1, 0, 0, 0, 5432, 5435, + 1, 0, 0, 0, 5433, 5431, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5436, + 1, 0, 0, 0, 5435, 5433, 1, 0, 0, 0, 5436, 5438, 5, 96, 0, 0, 5437, 5421, + 1, 0, 0, 0, 5437, 5429, 1, 0, 0, 0, 5438, 1054, 1, 0, 0, 0, 5439, 5440, + 7, 7, 0, 0, 5440, 1056, 1, 0, 0, 0, 5441, 5442, 7, 8, 0, 0, 5442, 1058, + 1, 0, 0, 0, 5443, 5444, 7, 9, 0, 0, 5444, 1060, 1, 0, 0, 0, 5445, 5446, + 7, 10, 0, 0, 5446, 1062, 1, 0, 0, 0, 5447, 5448, 7, 11, 0, 0, 5448, 1064, + 1, 0, 0, 0, 5449, 5450, 7, 12, 0, 0, 5450, 1066, 1, 0, 0, 0, 5451, 5452, + 7, 13, 0, 0, 5452, 1068, 1, 0, 0, 0, 5453, 5454, 7, 3, 0, 0, 5454, 1070, + 1, 0, 0, 0, 5455, 5456, 7, 14, 0, 0, 5456, 1072, 1, 0, 0, 0, 5457, 5458, + 7, 15, 0, 0, 5458, 1074, 1, 0, 0, 0, 5459, 5460, 7, 16, 0, 0, 5460, 1076, + 1, 0, 0, 0, 5461, 5462, 7, 17, 0, 0, 5462, 1078, 1, 0, 0, 0, 5463, 5464, + 7, 18, 0, 0, 5464, 1080, 1, 0, 0, 0, 5465, 5466, 7, 19, 0, 0, 5466, 1082, + 1, 0, 0, 0, 5467, 5468, 7, 20, 0, 0, 5468, 1084, 1, 0, 0, 0, 5469, 5470, + 7, 21, 0, 0, 5470, 1086, 1, 0, 0, 0, 5471, 5472, 7, 22, 0, 0, 5472, 1088, + 1, 0, 0, 0, 5473, 5474, 7, 23, 0, 0, 5474, 1090, 1, 0, 0, 0, 5475, 5476, + 7, 24, 0, 0, 5476, 1092, 1, 0, 0, 0, 5477, 5478, 7, 25, 0, 0, 5478, 1094, + 1, 0, 0, 0, 5479, 5480, 7, 26, 0, 0, 5480, 1096, 1, 0, 0, 0, 5481, 5482, + 7, 27, 0, 0, 5482, 1098, 1, 0, 0, 0, 5483, 5484, 7, 28, 0, 0, 5484, 1100, + 1, 0, 0, 0, 5485, 5486, 7, 29, 0, 0, 5486, 1102, 1, 0, 0, 0, 5487, 5488, + 7, 30, 0, 0, 5488, 1104, 1, 0, 0, 0, 5489, 5490, 7, 31, 0, 0, 5490, 1106, + 1, 0, 0, 0, 5491, 5492, 7, 32, 0, 0, 5492, 1108, 1, 0, 0, 0, 5493, 5494, + 7, 33, 0, 0, 5494, 1110, 1, 0, 0, 0, 5495, 5496, 7, 34, 0, 0, 5496, 1112, + 1, 0, 0, 0, 48, 0, 1116, 1127, 1139, 1153, 1163, 1171, 1183, 1196, 1211, + 1224, 1236, 1266, 1279, 1293, 1301, 1356, 1367, 1375, 1384, 1448, 1459, + 1466, 1473, 1531, 1827, 4666, 4675, 5260, 5332, 5344, 5346, 5357, 5364, + 5369, 5375, 5377, 5381, 5386, 5388, 5394, 5400, 5407, 5413, 5418, 5425, + 5433, 5437, 1, 6, 0, 0, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -3140,347 +3171,351 @@ const ( MDLLexerFILEINPUT = 178 MDLLexerIMAGEINPUT = 179 MDLLexerCUSTOMWIDGET = 180 - MDLLexerTEXTFILTER = 181 - MDLLexerNUMBERFILTER = 182 - MDLLexerDROPDOWNFILTER = 183 - MDLLexerDATEFILTER = 184 - MDLLexerFILTER = 185 - MDLLexerWIDGET = 186 - MDLLexerWIDGETS = 187 - MDLLexerCAPTION = 188 - MDLLexerICON = 189 - MDLLexerTOOLTIP = 190 - MDLLexerDATASOURCE = 191 - MDLLexerSOURCE_KW = 192 - MDLLexerSELECTION = 193 - MDLLexerFOOTER = 194 - MDLLexerHEADER = 195 - MDLLexerCONTENT = 196 - MDLLexerRENDERMODE = 197 - MDLLexerBINDS = 198 - MDLLexerATTR = 199 - MDLLexerCONTENTPARAMS = 200 - MDLLexerCAPTIONPARAMS = 201 - MDLLexerPARAMS = 202 - MDLLexerVARIABLES_KW = 203 - MDLLexerDESKTOPWIDTH = 204 - MDLLexerTABLETWIDTH = 205 - MDLLexerPHONEWIDTH = 206 - MDLLexerCLASS = 207 - MDLLexerSTYLE = 208 - MDLLexerBUTTONSTYLE = 209 - MDLLexerDESIGN = 210 - MDLLexerPROPERTIES = 211 - MDLLexerDESIGNPROPERTIES = 212 - MDLLexerSTYLING = 213 - MDLLexerCLEAR = 214 - MDLLexerWIDTH = 215 - MDLLexerHEIGHT = 216 - MDLLexerAUTOFILL = 217 - MDLLexerURL = 218 - MDLLexerFOLDER = 219 - MDLLexerPASSING = 220 - MDLLexerCONTEXT = 221 - MDLLexerEDITABLE = 222 - MDLLexerREADONLY = 223 - MDLLexerATTRIBUTES = 224 - MDLLexerFILTERTYPE = 225 - MDLLexerIMAGE = 226 - MDLLexerCOLLECTION = 227 - MDLLexerSTATICIMAGE = 228 - MDLLexerDYNAMICIMAGE = 229 - MDLLexerCUSTOMCONTAINER = 230 - MDLLexerGROUPBOX = 231 - MDLLexerVISIBLE = 232 - MDLLexerSAVECHANGES = 233 - MDLLexerSAVE_CHANGES = 234 - MDLLexerCANCEL_CHANGES = 235 - MDLLexerCLOSE_PAGE = 236 - MDLLexerSHOW_PAGE = 237 - MDLLexerDELETE_ACTION = 238 - MDLLexerDELETE_OBJECT = 239 - MDLLexerCREATE_OBJECT = 240 - MDLLexerCALL_MICROFLOW = 241 - MDLLexerCALL_NANOFLOW = 242 - MDLLexerOPEN_LINK = 243 - MDLLexerSIGN_OUT = 244 - MDLLexerCANCEL = 245 - MDLLexerPRIMARY = 246 - MDLLexerSUCCESS = 247 - MDLLexerDANGER = 248 - MDLLexerWARNING_STYLE = 249 - MDLLexerINFO_STYLE = 250 - MDLLexerTEMPLATE = 251 - MDLLexerONCLICK = 252 - MDLLexerONCHANGE = 253 - MDLLexerTABINDEX = 254 - MDLLexerH1 = 255 - MDLLexerH2 = 256 - MDLLexerH3 = 257 - MDLLexerH4 = 258 - MDLLexerH5 = 259 - MDLLexerH6 = 260 - MDLLexerPARAGRAPH = 261 - MDLLexerSTRING_TYPE = 262 - MDLLexerINTEGER_TYPE = 263 - MDLLexerLONG_TYPE = 264 - MDLLexerDECIMAL_TYPE = 265 - MDLLexerBOOLEAN_TYPE = 266 - MDLLexerDATETIME_TYPE = 267 - MDLLexerDATE_TYPE = 268 - MDLLexerAUTONUMBER_TYPE = 269 - MDLLexerBINARY_TYPE = 270 - MDLLexerHASHEDSTRING_TYPE = 271 - MDLLexerCURRENCY_TYPE = 272 - MDLLexerFLOAT_TYPE = 273 - MDLLexerSTRINGTEMPLATE_TYPE = 274 - MDLLexerENUM_TYPE = 275 - MDLLexerCOUNT = 276 - MDLLexerSUM = 277 - MDLLexerAVG = 278 - MDLLexerMIN = 279 - MDLLexerMAX = 280 - MDLLexerLENGTH = 281 - MDLLexerTRIM = 282 - MDLLexerCOALESCE = 283 - MDLLexerCAST = 284 - MDLLexerAND = 285 - MDLLexerOR = 286 - MDLLexerNOT = 287 - MDLLexerNULL = 288 - MDLLexerIN = 289 - MDLLexerBETWEEN = 290 - MDLLexerLIKE = 291 - MDLLexerMATCH = 292 - MDLLexerEXISTS = 293 - MDLLexerUNIQUE = 294 - MDLLexerDEFAULT = 295 - MDLLexerTRUE = 296 - MDLLexerFALSE = 297 - MDLLexerVALIDATION = 298 - MDLLexerFEEDBACK = 299 - MDLLexerRULE = 300 - MDLLexerREQUIRED = 301 - MDLLexerERROR = 302 - MDLLexerRAISE = 303 - MDLLexerRANGE = 304 - MDLLexerREGEX = 305 - MDLLexerPATTERN = 306 - MDLLexerEXPRESSION = 307 - MDLLexerXPATH = 308 - MDLLexerCONSTRAINT = 309 - MDLLexerCALCULATED = 310 - MDLLexerREST = 311 - MDLLexerSERVICE = 312 - MDLLexerSERVICES = 313 - MDLLexerODATA = 314 - MDLLexerBASE = 315 - MDLLexerAUTH = 316 - MDLLexerAUTHENTICATION = 317 - MDLLexerBASIC = 318 - MDLLexerNOTHING = 319 - MDLLexerOAUTH = 320 - MDLLexerOPERATION = 321 - MDLLexerMETHOD = 322 - MDLLexerPATH = 323 - MDLLexerTIMEOUT = 324 - MDLLexerBODY = 325 - MDLLexerRESPONSE = 326 - MDLLexerREQUEST = 327 - MDLLexerSEND = 328 - MDLLexerJSON = 329 - MDLLexerXML = 330 - MDLLexerSTATUS = 331 - MDLLexerFILE_KW = 332 - MDLLexerVERSION = 333 - MDLLexerGET = 334 - MDLLexerPOST = 335 - MDLLexerPUT = 336 - MDLLexerPATCH = 337 - MDLLexerAPI = 338 - MDLLexerCLIENT = 339 - MDLLexerCLIENTS = 340 - MDLLexerPUBLISH = 341 - MDLLexerPUBLISHED = 342 - MDLLexerEXPOSE = 343 - MDLLexerCONTRACT = 344 - MDLLexerNAMESPACE_KW = 345 - MDLLexerSESSION = 346 - MDLLexerGUEST = 347 - MDLLexerPAGING = 348 - MDLLexerNOT_SUPPORTED = 349 - MDLLexerUSERNAME = 350 - MDLLexerPASSWORD = 351 - MDLLexerCONNECTION = 352 - MDLLexerDATABASE = 353 - MDLLexerQUERY = 354 - MDLLexerMAP = 355 - MDLLexerMAPPING = 356 - MDLLexerIMPORT = 357 - MDLLexerINTO = 358 - MDLLexerBATCH = 359 - MDLLexerLINK = 360 - MDLLexerEXPORT = 361 - MDLLexerGENERATE = 362 - MDLLexerCONNECTOR = 363 - MDLLexerEXEC = 364 - MDLLexerTABLES = 365 - MDLLexerVIEWS = 366 - MDLLexerEXPOSED = 367 - MDLLexerPARAMETER = 368 - MDLLexerPARAMETERS = 369 - MDLLexerHEADERS = 370 - MDLLexerNAVIGATION = 371 - MDLLexerMENU_KW = 372 - MDLLexerHOMES = 373 - MDLLexerHOME = 374 - MDLLexerLOGIN = 375 - MDLLexerFOUND = 376 - MDLLexerMODULES = 377 - MDLLexerENTITIES = 378 - MDLLexerASSOCIATIONS = 379 - MDLLexerMICROFLOWS = 380 - MDLLexerNANOFLOWS = 381 - MDLLexerWORKFLOWS = 382 - MDLLexerENUMERATIONS = 383 - MDLLexerCONSTANTS = 384 - MDLLexerCONNECTIONS = 385 - MDLLexerDEFINE = 386 - MDLLexerFRAGMENT = 387 - MDLLexerFRAGMENTS = 388 - MDLLexerLANGUAGES = 389 - MDLLexerINSERT = 390 - MDLLexerBEFORE = 391 - MDLLexerAFTER = 392 - MDLLexerUPDATE = 393 - MDLLexerREFRESH = 394 - MDLLexerCHECK = 395 - MDLLexerBUILD = 396 - MDLLexerEXECUTE = 397 - MDLLexerSCRIPT = 398 - MDLLexerLINT = 399 - MDLLexerRULES = 400 - MDLLexerTEXT = 401 - MDLLexerSARIF = 402 - MDLLexerMESSAGE = 403 - MDLLexerMESSAGES = 404 - MDLLexerCHANNELS = 405 - MDLLexerCOMMENT = 406 - MDLLexerCUSTOM_NAME_MAP = 407 - MDLLexerCATALOG = 408 - MDLLexerFORCE = 409 - MDLLexerBACKGROUND = 410 - MDLLexerCALLERS = 411 - MDLLexerCALLEES = 412 - MDLLexerREFERENCES = 413 - MDLLexerTRANSITIVE = 414 - MDLLexerIMPACT = 415 - MDLLexerDEPTH = 416 - MDLLexerSTRUCTURE = 417 - MDLLexerSTRUCTURES = 418 - MDLLexerTYPE = 419 - MDLLexerVALUE = 420 - MDLLexerVALUES = 421 - MDLLexerSINGLE = 422 - MDLLexerMULTIPLE = 423 - MDLLexerNONE = 424 - MDLLexerBOTH = 425 - MDLLexerTO = 426 - MDLLexerOF = 427 - MDLLexerOVER = 428 - MDLLexerFOR = 429 - MDLLexerREPLACE = 430 - MDLLexerMEMBERS = 431 - MDLLexerATTRIBUTE_NAME = 432 - MDLLexerFORMAT = 433 - MDLLexerSQL = 434 - MDLLexerWITHOUT = 435 - MDLLexerDRY = 436 - MDLLexerRUN = 437 - MDLLexerWIDGETTYPE = 438 - MDLLexerV3 = 439 - MDLLexerBUSINESS = 440 - MDLLexerEVENT = 441 - MDLLexerSUBSCRIBE = 442 - MDLLexerSETTINGS = 443 - MDLLexerCONFIGURATION = 444 - MDLLexerFEATURES = 445 - MDLLexerADDED = 446 - MDLLexerSINCE = 447 - MDLLexerSECURITY = 448 - MDLLexerROLE = 449 - MDLLexerROLES = 450 - MDLLexerGRANT = 451 - MDLLexerREVOKE = 452 - MDLLexerPRODUCTION = 453 - MDLLexerPROTOTYPE = 454 - MDLLexerMANAGE = 455 - MDLLexerDEMO = 456 - MDLLexerMATRIX = 457 - MDLLexerAPPLY = 458 - MDLLexerACCESS = 459 - MDLLexerLEVEL = 460 - MDLLexerUSER = 461 - MDLLexerTASK = 462 - MDLLexerDECISION = 463 - MDLLexerSPLIT = 464 - MDLLexerOUTCOMES = 465 - MDLLexerTARGETING = 466 - MDLLexerNOTIFICATION = 467 - MDLLexerTIMER = 468 - MDLLexerJUMP = 469 - MDLLexerDUE = 470 - MDLLexerOVERVIEW = 471 - MDLLexerDATE = 472 - MDLLexerPARALLEL = 473 - MDLLexerWAIT = 474 - MDLLexerANNOTATION = 475 - MDLLexerBOUNDARY = 476 - MDLLexerINTERRUPTING = 477 - MDLLexerNON = 478 - MDLLexerMULTI = 479 - MDLLexerBY = 480 - MDLLexerREAD = 481 - MDLLexerWRITE = 482 - MDLLexerDESCRIPTION = 483 - MDLLexerDISPLAY = 484 - MDLLexerOFF = 485 - MDLLexerUSERS = 486 - MDLLexerNOT_EQUALS = 487 - MDLLexerLESS_THAN_OR_EQUAL = 488 - MDLLexerGREATER_THAN_OR_EQUAL = 489 - MDLLexerEQUALS = 490 - MDLLexerLESS_THAN = 491 - MDLLexerGREATER_THAN = 492 - MDLLexerPLUS = 493 - MDLLexerMINUS = 494 - MDLLexerSTAR = 495 - MDLLexerSLASH = 496 - MDLLexerPERCENT = 497 - MDLLexerMOD = 498 - MDLLexerDIV = 499 - MDLLexerSEMICOLON = 500 - MDLLexerCOMMA = 501 - MDLLexerDOT = 502 - MDLLexerLPAREN = 503 - MDLLexerRPAREN = 504 - MDLLexerLBRACE = 505 - MDLLexerRBRACE = 506 - MDLLexerLBRACKET = 507 - MDLLexerRBRACKET = 508 - MDLLexerCOLON = 509 - MDLLexerAT = 510 - MDLLexerPIPE = 511 - MDLLexerDOUBLE_COLON = 512 - MDLLexerARROW = 513 - MDLLexerQUESTION = 514 - MDLLexerHASH = 515 - MDLLexerMENDIX_TOKEN = 516 - MDLLexerSTRING_LITERAL = 517 - MDLLexerDOLLAR_STRING = 518 - MDLLexerNUMBER_LITERAL = 519 - MDLLexerVARIABLE = 520 - MDLLexerIDENTIFIER = 521 - MDLLexerHYPHENATED_ID = 522 - MDLLexerQUOTED_IDENTIFIER = 523 + MDLLexerPLUGGABLEWIDGET = 181 + MDLLexerTEXTFILTER = 182 + MDLLexerNUMBERFILTER = 183 + MDLLexerDROPDOWNFILTER = 184 + MDLLexerDATEFILTER = 185 + MDLLexerDROPDOWNSORT = 186 + MDLLexerFILTER = 187 + MDLLexerWIDGET = 188 + MDLLexerWIDGETS = 189 + MDLLexerCAPTION = 190 + MDLLexerICON = 191 + MDLLexerTOOLTIP = 192 + MDLLexerDATASOURCE = 193 + MDLLexerSOURCE_KW = 194 + MDLLexerSELECTION = 195 + MDLLexerFOOTER = 196 + MDLLexerHEADER = 197 + MDLLexerCONTENT = 198 + MDLLexerRENDERMODE = 199 + MDLLexerBINDS = 200 + MDLLexerATTR = 201 + MDLLexerCONTENTPARAMS = 202 + MDLLexerCAPTIONPARAMS = 203 + MDLLexerPARAMS = 204 + MDLLexerVARIABLES_KW = 205 + MDLLexerDESKTOPWIDTH = 206 + MDLLexerTABLETWIDTH = 207 + MDLLexerPHONEWIDTH = 208 + MDLLexerCLASS = 209 + MDLLexerSTYLE = 210 + MDLLexerBUTTONSTYLE = 211 + MDLLexerDESIGN = 212 + MDLLexerPROPERTIES = 213 + MDLLexerDESIGNPROPERTIES = 214 + MDLLexerSTYLING = 215 + MDLLexerCLEAR = 216 + MDLLexerWIDTH = 217 + MDLLexerHEIGHT = 218 + MDLLexerAUTOFILL = 219 + MDLLexerURL = 220 + MDLLexerFOLDER = 221 + MDLLexerPASSING = 222 + MDLLexerCONTEXT = 223 + MDLLexerEDITABLE = 224 + MDLLexerREADONLY = 225 + MDLLexerATTRIBUTES = 226 + MDLLexerFILTERTYPE = 227 + MDLLexerIMAGE = 228 + MDLLexerCOLLECTION = 229 + MDLLexerSTATICIMAGE = 230 + MDLLexerDYNAMICIMAGE = 231 + MDLLexerCUSTOMCONTAINER = 232 + MDLLexerTABCONTAINER = 233 + MDLLexerTABPAGE = 234 + MDLLexerGROUPBOX = 235 + MDLLexerVISIBLE = 236 + MDLLexerSAVECHANGES = 237 + MDLLexerSAVE_CHANGES = 238 + MDLLexerCANCEL_CHANGES = 239 + MDLLexerCLOSE_PAGE = 240 + MDLLexerSHOW_PAGE = 241 + MDLLexerDELETE_ACTION = 242 + MDLLexerDELETE_OBJECT = 243 + MDLLexerCREATE_OBJECT = 244 + MDLLexerCALL_MICROFLOW = 245 + MDLLexerCALL_NANOFLOW = 246 + MDLLexerOPEN_LINK = 247 + MDLLexerSIGN_OUT = 248 + MDLLexerCANCEL = 249 + MDLLexerPRIMARY = 250 + MDLLexerSUCCESS = 251 + MDLLexerDANGER = 252 + MDLLexerWARNING_STYLE = 253 + MDLLexerINFO_STYLE = 254 + MDLLexerTEMPLATE = 255 + MDLLexerONCLICK = 256 + MDLLexerONCHANGE = 257 + MDLLexerTABINDEX = 258 + MDLLexerH1 = 259 + MDLLexerH2 = 260 + MDLLexerH3 = 261 + MDLLexerH4 = 262 + MDLLexerH5 = 263 + MDLLexerH6 = 264 + MDLLexerPARAGRAPH = 265 + MDLLexerSTRING_TYPE = 266 + MDLLexerINTEGER_TYPE = 267 + MDLLexerLONG_TYPE = 268 + MDLLexerDECIMAL_TYPE = 269 + MDLLexerBOOLEAN_TYPE = 270 + MDLLexerDATETIME_TYPE = 271 + MDLLexerDATE_TYPE = 272 + MDLLexerAUTONUMBER_TYPE = 273 + MDLLexerBINARY_TYPE = 274 + MDLLexerHASHEDSTRING_TYPE = 275 + MDLLexerCURRENCY_TYPE = 276 + MDLLexerFLOAT_TYPE = 277 + MDLLexerSTRINGTEMPLATE_TYPE = 278 + MDLLexerENUM_TYPE = 279 + MDLLexerCOUNT = 280 + MDLLexerSUM = 281 + MDLLexerAVG = 282 + MDLLexerMIN = 283 + MDLLexerMAX = 284 + MDLLexerLENGTH = 285 + MDLLexerTRIM = 286 + MDLLexerCOALESCE = 287 + MDLLexerCAST = 288 + MDLLexerAND = 289 + MDLLexerOR = 290 + MDLLexerNOT = 291 + MDLLexerNULL = 292 + MDLLexerIN = 293 + MDLLexerBETWEEN = 294 + MDLLexerLIKE = 295 + MDLLexerMATCH = 296 + MDLLexerEXISTS = 297 + MDLLexerUNIQUE = 298 + MDLLexerDEFAULT = 299 + MDLLexerTRUE = 300 + MDLLexerFALSE = 301 + MDLLexerVALIDATION = 302 + MDLLexerFEEDBACK = 303 + MDLLexerRULE = 304 + MDLLexerREQUIRED = 305 + MDLLexerERROR = 306 + MDLLexerRAISE = 307 + MDLLexerRANGE = 308 + MDLLexerREGEX = 309 + MDLLexerPATTERN = 310 + MDLLexerEXPRESSION = 311 + MDLLexerXPATH = 312 + MDLLexerCONSTRAINT = 313 + MDLLexerCALCULATED = 314 + MDLLexerREST = 315 + MDLLexerSERVICE = 316 + MDLLexerSERVICES = 317 + MDLLexerODATA = 318 + MDLLexerBASE = 319 + MDLLexerAUTH = 320 + MDLLexerAUTHENTICATION = 321 + MDLLexerBASIC = 322 + MDLLexerNOTHING = 323 + MDLLexerOAUTH = 324 + MDLLexerOPERATION = 325 + MDLLexerMETHOD = 326 + MDLLexerPATH = 327 + MDLLexerTIMEOUT = 328 + MDLLexerBODY = 329 + MDLLexerRESPONSE = 330 + MDLLexerREQUEST = 331 + MDLLexerSEND = 332 + MDLLexerJSON = 333 + MDLLexerXML = 334 + MDLLexerSTATUS = 335 + MDLLexerFILE_KW = 336 + MDLLexerVERSION = 337 + MDLLexerGET = 338 + MDLLexerPOST = 339 + MDLLexerPUT = 340 + MDLLexerPATCH = 341 + MDLLexerAPI = 342 + MDLLexerCLIENT = 343 + MDLLexerCLIENTS = 344 + MDLLexerPUBLISH = 345 + MDLLexerPUBLISHED = 346 + MDLLexerEXPOSE = 347 + MDLLexerCONTRACT = 348 + MDLLexerNAMESPACE_KW = 349 + MDLLexerSESSION = 350 + MDLLexerGUEST = 351 + MDLLexerPAGING = 352 + MDLLexerNOT_SUPPORTED = 353 + MDLLexerUSERNAME = 354 + MDLLexerPASSWORD = 355 + MDLLexerCONNECTION = 356 + MDLLexerDATABASE = 357 + MDLLexerQUERY = 358 + MDLLexerMAP = 359 + MDLLexerMAPPING = 360 + MDLLexerIMPORT = 361 + MDLLexerINTO = 362 + MDLLexerBATCH = 363 + MDLLexerLINK = 364 + MDLLexerEXPORT = 365 + MDLLexerGENERATE = 366 + MDLLexerCONNECTOR = 367 + MDLLexerEXEC = 368 + MDLLexerTABLES = 369 + MDLLexerVIEWS = 370 + MDLLexerEXPOSED = 371 + MDLLexerPARAMETER = 372 + MDLLexerPARAMETERS = 373 + MDLLexerHEADERS = 374 + MDLLexerNAVIGATION = 375 + MDLLexerMENU_KW = 376 + MDLLexerHOMES = 377 + MDLLexerHOME = 378 + MDLLexerLOGIN = 379 + MDLLexerFOUND = 380 + MDLLexerMODULES = 381 + MDLLexerENTITIES = 382 + MDLLexerASSOCIATIONS = 383 + MDLLexerMICROFLOWS = 384 + MDLLexerNANOFLOWS = 385 + MDLLexerWORKFLOWS = 386 + MDLLexerENUMERATIONS = 387 + MDLLexerCONSTANTS = 388 + MDLLexerCONNECTIONS = 389 + MDLLexerDEFINE = 390 + MDLLexerFRAGMENT = 391 + MDLLexerFRAGMENTS = 392 + MDLLexerLANGUAGES = 393 + MDLLexerINSERT = 394 + MDLLexerBEFORE = 395 + MDLLexerAFTER = 396 + MDLLexerUPDATE = 397 + MDLLexerREFRESH = 398 + MDLLexerCHECK = 399 + MDLLexerBUILD = 400 + MDLLexerEXECUTE = 401 + MDLLexerSCRIPT = 402 + MDLLexerLINT = 403 + MDLLexerRULES = 404 + MDLLexerTEXT = 405 + MDLLexerSARIF = 406 + MDLLexerMESSAGE = 407 + MDLLexerMESSAGES = 408 + MDLLexerCHANNELS = 409 + MDLLexerCOMMENT = 410 + MDLLexerCUSTOM_NAME_MAP = 411 + MDLLexerCATALOG = 412 + MDLLexerFORCE = 413 + MDLLexerBACKGROUND = 414 + MDLLexerCALLERS = 415 + MDLLexerCALLEES = 416 + MDLLexerREFERENCES = 417 + MDLLexerTRANSITIVE = 418 + MDLLexerIMPACT = 419 + MDLLexerDEPTH = 420 + MDLLexerSTRUCTURE = 421 + MDLLexerSTRUCTURES = 422 + MDLLexerTYPE = 423 + MDLLexerVALUE = 424 + MDLLexerVALUES = 425 + MDLLexerSINGLE = 426 + MDLLexerMULTIPLE = 427 + MDLLexerNONE = 428 + MDLLexerBOTH = 429 + MDLLexerTO = 430 + MDLLexerOF = 431 + MDLLexerOVER = 432 + MDLLexerFOR = 433 + MDLLexerREPLACE = 434 + MDLLexerMEMBERS = 435 + MDLLexerATTRIBUTE_NAME = 436 + MDLLexerFORMAT = 437 + MDLLexerSQL = 438 + MDLLexerWITHOUT = 439 + MDLLexerDRY = 440 + MDLLexerRUN = 441 + MDLLexerWIDGETTYPE = 442 + MDLLexerV3 = 443 + MDLLexerBUSINESS = 444 + MDLLexerEVENT = 445 + MDLLexerSUBSCRIBE = 446 + MDLLexerSETTINGS = 447 + MDLLexerCONFIGURATION = 448 + MDLLexerFEATURES = 449 + MDLLexerADDED = 450 + MDLLexerSINCE = 451 + MDLLexerSECURITY = 452 + MDLLexerROLE = 453 + MDLLexerROLES = 454 + MDLLexerGRANT = 455 + MDLLexerREVOKE = 456 + MDLLexerPRODUCTION = 457 + MDLLexerPROTOTYPE = 458 + MDLLexerMANAGE = 459 + MDLLexerDEMO = 460 + MDLLexerMATRIX = 461 + MDLLexerAPPLY = 462 + MDLLexerACCESS = 463 + MDLLexerLEVEL = 464 + MDLLexerUSER = 465 + MDLLexerTASK = 466 + MDLLexerDECISION = 467 + MDLLexerSPLIT = 468 + MDLLexerOUTCOMES = 469 + MDLLexerTARGETING = 470 + MDLLexerNOTIFICATION = 471 + MDLLexerTIMER = 472 + MDLLexerJUMP = 473 + MDLLexerDUE = 474 + MDLLexerOVERVIEW = 475 + MDLLexerDATE = 476 + MDLLexerPARALLEL = 477 + MDLLexerWAIT = 478 + MDLLexerANNOTATION = 479 + MDLLexerBOUNDARY = 480 + MDLLexerINTERRUPTING = 481 + MDLLexerNON = 482 + MDLLexerMULTI = 483 + MDLLexerBY = 484 + MDLLexerREAD = 485 + MDLLexerWRITE = 486 + MDLLexerDESCRIPTION = 487 + MDLLexerDISPLAY = 488 + MDLLexerOFF = 489 + MDLLexerUSERS = 490 + MDLLexerNOT_EQUALS = 491 + MDLLexerLESS_THAN_OR_EQUAL = 492 + MDLLexerGREATER_THAN_OR_EQUAL = 493 + MDLLexerEQUALS = 494 + MDLLexerLESS_THAN = 495 + MDLLexerGREATER_THAN = 496 + MDLLexerPLUS = 497 + MDLLexerMINUS = 498 + MDLLexerSTAR = 499 + MDLLexerSLASH = 500 + MDLLexerPERCENT = 501 + MDLLexerMOD = 502 + MDLLexerDIV = 503 + MDLLexerSEMICOLON = 504 + MDLLexerCOMMA = 505 + MDLLexerDOT = 506 + MDLLexerLPAREN = 507 + MDLLexerRPAREN = 508 + MDLLexerLBRACE = 509 + MDLLexerRBRACE = 510 + MDLLexerLBRACKET = 511 + MDLLexerRBRACKET = 512 + MDLLexerCOLON = 513 + MDLLexerAT = 514 + MDLLexerPIPE = 515 + MDLLexerDOUBLE_COLON = 516 + MDLLexerARROW = 517 + MDLLexerQUESTION = 518 + MDLLexerHASH = 519 + MDLLexerMENDIX_TOKEN = 520 + MDLLexerSTRING_LITERAL = 521 + MDLLexerDOLLAR_STRING = 522 + MDLLexerNUMBER_LITERAL = 523 + MDLLexerVARIABLE = 524 + MDLLexerIDENTIFIER = 525 + MDLLexerHYPHENATED_ID = 526 + MDLLexerQUOTED_IDENTIFIER = 527 ) diff --git a/mdl/grammar/parser/mdl_parser.go b/mdl/grammar/parser/mdl_parser.go index 19d5c9fa..d362afe7 100644 --- a/mdl/grammar/parser/mdl_parser.go +++ b/mdl/grammar/parser/mdl_parser.go @@ -1,4 +1,4 @@ -// Code generated from MDLParser.g4 by ANTLR 4.13.2. DO NOT EDIT. +// Code generated from MDLParser.g4 by ANTLR 4.13.1. DO NOT EDIT. package parser // MDLParser import ( @@ -60,10 +60,10 @@ func mdlparserParserInit() { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "", "", "", "", "", "", "", "", "", "", "", "", "'<='", "'>='", "'='", - "'<'", "'>'", "'+'", "'-'", "'*'", "'/'", "'%'", "", "", "';'", "','", - "'.'", "'('", "')'", "'{'", "'}'", "'['", "']'", "':'", "'@'", "'|'", - "'::'", "'->'", "'?'", "'#'", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "'<='", + "'>='", "'='", "'<'", "'>'", "'+'", "'-'", "'*'", "'/'", "'%'", "", + "", "';'", "','", "'.'", "'('", "')'", "'{'", "'}'", "'['", "']'", "':'", + "'@'", "'|'", "'::'", "'->'", "'?'", "'#'", } staticData.SymbolicNames = []string{ "", "WS", "DOC_COMMENT", "BLOCK_COMMENT", "LINE_COMMENT", "IS_NOT_NULL", @@ -93,47 +93,48 @@ func mdlparserParserInit() { "ACTIONBUTTON", "LINKBUTTON", "BUTTON", "TITLE", "DYNAMICTEXT", "DYNAMIC", "STATICTEXT", "LABEL", "TEXTBOX", "TEXTAREA", "DATEPICKER", "RADIOBUTTONS", "DROPDOWN", "COMBOBOX", "CHECKBOX", "REFERENCESELECTOR", "INPUTREFERENCESETSELECTOR", - "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "TEXTFILTER", "NUMBERFILTER", - "DROPDOWNFILTER", "DATEFILTER", "FILTER", "WIDGET", "WIDGETS", "CAPTION", - "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", "SELECTION", "FOOTER", - "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", "CONTENTPARAMS", - "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", "TABLETWIDTH", - "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", "PROPERTIES", - "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", "AUTOFILL", - "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", "ATTRIBUTES", - "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", - "CUSTOMCONTAINER", "GROUPBOX", "VISIBLE", "SAVECHANGES", "SAVE_CHANGES", - "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", "DELETE_ACTION", "DELETE_OBJECT", - "CREATE_OBJECT", "CALL_MICROFLOW", "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", - "CANCEL", "PRIMARY", "SUCCESS", "DANGER", "WARNING_STYLE", "INFO_STYLE", - "TEMPLATE", "ONCLICK", "ONCHANGE", "TABINDEX", "H1", "H2", "H3", "H4", - "H5", "H6", "PARAGRAPH", "STRING_TYPE", "INTEGER_TYPE", "LONG_TYPE", - "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", "DATE_TYPE", "AUTONUMBER_TYPE", - "BINARY_TYPE", "HASHEDSTRING_TYPE", "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", - "ENUM_TYPE", "COUNT", "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", - "COALESCE", "CAST", "AND", "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", - "MATCH", "EXISTS", "UNIQUE", "DEFAULT", "TRUE", "FALSE", "VALIDATION", - "FEEDBACK", "RULE", "REQUIRED", "ERROR", "RAISE", "RANGE", "REGEX", - "PATTERN", "EXPRESSION", "XPATH", "CONSTRAINT", "CALCULATED", "REST", - "SERVICE", "SERVICES", "ODATA", "BASE", "AUTH", "AUTHENTICATION", "BASIC", - "NOTHING", "OAUTH", "OPERATION", "METHOD", "PATH", "TIMEOUT", "BODY", - "RESPONSE", "REQUEST", "SEND", "JSON", "XML", "STATUS", "FILE_KW", "VERSION", - "GET", "POST", "PUT", "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", - "PUBLISHED", "EXPOSE", "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", - "PAGING", "NOT_SUPPORTED", "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", - "QUERY", "MAP", "MAPPING", "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", - "GENERATE", "CONNECTOR", "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", - "PARAMETERS", "HEADERS", "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", - "FOUND", "MODULES", "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", - "WORKFLOWS", "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", - "FRAGMENTS", "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", - "CHECK", "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", - "MESSAGE", "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", - "FORCE", "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", - "IMPACT", "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", - "SINGLE", "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", - "MEMBERS", "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", - "WIDGETTYPE", "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", + "FILEINPUT", "IMAGEINPUT", "CUSTOMWIDGET", "PLUGGABLEWIDGET", "TEXTFILTER", + "NUMBERFILTER", "DROPDOWNFILTER", "DATEFILTER", "DROPDOWNSORT", "FILTER", + "WIDGET", "WIDGETS", "CAPTION", "ICON", "TOOLTIP", "DATASOURCE", "SOURCE_KW", + "SELECTION", "FOOTER", "HEADER", "CONTENT", "RENDERMODE", "BINDS", "ATTR", + "CONTENTPARAMS", "CAPTIONPARAMS", "PARAMS", "VARIABLES_KW", "DESKTOPWIDTH", + "TABLETWIDTH", "PHONEWIDTH", "CLASS", "STYLE", "BUTTONSTYLE", "DESIGN", + "PROPERTIES", "DESIGNPROPERTIES", "STYLING", "CLEAR", "WIDTH", "HEIGHT", + "AUTOFILL", "URL", "FOLDER", "PASSING", "CONTEXT", "EDITABLE", "READONLY", + "ATTRIBUTES", "FILTERTYPE", "IMAGE", "COLLECTION", "STATICIMAGE", "DYNAMICIMAGE", + "CUSTOMCONTAINER", "TABCONTAINER", "TABPAGE", "GROUPBOX", "VISIBLE", + "SAVECHANGES", "SAVE_CHANGES", "CANCEL_CHANGES", "CLOSE_PAGE", "SHOW_PAGE", + "DELETE_ACTION", "DELETE_OBJECT", "CREATE_OBJECT", "CALL_MICROFLOW", + "CALL_NANOFLOW", "OPEN_LINK", "SIGN_OUT", "CANCEL", "PRIMARY", "SUCCESS", + "DANGER", "WARNING_STYLE", "INFO_STYLE", "TEMPLATE", "ONCLICK", "ONCHANGE", + "TABINDEX", "H1", "H2", "H3", "H4", "H5", "H6", "PARAGRAPH", "STRING_TYPE", + "INTEGER_TYPE", "LONG_TYPE", "DECIMAL_TYPE", "BOOLEAN_TYPE", "DATETIME_TYPE", + "DATE_TYPE", "AUTONUMBER_TYPE", "BINARY_TYPE", "HASHEDSTRING_TYPE", + "CURRENCY_TYPE", "FLOAT_TYPE", "STRINGTEMPLATE_TYPE", "ENUM_TYPE", "COUNT", + "SUM", "AVG", "MIN", "MAX", "LENGTH", "TRIM", "COALESCE", "CAST", "AND", + "OR", "NOT", "NULL", "IN", "BETWEEN", "LIKE", "MATCH", "EXISTS", "UNIQUE", + "DEFAULT", "TRUE", "FALSE", "VALIDATION", "FEEDBACK", "RULE", "REQUIRED", + "ERROR", "RAISE", "RANGE", "REGEX", "PATTERN", "EXPRESSION", "XPATH", + "CONSTRAINT", "CALCULATED", "REST", "SERVICE", "SERVICES", "ODATA", + "BASE", "AUTH", "AUTHENTICATION", "BASIC", "NOTHING", "OAUTH", "OPERATION", + "METHOD", "PATH", "TIMEOUT", "BODY", "RESPONSE", "REQUEST", "SEND", + "JSON", "XML", "STATUS", "FILE_KW", "VERSION", "GET", "POST", "PUT", + "PATCH", "API", "CLIENT", "CLIENTS", "PUBLISH", "PUBLISHED", "EXPOSE", + "CONTRACT", "NAMESPACE_KW", "SESSION", "GUEST", "PAGING", "NOT_SUPPORTED", + "USERNAME", "PASSWORD", "CONNECTION", "DATABASE", "QUERY", "MAP", "MAPPING", + "IMPORT", "INTO", "BATCH", "LINK", "EXPORT", "GENERATE", "CONNECTOR", + "EXEC", "TABLES", "VIEWS", "EXPOSED", "PARAMETER", "PARAMETERS", "HEADERS", + "NAVIGATION", "MENU_KW", "HOMES", "HOME", "LOGIN", "FOUND", "MODULES", + "ENTITIES", "ASSOCIATIONS", "MICROFLOWS", "NANOFLOWS", "WORKFLOWS", + "ENUMERATIONS", "CONSTANTS", "CONNECTIONS", "DEFINE", "FRAGMENT", "FRAGMENTS", + "LANGUAGES", "INSERT", "BEFORE", "AFTER", "UPDATE", "REFRESH", "CHECK", + "BUILD", "EXECUTE", "SCRIPT", "LINT", "RULES", "TEXT", "SARIF", "MESSAGE", + "MESSAGES", "CHANNELS", "COMMENT", "CUSTOM_NAME_MAP", "CATALOG", "FORCE", + "BACKGROUND", "CALLERS", "CALLEES", "REFERENCES", "TRANSITIVE", "IMPACT", + "DEPTH", "STRUCTURE", "STRUCTURES", "TYPE", "VALUE", "VALUES", "SINGLE", + "MULTIPLE", "NONE", "BOTH", "TO", "OF", "OVER", "FOR", "REPLACE", "MEMBERS", + "ATTRIBUTE_NAME", "FORMAT", "SQL", "WITHOUT", "DRY", "RUN", "WIDGETTYPE", + "V3", "BUSINESS", "EVENT", "SUBSCRIBE", "SETTINGS", "CONFIGURATION", "FEATURES", "ADDED", "SINCE", "SECURITY", "ROLE", "ROLES", "GRANT", "REVOKE", "PRODUCTION", "PROTOTYPE", "MANAGE", "DEMO", "MATRIX", "APPLY", "ACCESS", "LEVEL", "USER", "TASK", "DECISION", "SPLIT", "OUTCOMES", @@ -250,7 +251,7 @@ func mdlparserParserInit() { } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 523, 6156, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, + 4, 1, 527, 6210, 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, @@ -359,295 +360,301 @@ func mdlparserParserInit() { 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1024, 8, 9, 10, 9, 12, 9, 1027, 9, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1035, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, - 3, 11, 1048, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, - 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1064, 8, 12, 1, 13, - 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 1071, 8, 13, 10, 13, 12, 13, 1074, 9, - 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, - 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, - 17, 1096, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, - 1, 17, 1, 17, 5, 17, 1108, 8, 17, 10, 17, 12, 17, 1111, 9, 17, 1, 17, 3, - 17, 1114, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, - 1123, 8, 18, 1, 18, 3, 18, 1126, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, - 18, 1132, 8, 18, 10, 18, 12, 18, 1135, 9, 18, 1, 18, 1, 18, 3, 18, 1139, - 8, 18, 3, 18, 1141, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, + 1, 11, 1, 11, 1, 11, 3, 11, 1051, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, + 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, + 1067, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 1074, 8, 13, 10, + 13, 12, 13, 1077, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, + 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, + 17, 1, 17, 1, 17, 3, 17, 1099, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, + 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1111, 8, 17, 10, 17, 12, 17, + 1114, 9, 17, 1, 17, 3, 17, 1117, 8, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, + 18, 1, 18, 1, 18, 3, 18, 1126, 8, 18, 1, 18, 3, 18, 1129, 8, 18, 1, 18, + 1, 18, 1, 18, 1, 18, 5, 18, 1135, 8, 18, 10, 18, 12, 18, 1138, 9, 18, 1, + 18, 1, 18, 3, 18, 1142, 8, 18, 3, 18, 1144, 8, 18, 1, 19, 1, 19, 1, 19, + 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, - 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1220, 8, 19, - 3, 19, 1222, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, - 20, 1, 20, 1, 20, 1, 20, 3, 20, 1235, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, - 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1246, 8, 21, 1, 21, 1, 21, 1, - 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1255, 8, 21, 3, 21, 1257, 8, 21, - 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1268, - 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1274, 8, 21, 1, 21, 1, 21, 1, - 21, 1, 21, 1, 21, 1, 21, 3, 21, 1282, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, - 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1293, 8, 21, 3, 21, 1295, 8, - 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1303, 8, 21, 3, 21, - 1305, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, - 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1324, - 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1332, 8, 23, 1, - 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, - 1, 25, 1, 25, 1, 25, 3, 25, 1348, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, + 19, 3, 19, 1223, 8, 19, 3, 19, 1225, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, + 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1238, 8, 20, 1, + 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1249, + 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1258, 8, + 21, 3, 21, 1260, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, + 1, 21, 1, 21, 3, 21, 1271, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1277, + 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1285, 8, 21, 1, + 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1296, + 8, 21, 3, 21, 1298, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, + 21, 1306, 8, 21, 3, 21, 1308, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, + 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, + 22, 1, 22, 3, 22, 1327, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, + 3, 23, 1335, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, + 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1351, 8, 25, 1, 26, + 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, - 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1372, 8, 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, 3, 28, 1388, 8, 28, 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, 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, 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, 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, 3, 38, 1472, 8, 38, 1, 39, 1, 39, 1, 39, 1, - 39, 1, 39, 1, 39, 1, 39, 3, 39, 1481, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, - 5, 39, 1487, 8, 39, 10, 39, 12, 39, 1490, 9, 39, 1, 39, 1, 39, 1, 40, 1, - 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1503, 8, 41, - 1, 42, 1, 42, 1, 42, 5, 42, 1508, 8, 42, 10, 42, 12, 42, 1511, 9, 42, 1, - 43, 1, 43, 1, 43, 5, 43, 1516, 8, 43, 10, 43, 12, 43, 1519, 9, 43, 1, 44, - 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1530, 8, - 44, 10, 44, 12, 44, 1533, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, - 44, 1, 44, 1, 44, 5, 44, 1543, 8, 44, 10, 44, 12, 44, 1546, 9, 44, 1, 44, - 3, 44, 1549, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1555, 8, 45, 1, - 45, 3, 45, 1558, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1564, 8, 45, - 1, 45, 3, 45, 1567, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1573, 8, - 45, 1, 45, 1, 45, 3, 45, 1577, 8, 45, 1, 45, 1, 45, 3, 45, 1581, 8, 45, - 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1587, 8, 45, 1, 45, 1, 45, 1, 45, 3, - 45, 1592, 8, 45, 1, 45, 3, 45, 1595, 8, 45, 3, 45, 1597, 8, 45, 1, 46, - 1, 46, 1, 46, 1, 46, 3, 46, 1603, 8, 46, 1, 47, 1, 47, 3, 47, 1607, 8, - 47, 1, 47, 1, 47, 3, 47, 1611, 8, 47, 1, 47, 3, 47, 1614, 8, 47, 1, 48, - 1, 48, 3, 48, 1618, 8, 48, 1, 48, 5, 48, 1621, 8, 48, 10, 48, 12, 48, 1624, - 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1630, 8, 49, 1, 50, 1, 50, 1, - 50, 5, 50, 1635, 8, 50, 10, 50, 12, 50, 1638, 9, 50, 1, 51, 3, 51, 1641, - 8, 51, 1, 51, 5, 51, 1644, 8, 51, 10, 51, 12, 51, 1647, 9, 51, 1, 51, 1, - 51, 1, 51, 1, 51, 5, 51, 1653, 8, 51, 10, 51, 12, 51, 1656, 9, 51, 1, 52, - 1, 52, 1, 52, 3, 52, 1661, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1666, 8, - 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1672, 8, 53, 1, 53, 1, 53, 1, 53, - 3, 53, 1677, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1682, 8, 53, 1, 53, 1, - 53, 1, 53, 3, 53, 1687, 8, 53, 1, 53, 1, 53, 3, 53, 1691, 8, 53, 1, 53, - 3, 53, 1694, 8, 53, 3, 53, 1696, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, - 54, 1702, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, - 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, + 3, 26, 1375, 8, 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, 3, 28, 1391, 8, 28, 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, 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, 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, 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, 3, 38, 1475, 8, 38, + 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1484, 8, 39, 1, + 39, 1, 39, 1, 39, 1, 39, 5, 39, 1490, 8, 39, 10, 39, 12, 39, 1493, 9, 39, + 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, + 41, 3, 41, 1506, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 1511, 8, 42, 10, 42, + 12, 42, 1514, 9, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1519, 8, 43, 10, 43, 12, + 43, 1522, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, + 1, 44, 5, 44, 1533, 8, 44, 10, 44, 12, 44, 1536, 9, 44, 1, 44, 1, 44, 1, + 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1546, 8, 44, 10, 44, 12, + 44, 1549, 9, 44, 1, 44, 3, 44, 1552, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, + 3, 45, 1558, 8, 45, 1, 45, 3, 45, 1561, 8, 45, 1, 45, 1, 45, 1, 45, 1, + 45, 3, 45, 1567, 8, 45, 1, 45, 3, 45, 1570, 8, 45, 1, 45, 1, 45, 1, 45, + 1, 45, 3, 45, 1576, 8, 45, 1, 45, 1, 45, 3, 45, 1580, 8, 45, 1, 45, 1, + 45, 3, 45, 1584, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1590, 8, 45, + 1, 45, 1, 45, 1, 45, 3, 45, 1595, 8, 45, 1, 45, 3, 45, 1598, 8, 45, 3, + 45, 1600, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1606, 8, 46, 1, 47, + 1, 47, 3, 47, 1610, 8, 47, 1, 47, 1, 47, 3, 47, 1614, 8, 47, 1, 47, 3, + 47, 1617, 8, 47, 1, 48, 1, 48, 3, 48, 1621, 8, 48, 1, 48, 5, 48, 1624, + 8, 48, 10, 48, 12, 48, 1627, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, + 1633, 8, 49, 1, 50, 1, 50, 1, 50, 5, 50, 1638, 8, 50, 10, 50, 12, 50, 1641, + 9, 50, 1, 51, 3, 51, 1644, 8, 51, 1, 51, 5, 51, 1647, 8, 51, 10, 51, 12, + 51, 1650, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1656, 8, 51, 10, 51, + 12, 51, 1659, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1665, 8, 52, 1, + 53, 1, 53, 1, 53, 3, 53, 1670, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, + 1676, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1681, 8, 53, 1, 53, 1, 53, 1, + 53, 3, 53, 1686, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1691, 8, 53, 1, 53, + 1, 53, 3, 53, 1695, 8, 53, 1, 53, 3, 53, 1698, 8, 53, 3, 53, 1700, 8, 53, + 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1706, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, - 1, 54, 3, 54, 1734, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, - 56, 1742, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, - 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, - 56, 3, 56, 1763, 8, 56, 1, 57, 3, 57, 1766, 8, 57, 1, 57, 1, 57, 1, 57, - 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 1775, 8, 58, 10, 58, 12, 58, 1778, 9, - 58, 1, 59, 1, 59, 3, 59, 1782, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 1787, - 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1796, 8, - 61, 1, 62, 4, 62, 1799, 8, 62, 11, 62, 12, 62, 1800, 1, 63, 1, 63, 1, 63, - 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1813, 8, 63, 1, - 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, + 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, + 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1738, 8, 54, 1, 55, 1, 55, + 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1746, 8, 56, 1, 56, 1, 56, 1, 56, 1, + 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, + 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1767, 8, 56, 1, 57, 3, 57, 1770, + 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 5, 58, 1779, 8, + 58, 10, 58, 12, 58, 1782, 9, 58, 1, 59, 1, 59, 3, 59, 1786, 8, 59, 1, 60, + 1, 60, 1, 60, 3, 60, 1791, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, + 61, 1, 61, 3, 61, 1800, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, + 1, 61, 1, 61, 1, 61, 5, 61, 1811, 8, 61, 10, 61, 12, 61, 1814, 9, 61, 1, + 61, 1, 61, 3, 61, 1818, 8, 61, 1, 62, 4, 62, 1821, 8, 62, 11, 62, 12, 62, + 1822, 1, 63, 1, 63, 3, 63, 1827, 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1832, + 8, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1837, 8, 63, 1, 63, 1, 63, 1, 63, 1, + 63, 1, 63, 3, 63, 1844, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, - 65, 1, 65, 1, 65, 3, 65, 1839, 8, 65, 1, 65, 1, 65, 5, 65, 1843, 8, 65, - 10, 65, 12, 65, 1846, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1852, 8, - 65, 1, 65, 1, 65, 5, 65, 1856, 8, 65, 10, 65, 12, 65, 1859, 9, 65, 1, 65, + 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1870, 8, 65, + 1, 65, 1, 65, 5, 65, 1874, 8, 65, 10, 65, 12, 65, 1877, 9, 65, 1, 65, 1, + 65, 1, 65, 1, 65, 3, 65, 1883, 8, 65, 1, 65, 1, 65, 5, 65, 1887, 8, 65, + 10, 65, 12, 65, 1890, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, - 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1889, 8, 65, 1, 66, 1, - 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, - 3, 66, 1903, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1910, 8, - 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, - 1, 67, 3, 67, 1923, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1930, - 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1938, 8, 68, 1, - 69, 1, 69, 1, 69, 3, 69, 1943, 8, 69, 1, 70, 4, 70, 1946, 8, 70, 11, 70, - 12, 70, 1947, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1954, 8, 71, 1, 72, 1, - 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1962, 8, 72, 1, 73, 1, 73, 1, 73, - 5, 73, 1967, 8, 73, 10, 73, 12, 73, 1970, 9, 73, 1, 74, 3, 74, 1973, 8, - 74, 1, 74, 1, 74, 3, 74, 1977, 8, 74, 1, 74, 3, 74, 1980, 8, 74, 1, 75, - 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, - 75, 1, 75, 1, 75, 1, 75, 3, 75, 1997, 8, 75, 1, 76, 4, 76, 2000, 8, 76, - 11, 76, 12, 76, 2001, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, - 3, 78, 2011, 8, 78, 1, 78, 3, 78, 2014, 8, 78, 1, 79, 4, 79, 2017, 8, 79, - 11, 79, 12, 79, 2018, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2026, 8, - 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2032, 8, 81, 10, 81, 12, 81, 2035, - 9, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, - 83, 1, 83, 3, 83, 2048, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, - 2055, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2064, - 8, 84, 10, 84, 12, 84, 2067, 9, 84, 1, 84, 1, 84, 3, 84, 2071, 8, 84, 1, - 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, - 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, + 1, 65, 3, 65, 1920, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, + 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1934, 8, 66, 1, 67, 1, 67, + 1, 67, 1, 67, 1, 67, 3, 67, 1941, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, + 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1954, 8, 67, 1, 68, + 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1961, 8, 68, 1, 68, 1, 68, 1, 68, 1, + 68, 1, 68, 1, 68, 3, 68, 1969, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1974, + 8, 69, 1, 70, 4, 70, 1977, 8, 70, 11, 70, 12, 70, 1978, 1, 71, 1, 71, 1, + 71, 1, 71, 3, 71, 1985, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, + 3, 72, 1993, 8, 72, 1, 73, 1, 73, 1, 73, 5, 73, 1998, 8, 73, 10, 73, 12, + 73, 2001, 9, 73, 1, 74, 3, 74, 2004, 8, 74, 1, 74, 1, 74, 3, 74, 2008, + 8, 74, 1, 74, 3, 74, 2011, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, + 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, + 1, 75, 3, 75, 2030, 8, 75, 1, 76, 4, 76, 2033, 8, 76, 11, 76, 12, 76, 2034, + 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2044, 8, 78, 1, + 78, 3, 78, 2047, 8, 78, 1, 79, 4, 79, 2050, 8, 79, 11, 79, 12, 79, 2051, + 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2059, 8, 80, 1, 81, 1, 81, 1, + 81, 1, 81, 5, 81, 2065, 8, 81, 10, 81, 12, 81, 2068, 9, 81, 1, 81, 1, 81, + 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 3, 83, 2081, + 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2088, 8, 84, 1, 84, 1, + 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2097, 8, 84, 10, 84, 12, + 84, 2100, 9, 84, 1, 84, 1, 84, 3, 84, 2104, 8, 84, 1, 85, 1, 85, 1, 85, + 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, - 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2111, 8, 87, 1, 88, 1, - 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, - 1, 88, 3, 88, 2126, 8, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2131, 8, 89, 10, - 89, 12, 89, 2134, 9, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2139, 8, 90, 10, 90, - 12, 90, 2142, 9, 90, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2148, 8, 91, 1, - 91, 1, 91, 3, 91, 2152, 8, 91, 1, 91, 3, 91, 2155, 8, 91, 1, 91, 1, 91, - 1, 91, 1, 91, 3, 91, 2161, 8, 91, 1, 91, 3, 91, 2164, 8, 91, 1, 92, 1, - 92, 1, 92, 1, 92, 1, 92, 3, 92, 2171, 8, 92, 1, 92, 1, 92, 3, 92, 2175, - 8, 92, 1, 92, 3, 92, 2178, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2183, 8, - 92, 1, 93, 1, 93, 1, 93, 5, 93, 2188, 8, 93, 10, 93, 12, 93, 2191, 9, 93, - 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2197, 8, 94, 1, 95, 1, 95, 1, 95, 1, - 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 5, 97, 2211, - 8, 97, 10, 97, 12, 97, 2214, 9, 97, 1, 98, 1, 98, 3, 98, 2218, 8, 98, 1, - 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2226, 8, 99, 1, 100, 1, 100, - 1, 100, 1, 100, 3, 100, 2232, 8, 100, 1, 101, 4, 101, 2235, 8, 101, 11, - 101, 12, 101, 2236, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2243, 8, 102, - 1, 103, 5, 103, 2246, 8, 103, 10, 103, 12, 103, 2249, 9, 103, 1, 104, 5, - 104, 2252, 8, 104, 10, 104, 12, 104, 2255, 9, 104, 1, 104, 1, 104, 3, 104, - 2259, 8, 104, 1, 104, 5, 104, 2262, 8, 104, 10, 104, 12, 104, 2265, 9, - 104, 1, 104, 1, 104, 3, 104, 2269, 8, 104, 1, 104, 5, 104, 2272, 8, 104, - 10, 104, 12, 104, 2275, 9, 104, 1, 104, 1, 104, 3, 104, 2279, 8, 104, 1, - 104, 5, 104, 2282, 8, 104, 10, 104, 12, 104, 2285, 9, 104, 1, 104, 1, 104, - 3, 104, 2289, 8, 104, 1, 104, 5, 104, 2292, 8, 104, 10, 104, 12, 104, 2295, - 9, 104, 1, 104, 1, 104, 3, 104, 2299, 8, 104, 1, 104, 5, 104, 2302, 8, - 104, 10, 104, 12, 104, 2305, 9, 104, 1, 104, 1, 104, 3, 104, 2309, 8, 104, - 1, 104, 5, 104, 2312, 8, 104, 10, 104, 12, 104, 2315, 9, 104, 1, 104, 1, - 104, 3, 104, 2319, 8, 104, 1, 104, 5, 104, 2322, 8, 104, 10, 104, 12, 104, - 2325, 9, 104, 1, 104, 1, 104, 3, 104, 2329, 8, 104, 1, 104, 5, 104, 2332, - 8, 104, 10, 104, 12, 104, 2335, 9, 104, 1, 104, 1, 104, 3, 104, 2339, 8, - 104, 1, 104, 5, 104, 2342, 8, 104, 10, 104, 12, 104, 2345, 9, 104, 1, 104, - 1, 104, 3, 104, 2349, 8, 104, 1, 104, 5, 104, 2352, 8, 104, 10, 104, 12, - 104, 2355, 9, 104, 1, 104, 1, 104, 3, 104, 2359, 8, 104, 1, 104, 5, 104, - 2362, 8, 104, 10, 104, 12, 104, 2365, 9, 104, 1, 104, 1, 104, 3, 104, 2369, - 8, 104, 1, 104, 5, 104, 2372, 8, 104, 10, 104, 12, 104, 2375, 9, 104, 1, - 104, 1, 104, 3, 104, 2379, 8, 104, 1, 104, 5, 104, 2382, 8, 104, 10, 104, - 12, 104, 2385, 9, 104, 1, 104, 1, 104, 3, 104, 2389, 8, 104, 1, 104, 5, - 104, 2392, 8, 104, 10, 104, 12, 104, 2395, 9, 104, 1, 104, 1, 104, 3, 104, - 2399, 8, 104, 1, 104, 5, 104, 2402, 8, 104, 10, 104, 12, 104, 2405, 9, - 104, 1, 104, 1, 104, 3, 104, 2409, 8, 104, 1, 104, 5, 104, 2412, 8, 104, - 10, 104, 12, 104, 2415, 9, 104, 1, 104, 1, 104, 3, 104, 2419, 8, 104, 1, - 104, 5, 104, 2422, 8, 104, 10, 104, 12, 104, 2425, 9, 104, 1, 104, 1, 104, - 3, 104, 2429, 8, 104, 1, 104, 5, 104, 2432, 8, 104, 10, 104, 12, 104, 2435, - 9, 104, 1, 104, 1, 104, 3, 104, 2439, 8, 104, 1, 104, 5, 104, 2442, 8, - 104, 10, 104, 12, 104, 2445, 9, 104, 1, 104, 1, 104, 3, 104, 2449, 8, 104, - 1, 104, 5, 104, 2452, 8, 104, 10, 104, 12, 104, 2455, 9, 104, 1, 104, 1, - 104, 3, 104, 2459, 8, 104, 1, 104, 5, 104, 2462, 8, 104, 10, 104, 12, 104, - 2465, 9, 104, 1, 104, 1, 104, 3, 104, 2469, 8, 104, 1, 104, 5, 104, 2472, - 8, 104, 10, 104, 12, 104, 2475, 9, 104, 1, 104, 1, 104, 3, 104, 2479, 8, - 104, 1, 104, 5, 104, 2482, 8, 104, 10, 104, 12, 104, 2485, 9, 104, 1, 104, - 1, 104, 3, 104, 2489, 8, 104, 1, 104, 5, 104, 2492, 8, 104, 10, 104, 12, - 104, 2495, 9, 104, 1, 104, 1, 104, 3, 104, 2499, 8, 104, 1, 104, 5, 104, - 2502, 8, 104, 10, 104, 12, 104, 2505, 9, 104, 1, 104, 1, 104, 3, 104, 2509, - 8, 104, 1, 104, 5, 104, 2512, 8, 104, 10, 104, 12, 104, 2515, 9, 104, 1, - 104, 1, 104, 3, 104, 2519, 8, 104, 1, 104, 5, 104, 2522, 8, 104, 10, 104, - 12, 104, 2525, 9, 104, 1, 104, 1, 104, 3, 104, 2529, 8, 104, 1, 104, 5, - 104, 2532, 8, 104, 10, 104, 12, 104, 2535, 9, 104, 1, 104, 1, 104, 3, 104, - 2539, 8, 104, 1, 104, 5, 104, 2542, 8, 104, 10, 104, 12, 104, 2545, 9, - 104, 1, 104, 1, 104, 3, 104, 2549, 8, 104, 1, 104, 5, 104, 2552, 8, 104, - 10, 104, 12, 104, 2555, 9, 104, 1, 104, 1, 104, 3, 104, 2559, 8, 104, 1, - 104, 5, 104, 2562, 8, 104, 10, 104, 12, 104, 2565, 9, 104, 1, 104, 1, 104, - 3, 104, 2569, 8, 104, 1, 104, 5, 104, 2572, 8, 104, 10, 104, 12, 104, 2575, - 9, 104, 1, 104, 1, 104, 3, 104, 2579, 8, 104, 3, 104, 2581, 8, 104, 1, - 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2588, 8, 105, 1, 106, 1, 106, - 1, 106, 3, 106, 2593, 8, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 3, - 107, 2600, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 2606, 8, 107, - 1, 107, 3, 107, 2609, 8, 107, 1, 107, 3, 107, 2612, 8, 107, 1, 108, 1, - 108, 1, 108, 1, 108, 3, 108, 2618, 8, 108, 1, 108, 3, 108, 2621, 8, 108, - 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2627, 8, 109, 4, 109, 2629, 8, - 109, 11, 109, 12, 109, 2630, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2637, - 8, 110, 1, 110, 3, 110, 2640, 8, 110, 1, 110, 3, 110, 2643, 8, 110, 1, - 111, 1, 111, 1, 111, 3, 111, 2648, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, - 2653, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, - 113, 2662, 8, 113, 3, 113, 2664, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, - 5, 113, 2670, 8, 113, 10, 113, 12, 113, 2673, 9, 113, 3, 113, 2675, 8, - 113, 1, 113, 1, 113, 3, 113, 2679, 8, 113, 1, 113, 1, 113, 3, 113, 2683, - 8, 113, 1, 113, 3, 113, 2686, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, - 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2698, 8, 114, 1, 115, - 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, + 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, + 87, 1, 87, 1, 87, 1, 87, 3, 87, 2144, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, + 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2159, + 8, 88, 1, 89, 1, 89, 1, 89, 5, 89, 2164, 8, 89, 10, 89, 12, 89, 2167, 9, + 89, 1, 90, 1, 90, 1, 90, 5, 90, 2172, 8, 90, 10, 90, 12, 90, 2175, 9, 90, + 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2181, 8, 91, 1, 91, 1, 91, 3, 91, 2185, + 8, 91, 1, 91, 3, 91, 2188, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2194, + 8, 91, 1, 91, 3, 91, 2197, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, + 92, 2204, 8, 92, 1, 92, 1, 92, 3, 92, 2208, 8, 92, 1, 92, 3, 92, 2211, + 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2216, 8, 92, 1, 93, 1, 93, 1, 93, 5, + 93, 2221, 8, 93, 10, 93, 12, 93, 2224, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, + 3, 94, 2230, 8, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, + 96, 1, 96, 1, 97, 1, 97, 1, 97, 5, 97, 2244, 8, 97, 10, 97, 12, 97, 2247, + 9, 97, 1, 98, 1, 98, 3, 98, 2251, 8, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, + 99, 1, 99, 3, 99, 2259, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, + 2265, 8, 100, 1, 101, 4, 101, 2268, 8, 101, 11, 101, 12, 101, 2269, 1, + 102, 1, 102, 1, 102, 1, 102, 3, 102, 2276, 8, 102, 1, 103, 5, 103, 2279, + 8, 103, 10, 103, 12, 103, 2282, 9, 103, 1, 104, 5, 104, 2285, 8, 104, 10, + 104, 12, 104, 2288, 9, 104, 1, 104, 1, 104, 3, 104, 2292, 8, 104, 1, 104, + 5, 104, 2295, 8, 104, 10, 104, 12, 104, 2298, 9, 104, 1, 104, 1, 104, 3, + 104, 2302, 8, 104, 1, 104, 5, 104, 2305, 8, 104, 10, 104, 12, 104, 2308, + 9, 104, 1, 104, 1, 104, 3, 104, 2312, 8, 104, 1, 104, 5, 104, 2315, 8, + 104, 10, 104, 12, 104, 2318, 9, 104, 1, 104, 1, 104, 3, 104, 2322, 8, 104, + 1, 104, 5, 104, 2325, 8, 104, 10, 104, 12, 104, 2328, 9, 104, 1, 104, 1, + 104, 3, 104, 2332, 8, 104, 1, 104, 5, 104, 2335, 8, 104, 10, 104, 12, 104, + 2338, 9, 104, 1, 104, 1, 104, 3, 104, 2342, 8, 104, 1, 104, 5, 104, 2345, + 8, 104, 10, 104, 12, 104, 2348, 9, 104, 1, 104, 1, 104, 3, 104, 2352, 8, + 104, 1, 104, 5, 104, 2355, 8, 104, 10, 104, 12, 104, 2358, 9, 104, 1, 104, + 1, 104, 3, 104, 2362, 8, 104, 1, 104, 5, 104, 2365, 8, 104, 10, 104, 12, + 104, 2368, 9, 104, 1, 104, 1, 104, 3, 104, 2372, 8, 104, 1, 104, 5, 104, + 2375, 8, 104, 10, 104, 12, 104, 2378, 9, 104, 1, 104, 1, 104, 3, 104, 2382, + 8, 104, 1, 104, 5, 104, 2385, 8, 104, 10, 104, 12, 104, 2388, 9, 104, 1, + 104, 1, 104, 3, 104, 2392, 8, 104, 1, 104, 5, 104, 2395, 8, 104, 10, 104, + 12, 104, 2398, 9, 104, 1, 104, 1, 104, 3, 104, 2402, 8, 104, 1, 104, 5, + 104, 2405, 8, 104, 10, 104, 12, 104, 2408, 9, 104, 1, 104, 1, 104, 3, 104, + 2412, 8, 104, 1, 104, 5, 104, 2415, 8, 104, 10, 104, 12, 104, 2418, 9, + 104, 1, 104, 1, 104, 3, 104, 2422, 8, 104, 1, 104, 5, 104, 2425, 8, 104, + 10, 104, 12, 104, 2428, 9, 104, 1, 104, 1, 104, 3, 104, 2432, 8, 104, 1, + 104, 5, 104, 2435, 8, 104, 10, 104, 12, 104, 2438, 9, 104, 1, 104, 1, 104, + 3, 104, 2442, 8, 104, 1, 104, 5, 104, 2445, 8, 104, 10, 104, 12, 104, 2448, + 9, 104, 1, 104, 1, 104, 3, 104, 2452, 8, 104, 1, 104, 5, 104, 2455, 8, + 104, 10, 104, 12, 104, 2458, 9, 104, 1, 104, 1, 104, 3, 104, 2462, 8, 104, + 1, 104, 5, 104, 2465, 8, 104, 10, 104, 12, 104, 2468, 9, 104, 1, 104, 1, + 104, 3, 104, 2472, 8, 104, 1, 104, 5, 104, 2475, 8, 104, 10, 104, 12, 104, + 2478, 9, 104, 1, 104, 1, 104, 3, 104, 2482, 8, 104, 1, 104, 5, 104, 2485, + 8, 104, 10, 104, 12, 104, 2488, 9, 104, 1, 104, 1, 104, 3, 104, 2492, 8, + 104, 1, 104, 5, 104, 2495, 8, 104, 10, 104, 12, 104, 2498, 9, 104, 1, 104, + 1, 104, 3, 104, 2502, 8, 104, 1, 104, 5, 104, 2505, 8, 104, 10, 104, 12, + 104, 2508, 9, 104, 1, 104, 1, 104, 3, 104, 2512, 8, 104, 1, 104, 5, 104, + 2515, 8, 104, 10, 104, 12, 104, 2518, 9, 104, 1, 104, 1, 104, 3, 104, 2522, + 8, 104, 1, 104, 5, 104, 2525, 8, 104, 10, 104, 12, 104, 2528, 9, 104, 1, + 104, 1, 104, 3, 104, 2532, 8, 104, 1, 104, 5, 104, 2535, 8, 104, 10, 104, + 12, 104, 2538, 9, 104, 1, 104, 1, 104, 3, 104, 2542, 8, 104, 1, 104, 5, + 104, 2545, 8, 104, 10, 104, 12, 104, 2548, 9, 104, 1, 104, 1, 104, 3, 104, + 2552, 8, 104, 1, 104, 5, 104, 2555, 8, 104, 10, 104, 12, 104, 2558, 9, + 104, 1, 104, 1, 104, 3, 104, 2562, 8, 104, 1, 104, 5, 104, 2565, 8, 104, + 10, 104, 12, 104, 2568, 9, 104, 1, 104, 1, 104, 3, 104, 2572, 8, 104, 1, + 104, 5, 104, 2575, 8, 104, 10, 104, 12, 104, 2578, 9, 104, 1, 104, 1, 104, + 3, 104, 2582, 8, 104, 1, 104, 5, 104, 2585, 8, 104, 10, 104, 12, 104, 2588, + 9, 104, 1, 104, 1, 104, 3, 104, 2592, 8, 104, 1, 104, 5, 104, 2595, 8, + 104, 10, 104, 12, 104, 2598, 9, 104, 1, 104, 1, 104, 3, 104, 2602, 8, 104, + 1, 104, 5, 104, 2605, 8, 104, 10, 104, 12, 104, 2608, 9, 104, 1, 104, 1, + 104, 3, 104, 2612, 8, 104, 3, 104, 2614, 8, 104, 1, 105, 1, 105, 1, 105, + 1, 105, 1, 105, 3, 105, 2621, 8, 105, 1, 106, 1, 106, 1, 106, 3, 106, 2626, + 8, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 3, 107, 2633, 8, 107, 1, + 107, 1, 107, 1, 107, 1, 107, 3, 107, 2639, 8, 107, 1, 107, 3, 107, 2642, + 8, 107, 1, 107, 3, 107, 2645, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, + 108, 2651, 8, 108, 1, 108, 3, 108, 2654, 8, 108, 1, 109, 1, 109, 1, 109, + 1, 109, 3, 109, 2660, 8, 109, 4, 109, 2662, 8, 109, 11, 109, 12, 109, 2663, + 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 2670, 8, 110, 1, 110, 3, 110, 2673, + 8, 110, 1, 110, 3, 110, 2676, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2681, + 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2686, 8, 112, 1, 113, 1, 113, 1, + 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2695, 8, 113, 3, 113, 2697, + 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2703, 8, 113, 10, 113, + 12, 113, 2706, 9, 113, 3, 113, 2708, 8, 113, 1, 113, 1, 113, 3, 113, 2712, + 8, 113, 1, 113, 1, 113, 3, 113, 2716, 8, 113, 1, 113, 3, 113, 2719, 8, + 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, + 114, 1, 114, 3, 114, 2731, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, - 1, 115, 3, 115, 2720, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, - 116, 1, 116, 1, 116, 1, 116, 5, 116, 2731, 8, 116, 10, 116, 12, 116, 2734, - 9, 116, 1, 116, 1, 116, 3, 116, 2738, 8, 116, 1, 116, 1, 116, 1, 116, 1, - 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2748, 8, 117, 1, 117, 1, 117, - 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 3, 118, 2758, 8, 118, 1, - 118, 1, 118, 1, 118, 3, 118, 2763, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, - 1, 121, 1, 121, 3, 121, 2771, 8, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, - 123, 3, 123, 2778, 8, 123, 1, 123, 1, 123, 3, 123, 2782, 8, 123, 1, 123, - 1, 123, 3, 123, 2786, 8, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, - 125, 1, 125, 5, 125, 2795, 8, 125, 10, 125, 12, 125, 2798, 9, 125, 1, 125, - 1, 125, 1, 125, 1, 125, 3, 125, 2804, 8, 125, 1, 126, 1, 126, 1, 126, 1, - 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 3, - 129, 2818, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 2825, - 8, 129, 1, 129, 1, 129, 3, 129, 2829, 8, 129, 1, 130, 1, 130, 3, 130, 2833, - 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2841, 8, - 130, 1, 130, 1, 130, 3, 130, 2845, 8, 130, 1, 131, 1, 131, 3, 131, 2849, - 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, - 3, 131, 2859, 8, 131, 3, 131, 2861, 8, 131, 1, 131, 1, 131, 3, 131, 2865, - 8, 131, 1, 131, 3, 131, 2868, 8, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2873, - 8, 131, 1, 131, 3, 131, 2876, 8, 131, 1, 131, 3, 131, 2879, 8, 131, 1, - 132, 1, 132, 3, 132, 2883, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, - 1, 132, 3, 132, 2891, 8, 132, 1, 132, 1, 132, 3, 132, 2895, 8, 132, 1, - 133, 1, 133, 1, 133, 5, 133, 2900, 8, 133, 10, 133, 12, 133, 2903, 9, 133, - 1, 134, 1, 134, 3, 134, 2907, 8, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, - 135, 1, 135, 1, 135, 1, 135, 3, 135, 2917, 8, 135, 1, 135, 3, 135, 2920, - 8, 135, 1, 135, 1, 135, 3, 135, 2924, 8, 135, 1, 135, 1, 135, 3, 135, 2928, - 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 2933, 8, 136, 10, 136, 12, 136, - 2936, 9, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2942, 8, 137, 1, - 137, 1, 137, 1, 137, 1, 137, 3, 137, 2948, 8, 137, 1, 138, 1, 138, 1, 138, - 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, - 3, 140, 2962, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2969, - 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, - 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2984, 8, 142, 1, 143, 1, - 143, 3, 143, 2988, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, - 2995, 8, 143, 1, 143, 5, 143, 2998, 8, 143, 10, 143, 12, 143, 3001, 9, - 143, 1, 143, 3, 143, 3004, 8, 143, 1, 143, 3, 143, 3007, 8, 143, 1, 143, - 3, 143, 3010, 8, 143, 1, 143, 1, 143, 3, 143, 3014, 8, 143, 1, 144, 1, - 144, 1, 145, 1, 145, 3, 145, 3020, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, - 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, - 1, 149, 1, 149, 1, 149, 3, 149, 3038, 8, 149, 1, 149, 1, 149, 1, 149, 3, - 149, 3043, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, - 3051, 8, 149, 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, 3, 151, 3070, 8, 151, 1, 152, 1, 152, 3, 152, 3074, 8, 152, 1, 152, - 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3081, 8, 152, 1, 152, 3, 152, 3084, - 8, 152, 1, 153, 1, 153, 1, 153, 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, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, - 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, - 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, - 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, - 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, - 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3152, 8, 155, 1, 156, 1, 156, 1, - 156, 5, 156, 3157, 8, 156, 10, 156, 12, 156, 3160, 9, 156, 1, 157, 1, 157, - 3, 157, 3164, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, + 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2753, 8, 115, 1, + 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, + 116, 2764, 8, 116, 10, 116, 12, 116, 2767, 9, 116, 1, 116, 1, 116, 3, 116, + 2771, 8, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, + 117, 3, 117, 2781, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, + 1, 118, 1, 118, 3, 118, 2791, 8, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2796, + 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 3, 121, 2804, 8, + 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 2811, 8, 123, 1, 123, + 1, 123, 3, 123, 2815, 8, 123, 1, 123, 1, 123, 3, 123, 2819, 8, 123, 1, + 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2828, 8, 125, + 10, 125, 12, 125, 2831, 9, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, + 2837, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, + 127, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2851, 8, 129, 1, 129, 1, 129, + 1, 129, 1, 129, 1, 129, 3, 129, 2858, 8, 129, 1, 129, 1, 129, 3, 129, 2862, + 8, 129, 1, 130, 1, 130, 3, 130, 2866, 8, 130, 1, 130, 1, 130, 1, 130, 1, + 130, 1, 130, 1, 130, 3, 130, 2874, 8, 130, 1, 130, 1, 130, 3, 130, 2878, + 8, 130, 1, 131, 1, 131, 3, 131, 2882, 8, 131, 1, 131, 1, 131, 1, 131, 1, + 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2892, 8, 131, 3, 131, 2894, + 8, 131, 1, 131, 1, 131, 3, 131, 2898, 8, 131, 1, 131, 3, 131, 2901, 8, + 131, 1, 131, 1, 131, 1, 131, 3, 131, 2906, 8, 131, 1, 131, 3, 131, 2909, + 8, 131, 1, 131, 3, 131, 2912, 8, 131, 1, 132, 1, 132, 3, 132, 2916, 8, + 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2924, 8, 132, + 1, 132, 1, 132, 3, 132, 2928, 8, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2933, + 8, 133, 10, 133, 12, 133, 2936, 9, 133, 1, 134, 1, 134, 3, 134, 2940, 8, + 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, + 135, 2950, 8, 135, 1, 135, 3, 135, 2953, 8, 135, 1, 135, 1, 135, 3, 135, + 2957, 8, 135, 1, 135, 1, 135, 3, 135, 2961, 8, 135, 1, 136, 1, 136, 1, + 136, 5, 136, 2966, 8, 136, 10, 136, 12, 136, 2969, 9, 136, 1, 137, 1, 137, + 1, 137, 1, 137, 3, 137, 2975, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, + 137, 2981, 8, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, + 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2995, 8, 140, 1, 140, 1, + 140, 1, 140, 1, 140, 1, 140, 3, 140, 3002, 8, 140, 1, 141, 1, 141, 1, 141, + 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, + 1, 142, 3, 142, 3017, 8, 142, 1, 143, 1, 143, 3, 143, 3021, 8, 143, 1, + 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3028, 8, 143, 1, 143, 5, 143, + 3031, 8, 143, 10, 143, 12, 143, 3034, 9, 143, 1, 143, 3, 143, 3037, 8, + 143, 1, 143, 3, 143, 3040, 8, 143, 1, 143, 3, 143, 3043, 8, 143, 1, 143, + 1, 143, 3, 143, 3047, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 3053, + 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, + 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, + 3071, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3076, 8, 149, 1, 149, 1, + 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3084, 8, 149, 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, 3, 151, 3103, 8, 151, 1, + 152, 1, 152, 3, 152, 3107, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, + 3, 152, 3114, 8, 152, 1, 152, 3, 152, 3117, 8, 152, 1, 153, 1, 153, 1, + 153, 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, 155, 1, 155, 1, 155, 1, + 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, + 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, + 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, + 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, + 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, + 155, 3, 155, 3185, 8, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3190, 8, 156, + 10, 156, 12, 156, 3193, 9, 156, 1, 157, 1, 157, 3, 157, 3197, 8, 157, 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, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, - 159, 1, 159, 1, 159, 1, 159, 3, 159, 3194, 8, 159, 1, 160, 1, 160, 1, 160, - 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, - 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3215, 8, - 163, 10, 163, 12, 163, 3218, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, - 165, 1, 165, 1, 165, 1, 165, 3, 165, 3228, 8, 165, 1, 166, 1, 166, 1, 166, - 5, 166, 3233, 8, 166, 10, 166, 12, 166, 3236, 9, 166, 1, 167, 1, 167, 1, - 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, - 169, 1, 169, 1, 169, 3, 169, 3252, 8, 169, 1, 169, 3, 169, 3255, 8, 169, - 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 4, 170, 3262, 8, 170, 11, 170, - 12, 170, 3263, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, - 3272, 8, 172, 10, 172, 12, 172, 3275, 9, 172, 1, 173, 1, 173, 1, 173, 1, - 173, 1, 174, 1, 174, 1, 174, 5, 174, 3284, 8, 174, 10, 174, 12, 174, 3287, - 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, - 3296, 8, 176, 10, 176, 12, 176, 3299, 9, 176, 1, 177, 1, 177, 1, 177, 1, - 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 3309, 8, 178, 1, 178, 3, 178, - 3312, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, - 181, 1, 181, 5, 181, 3323, 8, 181, 10, 181, 12, 181, 3326, 9, 181, 1, 182, - 1, 182, 1, 182, 5, 182, 3331, 8, 182, 10, 182, 12, 182, 3334, 9, 182, 1, - 183, 1, 183, 1, 183, 3, 183, 3339, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, - 3, 184, 3345, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, - 185, 3353, 8, 185, 1, 186, 1, 186, 1, 186, 5, 186, 3358, 8, 186, 10, 186, - 12, 186, 3361, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, - 3368, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3375, 8, - 188, 1, 189, 1, 189, 1, 189, 5, 189, 3380, 8, 189, 10, 189, 12, 189, 3383, - 9, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, - 3392, 8, 191, 10, 191, 12, 191, 3395, 9, 191, 3, 191, 3397, 8, 191, 1, - 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 3407, - 8, 193, 10, 193, 12, 193, 3410, 9, 193, 1, 193, 1, 193, 1, 194, 1, 194, + 159, 3, 159, 3227, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, + 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, + 1, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3248, 8, 163, 10, 163, 12, 163, + 3251, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, + 165, 3, 165, 3261, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3266, 8, 166, + 10, 166, 12, 166, 3269, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, + 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, + 3, 169, 3285, 8, 169, 1, 169, 3, 169, 3288, 8, 169, 1, 169, 1, 169, 1, + 169, 1, 169, 1, 170, 4, 170, 3295, 8, 170, 11, 170, 12, 170, 3296, 1, 171, + 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3305, 8, 172, 10, 172, + 12, 172, 3308, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, + 1, 174, 5, 174, 3317, 8, 174, 10, 174, 12, 174, 3320, 9, 174, 1, 175, 1, + 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3329, 8, 176, 10, + 176, 12, 176, 3332, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, + 177, 1, 178, 1, 178, 3, 178, 3342, 8, 178, 1, 178, 3, 178, 3345, 8, 178, + 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, + 5, 181, 3356, 8, 181, 10, 181, 12, 181, 3359, 9, 181, 1, 182, 1, 182, 1, + 182, 5, 182, 3364, 8, 182, 10, 182, 12, 182, 3367, 9, 182, 1, 183, 1, 183, + 1, 183, 3, 183, 3372, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3378, + 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 3386, 8, + 185, 1, 186, 1, 186, 1, 186, 5, 186, 3391, 8, 186, 10, 186, 12, 186, 3394, + 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3401, 8, 187, 1, + 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 3408, 8, 188, 1, 189, 1, 189, + 1, 189, 5, 189, 3413, 8, 189, 10, 189, 12, 189, 3416, 9, 189, 1, 190, 1, + 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 3425, 8, 191, 10, + 191, 12, 191, 3428, 9, 191, 3, 191, 3430, 8, 191, 1, 191, 1, 191, 1, 192, + 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 3440, 8, 193, 10, 193, + 12, 193, 3443, 9, 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, 194, 1, 194, 1, 194, - 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, - 3433, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3441, - 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 3447, 8, 195, 10, 195, - 12, 195, 3450, 9, 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, 196, 1, 196, 1, 196, - 1, 196, 1, 196, 3, 196, 3469, 8, 196, 1, 197, 1, 197, 5, 197, 3473, 8, - 197, 10, 197, 12, 197, 3476, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, - 198, 3, 198, 3483, 8, 198, 1, 199, 1, 199, 1, 199, 3, 199, 3488, 8, 199, - 1, 199, 3, 199, 3491, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, - 201, 5, 201, 3499, 8, 201, 10, 201, 12, 201, 3502, 9, 201, 1, 201, 1, 201, - 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, + 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3466, 8, 194, 1, + 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 3474, 8, 194, 1, 195, + 1, 195, 1, 195, 1, 195, 5, 195, 3480, 8, 195, 10, 195, 12, 195, 3483, 9, + 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, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, + 196, 3502, 8, 196, 1, 197, 1, 197, 5, 197, 3506, 8, 197, 10, 197, 12, 197, + 3509, 9, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 3516, 8, + 198, 1, 199, 1, 199, 1, 199, 3, 199, 3521, 8, 199, 1, 199, 3, 199, 3524, + 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3530, 8, 199, 1, 199, 3, + 199, 3533, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3539, 8, 199, + 1, 199, 3, 199, 3542, 8, 199, 3, 199, 3544, 8, 199, 1, 200, 1, 200, 1, + 201, 1, 201, 1, 201, 1, 201, 5, 201, 3552, 8, 201, 10, 201, 12, 201, 3555, + 9, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, @@ -657,2829 +664,2853 @@ func mdlparserParserInit() { 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, - 3, 202, 3596, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 5, - 204, 3604, 8, 204, 10, 204, 12, 204, 3607, 9, 204, 1, 204, 1, 204, 1, 205, - 1, 205, 1, 205, 3, 205, 3614, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, - 205, 1, 205, 5, 205, 3622, 8, 205, 10, 205, 12, 205, 3625, 9, 205, 1, 205, - 3, 205, 3628, 8, 205, 3, 205, 3630, 8, 205, 1, 205, 1, 205, 1, 205, 1, - 205, 5, 205, 3636, 8, 205, 10, 205, 12, 205, 3639, 9, 205, 3, 205, 3641, - 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3646, 8, 205, 1, 205, 1, 205, 1, - 205, 3, 205, 3651, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3657, - 8, 205, 1, 206, 1, 206, 3, 206, 3661, 8, 206, 1, 206, 1, 206, 3, 206, 3665, - 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3671, 8, 206, 1, 206, 1, - 206, 1, 206, 1, 206, 3, 206, 3677, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, - 3682, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3687, 8, 206, 1, 206, 1, - 206, 1, 206, 3, 206, 3692, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3697, - 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 3703, 8, 207, 10, 207, - 12, 207, 3706, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, - 1, 208, 1, 208, 3, 208, 3716, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3721, - 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3727, 8, 209, 5, 209, 3729, - 8, 209, 10, 209, 12, 209, 3732, 9, 209, 1, 210, 1, 210, 1, 210, 1, 210, - 1, 210, 1, 210, 3, 210, 3740, 8, 210, 3, 210, 3742, 8, 210, 3, 210, 3744, - 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 3750, 8, 211, 10, 211, - 12, 211, 3753, 9, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, - 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, - 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, - 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3786, 8, - 217, 10, 217, 12, 217, 3789, 9, 217, 3, 217, 3791, 8, 217, 1, 217, 3, 217, - 3794, 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 3800, 8, 218, 10, - 218, 12, 218, 3803, 9, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3809, - 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, - 1, 219, 3, 219, 3820, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, - 221, 1, 221, 3, 221, 3829, 8, 221, 1, 221, 1, 221, 5, 221, 3833, 8, 221, - 10, 221, 12, 221, 3836, 9, 221, 1, 221, 1, 221, 1, 222, 4, 222, 3841, 8, - 222, 11, 222, 12, 222, 3842, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, - 224, 1, 224, 3, 224, 3852, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, - 3858, 8, 225, 11, 225, 12, 225, 3859, 1, 225, 1, 225, 5, 225, 3864, 8, - 225, 10, 225, 12, 225, 3867, 9, 225, 1, 225, 3, 225, 3870, 8, 225, 1, 226, - 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3879, 8, 226, 1, - 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, - 226, 3, 226, 3891, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3897, - 8, 226, 3, 226, 3899, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, - 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3912, 8, 227, 5, 227, - 3914, 8, 227, 10, 227, 12, 227, 3917, 9, 227, 1, 227, 1, 227, 1, 227, 1, - 227, 1, 227, 1, 227, 1, 227, 5, 227, 3926, 8, 227, 10, 227, 12, 227, 3929, - 9, 227, 1, 227, 1, 227, 3, 227, 3933, 8, 227, 3, 227, 3935, 8, 227, 1, - 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, - 229, 1, 229, 1, 229, 1, 229, 3, 229, 3950, 8, 229, 1, 230, 4, 230, 3953, - 8, 230, 11, 230, 12, 230, 3954, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, - 1, 231, 1, 231, 3, 231, 3964, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, - 232, 5, 232, 3971, 8, 232, 10, 232, 12, 232, 3974, 9, 232, 3, 232, 3976, - 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, - 3985, 8, 233, 10, 233, 12, 233, 3988, 9, 233, 1, 233, 1, 233, 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, 3, 235, 4010, - 8, 235, 1, 236, 1, 236, 1, 237, 3, 237, 4015, 8, 237, 1, 237, 1, 237, 1, - 237, 3, 237, 4020, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 5, 237, - 4027, 8, 237, 10, 237, 12, 237, 4030, 9, 237, 1, 237, 1, 237, 1, 237, 1, - 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, - 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, - 239, 1, 239, 1, 239, 3, 239, 4056, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, - 1, 240, 3, 240, 4063, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, - 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 4078, - 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, - 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 4095, 8, - 243, 10, 243, 12, 243, 4098, 9, 243, 1, 243, 1, 243, 3, 243, 4102, 8, 243, - 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 4111, 8, - 244, 10, 244, 12, 244, 4114, 9, 244, 1, 244, 1, 244, 3, 244, 4118, 8, 244, - 1, 244, 1, 244, 5, 244, 4122, 8, 244, 10, 244, 12, 244, 4125, 9, 244, 1, - 244, 3, 244, 4128, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, - 3, 245, 4136, 8, 245, 1, 245, 3, 245, 4139, 8, 245, 1, 246, 1, 246, 1, - 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, - 248, 5, 248, 4153, 8, 248, 10, 248, 12, 248, 4156, 9, 248, 1, 249, 1, 249, - 1, 249, 1, 249, 1, 249, 3, 249, 4163, 8, 249, 1, 249, 3, 249, 4166, 8, - 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4173, 8, 250, 1, 250, - 1, 250, 1, 250, 1, 250, 5, 250, 4179, 8, 250, 10, 250, 12, 250, 4182, 9, - 250, 1, 250, 1, 250, 3, 250, 4186, 8, 250, 1, 250, 3, 250, 4189, 8, 250, - 1, 250, 3, 250, 4192, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, - 251, 5, 251, 4200, 8, 251, 10, 251, 12, 251, 4203, 9, 251, 3, 251, 4205, - 8, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 4212, 8, 252, 1, - 252, 3, 252, 4215, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 4221, - 8, 253, 10, 253, 12, 253, 4224, 9, 253, 1, 253, 1, 253, 1, 254, 1, 254, - 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, - 5, 254, 4239, 8, 254, 10, 254, 12, 254, 4242, 9, 254, 1, 254, 1, 254, 1, - 254, 3, 254, 4247, 8, 254, 1, 254, 3, 254, 4250, 8, 254, 1, 255, 1, 255, - 1, 255, 3, 255, 4255, 8, 255, 1, 255, 5, 255, 4258, 8, 255, 10, 255, 12, - 255, 4261, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 4268, - 8, 256, 10, 256, 12, 256, 4271, 9, 256, 1, 256, 1, 256, 1, 257, 1, 257, - 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, - 1, 258, 5, 258, 4287, 8, 258, 10, 258, 12, 258, 4290, 9, 258, 1, 258, 1, - 258, 1, 258, 4, 258, 4295, 8, 258, 11, 258, 12, 258, 4296, 1, 258, 1, 258, - 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 4307, 8, 259, 10, - 259, 12, 259, 4310, 9, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4316, - 8, 259, 1, 259, 1, 259, 3, 259, 4320, 8, 259, 1, 259, 1, 259, 1, 260, 1, + 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3653, 8, + 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 5, 204, 3661, 8, 204, + 10, 204, 12, 204, 3664, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, + 3, 205, 3671, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, + 205, 3679, 8, 205, 10, 205, 12, 205, 3682, 9, 205, 1, 205, 3, 205, 3685, + 8, 205, 3, 205, 3687, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3693, + 8, 205, 10, 205, 12, 205, 3696, 9, 205, 3, 205, 3698, 8, 205, 1, 205, 1, + 205, 1, 205, 3, 205, 3703, 8, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3708, + 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3714, 8, 205, 1, 206, 1, + 206, 3, 206, 3718, 8, 206, 1, 206, 1, 206, 3, 206, 3722, 8, 206, 1, 206, + 1, 206, 1, 206, 1, 206, 3, 206, 3728, 8, 206, 1, 206, 1, 206, 1, 206, 1, + 206, 3, 206, 3734, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3739, 8, 206, + 1, 206, 1, 206, 1, 206, 3, 206, 3744, 8, 206, 1, 206, 1, 206, 1, 206, 3, + 206, 3749, 8, 206, 1, 206, 1, 206, 1, 206, 3, 206, 3754, 8, 206, 1, 207, + 1, 207, 1, 207, 1, 207, 5, 207, 3760, 8, 207, 10, 207, 12, 207, 3763, 9, + 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, + 208, 3773, 8, 208, 1, 209, 1, 209, 1, 209, 3, 209, 3778, 8, 209, 1, 209, + 1, 209, 1, 209, 1, 209, 3, 209, 3784, 8, 209, 5, 209, 3786, 8, 209, 10, + 209, 12, 209, 3789, 9, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, + 210, 3, 210, 3797, 8, 210, 3, 210, 3799, 8, 210, 3, 210, 3801, 8, 210, + 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 3807, 8, 211, 10, 211, 12, 211, + 3810, 9, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, + 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, + 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, + 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 3843, 8, 217, 10, + 217, 12, 217, 3846, 9, 217, 3, 217, 3848, 8, 217, 1, 217, 3, 217, 3851, + 8, 217, 1, 218, 1, 218, 1, 218, 1, 218, 5, 218, 3857, 8, 218, 10, 218, + 12, 218, 3860, 9, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3866, 8, + 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, + 219, 3, 219, 3877, 8, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, + 1, 221, 3, 221, 3886, 8, 221, 1, 221, 1, 221, 5, 221, 3890, 8, 221, 10, + 221, 12, 221, 3893, 9, 221, 1, 221, 1, 221, 1, 222, 4, 222, 3898, 8, 222, + 11, 222, 12, 222, 3899, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, + 1, 224, 3, 224, 3909, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3915, + 8, 225, 11, 225, 12, 225, 3916, 1, 225, 1, 225, 5, 225, 3921, 8, 225, 10, + 225, 12, 225, 3924, 9, 225, 1, 225, 3, 225, 3927, 8, 225, 1, 226, 1, 226, + 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3936, 8, 226, 1, 226, 1, + 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, + 226, 3948, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3954, 8, 226, + 3, 226, 3956, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, + 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3969, 8, 227, 5, 227, 3971, + 8, 227, 10, 227, 12, 227, 3974, 9, 227, 1, 227, 1, 227, 1, 227, 1, 227, + 1, 227, 1, 227, 1, 227, 5, 227, 3983, 8, 227, 10, 227, 12, 227, 3986, 9, + 227, 1, 227, 1, 227, 3, 227, 3990, 8, 227, 3, 227, 3992, 8, 227, 1, 227, + 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, + 1, 229, 1, 229, 1, 229, 3, 229, 4007, 8, 229, 1, 230, 4, 230, 4010, 8, + 230, 11, 230, 12, 230, 4011, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, + 231, 1, 231, 3, 231, 4021, 8, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, + 5, 232, 4028, 8, 232, 10, 232, 12, 232, 4031, 9, 232, 3, 232, 4033, 8, + 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 4042, + 8, 233, 10, 233, 12, 233, 4045, 9, 233, 1, 233, 1, 233, 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, 3, 235, 4067, 8, + 235, 1, 236, 1, 236, 1, 237, 3, 237, 4072, 8, 237, 1, 237, 1, 237, 1, 237, + 3, 237, 4077, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 5, 237, 4084, + 8, 237, 10, 237, 12, 237, 4087, 9, 237, 1, 237, 1, 237, 1, 237, 1, 237, + 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, + 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, + 1, 239, 1, 239, 3, 239, 4113, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, + 240, 3, 240, 4120, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, + 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 4135, 8, + 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, + 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 5, 243, 4152, 8, 243, + 10, 243, 12, 243, 4155, 9, 243, 1, 243, 1, 243, 3, 243, 4159, 8, 243, 1, + 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 4168, 8, 244, + 10, 244, 12, 244, 4171, 9, 244, 1, 244, 1, 244, 3, 244, 4175, 8, 244, 1, + 244, 1, 244, 5, 244, 4179, 8, 244, 10, 244, 12, 244, 4182, 9, 244, 1, 244, + 3, 244, 4185, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, + 245, 4193, 8, 245, 1, 245, 3, 245, 4196, 8, 245, 1, 246, 1, 246, 1, 246, + 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, + 5, 248, 4210, 8, 248, 10, 248, 12, 248, 4213, 9, 248, 1, 249, 1, 249, 1, + 249, 1, 249, 1, 249, 3, 249, 4220, 8, 249, 1, 249, 3, 249, 4223, 8, 249, + 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4230, 8, 250, 1, 250, 1, + 250, 1, 250, 1, 250, 5, 250, 4236, 8, 250, 10, 250, 12, 250, 4239, 9, 250, + 1, 250, 1, 250, 3, 250, 4243, 8, 250, 1, 250, 3, 250, 4246, 8, 250, 1, + 250, 3, 250, 4249, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, + 5, 251, 4257, 8, 251, 10, 251, 12, 251, 4260, 9, 251, 3, 251, 4262, 8, + 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 4269, 8, 252, 1, 252, + 3, 252, 4272, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 4278, 8, + 253, 10, 253, 12, 253, 4281, 9, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, + 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 5, + 254, 4296, 8, 254, 10, 254, 12, 254, 4299, 9, 254, 1, 254, 1, 254, 1, 254, + 3, 254, 4304, 8, 254, 1, 254, 3, 254, 4307, 8, 254, 1, 255, 1, 255, 1, + 255, 3, 255, 4312, 8, 255, 1, 255, 5, 255, 4315, 8, 255, 10, 255, 12, 255, + 4318, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 4325, 8, + 256, 10, 256, 12, 256, 4328, 9, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, + 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, + 258, 5, 258, 4344, 8, 258, 10, 258, 12, 258, 4347, 9, 258, 1, 258, 1, 258, + 1, 258, 4, 258, 4352, 8, 258, 11, 258, 12, 258, 4353, 1, 258, 1, 258, 1, + 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 4364, 8, 259, 10, + 259, 12, 259, 4367, 9, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4373, + 8, 259, 1, 259, 1, 259, 3, 259, 4377, 8, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, - 261, 4334, 8, 261, 1, 261, 1, 261, 3, 261, 4338, 8, 261, 1, 261, 1, 261, - 3, 261, 4342, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4347, 8, 261, 1, - 261, 1, 261, 1, 261, 3, 261, 4352, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, - 4357, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4364, 8, - 261, 1, 261, 3, 261, 4367, 8, 261, 1, 262, 5, 262, 4370, 8, 262, 10, 262, - 12, 262, 4373, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, + 261, 4391, 8, 261, 1, 261, 1, 261, 3, 261, 4395, 8, 261, 1, 261, 1, 261, + 3, 261, 4399, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4404, 8, 261, 1, + 261, 1, 261, 1, 261, 3, 261, 4409, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, + 4414, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4421, 8, + 261, 1, 261, 3, 261, 4424, 8, 261, 1, 262, 5, 262, 4427, 8, 262, 10, 262, + 12, 262, 4430, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, - 1, 263, 1, 263, 1, 263, 3, 263, 4402, 8, 263, 1, 264, 1, 264, 1, 264, 1, - 264, 1, 264, 1, 264, 3, 264, 4410, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, - 4415, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4420, 8, 264, 1, 264, 1, - 264, 3, 264, 4424, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4429, 8, 264, - 1, 264, 1, 264, 3, 264, 4433, 8, 264, 1, 264, 1, 264, 4, 264, 4437, 8, - 264, 11, 264, 12, 264, 4438, 3, 264, 4441, 8, 264, 1, 264, 1, 264, 1, 264, - 4, 264, 4446, 8, 264, 11, 264, 12, 264, 4447, 3, 264, 4450, 8, 264, 1, - 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4459, 8, 264, - 1, 264, 1, 264, 1, 264, 3, 264, 4464, 8, 264, 1, 264, 1, 264, 1, 264, 3, - 264, 4469, 8, 264, 1, 264, 1, 264, 3, 264, 4473, 8, 264, 1, 264, 1, 264, - 1, 264, 3, 264, 4478, 8, 264, 1, 264, 1, 264, 3, 264, 4482, 8, 264, 1, - 264, 1, 264, 4, 264, 4486, 8, 264, 11, 264, 12, 264, 4487, 3, 264, 4490, - 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4495, 8, 264, 11, 264, 12, 264, - 4496, 3, 264, 4499, 8, 264, 3, 264, 4501, 8, 264, 1, 265, 1, 265, 1, 265, - 3, 265, 4506, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4512, 8, - 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4518, 8, 265, 1, 265, 1, 265, - 1, 265, 1, 265, 3, 265, 4524, 8, 265, 1, 265, 1, 265, 3, 265, 4528, 8, - 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4534, 8, 265, 3, 265, 4536, + 1, 263, 1, 263, 1, 263, 3, 263, 4459, 8, 263, 1, 264, 1, 264, 1, 264, 1, + 264, 1, 264, 1, 264, 3, 264, 4467, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, + 4472, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4477, 8, 264, 1, 264, 1, + 264, 3, 264, 4481, 8, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4486, 8, 264, + 1, 264, 1, 264, 3, 264, 4490, 8, 264, 1, 264, 1, 264, 4, 264, 4494, 8, + 264, 11, 264, 12, 264, 4495, 3, 264, 4498, 8, 264, 1, 264, 1, 264, 1, 264, + 4, 264, 4503, 8, 264, 11, 264, 12, 264, 4504, 3, 264, 4507, 8, 264, 1, + 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4516, 8, 264, + 1, 264, 1, 264, 1, 264, 3, 264, 4521, 8, 264, 1, 264, 1, 264, 1, 264, 3, + 264, 4526, 8, 264, 1, 264, 1, 264, 3, 264, 4530, 8, 264, 1, 264, 1, 264, + 1, 264, 3, 264, 4535, 8, 264, 1, 264, 1, 264, 3, 264, 4539, 8, 264, 1, + 264, 1, 264, 4, 264, 4543, 8, 264, 11, 264, 12, 264, 4544, 3, 264, 4547, + 8, 264, 1, 264, 1, 264, 1, 264, 4, 264, 4552, 8, 264, 11, 264, 12, 264, + 4553, 3, 264, 4556, 8, 264, 3, 264, 4558, 8, 264, 1, 265, 1, 265, 1, 265, + 3, 265, 4563, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4569, 8, + 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4575, 8, 265, 1, 265, 1, 265, + 1, 265, 1, 265, 3, 265, 4581, 8, 265, 1, 265, 1, 265, 3, 265, 4585, 8, + 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 4591, 8, 265, 3, 265, 4593, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, - 1, 267, 1, 267, 3, 267, 4548, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, - 267, 5, 267, 4555, 8, 267, 10, 267, 12, 267, 4558, 9, 267, 1, 267, 1, 267, - 3, 267, 4562, 8, 267, 1, 267, 1, 267, 4, 267, 4566, 8, 267, 11, 267, 12, - 267, 4567, 3, 267, 4570, 8, 267, 1, 267, 1, 267, 1, 267, 4, 267, 4575, - 8, 267, 11, 267, 12, 267, 4576, 3, 267, 4579, 8, 267, 1, 268, 1, 268, 1, - 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4590, 8, 269, - 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 4597, 8, 269, 10, 269, - 12, 269, 4600, 9, 269, 1, 269, 1, 269, 3, 269, 4604, 8, 269, 1, 270, 1, - 270, 3, 270, 4608, 8, 270, 1, 270, 1, 270, 3, 270, 4612, 8, 270, 1, 270, - 1, 270, 4, 270, 4616, 8, 270, 11, 270, 12, 270, 4617, 3, 270, 4620, 8, + 1, 267, 1, 267, 3, 267, 4605, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, + 267, 5, 267, 4612, 8, 267, 10, 267, 12, 267, 4615, 9, 267, 1, 267, 1, 267, + 3, 267, 4619, 8, 267, 1, 267, 1, 267, 4, 267, 4623, 8, 267, 11, 267, 12, + 267, 4624, 3, 267, 4627, 8, 267, 1, 267, 1, 267, 1, 267, 4, 267, 4632, + 8, 267, 11, 267, 12, 267, 4633, 3, 267, 4636, 8, 267, 1, 268, 1, 268, 1, + 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4647, 8, 269, + 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 4654, 8, 269, 10, 269, + 12, 269, 4657, 9, 269, 1, 269, 1, 269, 3, 269, 4661, 8, 269, 1, 270, 1, + 270, 3, 270, 4665, 8, 270, 1, 270, 1, 270, 3, 270, 4669, 8, 270, 1, 270, + 1, 270, 4, 270, 4673, 8, 270, 11, 270, 12, 270, 4674, 3, 270, 4677, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 1, - 272, 1, 272, 3, 272, 4632, 8, 272, 1, 272, 4, 272, 4635, 8, 272, 11, 272, - 12, 272, 4636, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, - 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4650, 8, 274, 1, 275, 1, 275, 1, - 275, 1, 275, 3, 275, 4656, 8, 275, 1, 275, 1, 275, 3, 275, 4660, 8, 275, - 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 4667, 8, 276, 1, 276, 1, - 276, 1, 276, 4, 276, 4672, 8, 276, 11, 276, 12, 276, 4673, 3, 276, 4676, + 272, 1, 272, 3, 272, 4689, 8, 272, 1, 272, 4, 272, 4692, 8, 272, 11, 272, + 12, 272, 4693, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, + 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4707, 8, 274, 1, 275, 1, 275, 1, + 275, 1, 275, 3, 275, 4713, 8, 275, 1, 275, 1, 275, 3, 275, 4717, 8, 275, + 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 4724, 8, 276, 1, 276, 1, + 276, 1, 276, 4, 276, 4729, 8, 276, 11, 276, 12, 276, 4730, 3, 276, 4733, 8, 276, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, - 4685, 8, 278, 10, 278, 12, 278, 4688, 9, 278, 1, 278, 1, 278, 1, 278, 1, - 278, 1, 278, 3, 278, 4695, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4700, - 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4708, 8, - 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4715, 8, 278, 10, - 278, 12, 278, 4718, 9, 278, 3, 278, 4720, 8, 278, 1, 279, 1, 279, 1, 280, - 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4732, 8, - 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4738, 8, 282, 1, 283, 1, 283, + 4742, 8, 278, 10, 278, 12, 278, 4745, 9, 278, 1, 278, 1, 278, 1, 278, 1, + 278, 1, 278, 3, 278, 4752, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4757, + 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 4765, 8, + 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4772, 8, 278, 10, + 278, 12, 278, 4775, 9, 278, 3, 278, 4777, 8, 278, 1, 279, 1, 279, 1, 280, + 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4789, 8, + 281, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 4795, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4767, 8, - 283, 3, 283, 4769, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, - 4776, 8, 283, 3, 283, 4778, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, - 283, 3, 283, 4785, 8, 283, 3, 283, 4787, 8, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 3, 283, 4794, 8, 283, 3, 283, 4796, 8, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 283, 3, 283, 4803, 8, 283, 3, 283, 4805, 8, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4812, 8, 283, 3, 283, 4814, - 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4821, 8, 283, 3, - 283, 4823, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4830, - 8, 283, 3, 283, 4832, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, - 283, 4839, 8, 283, 3, 283, 4841, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 3, 283, 4849, 8, 283, 3, 283, 4851, 8, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 283, 3, 283, 4858, 8, 283, 3, 283, 4860, 8, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4867, 8, 283, 3, 283, 4869, - 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4877, 8, - 283, 3, 283, 4879, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 3, 283, 4887, 8, 283, 3, 283, 4889, 8, 283, 1, 283, 1, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 3, 283, 4897, 8, 283, 3, 283, 4899, 8, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4907, 8, 283, 3, 283, 4909, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4824, 8, + 283, 3, 283, 4826, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, + 4833, 8, 283, 3, 283, 4835, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, + 283, 3, 283, 4842, 8, 283, 3, 283, 4844, 8, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 1, 283, 3, 283, 4851, 8, 283, 3, 283, 4853, 8, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 1, 283, 3, 283, 4860, 8, 283, 3, 283, 4862, 8, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4869, 8, 283, 3, 283, 4871, + 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4878, 8, 283, 3, + 283, 4880, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4887, + 8, 283, 3, 283, 4889, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, + 283, 4896, 8, 283, 3, 283, 4898, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 1, 283, 3, 283, 4906, 8, 283, 3, 283, 4908, 8, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 1, 283, 3, 283, 4915, 8, 283, 3, 283, 4917, 8, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4924, 8, 283, 3, 283, 4926, + 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4934, 8, + 283, 3, 283, 4936, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 3, 283, 4944, 8, 283, 3, 283, 4946, 8, 283, 1, 283, 1, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 3, 283, 4954, 8, 283, 3, 283, 4956, 8, 283, 1, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4964, 8, 283, 3, 283, 4966, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 3, 283, 4937, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4944, + 3, 283, 4994, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5001, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4960, 8, 283, 1, - 283, 1, 283, 1, 283, 3, 283, 4965, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4976, 8, 283, 3, 283, 4978, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5017, 8, 283, 1, + 283, 1, 283, 1, 283, 3, 283, 5022, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5033, 8, 283, 3, 283, 5035, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5011, 8, 283, 3, 283, 5013, - 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5021, 8, - 283, 3, 283, 5023, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 3, 283, 5031, 8, 283, 3, 283, 5033, 8, 283, 1, 283, 1, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 3, 283, 5041, 8, 283, 3, 283, 5043, 8, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5051, 8, 283, 3, 283, 5053, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5068, 8, 283, 3, 283, 5070, + 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5078, 8, + 283, 3, 283, 5080, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 3, 283, 5088, 8, 283, 3, 283, 5090, 8, 283, 1, 283, 1, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 3, 283, 5098, 8, 283, 3, 283, 5100, 8, 283, 1, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5108, 8, 283, 3, 283, 5110, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, - 5062, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, - 283, 3, 283, 5072, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5078, - 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5083, 8, 283, 3, 283, 5085, 8, - 283, 1, 283, 3, 283, 5088, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 3, 283, 5097, 8, 283, 3, 283, 5099, 8, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5108, 8, 283, 3, 283, - 5110, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5118, - 8, 283, 3, 283, 5120, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5132, 8, 283, 3, 283, 5134, - 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5142, 8, - 283, 3, 283, 5144, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 3, 283, 5153, 8, 283, 3, 283, 5155, 8, 283, 1, 283, 1, 283, 1, - 283, 1, 283, 1, 283, 1, 283, 3, 283, 5163, 8, 283, 1, 283, 1, 283, 1, 283, - 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5175, 8, - 283, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 5181, 8, 284, 10, 284, 12, - 284, 5184, 9, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5189, 8, 284, 3, 284, - 5191, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5196, 8, 284, 3, 284, 5198, + 5119, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, + 283, 3, 283, 5129, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5135, + 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5140, 8, 283, 3, 283, 5142, 8, + 283, 1, 283, 3, 283, 5145, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 1, 283, 3, 283, 5154, 8, 283, 3, 283, 5156, 8, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5165, 8, 283, 3, 283, + 5167, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5175, + 8, 283, 3, 283, 5177, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5189, 8, 283, 3, 283, 5191, + 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5199, 8, + 283, 3, 283, 5201, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 3, 283, 5210, 8, 283, 3, 283, 5212, 8, 283, 1, 283, 1, 283, 1, + 283, 1, 283, 1, 283, 1, 283, 3, 283, 5220, 8, 283, 1, 283, 1, 283, 1, 283, + 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 5232, 8, + 283, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 5238, 8, 284, 10, 284, 12, + 284, 5241, 9, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5246, 8, 284, 3, 284, + 5248, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 5253, 8, 284, 3, 284, 5255, 8, 284, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, - 3, 286, 5208, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, - 288, 1, 288, 3, 288, 5218, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, - 1, 289, 3, 289, 5226, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, - 289, 3, 289, 5234, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, + 3, 286, 5265, 8, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, + 288, 1, 288, 3, 288, 5275, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, + 1, 289, 3, 289, 5283, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, + 289, 3, 289, 5291, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, - 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5283, 8, 289, 1, 289, 1, + 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5340, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, - 289, 5313, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, - 3, 289, 5322, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, + 289, 5370, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, + 3, 289, 5379, 8, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, - 289, 5375, 8, 289, 1, 290, 1, 290, 3, 290, 5379, 8, 290, 1, 290, 1, 290, - 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5387, 8, 290, 1, 290, 3, 290, 5390, - 8, 290, 1, 290, 5, 290, 5393, 8, 290, 10, 290, 12, 290, 5396, 9, 290, 1, - 290, 1, 290, 3, 290, 5400, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, - 5406, 8, 290, 3, 290, 5408, 8, 290, 1, 290, 1, 290, 3, 290, 5412, 8, 290, - 1, 290, 1, 290, 3, 290, 5416, 8, 290, 1, 290, 1, 290, 3, 290, 5420, 8, - 290, 1, 291, 3, 291, 5423, 8, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, - 3, 291, 5430, 8, 291, 1, 291, 3, 291, 5433, 8, 291, 1, 291, 1, 291, 3, - 291, 5437, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 3, 293, 5444, - 8, 293, 1, 293, 5, 293, 5447, 8, 293, 10, 293, 12, 293, 5450, 9, 293, 1, - 294, 1, 294, 3, 294, 5454, 8, 294, 1, 294, 3, 294, 5457, 8, 294, 1, 294, - 3, 294, 5460, 8, 294, 1, 294, 3, 294, 5463, 8, 294, 1, 294, 3, 294, 5466, - 8, 294, 1, 294, 3, 294, 5469, 8, 294, 1, 294, 1, 294, 3, 294, 5473, 8, - 294, 1, 294, 3, 294, 5476, 8, 294, 1, 294, 3, 294, 5479, 8, 294, 1, 294, - 1, 294, 3, 294, 5483, 8, 294, 1, 294, 3, 294, 5486, 8, 294, 3, 294, 5488, - 8, 294, 1, 295, 1, 295, 3, 295, 5492, 8, 295, 1, 295, 1, 295, 1, 296, 1, - 296, 1, 296, 1, 296, 5, 296, 5500, 8, 296, 10, 296, 12, 296, 5503, 9, 296, - 3, 296, 5505, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 5510, 8, 297, 1, - 297, 1, 297, 1, 297, 3, 297, 5515, 8, 297, 3, 297, 5517, 8, 297, 1, 298, - 1, 298, 3, 298, 5521, 8, 298, 1, 299, 1, 299, 1, 299, 5, 299, 5526, 8, - 299, 10, 299, 12, 299, 5529, 9, 299, 1, 300, 1, 300, 3, 300, 5533, 8, 300, - 1, 300, 3, 300, 5536, 8, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5542, - 8, 300, 1, 300, 3, 300, 5545, 8, 300, 3, 300, 5547, 8, 300, 1, 301, 3, - 301, 5550, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5556, 8, 301, - 1, 301, 3, 301, 5559, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5564, 8, - 301, 1, 301, 3, 301, 5567, 8, 301, 3, 301, 5569, 8, 301, 1, 302, 1, 302, + 289, 5432, 8, 289, 1, 290, 1, 290, 3, 290, 5436, 8, 290, 1, 290, 1, 290, + 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 5444, 8, 290, 1, 290, 3, 290, 5447, + 8, 290, 1, 290, 5, 290, 5450, 8, 290, 10, 290, 12, 290, 5453, 9, 290, 1, + 290, 1, 290, 3, 290, 5457, 8, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, + 5463, 8, 290, 3, 290, 5465, 8, 290, 1, 290, 1, 290, 3, 290, 5469, 8, 290, + 1, 290, 1, 290, 3, 290, 5473, 8, 290, 1, 290, 1, 290, 3, 290, 5477, 8, + 290, 1, 291, 3, 291, 5480, 8, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, + 3, 291, 5487, 8, 291, 1, 291, 3, 291, 5490, 8, 291, 1, 291, 1, 291, 3, + 291, 5494, 8, 291, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 3, 293, 5501, + 8, 293, 1, 293, 5, 293, 5504, 8, 293, 10, 293, 12, 293, 5507, 9, 293, 1, + 294, 1, 294, 3, 294, 5511, 8, 294, 1, 294, 3, 294, 5514, 8, 294, 1, 294, + 3, 294, 5517, 8, 294, 1, 294, 3, 294, 5520, 8, 294, 1, 294, 3, 294, 5523, + 8, 294, 1, 294, 3, 294, 5526, 8, 294, 1, 294, 1, 294, 3, 294, 5530, 8, + 294, 1, 294, 3, 294, 5533, 8, 294, 1, 294, 3, 294, 5536, 8, 294, 1, 294, + 1, 294, 3, 294, 5540, 8, 294, 1, 294, 3, 294, 5543, 8, 294, 3, 294, 5545, + 8, 294, 1, 295, 1, 295, 3, 295, 5549, 8, 295, 1, 295, 1, 295, 1, 296, 1, + 296, 1, 296, 1, 296, 5, 296, 5557, 8, 296, 10, 296, 12, 296, 5560, 9, 296, + 3, 296, 5562, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 5567, 8, 297, 1, + 297, 1, 297, 1, 297, 3, 297, 5572, 8, 297, 3, 297, 5574, 8, 297, 1, 298, + 1, 298, 3, 298, 5578, 8, 298, 1, 299, 1, 299, 1, 299, 5, 299, 5583, 8, + 299, 10, 299, 12, 299, 5586, 9, 299, 1, 300, 1, 300, 3, 300, 5590, 8, 300, + 1, 300, 3, 300, 5593, 8, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 5599, + 8, 300, 1, 300, 3, 300, 5602, 8, 300, 3, 300, 5604, 8, 300, 1, 301, 3, + 301, 5607, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5613, 8, 301, + 1, 301, 3, 301, 5616, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 5621, 8, + 301, 1, 301, 3, 301, 5624, 8, 301, 3, 301, 5626, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, - 5581, 8, 302, 1, 303, 1, 303, 3, 303, 5585, 8, 303, 1, 303, 1, 303, 3, - 303, 5589, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5594, 8, 303, 1, 303, - 3, 303, 5597, 8, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, + 5638, 8, 302, 1, 303, 1, 303, 3, 303, 5642, 8, 303, 1, 303, 1, 303, 3, + 303, 5646, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5651, 8, 303, 1, 303, + 3, 303, 5654, 8, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 5, - 308, 5614, 8, 308, 10, 308, 12, 308, 5617, 9, 308, 1, 309, 1, 309, 3, 309, - 5621, 8, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5626, 8, 310, 10, 310, 12, - 310, 5629, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5635, 8, 311, - 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5641, 8, 311, 3, 311, 5643, 8, + 308, 5671, 8, 308, 10, 308, 12, 308, 5674, 9, 308, 1, 309, 1, 309, 3, 309, + 5678, 8, 309, 1, 310, 1, 310, 1, 310, 5, 310, 5683, 8, 310, 10, 310, 12, + 310, 5686, 9, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5692, 8, 311, + 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 5698, 8, 311, 3, 311, 5700, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, - 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 5661, + 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 5718, 8, 312, 1, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, - 1, 314, 3, 314, 5672, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, - 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5687, - 8, 314, 3, 314, 5689, 8, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, - 316, 3, 316, 5697, 8, 316, 1, 316, 3, 316, 5700, 8, 316, 1, 316, 3, 316, - 5703, 8, 316, 1, 316, 3, 316, 5706, 8, 316, 1, 316, 3, 316, 5709, 8, 316, + 1, 314, 3, 314, 5729, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, + 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 5744, + 8, 314, 3, 314, 5746, 8, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 1, + 316, 3, 316, 5754, 8, 316, 1, 316, 3, 316, 5757, 8, 316, 1, 316, 3, 316, + 5760, 8, 316, 1, 316, 3, 316, 5763, 8, 316, 1, 316, 3, 316, 5766, 8, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 320, - 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 5725, 8, 321, 1, 321, 1, - 321, 3, 321, 5729, 8, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5734, 8, 321, - 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 5742, 8, 322, 1, - 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 5750, 8, 324, 1, 325, - 1, 325, 1, 325, 5, 325, 5755, 8, 325, 10, 325, 12, 325, 5758, 9, 325, 1, + 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 3, 321, 5782, 8, 321, 1, 321, 1, + 321, 3, 321, 5786, 8, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5791, 8, 321, + 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 5799, 8, 322, 1, + 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 5807, 8, 324, 1, 325, + 1, 325, 1, 325, 5, 325, 5812, 8, 325, 10, 325, 12, 325, 5815, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, - 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, 329, 5801, 8, 329, 10, 329, 12, - 329, 5804, 9, 329, 1, 329, 1, 329, 3, 329, 5808, 8, 329, 1, 329, 1, 329, - 1, 329, 1, 329, 1, 329, 5, 329, 5815, 8, 329, 10, 329, 12, 329, 5818, 9, - 329, 1, 329, 1, 329, 3, 329, 5822, 8, 329, 1, 329, 3, 329, 5825, 8, 329, - 1, 329, 1, 329, 1, 329, 3, 329, 5830, 8, 329, 1, 330, 4, 330, 5833, 8, - 330, 11, 330, 12, 330, 5834, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, - 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5849, 8, 331, - 10, 331, 12, 331, 5852, 9, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, - 1, 331, 5, 331, 5860, 8, 331, 10, 331, 12, 331, 5863, 9, 331, 1, 331, 1, - 331, 3, 331, 5867, 8, 331, 1, 331, 1, 331, 3, 331, 5871, 8, 331, 1, 331, - 1, 331, 3, 331, 5875, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, - 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, - 333, 5891, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, - 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 5, 337, - 5908, 8, 337, 10, 337, 12, 337, 5911, 9, 337, 1, 338, 1, 338, 1, 338, 5, - 338, 5916, 8, 338, 10, 338, 12, 338, 5919, 9, 338, 1, 339, 3, 339, 5922, - 8, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, - 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5936, 8, 340, 1, 340, 1, 340, 1, - 340, 3, 340, 5941, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, - 3, 340, 5949, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5955, 8, - 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 5, 342, 5962, 8, 342, 10, - 342, 12, 342, 5965, 9, 342, 1, 343, 1, 343, 1, 343, 5, 343, 5970, 8, 343, - 10, 343, 12, 343, 5973, 9, 343, 1, 344, 3, 344, 5976, 8, 344, 1, 344, 1, - 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, + 329, 1, 329, 5, 329, 5855, 8, 329, 10, 329, 12, 329, 5858, 9, 329, 1, 329, + 1, 329, 3, 329, 5862, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 5, + 329, 5869, 8, 329, 10, 329, 12, 329, 5872, 9, 329, 1, 329, 1, 329, 3, 329, + 5876, 8, 329, 1, 329, 3, 329, 5879, 8, 329, 1, 329, 1, 329, 1, 329, 3, + 329, 5884, 8, 329, 1, 330, 4, 330, 5887, 8, 330, 11, 330, 12, 330, 5888, + 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, + 1, 331, 1, 331, 1, 331, 5, 331, 5903, 8, 331, 10, 331, 12, 331, 5906, 9, + 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 5, 331, 5914, 8, 331, + 10, 331, 12, 331, 5917, 9, 331, 1, 331, 1, 331, 3, 331, 5921, 8, 331, 1, + 331, 1, 331, 3, 331, 5925, 8, 331, 1, 331, 1, 331, 3, 331, 5929, 8, 331, + 1, 332, 1, 332, 1, 332, 1, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, + 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 5945, 8, 333, 1, 334, 1, + 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, + 336, 1, 336, 1, 337, 1, 337, 1, 337, 5, 337, 5962, 8, 337, 10, 337, 12, + 337, 5965, 9, 337, 1, 338, 1, 338, 1, 338, 5, 338, 5970, 8, 338, 10, 338, + 12, 338, 5973, 9, 338, 1, 339, 3, 339, 5976, 8, 339, 1, 339, 1, 339, 1, + 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, + 340, 3, 340, 5990, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 5995, 8, 340, + 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6003, 8, 340, 1, + 340, 1, 340, 1, 340, 1, 340, 3, 340, 6009, 8, 340, 1, 341, 1, 341, 1, 342, + 1, 342, 1, 342, 5, 342, 6016, 8, 342, 10, 342, 12, 342, 6019, 9, 342, 1, + 343, 1, 343, 1, 343, 5, 343, 6024, 8, 343, 10, 343, 12, 343, 6027, 9, 343, + 1, 344, 3, 344, 6030, 8, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, - 345, 1, 345, 1, 345, 1, 345, 3, 345, 6001, 8, 345, 1, 346, 1, 346, 1, 346, - 1, 346, 1, 346, 1, 346, 4, 346, 6009, 8, 346, 11, 346, 12, 346, 6010, 1, - 346, 1, 346, 3, 346, 6015, 8, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, - 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, - 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 3, 350, 6038, 8, - 350, 1, 350, 1, 350, 3, 350, 6042, 8, 350, 1, 350, 1, 350, 1, 351, 1, 351, - 1, 351, 3, 351, 6049, 8, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, - 353, 1, 353, 5, 353, 6058, 8, 353, 10, 353, 12, 353, 6061, 9, 353, 1, 354, - 1, 354, 1, 354, 1, 354, 5, 354, 6067, 8, 354, 10, 354, 12, 354, 6070, 9, - 354, 1, 354, 1, 354, 1, 354, 3, 354, 6075, 8, 354, 1, 355, 1, 355, 1, 355, - 5, 355, 6080, 8, 355, 10, 355, 12, 355, 6083, 9, 355, 1, 356, 1, 356, 1, - 356, 5, 356, 6088, 8, 356, 10, 356, 12, 356, 6091, 9, 356, 1, 357, 1, 357, - 1, 357, 3, 357, 6096, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, - 358, 6103, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 5, 359, 6109, 8, 359, - 10, 359, 12, 359, 6112, 9, 359, 3, 359, 6114, 8, 359, 1, 359, 1, 359, 1, - 360, 1, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, - 362, 1, 362, 3, 362, 6129, 8, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, - 5, 364, 6136, 8, 364, 10, 364, 12, 364, 6139, 9, 364, 1, 365, 1, 365, 1, - 365, 1, 365, 3, 365, 6145, 8, 365, 1, 366, 1, 366, 1, 366, 3, 366, 6150, - 8, 366, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 0, 0, 369, 0, 2, 4, 6, - 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, - 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, - 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, - 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, - 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, - 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, - 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, - 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, - 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, - 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, - 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, - 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, - 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, - 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, - 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, - 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, - 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, - 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, - 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, - 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, - 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, - 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, - 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, - 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 0, 49, 2, 0, - 22, 22, 430, 430, 1, 0, 33, 34, 2, 0, 30, 30, 33, 33, 2, 0, 453, 454, 485, - 485, 2, 0, 93, 93, 485, 485, 2, 0, 401, 401, 434, 434, 1, 0, 94, 95, 2, - 0, 12, 12, 44, 44, 2, 0, 295, 295, 425, 425, 2, 0, 39, 39, 52, 52, 2, 0, - 14, 16, 54, 55, 1, 0, 517, 518, 2, 0, 496, 496, 502, 502, 3, 0, 69, 69, - 135, 138, 302, 302, 2, 0, 100, 100, 334, 337, 2, 0, 517, 517, 521, 521, - 1, 0, 520, 521, 1, 0, 285, 286, 6, 0, 285, 287, 487, 492, 496, 496, 500, - 504, 507, 508, 516, 520, 4, 0, 128, 128, 287, 287, 296, 297, 521, 522, - 11, 0, 39, 39, 148, 157, 160, 162, 164, 165, 167, 167, 169, 176, 180, 185, - 194, 195, 226, 226, 228, 231, 251, 251, 3, 0, 128, 128, 140, 140, 521, - 521, 3, 0, 255, 261, 401, 401, 521, 521, 4, 0, 135, 136, 246, 250, 295, - 295, 521, 521, 2, 0, 217, 217, 519, 519, 1, 0, 422, 424, 2, 0, 517, 517, - 520, 520, 2, 0, 329, 329, 332, 332, 2, 0, 341, 341, 442, 442, 2, 0, 338, - 338, 521, 521, 2, 0, 295, 297, 517, 517, 2, 0, 382, 382, 521, 521, 8, 0, - 148, 154, 160, 162, 165, 165, 169, 176, 194, 195, 226, 226, 228, 231, 521, - 521, 2, 0, 291, 291, 490, 490, 1, 0, 84, 85, 8, 0, 143, 145, 187, 187, - 192, 192, 224, 224, 314, 314, 377, 378, 380, 383, 521, 521, 2, 0, 329, - 329, 401, 402, 1, 0, 521, 522, 2, 1, 496, 496, 500, 500, 1, 0, 487, 492, - 1, 0, 493, 494, 2, 0, 495, 499, 509, 509, 1, 0, 262, 267, 1, 0, 276, 280, - 7, 0, 123, 123, 128, 128, 140, 140, 185, 185, 276, 282, 296, 297, 521, - 522, 1, 0, 296, 297, 7, 0, 49, 49, 188, 189, 219, 219, 301, 301, 406, 406, - 475, 475, 521, 521, 40, 0, 41, 42, 44, 44, 49, 49, 51, 52, 54, 54, 69, - 69, 116, 116, 124, 124, 135, 136, 138, 138, 164, 164, 168, 168, 188, 188, - 191, 193, 196, 196, 205, 208, 215, 216, 218, 219, 222, 222, 232, 232, 247, - 247, 276, 280, 302, 302, 304, 304, 331, 331, 333, 333, 350, 351, 371, 371, - 374, 374, 395, 395, 401, 401, 403, 403, 419, 420, 422, 425, 433, 433, 449, - 449, 453, 454, 459, 461, 483, 483, 485, 485, 60, 0, 8, 9, 17, 21, 23, 30, - 32, 35, 38, 44, 48, 49, 51, 52, 54, 54, 56, 59, 65, 67, 69, 76, 81, 90, - 93, 93, 96, 101, 103, 106, 110, 110, 112, 114, 116, 118, 120, 120, 124, - 124, 132, 132, 135, 136, 138, 139, 141, 146, 148, 153, 156, 166, 168, 172, - 174, 175, 179, 179, 187, 188, 191, 196, 207, 216, 218, 219, 221, 222, 226, - 232, 245, 248, 251, 251, 262, 270, 276, 280, 285, 291, 294, 302, 304, 307, - 311, 333, 338, 366, 368, 384, 386, 388, 390, 399, 401, 401, 403, 405, 408, - 409, 411, 420, 422, 431, 433, 433, 435, 435, 438, 438, 440, 444, 448, 474, - 480, 483, 485, 486, 498, 499, 6979, 0, 741, 1, 0, 0, 0, 2, 747, 1, 0, 0, - 0, 4, 767, 1, 0, 0, 0, 6, 769, 1, 0, 0, 0, 8, 801, 1, 0, 0, 0, 10, 936, - 1, 0, 0, 0, 12, 950, 1, 0, 0, 0, 14, 967, 1, 0, 0, 0, 16, 993, 1, 0, 0, - 0, 18, 1034, 1, 0, 0, 0, 20, 1036, 1, 0, 0, 0, 22, 1047, 1, 0, 0, 0, 24, - 1063, 1, 0, 0, 0, 26, 1065, 1, 0, 0, 0, 28, 1075, 1, 0, 0, 0, 30, 1082, - 1, 0, 0, 0, 32, 1086, 1, 0, 0, 0, 34, 1113, 1, 0, 0, 0, 36, 1140, 1, 0, - 0, 0, 38, 1221, 1, 0, 0, 0, 40, 1234, 1, 0, 0, 0, 42, 1304, 1, 0, 0, 0, - 44, 1323, 1, 0, 0, 0, 46, 1325, 1, 0, 0, 0, 48, 1333, 1, 0, 0, 0, 50, 1338, - 1, 0, 0, 0, 52, 1371, 1, 0, 0, 0, 54, 1373, 1, 0, 0, 0, 56, 1378, 1, 0, - 0, 0, 58, 1389, 1, 0, 0, 0, 60, 1394, 1, 0, 0, 0, 62, 1402, 1, 0, 0, 0, - 64, 1410, 1, 0, 0, 0, 66, 1418, 1, 0, 0, 0, 68, 1426, 1, 0, 0, 0, 70, 1434, - 1, 0, 0, 0, 72, 1442, 1, 0, 0, 0, 74, 1451, 1, 0, 0, 0, 76, 1471, 1, 0, - 0, 0, 78, 1473, 1, 0, 0, 0, 80, 1493, 1, 0, 0, 0, 82, 1498, 1, 0, 0, 0, - 84, 1504, 1, 0, 0, 0, 86, 1512, 1, 0, 0, 0, 88, 1548, 1, 0, 0, 0, 90, 1596, - 1, 0, 0, 0, 92, 1602, 1, 0, 0, 0, 94, 1613, 1, 0, 0, 0, 96, 1615, 1, 0, - 0, 0, 98, 1629, 1, 0, 0, 0, 100, 1631, 1, 0, 0, 0, 102, 1640, 1, 0, 0, - 0, 104, 1660, 1, 0, 0, 0, 106, 1695, 1, 0, 0, 0, 108, 1733, 1, 0, 0, 0, - 110, 1735, 1, 0, 0, 0, 112, 1762, 1, 0, 0, 0, 114, 1765, 1, 0, 0, 0, 116, - 1771, 1, 0, 0, 0, 118, 1779, 1, 0, 0, 0, 120, 1786, 1, 0, 0, 0, 122, 1788, - 1, 0, 0, 0, 124, 1798, 1, 0, 0, 0, 126, 1812, 1, 0, 0, 0, 128, 1814, 1, - 0, 0, 0, 130, 1888, 1, 0, 0, 0, 132, 1902, 1, 0, 0, 0, 134, 1922, 1, 0, - 0, 0, 136, 1937, 1, 0, 0, 0, 138, 1939, 1, 0, 0, 0, 140, 1945, 1, 0, 0, - 0, 142, 1953, 1, 0, 0, 0, 144, 1955, 1, 0, 0, 0, 146, 1963, 1, 0, 0, 0, - 148, 1972, 1, 0, 0, 0, 150, 1996, 1, 0, 0, 0, 152, 1999, 1, 0, 0, 0, 154, - 2003, 1, 0, 0, 0, 156, 2006, 1, 0, 0, 0, 158, 2016, 1, 0, 0, 0, 160, 2025, - 1, 0, 0, 0, 162, 2027, 1, 0, 0, 0, 164, 2038, 1, 0, 0, 0, 166, 2047, 1, - 0, 0, 0, 168, 2049, 1, 0, 0, 0, 170, 2072, 1, 0, 0, 0, 172, 2076, 1, 0, - 0, 0, 174, 2110, 1, 0, 0, 0, 176, 2125, 1, 0, 0, 0, 178, 2127, 1, 0, 0, - 0, 180, 2135, 1, 0, 0, 0, 182, 2143, 1, 0, 0, 0, 184, 2165, 1, 0, 0, 0, - 186, 2184, 1, 0, 0, 0, 188, 2192, 1, 0, 0, 0, 190, 2198, 1, 0, 0, 0, 192, - 2201, 1, 0, 0, 0, 194, 2207, 1, 0, 0, 0, 196, 2217, 1, 0, 0, 0, 198, 2225, - 1, 0, 0, 0, 200, 2227, 1, 0, 0, 0, 202, 2234, 1, 0, 0, 0, 204, 2242, 1, - 0, 0, 0, 206, 2247, 1, 0, 0, 0, 208, 2580, 1, 0, 0, 0, 210, 2582, 1, 0, - 0, 0, 212, 2589, 1, 0, 0, 0, 214, 2599, 1, 0, 0, 0, 216, 2613, 1, 0, 0, - 0, 218, 2622, 1, 0, 0, 0, 220, 2632, 1, 0, 0, 0, 222, 2644, 1, 0, 0, 0, - 224, 2649, 1, 0, 0, 0, 226, 2654, 1, 0, 0, 0, 228, 2697, 1, 0, 0, 0, 230, - 2719, 1, 0, 0, 0, 232, 2721, 1, 0, 0, 0, 234, 2742, 1, 0, 0, 0, 236, 2754, - 1, 0, 0, 0, 238, 2764, 1, 0, 0, 0, 240, 2766, 1, 0, 0, 0, 242, 2768, 1, - 0, 0, 0, 244, 2772, 1, 0, 0, 0, 246, 2775, 1, 0, 0, 0, 248, 2787, 1, 0, - 0, 0, 250, 2803, 1, 0, 0, 0, 252, 2805, 1, 0, 0, 0, 254, 2811, 1, 0, 0, - 0, 256, 2813, 1, 0, 0, 0, 258, 2817, 1, 0, 0, 0, 260, 2832, 1, 0, 0, 0, - 262, 2848, 1, 0, 0, 0, 264, 2882, 1, 0, 0, 0, 266, 2896, 1, 0, 0, 0, 268, - 2906, 1, 0, 0, 0, 270, 2911, 1, 0, 0, 0, 272, 2929, 1, 0, 0, 0, 274, 2947, - 1, 0, 0, 0, 276, 2949, 1, 0, 0, 0, 278, 2952, 1, 0, 0, 0, 280, 2956, 1, - 0, 0, 0, 282, 2970, 1, 0, 0, 0, 284, 2973, 1, 0, 0, 0, 286, 2987, 1, 0, - 0, 0, 288, 3015, 1, 0, 0, 0, 290, 3019, 1, 0, 0, 0, 292, 3021, 1, 0, 0, - 0, 294, 3023, 1, 0, 0, 0, 296, 3028, 1, 0, 0, 0, 298, 3050, 1, 0, 0, 0, - 300, 3052, 1, 0, 0, 0, 302, 3069, 1, 0, 0, 0, 304, 3073, 1, 0, 0, 0, 306, - 3085, 1, 0, 0, 0, 308, 3088, 1, 0, 0, 0, 310, 3151, 1, 0, 0, 0, 312, 3153, - 1, 0, 0, 0, 314, 3161, 1, 0, 0, 0, 316, 3165, 1, 0, 0, 0, 318, 3193, 1, - 0, 0, 0, 320, 3195, 1, 0, 0, 0, 322, 3201, 1, 0, 0, 0, 324, 3206, 1, 0, - 0, 0, 326, 3211, 1, 0, 0, 0, 328, 3219, 1, 0, 0, 0, 330, 3227, 1, 0, 0, - 0, 332, 3229, 1, 0, 0, 0, 334, 3237, 1, 0, 0, 0, 336, 3241, 1, 0, 0, 0, - 338, 3248, 1, 0, 0, 0, 340, 3261, 1, 0, 0, 0, 342, 3265, 1, 0, 0, 0, 344, - 3268, 1, 0, 0, 0, 346, 3276, 1, 0, 0, 0, 348, 3280, 1, 0, 0, 0, 350, 3288, - 1, 0, 0, 0, 352, 3292, 1, 0, 0, 0, 354, 3300, 1, 0, 0, 0, 356, 3308, 1, - 0, 0, 0, 358, 3313, 1, 0, 0, 0, 360, 3317, 1, 0, 0, 0, 362, 3319, 1, 0, - 0, 0, 364, 3327, 1, 0, 0, 0, 366, 3338, 1, 0, 0, 0, 368, 3340, 1, 0, 0, - 0, 370, 3352, 1, 0, 0, 0, 372, 3354, 1, 0, 0, 0, 374, 3362, 1, 0, 0, 0, - 376, 3374, 1, 0, 0, 0, 378, 3376, 1, 0, 0, 0, 380, 3384, 1, 0, 0, 0, 382, - 3386, 1, 0, 0, 0, 384, 3400, 1, 0, 0, 0, 386, 3402, 1, 0, 0, 0, 388, 3440, - 1, 0, 0, 0, 390, 3442, 1, 0, 0, 0, 392, 3468, 1, 0, 0, 0, 394, 3474, 1, - 0, 0, 0, 396, 3477, 1, 0, 0, 0, 398, 3484, 1, 0, 0, 0, 400, 3492, 1, 0, - 0, 0, 402, 3494, 1, 0, 0, 0, 404, 3595, 1, 0, 0, 0, 406, 3597, 1, 0, 0, - 0, 408, 3599, 1, 0, 0, 0, 410, 3656, 1, 0, 0, 0, 412, 3696, 1, 0, 0, 0, - 414, 3698, 1, 0, 0, 0, 416, 3715, 1, 0, 0, 0, 418, 3720, 1, 0, 0, 0, 420, - 3743, 1, 0, 0, 0, 422, 3745, 1, 0, 0, 0, 424, 3756, 1, 0, 0, 0, 426, 3762, - 1, 0, 0, 0, 428, 3764, 1, 0, 0, 0, 430, 3766, 1, 0, 0, 0, 432, 3768, 1, - 0, 0, 0, 434, 3793, 1, 0, 0, 0, 436, 3808, 1, 0, 0, 0, 438, 3819, 1, 0, - 0, 0, 440, 3821, 1, 0, 0, 0, 442, 3825, 1, 0, 0, 0, 444, 3840, 1, 0, 0, - 0, 446, 3844, 1, 0, 0, 0, 448, 3847, 1, 0, 0, 0, 450, 3853, 1, 0, 0, 0, - 452, 3898, 1, 0, 0, 0, 454, 3900, 1, 0, 0, 0, 456, 3938, 1, 0, 0, 0, 458, - 3942, 1, 0, 0, 0, 460, 3952, 1, 0, 0, 0, 462, 3963, 1, 0, 0, 0, 464, 3965, - 1, 0, 0, 0, 466, 3977, 1, 0, 0, 0, 468, 3991, 1, 0, 0, 0, 470, 4009, 1, - 0, 0, 0, 472, 4011, 1, 0, 0, 0, 474, 4014, 1, 0, 0, 0, 476, 4035, 1, 0, - 0, 0, 478, 4055, 1, 0, 0, 0, 480, 4062, 1, 0, 0, 0, 482, 4077, 1, 0, 0, - 0, 484, 4079, 1, 0, 0, 0, 486, 4087, 1, 0, 0, 0, 488, 4103, 1, 0, 0, 0, - 490, 4138, 1, 0, 0, 0, 492, 4140, 1, 0, 0, 0, 494, 4144, 1, 0, 0, 0, 496, - 4148, 1, 0, 0, 0, 498, 4165, 1, 0, 0, 0, 500, 4167, 1, 0, 0, 0, 502, 4193, - 1, 0, 0, 0, 504, 4208, 1, 0, 0, 0, 506, 4216, 1, 0, 0, 0, 508, 4227, 1, - 0, 0, 0, 510, 4251, 1, 0, 0, 0, 512, 4262, 1, 0, 0, 0, 514, 4274, 1, 0, - 0, 0, 516, 4278, 1, 0, 0, 0, 518, 4300, 1, 0, 0, 0, 520, 4323, 1, 0, 0, - 0, 522, 4327, 1, 0, 0, 0, 524, 4371, 1, 0, 0, 0, 526, 4401, 1, 0, 0, 0, - 528, 4500, 1, 0, 0, 0, 530, 4535, 1, 0, 0, 0, 532, 4537, 1, 0, 0, 0, 534, - 4542, 1, 0, 0, 0, 536, 4580, 1, 0, 0, 0, 538, 4584, 1, 0, 0, 0, 540, 4605, - 1, 0, 0, 0, 542, 4621, 1, 0, 0, 0, 544, 4627, 1, 0, 0, 0, 546, 4638, 1, - 0, 0, 0, 548, 4644, 1, 0, 0, 0, 550, 4651, 1, 0, 0, 0, 552, 4661, 1, 0, - 0, 0, 554, 4677, 1, 0, 0, 0, 556, 4719, 1, 0, 0, 0, 558, 4721, 1, 0, 0, - 0, 560, 4723, 1, 0, 0, 0, 562, 4731, 1, 0, 0, 0, 564, 4737, 1, 0, 0, 0, - 566, 5174, 1, 0, 0, 0, 568, 5197, 1, 0, 0, 0, 570, 5199, 1, 0, 0, 0, 572, - 5207, 1, 0, 0, 0, 574, 5209, 1, 0, 0, 0, 576, 5217, 1, 0, 0, 0, 578, 5374, - 1, 0, 0, 0, 580, 5376, 1, 0, 0, 0, 582, 5422, 1, 0, 0, 0, 584, 5438, 1, - 0, 0, 0, 586, 5440, 1, 0, 0, 0, 588, 5487, 1, 0, 0, 0, 590, 5489, 1, 0, - 0, 0, 592, 5504, 1, 0, 0, 0, 594, 5516, 1, 0, 0, 0, 596, 5520, 1, 0, 0, - 0, 598, 5522, 1, 0, 0, 0, 600, 5546, 1, 0, 0, 0, 602, 5568, 1, 0, 0, 0, - 604, 5580, 1, 0, 0, 0, 606, 5596, 1, 0, 0, 0, 608, 5598, 1, 0, 0, 0, 610, - 5601, 1, 0, 0, 0, 612, 5604, 1, 0, 0, 0, 614, 5607, 1, 0, 0, 0, 616, 5610, - 1, 0, 0, 0, 618, 5618, 1, 0, 0, 0, 620, 5622, 1, 0, 0, 0, 622, 5642, 1, - 0, 0, 0, 624, 5660, 1, 0, 0, 0, 626, 5662, 1, 0, 0, 0, 628, 5688, 1, 0, - 0, 0, 630, 5690, 1, 0, 0, 0, 632, 5708, 1, 0, 0, 0, 634, 5710, 1, 0, 0, - 0, 636, 5712, 1, 0, 0, 0, 638, 5714, 1, 0, 0, 0, 640, 5718, 1, 0, 0, 0, - 642, 5733, 1, 0, 0, 0, 644, 5741, 1, 0, 0, 0, 646, 5743, 1, 0, 0, 0, 648, - 5749, 1, 0, 0, 0, 650, 5751, 1, 0, 0, 0, 652, 5759, 1, 0, 0, 0, 654, 5761, - 1, 0, 0, 0, 656, 5764, 1, 0, 0, 0, 658, 5829, 1, 0, 0, 0, 660, 5832, 1, - 0, 0, 0, 662, 5836, 1, 0, 0, 0, 664, 5876, 1, 0, 0, 0, 666, 5890, 1, 0, - 0, 0, 668, 5892, 1, 0, 0, 0, 670, 5894, 1, 0, 0, 0, 672, 5902, 1, 0, 0, - 0, 674, 5904, 1, 0, 0, 0, 676, 5912, 1, 0, 0, 0, 678, 5921, 1, 0, 0, 0, - 680, 5925, 1, 0, 0, 0, 682, 5956, 1, 0, 0, 0, 684, 5958, 1, 0, 0, 0, 686, - 5966, 1, 0, 0, 0, 688, 5975, 1, 0, 0, 0, 690, 6000, 1, 0, 0, 0, 692, 6002, - 1, 0, 0, 0, 694, 6018, 1, 0, 0, 0, 696, 6025, 1, 0, 0, 0, 698, 6032, 1, - 0, 0, 0, 700, 6034, 1, 0, 0, 0, 702, 6045, 1, 0, 0, 0, 704, 6052, 1, 0, - 0, 0, 706, 6054, 1, 0, 0, 0, 708, 6074, 1, 0, 0, 0, 710, 6076, 1, 0, 0, - 0, 712, 6084, 1, 0, 0, 0, 714, 6095, 1, 0, 0, 0, 716, 6102, 1, 0, 0, 0, - 718, 6104, 1, 0, 0, 0, 720, 6117, 1, 0, 0, 0, 722, 6119, 1, 0, 0, 0, 724, - 6121, 1, 0, 0, 0, 726, 6130, 1, 0, 0, 0, 728, 6132, 1, 0, 0, 0, 730, 6144, - 1, 0, 0, 0, 732, 6149, 1, 0, 0, 0, 734, 6151, 1, 0, 0, 0, 736, 6153, 1, - 0, 0, 0, 738, 740, 3, 2, 1, 0, 739, 738, 1, 0, 0, 0, 740, 743, 1, 0, 0, - 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, - 741, 1, 0, 0, 0, 744, 745, 5, 0, 0, 1, 745, 1, 1, 0, 0, 0, 746, 748, 3, - 722, 361, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 752, 1, 0, - 0, 0, 749, 753, 3, 4, 2, 0, 750, 753, 3, 564, 282, 0, 751, 753, 3, 624, - 312, 0, 752, 749, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 751, 1, 0, 0, - 0, 753, 755, 1, 0, 0, 0, 754, 756, 5, 500, 0, 0, 755, 754, 1, 0, 0, 0, - 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 5, 496, 0, 0, 758, - 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 3, 1, 0, 0, 0, 760, 768, 3, - 8, 4, 0, 761, 768, 3, 10, 5, 0, 762, 768, 3, 38, 19, 0, 763, 768, 3, 40, - 20, 0, 764, 768, 3, 42, 21, 0, 765, 768, 3, 6, 3, 0, 766, 768, 3, 44, 22, - 0, 767, 760, 1, 0, 0, 0, 767, 761, 1, 0, 0, 0, 767, 762, 1, 0, 0, 0, 767, - 763, 1, 0, 0, 0, 767, 764, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 767, 766, - 1, 0, 0, 0, 768, 5, 1, 0, 0, 0, 769, 770, 5, 393, 0, 0, 770, 771, 5, 187, - 0, 0, 771, 772, 5, 48, 0, 0, 772, 777, 3, 574, 287, 0, 773, 774, 5, 501, - 0, 0, 774, 776, 3, 574, 287, 0, 775, 773, 1, 0, 0, 0, 776, 779, 1, 0, 0, - 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, - 777, 1, 0, 0, 0, 780, 781, 5, 72, 0, 0, 781, 786, 3, 572, 286, 0, 782, - 783, 5, 285, 0, 0, 783, 785, 3, 572, 286, 0, 784, 782, 1, 0, 0, 0, 785, - 788, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 794, - 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 792, 5, 289, 0, 0, 790, 793, 3, - 712, 356, 0, 791, 793, 5, 521, 0, 0, 792, 790, 1, 0, 0, 0, 792, 791, 1, - 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 789, 1, 0, 0, 0, 794, 795, 1, 0, 0, - 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 436, 0, 0, 797, 799, 5, 437, 0, 0, - 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 7, 1, 0, 0, 0, 800, 802, - 3, 722, 361, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 806, 1, - 0, 0, 0, 803, 805, 3, 724, 362, 0, 804, 803, 1, 0, 0, 0, 805, 808, 1, 0, - 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, - 808, 806, 1, 0, 0, 0, 809, 812, 5, 17, 0, 0, 810, 811, 5, 286, 0, 0, 811, - 813, 7, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 839, - 1, 0, 0, 0, 814, 840, 3, 90, 45, 0, 815, 840, 3, 122, 61, 0, 816, 840, - 3, 138, 69, 0, 817, 840, 3, 182, 91, 0, 818, 840, 3, 184, 92, 0, 819, 840, - 3, 336, 168, 0, 820, 840, 3, 338, 169, 0, 821, 840, 3, 144, 72, 0, 822, - 840, 3, 172, 86, 0, 823, 840, 3, 442, 221, 0, 824, 840, 3, 450, 225, 0, - 825, 840, 3, 458, 229, 0, 826, 840, 3, 466, 233, 0, 827, 840, 3, 484, 242, - 0, 828, 840, 3, 486, 243, 0, 829, 840, 3, 488, 244, 0, 830, 840, 3, 508, - 254, 0, 831, 840, 3, 510, 255, 0, 832, 840, 3, 516, 258, 0, 833, 840, 3, - 522, 261, 0, 834, 840, 3, 50, 25, 0, 835, 840, 3, 78, 39, 0, 836, 840, - 3, 156, 78, 0, 837, 840, 3, 168, 84, 0, 838, 840, 3, 464, 232, 0, 839, - 814, 1, 0, 0, 0, 839, 815, 1, 0, 0, 0, 839, 816, 1, 0, 0, 0, 839, 817, - 1, 0, 0, 0, 839, 818, 1, 0, 0, 0, 839, 819, 1, 0, 0, 0, 839, 820, 1, 0, - 0, 0, 839, 821, 1, 0, 0, 0, 839, 822, 1, 0, 0, 0, 839, 823, 1, 0, 0, 0, - 839, 824, 1, 0, 0, 0, 839, 825, 1, 0, 0, 0, 839, 826, 1, 0, 0, 0, 839, - 827, 1, 0, 0, 0, 839, 828, 1, 0, 0, 0, 839, 829, 1, 0, 0, 0, 839, 830, - 1, 0, 0, 0, 839, 831, 1, 0, 0, 0, 839, 832, 1, 0, 0, 0, 839, 833, 1, 0, - 0, 0, 839, 834, 1, 0, 0, 0, 839, 835, 1, 0, 0, 0, 839, 836, 1, 0, 0, 0, - 839, 837, 1, 0, 0, 0, 839, 838, 1, 0, 0, 0, 840, 9, 1, 0, 0, 0, 841, 842, - 5, 18, 0, 0, 842, 843, 5, 23, 0, 0, 843, 845, 3, 712, 356, 0, 844, 846, - 3, 130, 65, 0, 845, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 845, 1, - 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 937, 1, 0, 0, 0, 849, 850, 5, 18, 0, - 0, 850, 851, 5, 27, 0, 0, 851, 853, 3, 712, 356, 0, 852, 854, 3, 132, 66, - 0, 853, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 855, - 856, 1, 0, 0, 0, 856, 937, 1, 0, 0, 0, 857, 858, 5, 18, 0, 0, 858, 859, - 5, 28, 0, 0, 859, 861, 3, 712, 356, 0, 860, 862, 3, 134, 67, 0, 861, 860, - 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, - 0, 0, 864, 937, 1, 0, 0, 0, 865, 866, 5, 18, 0, 0, 866, 867, 5, 36, 0, - 0, 867, 869, 3, 712, 356, 0, 868, 870, 3, 136, 68, 0, 869, 868, 1, 0, 0, - 0, 870, 871, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, - 937, 1, 0, 0, 0, 873, 874, 5, 18, 0, 0, 874, 875, 5, 314, 0, 0, 875, 876, - 5, 339, 0, 0, 876, 877, 3, 712, 356, 0, 877, 878, 5, 48, 0, 0, 878, 883, - 3, 494, 247, 0, 879, 880, 5, 501, 0, 0, 880, 882, 3, 494, 247, 0, 881, - 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, - 1, 0, 0, 0, 884, 937, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 18, - 0, 0, 887, 888, 5, 314, 0, 0, 888, 889, 5, 312, 0, 0, 889, 890, 3, 712, - 356, 0, 890, 891, 5, 48, 0, 0, 891, 896, 3, 494, 247, 0, 892, 893, 5, 501, - 0, 0, 893, 895, 3, 494, 247, 0, 894, 892, 1, 0, 0, 0, 895, 898, 1, 0, 0, - 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 937, 1, 0, 0, 0, 898, - 896, 1, 0, 0, 0, 899, 900, 5, 18, 0, 0, 900, 901, 5, 213, 0, 0, 901, 902, - 5, 93, 0, 0, 902, 903, 7, 1, 0, 0, 903, 904, 3, 712, 356, 0, 904, 905, - 5, 186, 0, 0, 905, 907, 5, 521, 0, 0, 906, 908, 3, 12, 6, 0, 907, 906, - 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, - 0, 0, 910, 937, 1, 0, 0, 0, 911, 912, 5, 18, 0, 0, 912, 913, 5, 443, 0, - 0, 913, 937, 3, 556, 278, 0, 914, 915, 5, 18, 0, 0, 915, 916, 5, 33, 0, - 0, 916, 917, 3, 712, 356, 0, 917, 919, 5, 505, 0, 0, 918, 920, 3, 16, 8, - 0, 919, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, - 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 5, 506, 0, 0, 924, 937, - 1, 0, 0, 0, 925, 926, 5, 18, 0, 0, 926, 927, 5, 34, 0, 0, 927, 928, 3, - 712, 356, 0, 928, 930, 5, 505, 0, 0, 929, 931, 3, 16, 8, 0, 930, 929, 1, - 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, - 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 506, 0, 0, 935, 937, 1, 0, 0, 0, - 936, 841, 1, 0, 0, 0, 936, 849, 1, 0, 0, 0, 936, 857, 1, 0, 0, 0, 936, - 865, 1, 0, 0, 0, 936, 873, 1, 0, 0, 0, 936, 886, 1, 0, 0, 0, 936, 899, - 1, 0, 0, 0, 936, 911, 1, 0, 0, 0, 936, 914, 1, 0, 0, 0, 936, 925, 1, 0, - 0, 0, 937, 11, 1, 0, 0, 0, 938, 939, 5, 48, 0, 0, 939, 944, 3, 14, 7, 0, - 940, 941, 5, 501, 0, 0, 941, 943, 3, 14, 7, 0, 942, 940, 1, 0, 0, 0, 943, - 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 951, - 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 5, 214, 0, 0, 948, 949, 5, - 210, 0, 0, 949, 951, 5, 211, 0, 0, 950, 938, 1, 0, 0, 0, 950, 947, 1, 0, - 0, 0, 951, 13, 1, 0, 0, 0, 952, 953, 5, 207, 0, 0, 953, 954, 5, 490, 0, - 0, 954, 968, 5, 517, 0, 0, 955, 956, 5, 208, 0, 0, 956, 957, 5, 490, 0, - 0, 957, 968, 5, 517, 0, 0, 958, 959, 5, 517, 0, 0, 959, 960, 5, 490, 0, - 0, 960, 968, 5, 517, 0, 0, 961, 962, 5, 517, 0, 0, 962, 963, 5, 490, 0, - 0, 963, 968, 5, 93, 0, 0, 964, 965, 5, 517, 0, 0, 965, 966, 5, 490, 0, - 0, 966, 968, 5, 485, 0, 0, 967, 952, 1, 0, 0, 0, 967, 955, 1, 0, 0, 0, - 967, 958, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 964, 1, 0, 0, 0, 968, - 15, 1, 0, 0, 0, 969, 971, 3, 18, 9, 0, 970, 972, 5, 500, 0, 0, 971, 970, - 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 994, 1, 0, 0, 0, 973, 975, 3, 24, - 12, 0, 974, 976, 5, 500, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, - 0, 976, 994, 1, 0, 0, 0, 977, 979, 3, 26, 13, 0, 978, 980, 5, 500, 0, 0, - 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 994, 1, 0, 0, 0, 981, - 983, 3, 28, 14, 0, 982, 984, 5, 500, 0, 0, 983, 982, 1, 0, 0, 0, 983, 984, - 1, 0, 0, 0, 984, 994, 1, 0, 0, 0, 985, 987, 3, 30, 15, 0, 986, 988, 5, - 500, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, - 0, 0, 989, 991, 3, 32, 16, 0, 990, 992, 5, 500, 0, 0, 991, 990, 1, 0, 0, - 0, 991, 992, 1, 0, 0, 0, 992, 994, 1, 0, 0, 0, 993, 969, 1, 0, 0, 0, 993, - 973, 1, 0, 0, 0, 993, 977, 1, 0, 0, 0, 993, 981, 1, 0, 0, 0, 993, 985, - 1, 0, 0, 0, 993, 989, 1, 0, 0, 0, 994, 17, 1, 0, 0, 0, 995, 996, 5, 48, - 0, 0, 996, 997, 5, 35, 0, 0, 997, 998, 5, 490, 0, 0, 998, 1011, 3, 712, - 356, 0, 999, 1000, 5, 355, 0, 0, 1000, 1001, 5, 503, 0, 0, 1001, 1006, - 3, 20, 10, 0, 1002, 1003, 5, 501, 0, 0, 1003, 1005, 3, 20, 10, 0, 1004, - 1002, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, - 1007, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, - 1010, 5, 504, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 999, 1, 0, 0, 0, 1011, - 1012, 1, 0, 0, 0, 1012, 1035, 1, 0, 0, 0, 1013, 1014, 5, 48, 0, 0, 1014, - 1015, 3, 22, 11, 0, 1015, 1016, 5, 93, 0, 0, 1016, 1017, 3, 714, 357, 0, - 1017, 1035, 1, 0, 0, 0, 1018, 1019, 5, 48, 0, 0, 1019, 1020, 5, 503, 0, - 0, 1020, 1025, 3, 22, 11, 0, 1021, 1022, 5, 501, 0, 0, 1022, 1024, 3, 22, - 11, 0, 1023, 1021, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, 1, 0, - 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, 1, 0, - 0, 0, 1028, 1029, 5, 504, 0, 0, 1029, 1030, 5, 93, 0, 0, 1030, 1031, 3, - 714, 357, 0, 1031, 1035, 1, 0, 0, 0, 1032, 1033, 5, 48, 0, 0, 1033, 1035, - 3, 22, 11, 0, 1034, 995, 1, 0, 0, 0, 1034, 1013, 1, 0, 0, 0, 1034, 1018, - 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 19, 1, 0, 0, 0, 1036, 1037, 3, - 714, 357, 0, 1037, 1038, 5, 76, 0, 0, 1038, 1039, 3, 714, 357, 0, 1039, - 21, 1, 0, 0, 0, 1040, 1041, 3, 714, 357, 0, 1041, 1042, 5, 490, 0, 0, 1042, - 1043, 3, 434, 217, 0, 1043, 1048, 1, 0, 0, 0, 1044, 1045, 5, 517, 0, 0, - 1045, 1046, 5, 490, 0, 0, 1046, 1048, 3, 434, 217, 0, 1047, 1040, 1, 0, - 0, 0, 1047, 1044, 1, 0, 0, 0, 1048, 23, 1, 0, 0, 0, 1049, 1050, 5, 390, - 0, 0, 1050, 1051, 5, 392, 0, 0, 1051, 1052, 3, 714, 357, 0, 1052, 1053, - 5, 505, 0, 0, 1053, 1054, 3, 394, 197, 0, 1054, 1055, 5, 506, 0, 0, 1055, - 1064, 1, 0, 0, 0, 1056, 1057, 5, 390, 0, 0, 1057, 1058, 5, 391, 0, 0, 1058, - 1059, 3, 714, 357, 0, 1059, 1060, 5, 505, 0, 0, 1060, 1061, 3, 394, 197, - 0, 1061, 1062, 5, 506, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1049, 1, 0, - 0, 0, 1063, 1056, 1, 0, 0, 0, 1064, 25, 1, 0, 0, 0, 1065, 1066, 5, 19, - 0, 0, 1066, 1067, 5, 186, 0, 0, 1067, 1072, 3, 714, 357, 0, 1068, 1069, - 5, 501, 0, 0, 1069, 1071, 3, 714, 357, 0, 1070, 1068, 1, 0, 0, 0, 1071, - 1074, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, - 27, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 5, 430, 0, 0, 1076, - 1077, 3, 714, 357, 0, 1077, 1078, 5, 139, 0, 0, 1078, 1079, 5, 505, 0, - 0, 1079, 1080, 3, 394, 197, 0, 1080, 1081, 5, 506, 0, 0, 1081, 29, 1, 0, - 0, 0, 1082, 1083, 5, 47, 0, 0, 1083, 1084, 5, 203, 0, 0, 1084, 1085, 3, - 354, 177, 0, 1085, 31, 1, 0, 0, 0, 1086, 1087, 5, 19, 0, 0, 1087, 1088, - 5, 203, 0, 0, 1088, 1089, 5, 520, 0, 0, 1089, 33, 1, 0, 0, 0, 1090, 1091, - 5, 374, 0, 0, 1091, 1092, 7, 2, 0, 0, 1092, 1095, 3, 712, 356, 0, 1093, - 1094, 5, 429, 0, 0, 1094, 1096, 3, 712, 356, 0, 1095, 1093, 1, 0, 0, 0, - 1095, 1096, 1, 0, 0, 0, 1096, 1114, 1, 0, 0, 0, 1097, 1098, 5, 375, 0, - 0, 1098, 1099, 5, 33, 0, 0, 1099, 1114, 3, 712, 356, 0, 1100, 1101, 5, - 287, 0, 0, 1101, 1102, 5, 376, 0, 0, 1102, 1103, 5, 33, 0, 0, 1103, 1114, - 3, 712, 356, 0, 1104, 1105, 5, 372, 0, 0, 1105, 1109, 5, 503, 0, 0, 1106, - 1108, 3, 36, 18, 0, 1107, 1106, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, - 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, - 1109, 1, 0, 0, 0, 1112, 1114, 5, 504, 0, 0, 1113, 1090, 1, 0, 0, 0, 1113, - 1097, 1, 0, 0, 0, 1113, 1100, 1, 0, 0, 0, 1113, 1104, 1, 0, 0, 0, 1114, - 35, 1, 0, 0, 0, 1115, 1116, 5, 372, 0, 0, 1116, 1117, 5, 156, 0, 0, 1117, - 1122, 5, 517, 0, 0, 1118, 1119, 5, 33, 0, 0, 1119, 1123, 3, 712, 356, 0, - 1120, 1121, 5, 30, 0, 0, 1121, 1123, 3, 712, 356, 0, 1122, 1118, 1, 0, - 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1125, 1, 0, - 0, 0, 1124, 1126, 5, 500, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, - 0, 0, 0, 1126, 1141, 1, 0, 0, 0, 1127, 1128, 5, 372, 0, 0, 1128, 1129, - 5, 517, 0, 0, 1129, 1133, 5, 503, 0, 0, 1130, 1132, 3, 36, 18, 0, 1131, - 1130, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, - 1134, 1, 0, 0, 0, 1134, 1136, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, - 1138, 5, 504, 0, 0, 1137, 1139, 5, 500, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, - 1139, 1, 0, 0, 0, 1139, 1141, 1, 0, 0, 0, 1140, 1115, 1, 0, 0, 0, 1140, - 1127, 1, 0, 0, 0, 1141, 37, 1, 0, 0, 0, 1142, 1143, 5, 19, 0, 0, 1143, - 1144, 5, 23, 0, 0, 1144, 1222, 3, 712, 356, 0, 1145, 1146, 5, 19, 0, 0, - 1146, 1147, 5, 27, 0, 0, 1147, 1222, 3, 712, 356, 0, 1148, 1149, 5, 19, - 0, 0, 1149, 1150, 5, 28, 0, 0, 1150, 1222, 3, 712, 356, 0, 1151, 1152, - 5, 19, 0, 0, 1152, 1153, 5, 37, 0, 0, 1153, 1222, 3, 712, 356, 0, 1154, - 1155, 5, 19, 0, 0, 1155, 1156, 5, 30, 0, 0, 1156, 1222, 3, 712, 356, 0, - 1157, 1158, 5, 19, 0, 0, 1158, 1159, 5, 31, 0, 0, 1159, 1222, 3, 712, 356, - 0, 1160, 1161, 5, 19, 0, 0, 1161, 1162, 5, 33, 0, 0, 1162, 1222, 3, 712, - 356, 0, 1163, 1164, 5, 19, 0, 0, 1164, 1165, 5, 34, 0, 0, 1165, 1222, 3, - 712, 356, 0, 1166, 1167, 5, 19, 0, 0, 1167, 1168, 5, 29, 0, 0, 1168, 1222, - 3, 712, 356, 0, 1169, 1170, 5, 19, 0, 0, 1170, 1171, 5, 36, 0, 0, 1171, - 1222, 3, 712, 356, 0, 1172, 1173, 5, 19, 0, 0, 1173, 1174, 5, 114, 0, 0, - 1174, 1175, 5, 116, 0, 0, 1175, 1222, 3, 712, 356, 0, 1176, 1177, 5, 19, - 0, 0, 1177, 1178, 5, 41, 0, 0, 1178, 1179, 3, 712, 356, 0, 1179, 1180, - 5, 93, 0, 0, 1180, 1181, 3, 712, 356, 0, 1181, 1222, 1, 0, 0, 0, 1182, - 1183, 5, 19, 0, 0, 1183, 1184, 5, 314, 0, 0, 1184, 1185, 5, 339, 0, 0, - 1185, 1222, 3, 712, 356, 0, 1186, 1187, 5, 19, 0, 0, 1187, 1188, 5, 314, - 0, 0, 1188, 1189, 5, 312, 0, 0, 1189, 1222, 3, 712, 356, 0, 1190, 1191, - 5, 19, 0, 0, 1191, 1192, 5, 440, 0, 0, 1192, 1193, 5, 441, 0, 0, 1193, - 1194, 5, 312, 0, 0, 1194, 1222, 3, 712, 356, 0, 1195, 1196, 5, 19, 0, 0, - 1196, 1197, 5, 32, 0, 0, 1197, 1222, 3, 712, 356, 0, 1198, 1199, 5, 19, - 0, 0, 1199, 1200, 5, 226, 0, 0, 1200, 1201, 5, 227, 0, 0, 1201, 1222, 3, - 712, 356, 0, 1202, 1203, 5, 19, 0, 0, 1203, 1204, 5, 329, 0, 0, 1204, 1205, - 5, 417, 0, 0, 1205, 1222, 3, 712, 356, 0, 1206, 1207, 5, 19, 0, 0, 1207, - 1208, 5, 311, 0, 0, 1208, 1209, 5, 339, 0, 0, 1209, 1222, 3, 712, 356, - 0, 1210, 1211, 5, 19, 0, 0, 1211, 1212, 5, 444, 0, 0, 1212, 1222, 5, 517, - 0, 0, 1213, 1214, 5, 19, 0, 0, 1214, 1215, 5, 219, 0, 0, 1215, 1216, 5, - 517, 0, 0, 1216, 1219, 5, 289, 0, 0, 1217, 1220, 3, 712, 356, 0, 1218, - 1220, 5, 521, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1218, 1, 0, 0, 0, 1220, - 1222, 1, 0, 0, 0, 1221, 1142, 1, 0, 0, 0, 1221, 1145, 1, 0, 0, 0, 1221, - 1148, 1, 0, 0, 0, 1221, 1151, 1, 0, 0, 0, 1221, 1154, 1, 0, 0, 0, 1221, - 1157, 1, 0, 0, 0, 1221, 1160, 1, 0, 0, 0, 1221, 1163, 1, 0, 0, 0, 1221, - 1166, 1, 0, 0, 0, 1221, 1169, 1, 0, 0, 0, 1221, 1172, 1, 0, 0, 0, 1221, - 1176, 1, 0, 0, 0, 1221, 1182, 1, 0, 0, 0, 1221, 1186, 1, 0, 0, 0, 1221, - 1190, 1, 0, 0, 0, 1221, 1195, 1, 0, 0, 0, 1221, 1198, 1, 0, 0, 0, 1221, - 1202, 1, 0, 0, 0, 1221, 1206, 1, 0, 0, 0, 1221, 1210, 1, 0, 0, 0, 1221, - 1213, 1, 0, 0, 0, 1222, 39, 1, 0, 0, 0, 1223, 1224, 5, 20, 0, 0, 1224, - 1225, 5, 23, 0, 0, 1225, 1226, 3, 712, 356, 0, 1226, 1227, 5, 426, 0, 0, - 1227, 1228, 5, 521, 0, 0, 1228, 1235, 1, 0, 0, 0, 1229, 1230, 5, 20, 0, - 0, 1230, 1231, 5, 29, 0, 0, 1231, 1232, 5, 521, 0, 0, 1232, 1233, 5, 426, - 0, 0, 1233, 1235, 5, 521, 0, 0, 1234, 1223, 1, 0, 0, 0, 1234, 1229, 1, - 0, 0, 0, 1235, 41, 1, 0, 0, 0, 1236, 1245, 5, 21, 0, 0, 1237, 1246, 5, - 33, 0, 0, 1238, 1246, 5, 30, 0, 0, 1239, 1246, 5, 34, 0, 0, 1240, 1246, - 5, 31, 0, 0, 1241, 1246, 5, 28, 0, 0, 1242, 1246, 5, 37, 0, 0, 1243, 1244, - 5, 353, 0, 0, 1244, 1246, 5, 352, 0, 0, 1245, 1237, 1, 0, 0, 0, 1245, 1238, - 1, 0, 0, 0, 1245, 1239, 1, 0, 0, 0, 1245, 1240, 1, 0, 0, 0, 1245, 1241, - 1, 0, 0, 0, 1245, 1242, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1247, - 1, 0, 0, 0, 1247, 1248, 3, 712, 356, 0, 1248, 1249, 5, 426, 0, 0, 1249, - 1250, 5, 219, 0, 0, 1250, 1256, 5, 517, 0, 0, 1251, 1254, 5, 289, 0, 0, - 1252, 1255, 3, 712, 356, 0, 1253, 1255, 5, 521, 0, 0, 1254, 1252, 1, 0, - 0, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1251, 1, 0, - 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1305, 1, 0, 0, 0, 1258, 1267, 5, 21, - 0, 0, 1259, 1268, 5, 33, 0, 0, 1260, 1268, 5, 30, 0, 0, 1261, 1268, 5, - 34, 0, 0, 1262, 1268, 5, 31, 0, 0, 1263, 1268, 5, 28, 0, 0, 1264, 1268, - 5, 37, 0, 0, 1265, 1266, 5, 353, 0, 0, 1266, 1268, 5, 352, 0, 0, 1267, - 1259, 1, 0, 0, 0, 1267, 1260, 1, 0, 0, 0, 1267, 1261, 1, 0, 0, 0, 1267, - 1262, 1, 0, 0, 0, 1267, 1263, 1, 0, 0, 0, 1267, 1264, 1, 0, 0, 0, 1267, - 1265, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 3, 712, 356, 0, 1270, - 1273, 5, 426, 0, 0, 1271, 1274, 3, 712, 356, 0, 1272, 1274, 5, 521, 0, - 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1305, 1, 0, 0, - 0, 1275, 1276, 5, 21, 0, 0, 1276, 1277, 5, 23, 0, 0, 1277, 1278, 3, 712, - 356, 0, 1278, 1281, 5, 426, 0, 0, 1279, 1282, 3, 712, 356, 0, 1280, 1282, - 5, 521, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1305, - 1, 0, 0, 0, 1283, 1284, 5, 21, 0, 0, 1284, 1285, 5, 219, 0, 0, 1285, 1286, - 3, 712, 356, 0, 1286, 1287, 5, 426, 0, 0, 1287, 1288, 5, 219, 0, 0, 1288, - 1294, 5, 517, 0, 0, 1289, 1292, 5, 289, 0, 0, 1290, 1293, 3, 712, 356, - 0, 1291, 1293, 5, 521, 0, 0, 1292, 1290, 1, 0, 0, 0, 1292, 1291, 1, 0, - 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1289, 1, 0, 0, 0, 1294, 1295, 1, 0, - 0, 0, 1295, 1305, 1, 0, 0, 0, 1296, 1297, 5, 21, 0, 0, 1297, 1298, 5, 219, - 0, 0, 1298, 1299, 3, 712, 356, 0, 1299, 1302, 5, 426, 0, 0, 1300, 1303, - 3, 712, 356, 0, 1301, 1303, 5, 521, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, - 1301, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1236, 1, 0, 0, 0, 1304, - 1258, 1, 0, 0, 0, 1304, 1275, 1, 0, 0, 0, 1304, 1283, 1, 0, 0, 0, 1304, - 1296, 1, 0, 0, 0, 1305, 43, 1, 0, 0, 0, 1306, 1324, 3, 46, 23, 0, 1307, - 1324, 3, 48, 24, 0, 1308, 1324, 3, 52, 26, 0, 1309, 1324, 3, 54, 27, 0, - 1310, 1324, 3, 56, 28, 0, 1311, 1324, 3, 58, 29, 0, 1312, 1324, 3, 60, - 30, 0, 1313, 1324, 3, 62, 31, 0, 1314, 1324, 3, 64, 32, 0, 1315, 1324, - 3, 66, 33, 0, 1316, 1324, 3, 68, 34, 0, 1317, 1324, 3, 70, 35, 0, 1318, - 1324, 3, 72, 36, 0, 1319, 1324, 3, 74, 37, 0, 1320, 1324, 3, 76, 38, 0, - 1321, 1324, 3, 80, 40, 0, 1322, 1324, 3, 82, 41, 0, 1323, 1306, 1, 0, 0, - 0, 1323, 1307, 1, 0, 0, 0, 1323, 1308, 1, 0, 0, 0, 1323, 1309, 1, 0, 0, - 0, 1323, 1310, 1, 0, 0, 0, 1323, 1311, 1, 0, 0, 0, 1323, 1312, 1, 0, 0, - 0, 1323, 1313, 1, 0, 0, 0, 1323, 1314, 1, 0, 0, 0, 1323, 1315, 1, 0, 0, - 0, 1323, 1316, 1, 0, 0, 0, 1323, 1317, 1, 0, 0, 0, 1323, 1318, 1, 0, 0, - 0, 1323, 1319, 1, 0, 0, 0, 1323, 1320, 1, 0, 0, 0, 1323, 1321, 1, 0, 0, - 0, 1323, 1322, 1, 0, 0, 0, 1324, 45, 1, 0, 0, 0, 1325, 1326, 5, 17, 0, - 0, 1326, 1327, 5, 29, 0, 0, 1327, 1328, 5, 449, 0, 0, 1328, 1331, 3, 712, - 356, 0, 1329, 1330, 5, 483, 0, 0, 1330, 1332, 5, 517, 0, 0, 1331, 1329, - 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 47, 1, 0, 0, 0, 1333, 1334, 5, - 19, 0, 0, 1334, 1335, 5, 29, 0, 0, 1335, 1336, 5, 449, 0, 0, 1336, 1337, - 3, 712, 356, 0, 1337, 49, 1, 0, 0, 0, 1338, 1339, 5, 461, 0, 0, 1339, 1340, - 5, 449, 0, 0, 1340, 1341, 3, 714, 357, 0, 1341, 1342, 5, 503, 0, 0, 1342, - 1343, 3, 84, 42, 0, 1343, 1347, 5, 504, 0, 0, 1344, 1345, 5, 455, 0, 0, - 1345, 1346, 5, 85, 0, 0, 1346, 1348, 5, 450, 0, 0, 1347, 1344, 1, 0, 0, - 0, 1347, 1348, 1, 0, 0, 0, 1348, 51, 1, 0, 0, 0, 1349, 1350, 5, 18, 0, - 0, 1350, 1351, 5, 461, 0, 0, 1351, 1352, 5, 449, 0, 0, 1352, 1353, 3, 714, - 357, 0, 1353, 1354, 5, 47, 0, 0, 1354, 1355, 5, 29, 0, 0, 1355, 1356, 5, - 450, 0, 0, 1356, 1357, 5, 503, 0, 0, 1357, 1358, 3, 84, 42, 0, 1358, 1359, - 5, 504, 0, 0, 1359, 1372, 1, 0, 0, 0, 1360, 1361, 5, 18, 0, 0, 1361, 1362, - 5, 461, 0, 0, 1362, 1363, 5, 449, 0, 0, 1363, 1364, 3, 714, 357, 0, 1364, - 1365, 5, 133, 0, 0, 1365, 1366, 5, 29, 0, 0, 1366, 1367, 5, 450, 0, 0, - 1367, 1368, 5, 503, 0, 0, 1368, 1369, 3, 84, 42, 0, 1369, 1370, 5, 504, - 0, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1349, 1, 0, 0, 0, 1371, 1360, 1, 0, - 0, 0, 1372, 53, 1, 0, 0, 0, 1373, 1374, 5, 19, 0, 0, 1374, 1375, 5, 461, - 0, 0, 1375, 1376, 5, 449, 0, 0, 1376, 1377, 3, 714, 357, 0, 1377, 55, 1, - 0, 0, 0, 1378, 1379, 5, 451, 0, 0, 1379, 1380, 3, 84, 42, 0, 1380, 1381, - 5, 93, 0, 0, 1381, 1382, 3, 712, 356, 0, 1382, 1383, 5, 503, 0, 0, 1383, - 1384, 3, 86, 43, 0, 1384, 1387, 5, 504, 0, 0, 1385, 1386, 5, 72, 0, 0, - 1386, 1388, 5, 517, 0, 0, 1387, 1385, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, - 0, 1388, 57, 1, 0, 0, 0, 1389, 1390, 5, 452, 0, 0, 1390, 1391, 3, 84, 42, - 0, 1391, 1392, 5, 93, 0, 0, 1392, 1393, 3, 712, 356, 0, 1393, 59, 1, 0, - 0, 0, 1394, 1395, 5, 451, 0, 0, 1395, 1396, 5, 397, 0, 0, 1396, 1397, 5, - 93, 0, 0, 1397, 1398, 5, 30, 0, 0, 1398, 1399, 3, 712, 356, 0, 1399, 1400, - 5, 426, 0, 0, 1400, 1401, 3, 84, 42, 0, 1401, 61, 1, 0, 0, 0, 1402, 1403, - 5, 452, 0, 0, 1403, 1404, 5, 397, 0, 0, 1404, 1405, 5, 93, 0, 0, 1405, - 1406, 5, 30, 0, 0, 1406, 1407, 3, 712, 356, 0, 1407, 1408, 5, 71, 0, 0, - 1408, 1409, 3, 84, 42, 0, 1409, 63, 1, 0, 0, 0, 1410, 1411, 5, 451, 0, - 0, 1411, 1412, 5, 25, 0, 0, 1412, 1413, 5, 93, 0, 0, 1413, 1414, 5, 33, - 0, 0, 1414, 1415, 3, 712, 356, 0, 1415, 1416, 5, 426, 0, 0, 1416, 1417, - 3, 84, 42, 0, 1417, 65, 1, 0, 0, 0, 1418, 1419, 5, 452, 0, 0, 1419, 1420, - 5, 25, 0, 0, 1420, 1421, 5, 93, 0, 0, 1421, 1422, 5, 33, 0, 0, 1422, 1423, - 3, 712, 356, 0, 1423, 1424, 5, 71, 0, 0, 1424, 1425, 3, 84, 42, 0, 1425, - 67, 1, 0, 0, 0, 1426, 1427, 5, 451, 0, 0, 1427, 1428, 5, 397, 0, 0, 1428, - 1429, 5, 93, 0, 0, 1429, 1430, 5, 32, 0, 0, 1430, 1431, 3, 712, 356, 0, - 1431, 1432, 5, 426, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 69, 1, 0, 0, - 0, 1434, 1435, 5, 452, 0, 0, 1435, 1436, 5, 397, 0, 0, 1436, 1437, 5, 93, - 0, 0, 1437, 1438, 5, 32, 0, 0, 1438, 1439, 3, 712, 356, 0, 1439, 1440, - 5, 71, 0, 0, 1440, 1441, 3, 84, 42, 0, 1441, 71, 1, 0, 0, 0, 1442, 1443, - 5, 451, 0, 0, 1443, 1444, 5, 459, 0, 0, 1444, 1445, 5, 93, 0, 0, 1445, - 1446, 5, 314, 0, 0, 1446, 1447, 5, 312, 0, 0, 1447, 1448, 3, 712, 356, - 0, 1448, 1449, 5, 426, 0, 0, 1449, 1450, 3, 84, 42, 0, 1450, 73, 1, 0, - 0, 0, 1451, 1452, 5, 452, 0, 0, 1452, 1453, 5, 459, 0, 0, 1453, 1454, 5, - 93, 0, 0, 1454, 1455, 5, 314, 0, 0, 1455, 1456, 5, 312, 0, 0, 1456, 1457, - 3, 712, 356, 0, 1457, 1458, 5, 71, 0, 0, 1458, 1459, 3, 84, 42, 0, 1459, - 75, 1, 0, 0, 0, 1460, 1461, 5, 18, 0, 0, 1461, 1462, 5, 59, 0, 0, 1462, - 1463, 5, 448, 0, 0, 1463, 1464, 5, 460, 0, 0, 1464, 1472, 7, 3, 0, 0, 1465, - 1466, 5, 18, 0, 0, 1466, 1467, 5, 59, 0, 0, 1467, 1468, 5, 448, 0, 0, 1468, - 1469, 5, 456, 0, 0, 1469, 1470, 5, 486, 0, 0, 1470, 1472, 7, 4, 0, 0, 1471, - 1460, 1, 0, 0, 0, 1471, 1465, 1, 0, 0, 0, 1472, 77, 1, 0, 0, 0, 1473, 1474, - 5, 456, 0, 0, 1474, 1475, 5, 461, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, - 1477, 5, 351, 0, 0, 1477, 1480, 5, 517, 0, 0, 1478, 1479, 5, 23, 0, 0, - 1479, 1481, 3, 712, 356, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, - 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 503, 0, 0, 1483, 1488, 3, 714, - 357, 0, 1484, 1485, 5, 501, 0, 0, 1485, 1487, 3, 714, 357, 0, 1486, 1484, - 1, 0, 0, 0, 1487, 1490, 1, 0, 0, 0, 1488, 1486, 1, 0, 0, 0, 1488, 1489, - 1, 0, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1492, - 5, 504, 0, 0, 1492, 79, 1, 0, 0, 0, 1493, 1494, 5, 19, 0, 0, 1494, 1495, - 5, 456, 0, 0, 1495, 1496, 5, 461, 0, 0, 1496, 1497, 5, 517, 0, 0, 1497, - 81, 1, 0, 0, 0, 1498, 1499, 5, 393, 0, 0, 1499, 1502, 5, 448, 0, 0, 1500, - 1501, 5, 289, 0, 0, 1501, 1503, 3, 712, 356, 0, 1502, 1500, 1, 0, 0, 0, - 1502, 1503, 1, 0, 0, 0, 1503, 83, 1, 0, 0, 0, 1504, 1509, 3, 712, 356, - 0, 1505, 1506, 5, 501, 0, 0, 1506, 1508, 3, 712, 356, 0, 1507, 1505, 1, - 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, - 0, 0, 0, 1510, 85, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1517, 3, 88, - 44, 0, 1513, 1514, 5, 501, 0, 0, 1514, 1516, 3, 88, 44, 0, 1515, 1513, - 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, - 1, 0, 0, 0, 1518, 87, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1549, 5, - 17, 0, 0, 1521, 1549, 5, 100, 0, 0, 1522, 1523, 5, 481, 0, 0, 1523, 1549, - 5, 495, 0, 0, 1524, 1525, 5, 481, 0, 0, 1525, 1526, 5, 503, 0, 0, 1526, - 1531, 5, 521, 0, 0, 1527, 1528, 5, 501, 0, 0, 1528, 1530, 5, 521, 0, 0, - 1529, 1527, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, - 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1531, 1, 0, 0, 0, - 1534, 1549, 5, 504, 0, 0, 1535, 1536, 5, 482, 0, 0, 1536, 1549, 5, 495, - 0, 0, 1537, 1538, 5, 482, 0, 0, 1538, 1539, 5, 503, 0, 0, 1539, 1544, 5, - 521, 0, 0, 1540, 1541, 5, 501, 0, 0, 1541, 1543, 5, 521, 0, 0, 1542, 1540, - 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, - 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1549, - 5, 504, 0, 0, 1548, 1520, 1, 0, 0, 0, 1548, 1521, 1, 0, 0, 0, 1548, 1522, - 1, 0, 0, 0, 1548, 1524, 1, 0, 0, 0, 1548, 1535, 1, 0, 0, 0, 1548, 1537, - 1, 0, 0, 0, 1549, 89, 1, 0, 0, 0, 1550, 1551, 5, 24, 0, 0, 1551, 1552, - 5, 23, 0, 0, 1552, 1554, 3, 712, 356, 0, 1553, 1555, 3, 92, 46, 0, 1554, - 1553, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, - 1558, 3, 94, 47, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, - 1597, 1, 0, 0, 0, 1559, 1560, 5, 11, 0, 0, 1560, 1561, 5, 23, 0, 0, 1561, - 1563, 3, 712, 356, 0, 1562, 1564, 3, 92, 46, 0, 1563, 1562, 1, 0, 0, 0, - 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1567, 3, 94, 47, - 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1597, 1, 0, 0, - 0, 1568, 1569, 5, 25, 0, 0, 1569, 1570, 5, 23, 0, 0, 1570, 1572, 3, 712, - 356, 0, 1571, 1573, 3, 94, 47, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, - 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 5, 76, 0, 0, 1575, 1577, 5, - 503, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, - 1, 0, 0, 0, 1578, 1580, 3, 586, 293, 0, 1579, 1581, 5, 504, 0, 0, 1580, - 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1597, 1, 0, 0, 0, 1582, - 1583, 5, 26, 0, 0, 1583, 1584, 5, 23, 0, 0, 1584, 1586, 3, 712, 356, 0, - 1585, 1587, 3, 94, 47, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, - 0, 1587, 1597, 1, 0, 0, 0, 1588, 1589, 5, 23, 0, 0, 1589, 1591, 3, 712, - 356, 0, 1590, 1592, 3, 92, 46, 0, 1591, 1590, 1, 0, 0, 0, 1591, 1592, 1, - 0, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1595, 3, 94, 47, 0, 1594, 1593, - 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1550, - 1, 0, 0, 0, 1596, 1559, 1, 0, 0, 0, 1596, 1568, 1, 0, 0, 0, 1596, 1582, - 1, 0, 0, 0, 1596, 1588, 1, 0, 0, 0, 1597, 91, 1, 0, 0, 0, 1598, 1599, 5, - 46, 0, 0, 1599, 1603, 3, 712, 356, 0, 1600, 1601, 5, 45, 0, 0, 1601, 1603, - 3, 712, 356, 0, 1602, 1598, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1603, 93, - 1, 0, 0, 0, 1604, 1606, 5, 503, 0, 0, 1605, 1607, 3, 100, 50, 0, 1606, - 1605, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, - 1610, 5, 504, 0, 0, 1609, 1611, 3, 96, 48, 0, 1610, 1609, 1, 0, 0, 0, 1610, - 1611, 1, 0, 0, 0, 1611, 1614, 1, 0, 0, 0, 1612, 1614, 3, 96, 48, 0, 1613, - 1604, 1, 0, 0, 0, 1613, 1612, 1, 0, 0, 0, 1614, 95, 1, 0, 0, 0, 1615, 1622, - 3, 98, 49, 0, 1616, 1618, 5, 501, 0, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, - 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 3, 98, 49, 0, 1620, 1617, - 1, 0, 0, 0, 1621, 1624, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1623, - 1, 0, 0, 0, 1623, 97, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1625, 1626, 5, - 406, 0, 0, 1626, 1630, 5, 517, 0, 0, 1627, 1628, 5, 41, 0, 0, 1628, 1630, - 3, 114, 57, 0, 1629, 1625, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1630, 99, - 1, 0, 0, 0, 1631, 1636, 3, 102, 51, 0, 1632, 1633, 5, 501, 0, 0, 1633, - 1635, 3, 102, 51, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, - 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 101, 1, 0, 0, 0, 1638, - 1636, 1, 0, 0, 0, 1639, 1641, 3, 722, 361, 0, 1640, 1639, 1, 0, 0, 0, 1640, - 1641, 1, 0, 0, 0, 1641, 1645, 1, 0, 0, 0, 1642, 1644, 3, 724, 362, 0, 1643, - 1642, 1, 0, 0, 0, 1644, 1647, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, - 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1648, - 1649, 3, 104, 52, 0, 1649, 1650, 5, 509, 0, 0, 1650, 1654, 3, 108, 54, - 0, 1651, 1653, 3, 106, 53, 0, 1652, 1651, 1, 0, 0, 0, 1653, 1656, 1, 0, - 0, 0, 1654, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 103, 1, 0, - 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1661, 5, 521, 0, 0, 1658, 1661, 5, - 523, 0, 0, 1659, 1661, 3, 734, 367, 0, 1660, 1657, 1, 0, 0, 0, 1660, 1658, - 1, 0, 0, 0, 1660, 1659, 1, 0, 0, 0, 1661, 105, 1, 0, 0, 0, 1662, 1665, - 5, 7, 0, 0, 1663, 1664, 5, 302, 0, 0, 1664, 1666, 5, 517, 0, 0, 1665, 1663, - 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1696, 1, 0, 0, 0, 1667, 1668, - 5, 287, 0, 0, 1668, 1671, 5, 288, 0, 0, 1669, 1670, 5, 302, 0, 0, 1670, - 1672, 5, 517, 0, 0, 1671, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, - 1696, 1, 0, 0, 0, 1673, 1676, 5, 294, 0, 0, 1674, 1675, 5, 302, 0, 0, 1675, - 1677, 5, 517, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, - 1696, 1, 0, 0, 0, 1678, 1681, 5, 295, 0, 0, 1679, 1682, 3, 716, 358, 0, - 1680, 1682, 3, 672, 336, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, - 0, 1682, 1696, 1, 0, 0, 0, 1683, 1686, 5, 301, 0, 0, 1684, 1685, 5, 302, - 0, 0, 1685, 1687, 5, 517, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, - 0, 0, 0, 1687, 1696, 1, 0, 0, 0, 1688, 1693, 5, 310, 0, 0, 1689, 1691, - 5, 480, 0, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, - 1, 0, 0, 0, 1692, 1694, 3, 712, 356, 0, 1693, 1690, 1, 0, 0, 0, 1693, 1694, - 1, 0, 0, 0, 1694, 1696, 1, 0, 0, 0, 1695, 1662, 1, 0, 0, 0, 1695, 1667, - 1, 0, 0, 0, 1695, 1673, 1, 0, 0, 0, 1695, 1678, 1, 0, 0, 0, 1695, 1683, - 1, 0, 0, 0, 1695, 1688, 1, 0, 0, 0, 1696, 107, 1, 0, 0, 0, 1697, 1701, - 5, 262, 0, 0, 1698, 1699, 5, 503, 0, 0, 1699, 1700, 5, 519, 0, 0, 1700, - 1702, 5, 504, 0, 0, 1701, 1698, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, - 1734, 1, 0, 0, 0, 1703, 1734, 5, 263, 0, 0, 1704, 1734, 5, 264, 0, 0, 1705, - 1734, 5, 265, 0, 0, 1706, 1734, 5, 266, 0, 0, 1707, 1734, 5, 267, 0, 0, - 1708, 1734, 5, 268, 0, 0, 1709, 1734, 5, 269, 0, 0, 1710, 1734, 5, 270, - 0, 0, 1711, 1734, 5, 271, 0, 0, 1712, 1734, 5, 272, 0, 0, 1713, 1734, 5, - 273, 0, 0, 1714, 1715, 5, 274, 0, 0, 1715, 1716, 5, 503, 0, 0, 1716, 1717, - 3, 110, 55, 0, 1717, 1718, 5, 504, 0, 0, 1718, 1734, 1, 0, 0, 0, 1719, - 1720, 5, 23, 0, 0, 1720, 1721, 5, 491, 0, 0, 1721, 1722, 5, 521, 0, 0, - 1722, 1734, 5, 492, 0, 0, 1723, 1724, 5, 275, 0, 0, 1724, 1734, 3, 712, - 356, 0, 1725, 1726, 5, 28, 0, 0, 1726, 1727, 5, 503, 0, 0, 1727, 1728, - 3, 712, 356, 0, 1728, 1729, 5, 504, 0, 0, 1729, 1734, 1, 0, 0, 0, 1730, - 1731, 5, 13, 0, 0, 1731, 1734, 3, 712, 356, 0, 1732, 1734, 3, 712, 356, - 0, 1733, 1697, 1, 0, 0, 0, 1733, 1703, 1, 0, 0, 0, 1733, 1704, 1, 0, 0, - 0, 1733, 1705, 1, 0, 0, 0, 1733, 1706, 1, 0, 0, 0, 1733, 1707, 1, 0, 0, - 0, 1733, 1708, 1, 0, 0, 0, 1733, 1709, 1, 0, 0, 0, 1733, 1710, 1, 0, 0, - 0, 1733, 1711, 1, 0, 0, 0, 1733, 1712, 1, 0, 0, 0, 1733, 1713, 1, 0, 0, - 0, 1733, 1714, 1, 0, 0, 0, 1733, 1719, 1, 0, 0, 0, 1733, 1723, 1, 0, 0, - 0, 1733, 1725, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, - 0, 1734, 109, 1, 0, 0, 0, 1735, 1736, 7, 5, 0, 0, 1736, 111, 1, 0, 0, 0, - 1737, 1741, 5, 262, 0, 0, 1738, 1739, 5, 503, 0, 0, 1739, 1740, 5, 519, - 0, 0, 1740, 1742, 5, 504, 0, 0, 1741, 1738, 1, 0, 0, 0, 1741, 1742, 1, - 0, 0, 0, 1742, 1763, 1, 0, 0, 0, 1743, 1763, 5, 263, 0, 0, 1744, 1763, - 5, 264, 0, 0, 1745, 1763, 5, 265, 0, 0, 1746, 1763, 5, 266, 0, 0, 1747, - 1763, 5, 267, 0, 0, 1748, 1763, 5, 268, 0, 0, 1749, 1763, 5, 269, 0, 0, - 1750, 1763, 5, 270, 0, 0, 1751, 1763, 5, 271, 0, 0, 1752, 1763, 5, 272, - 0, 0, 1753, 1763, 5, 273, 0, 0, 1754, 1755, 5, 275, 0, 0, 1755, 1763, 3, - 712, 356, 0, 1756, 1757, 5, 28, 0, 0, 1757, 1758, 5, 503, 0, 0, 1758, 1759, - 3, 712, 356, 0, 1759, 1760, 5, 504, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, - 1763, 3, 712, 356, 0, 1762, 1737, 1, 0, 0, 0, 1762, 1743, 1, 0, 0, 0, 1762, - 1744, 1, 0, 0, 0, 1762, 1745, 1, 0, 0, 0, 1762, 1746, 1, 0, 0, 0, 1762, - 1747, 1, 0, 0, 0, 1762, 1748, 1, 0, 0, 0, 1762, 1749, 1, 0, 0, 0, 1762, - 1750, 1, 0, 0, 0, 1762, 1751, 1, 0, 0, 0, 1762, 1752, 1, 0, 0, 0, 1762, - 1753, 1, 0, 0, 0, 1762, 1754, 1, 0, 0, 0, 1762, 1756, 1, 0, 0, 0, 1762, - 1761, 1, 0, 0, 0, 1763, 113, 1, 0, 0, 0, 1764, 1766, 5, 521, 0, 0, 1765, - 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, - 1768, 5, 503, 0, 0, 1768, 1769, 3, 116, 58, 0, 1769, 1770, 5, 504, 0, 0, - 1770, 115, 1, 0, 0, 0, 1771, 1776, 3, 118, 59, 0, 1772, 1773, 5, 501, 0, - 0, 1773, 1775, 3, 118, 59, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1778, 1, 0, - 0, 0, 1776, 1774, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 117, 1, 0, - 0, 0, 1778, 1776, 1, 0, 0, 0, 1779, 1781, 3, 120, 60, 0, 1780, 1782, 7, - 6, 0, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 119, 1, - 0, 0, 0, 1783, 1787, 5, 521, 0, 0, 1784, 1787, 5, 523, 0, 0, 1785, 1787, - 3, 734, 367, 0, 1786, 1783, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1785, - 1, 0, 0, 0, 1787, 121, 1, 0, 0, 0, 1788, 1789, 5, 27, 0, 0, 1789, 1790, - 3, 712, 356, 0, 1790, 1791, 5, 71, 0, 0, 1791, 1792, 3, 712, 356, 0, 1792, - 1793, 5, 426, 0, 0, 1793, 1795, 3, 712, 356, 0, 1794, 1796, 3, 124, 62, - 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 123, 1, 0, 0, - 0, 1797, 1799, 3, 126, 63, 0, 1798, 1797, 1, 0, 0, 0, 1799, 1800, 1, 0, - 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 125, 1, 0, - 0, 0, 1802, 1803, 5, 419, 0, 0, 1803, 1813, 7, 7, 0, 0, 1804, 1805, 5, - 42, 0, 0, 1805, 1813, 7, 8, 0, 0, 1806, 1807, 5, 51, 0, 0, 1807, 1813, - 7, 9, 0, 0, 1808, 1809, 5, 53, 0, 0, 1809, 1813, 3, 128, 64, 0, 1810, 1811, - 5, 406, 0, 0, 1811, 1813, 5, 517, 0, 0, 1812, 1802, 1, 0, 0, 0, 1812, 1804, - 1, 0, 0, 0, 1812, 1806, 1, 0, 0, 0, 1812, 1808, 1, 0, 0, 0, 1812, 1810, - 1, 0, 0, 0, 1813, 127, 1, 0, 0, 0, 1814, 1815, 7, 10, 0, 0, 1815, 129, - 1, 0, 0, 0, 1816, 1817, 5, 47, 0, 0, 1817, 1818, 5, 38, 0, 0, 1818, 1889, - 3, 102, 51, 0, 1819, 1820, 5, 47, 0, 0, 1820, 1821, 5, 39, 0, 0, 1821, - 1889, 3, 102, 51, 0, 1822, 1823, 5, 20, 0, 0, 1823, 1824, 5, 38, 0, 0, - 1824, 1825, 3, 104, 52, 0, 1825, 1826, 5, 426, 0, 0, 1826, 1827, 3, 104, - 52, 0, 1827, 1889, 1, 0, 0, 0, 1828, 1829, 5, 20, 0, 0, 1829, 1830, 5, - 39, 0, 0, 1830, 1831, 3, 104, 52, 0, 1831, 1832, 5, 426, 0, 0, 1832, 1833, - 3, 104, 52, 0, 1833, 1889, 1, 0, 0, 0, 1834, 1835, 5, 22, 0, 0, 1835, 1836, - 5, 38, 0, 0, 1836, 1838, 3, 104, 52, 0, 1837, 1839, 5, 509, 0, 0, 1838, - 1837, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, - 1844, 3, 108, 54, 0, 1841, 1843, 3, 106, 53, 0, 1842, 1841, 1, 0, 0, 0, - 1843, 1846, 1, 0, 0, 0, 1844, 1842, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, - 1845, 1889, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1848, 5, 22, 0, 0, - 1848, 1849, 5, 39, 0, 0, 1849, 1851, 3, 104, 52, 0, 1850, 1852, 5, 509, - 0, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 1, 0, - 0, 0, 1853, 1857, 3, 108, 54, 0, 1854, 1856, 3, 106, 53, 0, 1855, 1854, - 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, - 1, 0, 0, 0, 1858, 1889, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1861, - 5, 19, 0, 0, 1861, 1862, 5, 38, 0, 0, 1862, 1889, 3, 104, 52, 0, 1863, - 1864, 5, 19, 0, 0, 1864, 1865, 5, 39, 0, 0, 1865, 1889, 3, 104, 52, 0, - 1866, 1867, 5, 48, 0, 0, 1867, 1868, 5, 50, 0, 0, 1868, 1889, 5, 517, 0, - 0, 1869, 1870, 5, 48, 0, 0, 1870, 1871, 5, 406, 0, 0, 1871, 1889, 5, 517, - 0, 0, 1872, 1873, 5, 48, 0, 0, 1873, 1874, 5, 43, 0, 0, 1874, 1889, 5, - 42, 0, 0, 1875, 1876, 5, 48, 0, 0, 1876, 1877, 5, 49, 0, 0, 1877, 1878, - 5, 503, 0, 0, 1878, 1879, 5, 519, 0, 0, 1879, 1880, 5, 501, 0, 0, 1880, - 1881, 5, 519, 0, 0, 1881, 1889, 5, 504, 0, 0, 1882, 1883, 5, 47, 0, 0, - 1883, 1884, 5, 41, 0, 0, 1884, 1889, 3, 114, 57, 0, 1885, 1886, 5, 19, - 0, 0, 1886, 1887, 5, 41, 0, 0, 1887, 1889, 5, 521, 0, 0, 1888, 1816, 1, - 0, 0, 0, 1888, 1819, 1, 0, 0, 0, 1888, 1822, 1, 0, 0, 0, 1888, 1828, 1, - 0, 0, 0, 1888, 1834, 1, 0, 0, 0, 1888, 1847, 1, 0, 0, 0, 1888, 1860, 1, - 0, 0, 0, 1888, 1863, 1, 0, 0, 0, 1888, 1866, 1, 0, 0, 0, 1888, 1869, 1, - 0, 0, 0, 1888, 1872, 1, 0, 0, 0, 1888, 1875, 1, 0, 0, 0, 1888, 1882, 1, - 0, 0, 0, 1888, 1885, 1, 0, 0, 0, 1889, 131, 1, 0, 0, 0, 1890, 1891, 5, - 48, 0, 0, 1891, 1892, 5, 53, 0, 0, 1892, 1903, 3, 128, 64, 0, 1893, 1894, - 5, 48, 0, 0, 1894, 1895, 5, 42, 0, 0, 1895, 1903, 7, 8, 0, 0, 1896, 1897, - 5, 48, 0, 0, 1897, 1898, 5, 51, 0, 0, 1898, 1903, 7, 9, 0, 0, 1899, 1900, - 5, 48, 0, 0, 1900, 1901, 5, 406, 0, 0, 1901, 1903, 5, 517, 0, 0, 1902, - 1890, 1, 0, 0, 0, 1902, 1893, 1, 0, 0, 0, 1902, 1896, 1, 0, 0, 0, 1902, - 1899, 1, 0, 0, 0, 1903, 133, 1, 0, 0, 0, 1904, 1905, 5, 47, 0, 0, 1905, - 1906, 5, 420, 0, 0, 1906, 1909, 5, 521, 0, 0, 1907, 1908, 5, 188, 0, 0, - 1908, 1910, 5, 517, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, - 0, 1910, 1923, 1, 0, 0, 0, 1911, 1912, 5, 20, 0, 0, 1912, 1913, 5, 420, - 0, 0, 1913, 1914, 5, 521, 0, 0, 1914, 1915, 5, 426, 0, 0, 1915, 1923, 5, - 521, 0, 0, 1916, 1917, 5, 19, 0, 0, 1917, 1918, 5, 420, 0, 0, 1918, 1923, - 5, 521, 0, 0, 1919, 1920, 5, 48, 0, 0, 1920, 1921, 5, 406, 0, 0, 1921, - 1923, 5, 517, 0, 0, 1922, 1904, 1, 0, 0, 0, 1922, 1911, 1, 0, 0, 0, 1922, - 1916, 1, 0, 0, 0, 1922, 1919, 1, 0, 0, 0, 1923, 135, 1, 0, 0, 0, 1924, - 1925, 5, 47, 0, 0, 1925, 1926, 5, 33, 0, 0, 1926, 1929, 3, 712, 356, 0, - 1927, 1928, 5, 49, 0, 0, 1928, 1930, 5, 519, 0, 0, 1929, 1927, 1, 0, 0, - 0, 1929, 1930, 1, 0, 0, 0, 1930, 1938, 1, 0, 0, 0, 1931, 1932, 5, 19, 0, - 0, 1932, 1933, 5, 33, 0, 0, 1933, 1938, 3, 712, 356, 0, 1934, 1935, 5, - 48, 0, 0, 1935, 1936, 5, 406, 0, 0, 1936, 1938, 5, 517, 0, 0, 1937, 1924, - 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1934, 1, 0, 0, 0, 1938, 137, - 1, 0, 0, 0, 1939, 1940, 5, 29, 0, 0, 1940, 1942, 5, 521, 0, 0, 1941, 1943, - 3, 140, 70, 0, 1942, 1941, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 139, - 1, 0, 0, 0, 1944, 1946, 3, 142, 71, 0, 1945, 1944, 1, 0, 0, 0, 1946, 1947, - 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 141, - 1, 0, 0, 0, 1949, 1950, 5, 406, 0, 0, 1950, 1954, 5, 517, 0, 0, 1951, 1952, - 5, 219, 0, 0, 1952, 1954, 5, 517, 0, 0, 1953, 1949, 1, 0, 0, 0, 1953, 1951, - 1, 0, 0, 0, 1954, 143, 1, 0, 0, 0, 1955, 1956, 5, 28, 0, 0, 1956, 1957, - 3, 712, 356, 0, 1957, 1958, 5, 503, 0, 0, 1958, 1959, 3, 146, 73, 0, 1959, - 1961, 5, 504, 0, 0, 1960, 1962, 3, 152, 76, 0, 1961, 1960, 1, 0, 0, 0, - 1961, 1962, 1, 0, 0, 0, 1962, 145, 1, 0, 0, 0, 1963, 1968, 3, 148, 74, - 0, 1964, 1965, 5, 501, 0, 0, 1965, 1967, 3, 148, 74, 0, 1966, 1964, 1, - 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, - 0, 0, 0, 1969, 147, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1971, 1973, 3, - 722, 361, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, - 1, 0, 0, 0, 1974, 1979, 3, 150, 75, 0, 1975, 1977, 5, 188, 0, 0, 1976, - 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, - 1980, 5, 517, 0, 0, 1979, 1976, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, - 149, 1, 0, 0, 0, 1981, 1997, 5, 521, 0, 0, 1982, 1997, 5, 523, 0, 0, 1983, - 1997, 3, 734, 367, 0, 1984, 1997, 5, 312, 0, 0, 1985, 1997, 5, 313, 0, - 0, 1986, 1997, 5, 347, 0, 0, 1987, 1997, 5, 346, 0, 0, 1988, 1997, 5, 318, - 0, 0, 1989, 1997, 5, 339, 0, 0, 1990, 1997, 5, 340, 0, 0, 1991, 1997, 5, - 341, 0, 0, 1992, 1997, 5, 343, 0, 0, 1993, 1997, 5, 26, 0, 0, 1994, 1997, - 5, 348, 0, 0, 1995, 1997, 5, 370, 0, 0, 1996, 1981, 1, 0, 0, 0, 1996, 1982, - 1, 0, 0, 0, 1996, 1983, 1, 0, 0, 0, 1996, 1984, 1, 0, 0, 0, 1996, 1985, - 1, 0, 0, 0, 1996, 1986, 1, 0, 0, 0, 1996, 1987, 1, 0, 0, 0, 1996, 1988, - 1, 0, 0, 0, 1996, 1989, 1, 0, 0, 0, 1996, 1990, 1, 0, 0, 0, 1996, 1991, - 1, 0, 0, 0, 1996, 1992, 1, 0, 0, 0, 1996, 1993, 1, 0, 0, 0, 1996, 1994, - 1, 0, 0, 0, 1996, 1995, 1, 0, 0, 0, 1997, 151, 1, 0, 0, 0, 1998, 2000, - 3, 154, 77, 0, 1999, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 1999, - 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 153, 1, 0, 0, 0, 2003, 2004, - 5, 406, 0, 0, 2004, 2005, 5, 517, 0, 0, 2005, 155, 1, 0, 0, 0, 2006, 2007, - 5, 226, 0, 0, 2007, 2008, 5, 227, 0, 0, 2008, 2010, 3, 712, 356, 0, 2009, - 2011, 3, 158, 79, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, - 2013, 1, 0, 0, 0, 2012, 2014, 3, 162, 81, 0, 2013, 2012, 1, 0, 0, 0, 2013, - 2014, 1, 0, 0, 0, 2014, 157, 1, 0, 0, 0, 2015, 2017, 3, 160, 80, 0, 2016, - 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, - 2019, 1, 0, 0, 0, 2019, 159, 1, 0, 0, 0, 2020, 2021, 5, 361, 0, 0, 2021, - 2022, 5, 460, 0, 0, 2022, 2026, 5, 517, 0, 0, 2023, 2024, 5, 406, 0, 0, - 2024, 2026, 5, 517, 0, 0, 2025, 2020, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, - 0, 2026, 161, 1, 0, 0, 0, 2027, 2028, 5, 503, 0, 0, 2028, 2033, 3, 164, - 82, 0, 2029, 2030, 5, 501, 0, 0, 2030, 2032, 3, 164, 82, 0, 2031, 2029, - 1, 0, 0, 0, 2032, 2035, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, - 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2036, 2037, - 5, 504, 0, 0, 2037, 163, 1, 0, 0, 0, 2038, 2039, 5, 226, 0, 0, 2039, 2040, - 3, 166, 83, 0, 2040, 2041, 5, 71, 0, 0, 2041, 2042, 5, 332, 0, 0, 2042, - 2043, 5, 517, 0, 0, 2043, 165, 1, 0, 0, 0, 2044, 2048, 5, 521, 0, 0, 2045, - 2048, 5, 523, 0, 0, 2046, 2048, 3, 734, 367, 0, 2047, 2044, 1, 0, 0, 0, - 2047, 2045, 1, 0, 0, 0, 2047, 2046, 1, 0, 0, 0, 2048, 167, 1, 0, 0, 0, - 2049, 2050, 5, 329, 0, 0, 2050, 2051, 5, 417, 0, 0, 2051, 2054, 3, 712, - 356, 0, 2052, 2053, 5, 406, 0, 0, 2053, 2055, 5, 517, 0, 0, 2054, 2052, - 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, - 5, 34, 0, 0, 2057, 2070, 7, 11, 0, 0, 2058, 2059, 5, 407, 0, 0, 2059, 2060, - 5, 503, 0, 0, 2060, 2065, 3, 170, 85, 0, 2061, 2062, 5, 501, 0, 0, 2062, - 2064, 3, 170, 85, 0, 2063, 2061, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, - 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, - 2065, 1, 0, 0, 0, 2068, 2069, 5, 504, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, - 2058, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 169, 1, 0, 0, 0, 2072, - 2073, 5, 517, 0, 0, 2073, 2074, 5, 76, 0, 0, 2074, 2075, 5, 517, 0, 0, - 2075, 171, 1, 0, 0, 0, 2076, 2077, 5, 298, 0, 0, 2077, 2078, 5, 300, 0, - 0, 2078, 2079, 3, 712, 356, 0, 2079, 2080, 5, 429, 0, 0, 2080, 2081, 3, - 712, 356, 0, 2081, 2082, 3, 174, 87, 0, 2082, 173, 1, 0, 0, 0, 2083, 2084, - 5, 307, 0, 0, 2084, 2085, 3, 672, 336, 0, 2085, 2086, 5, 299, 0, 0, 2086, - 2087, 5, 517, 0, 0, 2087, 2111, 1, 0, 0, 0, 2088, 2089, 5, 301, 0, 0, 2089, - 2090, 3, 178, 89, 0, 2090, 2091, 5, 299, 0, 0, 2091, 2092, 5, 517, 0, 0, - 2092, 2111, 1, 0, 0, 0, 2093, 2094, 5, 294, 0, 0, 2094, 2095, 3, 180, 90, - 0, 2095, 2096, 5, 299, 0, 0, 2096, 2097, 5, 517, 0, 0, 2097, 2111, 1, 0, - 0, 0, 2098, 2099, 5, 304, 0, 0, 2099, 2100, 3, 178, 89, 0, 2100, 2101, - 3, 176, 88, 0, 2101, 2102, 5, 299, 0, 0, 2102, 2103, 5, 517, 0, 0, 2103, - 2111, 1, 0, 0, 0, 2104, 2105, 5, 305, 0, 0, 2105, 2106, 3, 178, 89, 0, - 2106, 2107, 5, 517, 0, 0, 2107, 2108, 5, 299, 0, 0, 2108, 2109, 5, 517, - 0, 0, 2109, 2111, 1, 0, 0, 0, 2110, 2083, 1, 0, 0, 0, 2110, 2088, 1, 0, - 0, 0, 2110, 2093, 1, 0, 0, 0, 2110, 2098, 1, 0, 0, 0, 2110, 2104, 1, 0, - 0, 0, 2111, 175, 1, 0, 0, 0, 2112, 2113, 5, 290, 0, 0, 2113, 2114, 3, 716, - 358, 0, 2114, 2115, 5, 285, 0, 0, 2115, 2116, 3, 716, 358, 0, 2116, 2126, - 1, 0, 0, 0, 2117, 2118, 5, 491, 0, 0, 2118, 2126, 3, 716, 358, 0, 2119, - 2120, 5, 488, 0, 0, 2120, 2126, 3, 716, 358, 0, 2121, 2122, 5, 492, 0, - 0, 2122, 2126, 3, 716, 358, 0, 2123, 2124, 5, 489, 0, 0, 2124, 2126, 3, - 716, 358, 0, 2125, 2112, 1, 0, 0, 0, 2125, 2117, 1, 0, 0, 0, 2125, 2119, - 1, 0, 0, 0, 2125, 2121, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 177, - 1, 0, 0, 0, 2127, 2132, 5, 521, 0, 0, 2128, 2129, 5, 496, 0, 0, 2129, 2131, - 5, 521, 0, 0, 2130, 2128, 1, 0, 0, 0, 2131, 2134, 1, 0, 0, 0, 2132, 2130, - 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 179, 1, 0, 0, 0, 2134, 2132, - 1, 0, 0, 0, 2135, 2140, 3, 178, 89, 0, 2136, 2137, 5, 501, 0, 0, 2137, - 2139, 3, 178, 89, 0, 2138, 2136, 1, 0, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, - 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 181, 1, 0, 0, 0, 2142, - 2140, 1, 0, 0, 0, 2143, 2144, 5, 30, 0, 0, 2144, 2145, 3, 712, 356, 0, - 2145, 2147, 5, 503, 0, 0, 2146, 2148, 3, 194, 97, 0, 2147, 2146, 1, 0, - 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 5, 504, - 0, 0, 2150, 2152, 3, 200, 100, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, - 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2155, 3, 202, 101, 0, 2154, 2153, - 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2157, - 5, 96, 0, 0, 2157, 2158, 3, 206, 103, 0, 2158, 2160, 5, 83, 0, 0, 2159, - 2161, 5, 500, 0, 0, 2160, 2159, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, - 2163, 1, 0, 0, 0, 2162, 2164, 5, 496, 0, 0, 2163, 2162, 1, 0, 0, 0, 2163, - 2164, 1, 0, 0, 0, 2164, 183, 1, 0, 0, 0, 2165, 2166, 5, 114, 0, 0, 2166, - 2167, 5, 116, 0, 0, 2167, 2168, 3, 712, 356, 0, 2168, 2170, 5, 503, 0, - 0, 2169, 2171, 3, 186, 93, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, - 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 5, 504, 0, 0, 2173, 2175, 3, - 190, 95, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, - 1, 0, 0, 0, 2176, 2178, 3, 192, 96, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, - 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 5, 76, 0, 0, 2180, 2182, - 5, 518, 0, 0, 2181, 2183, 5, 500, 0, 0, 2182, 2181, 1, 0, 0, 0, 2182, 2183, - 1, 0, 0, 0, 2183, 185, 1, 0, 0, 0, 2184, 2189, 3, 188, 94, 0, 2185, 2186, - 5, 501, 0, 0, 2186, 2188, 3, 188, 94, 0, 2187, 2185, 1, 0, 0, 0, 2188, - 2191, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, - 187, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2193, 3, 198, 99, 0, 2193, - 2194, 5, 509, 0, 0, 2194, 2196, 3, 108, 54, 0, 2195, 2197, 5, 7, 0, 0, - 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 189, 1, 0, 0, 0, - 2198, 2199, 5, 77, 0, 0, 2199, 2200, 3, 108, 54, 0, 2200, 191, 1, 0, 0, - 0, 2201, 2202, 5, 367, 0, 0, 2202, 2203, 5, 76, 0, 0, 2203, 2204, 5, 517, - 0, 0, 2204, 2205, 5, 289, 0, 0, 2205, 2206, 5, 517, 0, 0, 2206, 193, 1, - 0, 0, 0, 2207, 2212, 3, 196, 98, 0, 2208, 2209, 5, 501, 0, 0, 2209, 2211, - 3, 196, 98, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2210, - 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 195, 1, 0, 0, 0, 2214, 2212, - 1, 0, 0, 0, 2215, 2218, 3, 198, 99, 0, 2216, 2218, 5, 520, 0, 0, 2217, - 2215, 1, 0, 0, 0, 2217, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, - 2220, 5, 509, 0, 0, 2220, 2221, 3, 108, 54, 0, 2221, 197, 1, 0, 0, 0, 2222, - 2226, 5, 521, 0, 0, 2223, 2226, 5, 523, 0, 0, 2224, 2226, 3, 734, 367, - 0, 2225, 2222, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2224, 1, 0, 0, - 0, 2226, 199, 1, 0, 0, 0, 2227, 2228, 5, 77, 0, 0, 2228, 2231, 3, 108, - 54, 0, 2229, 2230, 5, 76, 0, 0, 2230, 2232, 5, 520, 0, 0, 2231, 2229, 1, - 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 201, 1, 0, 0, 0, 2233, 2235, 3, - 204, 102, 0, 2234, 2233, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2234, - 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 203, 1, 0, 0, 0, 2238, 2239, - 5, 219, 0, 0, 2239, 2243, 5, 517, 0, 0, 2240, 2241, 5, 406, 0, 0, 2241, - 2243, 5, 517, 0, 0, 2242, 2238, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2243, - 205, 1, 0, 0, 0, 2244, 2246, 3, 208, 104, 0, 2245, 2244, 1, 0, 0, 0, 2246, - 2249, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, - 207, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2252, 3, 724, 362, 0, 2251, - 2250, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, - 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, - 2258, 3, 210, 105, 0, 2257, 2259, 5, 500, 0, 0, 2258, 2257, 1, 0, 0, 0, - 2258, 2259, 1, 0, 0, 0, 2259, 2581, 1, 0, 0, 0, 2260, 2262, 3, 724, 362, - 0, 2261, 2260, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, - 0, 2263, 2264, 1, 0, 0, 0, 2264, 2266, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, - 0, 2266, 2268, 3, 212, 106, 0, 2267, 2269, 5, 500, 0, 0, 2268, 2267, 1, - 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2581, 1, 0, 0, 0, 2270, 2272, 3, - 724, 362, 0, 2271, 2270, 1, 0, 0, 0, 2272, 2275, 1, 0, 0, 0, 2273, 2271, - 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2273, - 1, 0, 0, 0, 2276, 2278, 3, 320, 160, 0, 2277, 2279, 5, 500, 0, 0, 2278, - 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2581, 1, 0, 0, 0, 2280, - 2282, 3, 724, 362, 0, 2281, 2280, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, - 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, - 2283, 1, 0, 0, 0, 2286, 2288, 3, 214, 107, 0, 2287, 2289, 5, 500, 0, 0, - 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2581, 1, 0, 0, 0, - 2290, 2292, 3, 724, 362, 0, 2291, 2290, 1, 0, 0, 0, 2292, 2295, 1, 0, 0, - 0, 2293, 2291, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, - 0, 2295, 2293, 1, 0, 0, 0, 2296, 2298, 3, 216, 108, 0, 2297, 2299, 5, 500, - 0, 0, 2298, 2297, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2581, 1, 0, - 0, 0, 2300, 2302, 3, 724, 362, 0, 2301, 2300, 1, 0, 0, 0, 2302, 2305, 1, - 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2306, 1, - 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2306, 2308, 3, 220, 110, 0, 2307, 2309, - 5, 500, 0, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2581, - 1, 0, 0, 0, 2310, 2312, 3, 724, 362, 0, 2311, 2310, 1, 0, 0, 0, 2312, 2315, - 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2316, - 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2318, 3, 222, 111, 0, 2317, 2319, - 5, 500, 0, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2581, - 1, 0, 0, 0, 2320, 2322, 3, 724, 362, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2325, - 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, - 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2328, 3, 224, 112, 0, 2327, 2329, - 5, 500, 0, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2581, - 1, 0, 0, 0, 2330, 2332, 3, 724, 362, 0, 2331, 2330, 1, 0, 0, 0, 2332, 2335, - 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2336, - 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2338, 3, 226, 113, 0, 2337, 2339, - 5, 500, 0, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2581, - 1, 0, 0, 0, 2340, 2342, 3, 724, 362, 0, 2341, 2340, 1, 0, 0, 0, 2342, 2345, - 1, 0, 0, 0, 2343, 2341, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, - 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2348, 3, 232, 116, 0, 2347, 2349, - 5, 500, 0, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2581, - 1, 0, 0, 0, 2350, 2352, 3, 724, 362, 0, 2351, 2350, 1, 0, 0, 0, 2352, 2355, - 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, - 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2358, 3, 234, 117, 0, 2357, 2359, - 5, 500, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2581, - 1, 0, 0, 0, 2360, 2362, 3, 724, 362, 0, 2361, 2360, 1, 0, 0, 0, 2362, 2365, - 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2366, - 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2368, 3, 236, 118, 0, 2367, 2369, - 5, 500, 0, 0, 2368, 2367, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2581, - 1, 0, 0, 0, 2370, 2372, 3, 724, 362, 0, 2371, 2370, 1, 0, 0, 0, 2372, 2375, - 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2376, - 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2378, 3, 238, 119, 0, 2377, 2379, - 5, 500, 0, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2581, - 1, 0, 0, 0, 2380, 2382, 3, 724, 362, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, - 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, - 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2388, 3, 240, 120, 0, 2387, 2389, - 5, 500, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2581, - 1, 0, 0, 0, 2390, 2392, 3, 724, 362, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2395, - 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2396, - 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2398, 3, 242, 121, 0, 2397, 2399, - 5, 500, 0, 0, 2398, 2397, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2581, - 1, 0, 0, 0, 2400, 2402, 3, 724, 362, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2405, - 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2406, - 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2408, 3, 244, 122, 0, 2407, 2409, - 5, 500, 0, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2581, - 1, 0, 0, 0, 2410, 2412, 3, 724, 362, 0, 2411, 2410, 1, 0, 0, 0, 2412, 2415, - 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, - 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2418, 3, 246, 123, 0, 2417, 2419, - 5, 500, 0, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2581, - 1, 0, 0, 0, 2420, 2422, 3, 724, 362, 0, 2421, 2420, 1, 0, 0, 0, 2422, 2425, - 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, - 1, 0, 0, 0, 2425, 2423, 1, 0, 0, 0, 2426, 2428, 3, 258, 129, 0, 2427, 2429, - 5, 500, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2581, - 1, 0, 0, 0, 2430, 2432, 3, 724, 362, 0, 2431, 2430, 1, 0, 0, 0, 2432, 2435, - 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2436, - 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2436, 2438, 3, 260, 130, 0, 2437, 2439, - 5, 500, 0, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2581, - 1, 0, 0, 0, 2440, 2442, 3, 724, 362, 0, 2441, 2440, 1, 0, 0, 0, 2442, 2445, - 1, 0, 0, 0, 2443, 2441, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2446, - 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2446, 2448, 3, 262, 131, 0, 2447, 2449, - 5, 500, 0, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2581, - 1, 0, 0, 0, 2450, 2452, 3, 724, 362, 0, 2451, 2450, 1, 0, 0, 0, 2452, 2455, - 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2456, - 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2456, 2458, 3, 264, 132, 0, 2457, 2459, - 5, 500, 0, 0, 2458, 2457, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2581, - 1, 0, 0, 0, 2460, 2462, 3, 724, 362, 0, 2461, 2460, 1, 0, 0, 0, 2462, 2465, - 1, 0, 0, 0, 2463, 2461, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2466, - 1, 0, 0, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2468, 3, 270, 135, 0, 2467, 2469, - 5, 500, 0, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2581, - 1, 0, 0, 0, 2470, 2472, 3, 724, 362, 0, 2471, 2470, 1, 0, 0, 0, 2472, 2475, - 1, 0, 0, 0, 2473, 2471, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2476, - 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2478, 3, 276, 138, 0, 2477, 2479, - 5, 500, 0, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2581, - 1, 0, 0, 0, 2480, 2482, 3, 724, 362, 0, 2481, 2480, 1, 0, 0, 0, 2482, 2485, - 1, 0, 0, 0, 2483, 2481, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2486, - 1, 0, 0, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2488, 3, 278, 139, 0, 2487, 2489, - 5, 500, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2581, - 1, 0, 0, 0, 2490, 2492, 3, 724, 362, 0, 2491, 2490, 1, 0, 0, 0, 2492, 2495, - 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2496, - 1, 0, 0, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2498, 3, 280, 140, 0, 2497, 2499, - 5, 500, 0, 0, 2498, 2497, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2581, - 1, 0, 0, 0, 2500, 2502, 3, 724, 362, 0, 2501, 2500, 1, 0, 0, 0, 2502, 2505, - 1, 0, 0, 0, 2503, 2501, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2506, - 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2508, 3, 282, 141, 0, 2507, 2509, - 5, 500, 0, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2581, - 1, 0, 0, 0, 2510, 2512, 3, 724, 362, 0, 2511, 2510, 1, 0, 0, 0, 2512, 2515, - 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2516, - 1, 0, 0, 0, 2515, 2513, 1, 0, 0, 0, 2516, 2518, 3, 308, 154, 0, 2517, 2519, - 5, 500, 0, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2581, - 1, 0, 0, 0, 2520, 2522, 3, 724, 362, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, - 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, - 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2528, 3, 316, 158, 0, 2527, 2529, - 5, 500, 0, 0, 2528, 2527, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2581, - 1, 0, 0, 0, 2530, 2532, 3, 724, 362, 0, 2531, 2530, 1, 0, 0, 0, 2532, 2535, - 1, 0, 0, 0, 2533, 2531, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, - 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2536, 2538, 3, 322, 161, 0, 2537, 2539, - 5, 500, 0, 0, 2538, 2537, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2581, - 1, 0, 0, 0, 2540, 2542, 3, 724, 362, 0, 2541, 2540, 1, 0, 0, 0, 2542, 2545, - 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, - 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2548, 3, 324, 162, 0, 2547, 2549, - 5, 500, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2581, - 1, 0, 0, 0, 2550, 2552, 3, 724, 362, 0, 2551, 2550, 1, 0, 0, 0, 2552, 2555, - 1, 0, 0, 0, 2553, 2551, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, - 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 2558, 3, 284, 142, 0, 2557, 2559, - 5, 500, 0, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2581, - 1, 0, 0, 0, 2560, 2562, 3, 724, 362, 0, 2561, 2560, 1, 0, 0, 0, 2562, 2565, - 1, 0, 0, 0, 2563, 2561, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2566, - 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2566, 2568, 3, 286, 143, 0, 2567, 2569, - 5, 500, 0, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2581, - 1, 0, 0, 0, 2570, 2572, 3, 724, 362, 0, 2571, 2570, 1, 0, 0, 0, 2572, 2575, - 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, - 1, 0, 0, 0, 2575, 2573, 1, 0, 0, 0, 2576, 2578, 3, 304, 152, 0, 2577, 2579, - 5, 500, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2581, - 1, 0, 0, 0, 2580, 2253, 1, 0, 0, 0, 2580, 2263, 1, 0, 0, 0, 2580, 2273, - 1, 0, 0, 0, 2580, 2283, 1, 0, 0, 0, 2580, 2293, 1, 0, 0, 0, 2580, 2303, - 1, 0, 0, 0, 2580, 2313, 1, 0, 0, 0, 2580, 2323, 1, 0, 0, 0, 2580, 2333, - 1, 0, 0, 0, 2580, 2343, 1, 0, 0, 0, 2580, 2353, 1, 0, 0, 0, 2580, 2363, - 1, 0, 0, 0, 2580, 2373, 1, 0, 0, 0, 2580, 2383, 1, 0, 0, 0, 2580, 2393, - 1, 0, 0, 0, 2580, 2403, 1, 0, 0, 0, 2580, 2413, 1, 0, 0, 0, 2580, 2423, - 1, 0, 0, 0, 2580, 2433, 1, 0, 0, 0, 2580, 2443, 1, 0, 0, 0, 2580, 2453, - 1, 0, 0, 0, 2580, 2463, 1, 0, 0, 0, 2580, 2473, 1, 0, 0, 0, 2580, 2483, - 1, 0, 0, 0, 2580, 2493, 1, 0, 0, 0, 2580, 2503, 1, 0, 0, 0, 2580, 2513, - 1, 0, 0, 0, 2580, 2523, 1, 0, 0, 0, 2580, 2533, 1, 0, 0, 0, 2580, 2543, - 1, 0, 0, 0, 2580, 2553, 1, 0, 0, 0, 2580, 2563, 1, 0, 0, 0, 2580, 2573, - 1, 0, 0, 0, 2581, 209, 1, 0, 0, 0, 2582, 2583, 5, 97, 0, 0, 2583, 2584, - 5, 520, 0, 0, 2584, 2587, 3, 108, 54, 0, 2585, 2586, 5, 490, 0, 0, 2586, - 2588, 3, 672, 336, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, - 211, 1, 0, 0, 0, 2589, 2592, 5, 48, 0, 0, 2590, 2593, 5, 520, 0, 0, 2591, - 2593, 3, 218, 109, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2591, 1, 0, 0, 0, 2593, - 2594, 1, 0, 0, 0, 2594, 2595, 5, 490, 0, 0, 2595, 2596, 3, 672, 336, 0, - 2596, 213, 1, 0, 0, 0, 2597, 2598, 5, 520, 0, 0, 2598, 2600, 5, 490, 0, - 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, - 0, 2601, 2602, 5, 17, 0, 0, 2602, 2608, 3, 112, 56, 0, 2603, 2605, 5, 503, - 0, 0, 2604, 2606, 3, 326, 163, 0, 2605, 2604, 1, 0, 0, 0, 2605, 2606, 1, - 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, 2609, 5, 504, 0, 0, 2608, 2603, - 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2612, - 3, 230, 115, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 215, - 1, 0, 0, 0, 2613, 2614, 5, 98, 0, 0, 2614, 2620, 5, 520, 0, 0, 2615, 2617, - 5, 503, 0, 0, 2616, 2618, 3, 326, 163, 0, 2617, 2616, 1, 0, 0, 0, 2617, - 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 5, 504, 0, 0, 2620, - 2615, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 217, 1, 0, 0, 0, 2622, - 2628, 5, 520, 0, 0, 2623, 2626, 7, 12, 0, 0, 2624, 2627, 5, 521, 0, 0, - 2625, 2627, 3, 712, 356, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2625, 1, 0, 0, - 0, 2627, 2629, 1, 0, 0, 0, 2628, 2623, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, - 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 219, 1, 0, 0, - 0, 2632, 2633, 5, 101, 0, 0, 2633, 2636, 5, 520, 0, 0, 2634, 2635, 5, 139, - 0, 0, 2635, 2637, 5, 120, 0, 0, 2636, 2634, 1, 0, 0, 0, 2636, 2637, 1, - 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 5, 394, 0, 0, 2639, 2638, - 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, - 3, 230, 115, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 221, - 1, 0, 0, 0, 2644, 2645, 5, 100, 0, 0, 2645, 2647, 5, 520, 0, 0, 2646, 2648, - 3, 230, 115, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 223, - 1, 0, 0, 0, 2649, 2650, 5, 102, 0, 0, 2650, 2652, 5, 520, 0, 0, 2651, 2653, - 5, 394, 0, 0, 2652, 2651, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 225, - 1, 0, 0, 0, 2654, 2655, 5, 99, 0, 0, 2655, 2656, 5, 520, 0, 0, 2656, 2657, - 5, 71, 0, 0, 2657, 2663, 3, 228, 114, 0, 2658, 2661, 5, 72, 0, 0, 2659, - 2662, 3, 358, 179, 0, 2660, 2662, 3, 672, 336, 0, 2661, 2659, 1, 0, 0, - 0, 2661, 2660, 1, 0, 0, 0, 2662, 2664, 1, 0, 0, 0, 2663, 2658, 1, 0, 0, - 0, 2663, 2664, 1, 0, 0, 0, 2664, 2674, 1, 0, 0, 0, 2665, 2666, 5, 10, 0, - 0, 2666, 2671, 3, 356, 178, 0, 2667, 2668, 5, 501, 0, 0, 2668, 2670, 3, - 356, 178, 0, 2669, 2667, 1, 0, 0, 0, 2670, 2673, 1, 0, 0, 0, 2671, 2669, - 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2675, 1, 0, 0, 0, 2673, 2671, - 1, 0, 0, 0, 2674, 2665, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2678, - 1, 0, 0, 0, 2676, 2677, 5, 75, 0, 0, 2677, 2679, 3, 672, 336, 0, 2678, - 2676, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2682, 1, 0, 0, 0, 2680, - 2681, 5, 74, 0, 0, 2681, 2683, 3, 672, 336, 0, 2682, 2680, 1, 0, 0, 0, - 2682, 2683, 1, 0, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2686, 3, 230, 115, - 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 227, 1, 0, 0, - 0, 2687, 2698, 3, 712, 356, 0, 2688, 2689, 5, 520, 0, 0, 2689, 2690, 5, - 496, 0, 0, 2690, 2698, 3, 712, 356, 0, 2691, 2692, 5, 503, 0, 0, 2692, - 2693, 3, 586, 293, 0, 2693, 2694, 5, 504, 0, 0, 2694, 2698, 1, 0, 0, 0, - 2695, 2696, 5, 353, 0, 0, 2696, 2698, 5, 517, 0, 0, 2697, 2687, 1, 0, 0, - 0, 2697, 2688, 1, 0, 0, 0, 2697, 2691, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, - 0, 2698, 229, 1, 0, 0, 0, 2699, 2700, 5, 93, 0, 0, 2700, 2701, 5, 302, - 0, 0, 2701, 2720, 5, 108, 0, 0, 2702, 2703, 5, 93, 0, 0, 2703, 2704, 5, - 302, 0, 0, 2704, 2720, 5, 102, 0, 0, 2705, 2706, 5, 93, 0, 0, 2706, 2707, - 5, 302, 0, 0, 2707, 2708, 5, 505, 0, 0, 2708, 2709, 3, 206, 103, 0, 2709, - 2710, 5, 506, 0, 0, 2710, 2720, 1, 0, 0, 0, 2711, 2712, 5, 93, 0, 0, 2712, - 2713, 5, 302, 0, 0, 2713, 2714, 5, 435, 0, 0, 2714, 2715, 5, 102, 0, 0, - 2715, 2716, 5, 505, 0, 0, 2716, 2717, 3, 206, 103, 0, 2717, 2718, 5, 506, - 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2699, 1, 0, 0, 0, 2719, 2702, 1, 0, - 0, 0, 2719, 2705, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2720, 231, 1, 0, - 0, 0, 2721, 2722, 5, 105, 0, 0, 2722, 2723, 3, 672, 336, 0, 2723, 2724, - 5, 81, 0, 0, 2724, 2732, 3, 206, 103, 0, 2725, 2726, 5, 106, 0, 0, 2726, - 2727, 3, 672, 336, 0, 2727, 2728, 5, 81, 0, 0, 2728, 2729, 3, 206, 103, - 0, 2729, 2731, 1, 0, 0, 0, 2730, 2725, 1, 0, 0, 0, 2731, 2734, 1, 0, 0, - 0, 2732, 2730, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2737, 1, 0, 0, - 0, 2734, 2732, 1, 0, 0, 0, 2735, 2736, 5, 82, 0, 0, 2736, 2738, 3, 206, - 103, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2739, 1, - 0, 0, 0, 2739, 2740, 5, 83, 0, 0, 2740, 2741, 5, 105, 0, 0, 2741, 233, - 1, 0, 0, 0, 2742, 2743, 5, 103, 0, 0, 2743, 2744, 5, 520, 0, 0, 2744, 2747, - 5, 289, 0, 0, 2745, 2748, 5, 520, 0, 0, 2746, 2748, 3, 218, 109, 0, 2747, - 2745, 1, 0, 0, 0, 2747, 2746, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, - 2750, 5, 96, 0, 0, 2750, 2751, 3, 206, 103, 0, 2751, 2752, 5, 83, 0, 0, - 2752, 2753, 5, 103, 0, 0, 2753, 235, 1, 0, 0, 0, 2754, 2755, 5, 104, 0, - 0, 2755, 2757, 3, 672, 336, 0, 2756, 2758, 5, 96, 0, 0, 2757, 2756, 1, - 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 3, - 206, 103, 0, 2760, 2762, 5, 83, 0, 0, 2761, 2763, 5, 104, 0, 0, 2762, 2761, - 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 237, 1, 0, 0, 0, 2764, 2765, - 5, 108, 0, 0, 2765, 239, 1, 0, 0, 0, 2766, 2767, 5, 109, 0, 0, 2767, 241, - 1, 0, 0, 0, 2768, 2770, 5, 110, 0, 0, 2769, 2771, 3, 672, 336, 0, 2770, - 2769, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 243, 1, 0, 0, 0, 2772, - 2773, 5, 303, 0, 0, 2773, 2774, 5, 302, 0, 0, 2774, 245, 1, 0, 0, 0, 2775, - 2777, 5, 112, 0, 0, 2776, 2778, 3, 248, 124, 0, 2777, 2776, 1, 0, 0, 0, - 2777, 2778, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2780, 5, 119, 0, - 0, 2780, 2782, 5, 517, 0, 0, 2781, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, - 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2785, 3, 672, 336, 0, 2784, 2786, 3, - 254, 127, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 247, - 1, 0, 0, 0, 2787, 2788, 7, 13, 0, 0, 2788, 249, 1, 0, 0, 0, 2789, 2790, - 5, 139, 0, 0, 2790, 2791, 5, 503, 0, 0, 2791, 2796, 3, 252, 126, 0, 2792, - 2793, 5, 501, 0, 0, 2793, 2795, 3, 252, 126, 0, 2794, 2792, 1, 0, 0, 0, - 2795, 2798, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, - 2797, 2799, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2799, 2800, 5, 504, 0, - 0, 2800, 2804, 1, 0, 0, 0, 2801, 2802, 5, 369, 0, 0, 2802, 2804, 3, 718, - 359, 0, 2803, 2789, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2804, 251, 1, 0, - 0, 0, 2805, 2806, 5, 505, 0, 0, 2806, 2807, 5, 519, 0, 0, 2807, 2808, 5, - 506, 0, 0, 2808, 2809, 5, 490, 0, 0, 2809, 2810, 3, 672, 336, 0, 2810, - 253, 1, 0, 0, 0, 2811, 2812, 3, 250, 125, 0, 2812, 255, 1, 0, 0, 0, 2813, - 2814, 3, 252, 126, 0, 2814, 257, 1, 0, 0, 0, 2815, 2816, 5, 520, 0, 0, - 2816, 2818, 5, 490, 0, 0, 2817, 2815, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, - 0, 2818, 2819, 1, 0, 0, 0, 2819, 2820, 5, 113, 0, 0, 2820, 2821, 5, 30, - 0, 0, 2821, 2822, 3, 712, 356, 0, 2822, 2824, 5, 503, 0, 0, 2823, 2825, - 3, 266, 133, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2826, - 1, 0, 0, 0, 2826, 2828, 5, 504, 0, 0, 2827, 2829, 3, 230, 115, 0, 2828, - 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 259, 1, 0, 0, 0, 2830, - 2831, 5, 520, 0, 0, 2831, 2833, 5, 490, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, - 2833, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 5, 113, 0, 0, 2835, - 2836, 5, 114, 0, 0, 2836, 2837, 5, 116, 0, 0, 2837, 2838, 3, 712, 356, - 0, 2838, 2840, 5, 503, 0, 0, 2839, 2841, 3, 266, 133, 0, 2840, 2839, 1, - 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2844, 5, - 504, 0, 0, 2843, 2845, 3, 230, 115, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, - 1, 0, 0, 0, 2845, 261, 1, 0, 0, 0, 2846, 2847, 5, 520, 0, 0, 2847, 2849, - 5, 490, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, - 1, 0, 0, 0, 2850, 2851, 5, 397, 0, 0, 2851, 2852, 5, 353, 0, 0, 2852, 2853, - 5, 354, 0, 0, 2853, 2860, 3, 712, 356, 0, 2854, 2858, 5, 166, 0, 0, 2855, - 2859, 5, 517, 0, 0, 2856, 2859, 5, 518, 0, 0, 2857, 2859, 3, 672, 336, - 0, 2858, 2855, 1, 0, 0, 0, 2858, 2856, 1, 0, 0, 0, 2858, 2857, 1, 0, 0, - 0, 2859, 2861, 1, 0, 0, 0, 2860, 2854, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, - 0, 2861, 2867, 1, 0, 0, 0, 2862, 2864, 5, 503, 0, 0, 2863, 2865, 3, 266, - 133, 0, 2864, 2863, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 1, - 0, 0, 0, 2866, 2868, 5, 504, 0, 0, 2867, 2862, 1, 0, 0, 0, 2867, 2868, - 1, 0, 0, 0, 2868, 2875, 1, 0, 0, 0, 2869, 2870, 5, 352, 0, 0, 2870, 2872, - 5, 503, 0, 0, 2871, 2873, 3, 266, 133, 0, 2872, 2871, 1, 0, 0, 0, 2872, - 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2876, 5, 504, 0, 0, 2875, - 2869, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2878, 1, 0, 0, 0, 2877, - 2879, 3, 230, 115, 0, 2878, 2877, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, - 263, 1, 0, 0, 0, 2880, 2881, 5, 520, 0, 0, 2881, 2883, 5, 490, 0, 0, 2882, - 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, - 2885, 5, 113, 0, 0, 2885, 2886, 5, 26, 0, 0, 2886, 2887, 5, 116, 0, 0, - 2887, 2888, 3, 712, 356, 0, 2888, 2890, 5, 503, 0, 0, 2889, 2891, 3, 266, - 133, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, - 0, 0, 0, 2892, 2894, 5, 504, 0, 0, 2893, 2895, 3, 230, 115, 0, 2894, 2893, - 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 265, 1, 0, 0, 0, 2896, 2901, - 3, 268, 134, 0, 2897, 2898, 5, 501, 0, 0, 2898, 2900, 3, 268, 134, 0, 2899, - 2897, 1, 0, 0, 0, 2900, 2903, 1, 0, 0, 0, 2901, 2899, 1, 0, 0, 0, 2901, - 2902, 1, 0, 0, 0, 2902, 267, 1, 0, 0, 0, 2903, 2901, 1, 0, 0, 0, 2904, - 2907, 5, 520, 0, 0, 2905, 2907, 3, 198, 99, 0, 2906, 2904, 1, 0, 0, 0, - 2906, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2909, 5, 490, 0, - 0, 2909, 2910, 3, 672, 336, 0, 2910, 269, 1, 0, 0, 0, 2911, 2912, 5, 65, - 0, 0, 2912, 2913, 5, 33, 0, 0, 2913, 2919, 3, 712, 356, 0, 2914, 2916, - 5, 503, 0, 0, 2915, 2917, 3, 272, 136, 0, 2916, 2915, 1, 0, 0, 0, 2916, - 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2920, 5, 504, 0, 0, 2919, - 2914, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2923, 1, 0, 0, 0, 2921, - 2922, 5, 429, 0, 0, 2922, 2924, 5, 520, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, - 2924, 1, 0, 0, 0, 2924, 2927, 1, 0, 0, 0, 2925, 2926, 5, 139, 0, 0, 2926, - 2928, 3, 326, 163, 0, 2927, 2925, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, - 271, 1, 0, 0, 0, 2929, 2934, 3, 274, 137, 0, 2930, 2931, 5, 501, 0, 0, - 2931, 2933, 3, 274, 137, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2936, 1, 0, 0, - 0, 2934, 2932, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 273, 1, 0, 0, - 0, 2936, 2934, 1, 0, 0, 0, 2937, 2938, 5, 520, 0, 0, 2938, 2941, 5, 490, - 0, 0, 2939, 2942, 5, 520, 0, 0, 2940, 2942, 3, 672, 336, 0, 2941, 2939, - 1, 0, 0, 0, 2941, 2940, 1, 0, 0, 0, 2942, 2948, 1, 0, 0, 0, 2943, 2944, - 3, 714, 357, 0, 2944, 2945, 5, 509, 0, 0, 2945, 2946, 3, 672, 336, 0, 2946, - 2948, 1, 0, 0, 0, 2947, 2937, 1, 0, 0, 0, 2947, 2943, 1, 0, 0, 0, 2948, - 275, 1, 0, 0, 0, 2949, 2950, 5, 118, 0, 0, 2950, 2951, 5, 33, 0, 0, 2951, - 277, 1, 0, 0, 0, 2952, 2953, 5, 65, 0, 0, 2953, 2954, 5, 374, 0, 0, 2954, - 2955, 5, 33, 0, 0, 2955, 279, 1, 0, 0, 0, 2956, 2957, 5, 65, 0, 0, 2957, - 2958, 5, 403, 0, 0, 2958, 2961, 3, 672, 336, 0, 2959, 2960, 5, 419, 0, - 0, 2960, 2962, 3, 714, 357, 0, 2961, 2959, 1, 0, 0, 0, 2961, 2962, 1, 0, - 0, 0, 2962, 2968, 1, 0, 0, 0, 2963, 2964, 5, 142, 0, 0, 2964, 2965, 5, - 507, 0, 0, 2965, 2966, 3, 710, 355, 0, 2966, 2967, 5, 508, 0, 0, 2967, - 2969, 1, 0, 0, 0, 2968, 2963, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, - 281, 1, 0, 0, 0, 2970, 2971, 5, 111, 0, 0, 2971, 2972, 3, 672, 336, 0, - 2972, 283, 1, 0, 0, 0, 2973, 2974, 5, 298, 0, 0, 2974, 2975, 5, 299, 0, - 0, 2975, 2976, 3, 218, 109, 0, 2976, 2977, 5, 403, 0, 0, 2977, 2983, 3, - 672, 336, 0, 2978, 2979, 5, 142, 0, 0, 2979, 2980, 5, 507, 0, 0, 2980, - 2981, 3, 710, 355, 0, 2981, 2982, 5, 508, 0, 0, 2982, 2984, 1, 0, 0, 0, - 2983, 2978, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 285, 1, 0, 0, 0, - 2985, 2986, 5, 520, 0, 0, 2986, 2988, 5, 490, 0, 0, 2987, 2985, 1, 0, 0, - 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 5, 311, - 0, 0, 2990, 2991, 5, 113, 0, 0, 2991, 2992, 3, 288, 144, 0, 2992, 2994, - 3, 290, 145, 0, 2993, 2995, 3, 292, 146, 0, 2994, 2993, 1, 0, 0, 0, 2994, - 2995, 1, 0, 0, 0, 2995, 2999, 1, 0, 0, 0, 2996, 2998, 3, 294, 147, 0, 2997, - 2996, 1, 0, 0, 0, 2998, 3001, 1, 0, 0, 0, 2999, 2997, 1, 0, 0, 0, 2999, - 3000, 1, 0, 0, 0, 3000, 3003, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3002, - 3004, 3, 296, 148, 0, 3003, 3002, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, - 3006, 1, 0, 0, 0, 3005, 3007, 3, 298, 149, 0, 3006, 3005, 1, 0, 0, 0, 3006, - 3007, 1, 0, 0, 0, 3007, 3009, 1, 0, 0, 0, 3008, 3010, 3, 300, 150, 0, 3009, - 3008, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, - 3013, 3, 302, 151, 0, 3012, 3014, 3, 230, 115, 0, 3013, 3012, 1, 0, 0, - 0, 3013, 3014, 1, 0, 0, 0, 3014, 287, 1, 0, 0, 0, 3015, 3016, 7, 14, 0, - 0, 3016, 289, 1, 0, 0, 0, 3017, 3020, 5, 517, 0, 0, 3018, 3020, 3, 672, - 336, 0, 3019, 3017, 1, 0, 0, 0, 3019, 3018, 1, 0, 0, 0, 3020, 291, 1, 0, - 0, 0, 3021, 3022, 3, 250, 125, 0, 3022, 293, 1, 0, 0, 0, 3023, 3024, 5, - 195, 0, 0, 3024, 3025, 7, 15, 0, 0, 3025, 3026, 5, 490, 0, 0, 3026, 3027, - 3, 672, 336, 0, 3027, 295, 1, 0, 0, 0, 3028, 3029, 5, 316, 0, 0, 3029, - 3030, 5, 318, 0, 0, 3030, 3031, 3, 672, 336, 0, 3031, 3032, 5, 351, 0, - 0, 3032, 3033, 3, 672, 336, 0, 3033, 297, 1, 0, 0, 0, 3034, 3035, 5, 325, - 0, 0, 3035, 3037, 5, 517, 0, 0, 3036, 3038, 3, 250, 125, 0, 3037, 3036, - 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3051, 1, 0, 0, 0, 3039, 3040, - 5, 325, 0, 0, 3040, 3042, 3, 672, 336, 0, 3041, 3043, 3, 250, 125, 0, 3042, - 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3051, 1, 0, 0, 0, 3044, - 3045, 5, 325, 0, 0, 3045, 3046, 5, 356, 0, 0, 3046, 3047, 3, 712, 356, - 0, 3047, 3048, 5, 71, 0, 0, 3048, 3049, 5, 520, 0, 0, 3049, 3051, 1, 0, - 0, 0, 3050, 3034, 1, 0, 0, 0, 3050, 3039, 1, 0, 0, 0, 3050, 3044, 1, 0, - 0, 0, 3051, 299, 1, 0, 0, 0, 3052, 3053, 5, 324, 0, 0, 3053, 3054, 3, 672, - 336, 0, 3054, 301, 1, 0, 0, 0, 3055, 3056, 5, 77, 0, 0, 3056, 3070, 5, - 262, 0, 0, 3057, 3058, 5, 77, 0, 0, 3058, 3070, 5, 326, 0, 0, 3059, 3060, - 5, 77, 0, 0, 3060, 3061, 5, 356, 0, 0, 3061, 3062, 3, 712, 356, 0, 3062, - 3063, 5, 76, 0, 0, 3063, 3064, 3, 712, 356, 0, 3064, 3070, 1, 0, 0, 0, - 3065, 3066, 5, 77, 0, 0, 3066, 3070, 5, 424, 0, 0, 3067, 3068, 5, 77, 0, - 0, 3068, 3070, 5, 319, 0, 0, 3069, 3055, 1, 0, 0, 0, 3069, 3057, 1, 0, - 0, 0, 3069, 3059, 1, 0, 0, 0, 3069, 3065, 1, 0, 0, 0, 3069, 3067, 1, 0, - 0, 0, 3070, 303, 1, 0, 0, 0, 3071, 3072, 5, 520, 0, 0, 3072, 3074, 5, 490, - 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3075, 1, 0, - 0, 0, 3075, 3076, 5, 328, 0, 0, 3076, 3077, 5, 311, 0, 0, 3077, 3078, 5, - 327, 0, 0, 3078, 3080, 3, 712, 356, 0, 3079, 3081, 3, 306, 153, 0, 3080, - 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, - 3084, 3, 230, 115, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, - 305, 1, 0, 0, 0, 3085, 3086, 5, 325, 0, 0, 3086, 3087, 5, 520, 0, 0, 3087, - 307, 1, 0, 0, 0, 3088, 3089, 5, 520, 0, 0, 3089, 3090, 5, 490, 0, 0, 3090, - 3091, 3, 310, 155, 0, 3091, 309, 1, 0, 0, 0, 3092, 3093, 5, 121, 0, 0, - 3093, 3094, 5, 503, 0, 0, 3094, 3095, 5, 520, 0, 0, 3095, 3152, 5, 504, - 0, 0, 3096, 3097, 5, 122, 0, 0, 3097, 3098, 5, 503, 0, 0, 3098, 3099, 5, - 520, 0, 0, 3099, 3152, 5, 504, 0, 0, 3100, 3101, 5, 123, 0, 0, 3101, 3102, - 5, 503, 0, 0, 3102, 3103, 5, 520, 0, 0, 3103, 3104, 5, 501, 0, 0, 3104, - 3105, 3, 672, 336, 0, 3105, 3106, 5, 504, 0, 0, 3106, 3152, 1, 0, 0, 0, - 3107, 3108, 5, 185, 0, 0, 3108, 3109, 5, 503, 0, 0, 3109, 3110, 5, 520, - 0, 0, 3110, 3111, 5, 501, 0, 0, 3111, 3112, 3, 672, 336, 0, 3112, 3113, - 5, 504, 0, 0, 3113, 3152, 1, 0, 0, 0, 3114, 3115, 5, 124, 0, 0, 3115, 3116, - 5, 503, 0, 0, 3116, 3117, 5, 520, 0, 0, 3117, 3118, 5, 501, 0, 0, 3118, - 3119, 3, 312, 156, 0, 3119, 3120, 5, 504, 0, 0, 3120, 3152, 1, 0, 0, 0, - 3121, 3122, 5, 125, 0, 0, 3122, 3123, 5, 503, 0, 0, 3123, 3124, 5, 520, - 0, 0, 3124, 3125, 5, 501, 0, 0, 3125, 3126, 5, 520, 0, 0, 3126, 3152, 5, - 504, 0, 0, 3127, 3128, 5, 126, 0, 0, 3128, 3129, 5, 503, 0, 0, 3129, 3130, - 5, 520, 0, 0, 3130, 3131, 5, 501, 0, 0, 3131, 3132, 5, 520, 0, 0, 3132, - 3152, 5, 504, 0, 0, 3133, 3134, 5, 127, 0, 0, 3134, 3135, 5, 503, 0, 0, - 3135, 3136, 5, 520, 0, 0, 3136, 3137, 5, 501, 0, 0, 3137, 3138, 5, 520, - 0, 0, 3138, 3152, 5, 504, 0, 0, 3139, 3140, 5, 128, 0, 0, 3140, 3141, 5, - 503, 0, 0, 3141, 3142, 5, 520, 0, 0, 3142, 3143, 5, 501, 0, 0, 3143, 3144, - 5, 520, 0, 0, 3144, 3152, 5, 504, 0, 0, 3145, 3146, 5, 134, 0, 0, 3146, - 3147, 5, 503, 0, 0, 3147, 3148, 5, 520, 0, 0, 3148, 3149, 5, 501, 0, 0, - 3149, 3150, 5, 520, 0, 0, 3150, 3152, 5, 504, 0, 0, 3151, 3092, 1, 0, 0, - 0, 3151, 3096, 1, 0, 0, 0, 3151, 3100, 1, 0, 0, 0, 3151, 3107, 1, 0, 0, - 0, 3151, 3114, 1, 0, 0, 0, 3151, 3121, 1, 0, 0, 0, 3151, 3127, 1, 0, 0, - 0, 3151, 3133, 1, 0, 0, 0, 3151, 3139, 1, 0, 0, 0, 3151, 3145, 1, 0, 0, - 0, 3152, 311, 1, 0, 0, 0, 3153, 3158, 3, 314, 157, 0, 3154, 3155, 5, 501, - 0, 0, 3155, 3157, 3, 314, 157, 0, 3156, 3154, 1, 0, 0, 0, 3157, 3160, 1, - 0, 0, 0, 3158, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 313, 1, - 0, 0, 0, 3160, 3158, 1, 0, 0, 0, 3161, 3163, 5, 521, 0, 0, 3162, 3164, - 7, 6, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 315, - 1, 0, 0, 0, 3165, 3166, 5, 520, 0, 0, 3166, 3167, 5, 490, 0, 0, 3167, 3168, - 3, 318, 159, 0, 3168, 317, 1, 0, 0, 0, 3169, 3170, 5, 276, 0, 0, 3170, - 3171, 5, 503, 0, 0, 3171, 3172, 5, 520, 0, 0, 3172, 3194, 5, 504, 0, 0, - 3173, 3174, 5, 277, 0, 0, 3174, 3175, 5, 503, 0, 0, 3175, 3176, 3, 218, - 109, 0, 3176, 3177, 5, 504, 0, 0, 3177, 3194, 1, 0, 0, 0, 3178, 3179, 5, - 129, 0, 0, 3179, 3180, 5, 503, 0, 0, 3180, 3181, 3, 218, 109, 0, 3181, - 3182, 5, 504, 0, 0, 3182, 3194, 1, 0, 0, 0, 3183, 3184, 5, 130, 0, 0, 3184, - 3185, 5, 503, 0, 0, 3185, 3186, 3, 218, 109, 0, 3186, 3187, 5, 504, 0, - 0, 3187, 3194, 1, 0, 0, 0, 3188, 3189, 5, 131, 0, 0, 3189, 3190, 5, 503, - 0, 0, 3190, 3191, 3, 218, 109, 0, 3191, 3192, 5, 504, 0, 0, 3192, 3194, - 1, 0, 0, 0, 3193, 3169, 1, 0, 0, 0, 3193, 3173, 1, 0, 0, 0, 3193, 3178, - 1, 0, 0, 0, 3193, 3183, 1, 0, 0, 0, 3193, 3188, 1, 0, 0, 0, 3194, 319, - 1, 0, 0, 0, 3195, 3196, 5, 520, 0, 0, 3196, 3197, 5, 490, 0, 0, 3197, 3198, - 5, 17, 0, 0, 3198, 3199, 5, 13, 0, 0, 3199, 3200, 3, 712, 356, 0, 3200, - 321, 1, 0, 0, 0, 3201, 3202, 5, 47, 0, 0, 3202, 3203, 5, 520, 0, 0, 3203, - 3204, 5, 426, 0, 0, 3204, 3205, 5, 520, 0, 0, 3205, 323, 1, 0, 0, 0, 3206, - 3207, 5, 133, 0, 0, 3207, 3208, 5, 520, 0, 0, 3208, 3209, 5, 71, 0, 0, - 3209, 3210, 5, 520, 0, 0, 3210, 325, 1, 0, 0, 0, 3211, 3216, 3, 328, 164, - 0, 3212, 3213, 5, 501, 0, 0, 3213, 3215, 3, 328, 164, 0, 3214, 3212, 1, - 0, 0, 0, 3215, 3218, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3216, 3217, 1, - 0, 0, 0, 3217, 327, 1, 0, 0, 0, 3218, 3216, 1, 0, 0, 0, 3219, 3220, 3, - 330, 165, 0, 3220, 3221, 5, 490, 0, 0, 3221, 3222, 3, 672, 336, 0, 3222, - 329, 1, 0, 0, 0, 3223, 3228, 3, 712, 356, 0, 3224, 3228, 5, 521, 0, 0, - 3225, 3228, 5, 523, 0, 0, 3226, 3228, 3, 734, 367, 0, 3227, 3223, 1, 0, - 0, 0, 3227, 3224, 1, 0, 0, 0, 3227, 3225, 1, 0, 0, 0, 3227, 3226, 1, 0, - 0, 0, 3228, 331, 1, 0, 0, 0, 3229, 3234, 3, 334, 167, 0, 3230, 3231, 5, - 501, 0, 0, 3231, 3233, 3, 334, 167, 0, 3232, 3230, 1, 0, 0, 0, 3233, 3236, - 1, 0, 0, 0, 3234, 3232, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 333, - 1, 0, 0, 0, 3236, 3234, 1, 0, 0, 0, 3237, 3238, 5, 521, 0, 0, 3238, 3239, - 5, 490, 0, 0, 3239, 3240, 3, 672, 336, 0, 3240, 335, 1, 0, 0, 0, 3241, - 3242, 5, 33, 0, 0, 3242, 3243, 3, 712, 356, 0, 3243, 3244, 3, 386, 193, - 0, 3244, 3245, 5, 505, 0, 0, 3245, 3246, 3, 394, 197, 0, 3246, 3247, 5, - 506, 0, 0, 3247, 337, 1, 0, 0, 0, 3248, 3249, 5, 34, 0, 0, 3249, 3251, - 3, 712, 356, 0, 3250, 3252, 3, 390, 195, 0, 3251, 3250, 1, 0, 0, 0, 3251, - 3252, 1, 0, 0, 0, 3252, 3254, 1, 0, 0, 0, 3253, 3255, 3, 340, 170, 0, 3254, - 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, - 3257, 5, 505, 0, 0, 3257, 3258, 3, 394, 197, 0, 3258, 3259, 5, 506, 0, - 0, 3259, 339, 1, 0, 0, 0, 3260, 3262, 3, 342, 171, 0, 3261, 3260, 1, 0, - 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3264, 1, 0, - 0, 0, 3264, 341, 1, 0, 0, 0, 3265, 3266, 5, 219, 0, 0, 3266, 3267, 5, 517, - 0, 0, 3267, 343, 1, 0, 0, 0, 3268, 3273, 3, 346, 173, 0, 3269, 3270, 5, - 501, 0, 0, 3270, 3272, 3, 346, 173, 0, 3271, 3269, 1, 0, 0, 0, 3272, 3275, - 1, 0, 0, 0, 3273, 3271, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 345, - 1, 0, 0, 0, 3275, 3273, 1, 0, 0, 0, 3276, 3277, 7, 16, 0, 0, 3277, 3278, - 5, 509, 0, 0, 3278, 3279, 3, 108, 54, 0, 3279, 347, 1, 0, 0, 0, 3280, 3285, - 3, 350, 175, 0, 3281, 3282, 5, 501, 0, 0, 3282, 3284, 3, 350, 175, 0, 3283, - 3281, 1, 0, 0, 0, 3284, 3287, 1, 0, 0, 0, 3285, 3283, 1, 0, 0, 0, 3285, - 3286, 1, 0, 0, 0, 3286, 349, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3288, - 3289, 7, 16, 0, 0, 3289, 3290, 5, 509, 0, 0, 3290, 3291, 3, 108, 54, 0, - 3291, 351, 1, 0, 0, 0, 3292, 3297, 3, 354, 177, 0, 3293, 3294, 5, 501, - 0, 0, 3294, 3296, 3, 354, 177, 0, 3295, 3293, 1, 0, 0, 0, 3296, 3299, 1, - 0, 0, 0, 3297, 3295, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 353, 1, - 0, 0, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3301, 5, 520, 0, 0, 3301, 3302, - 5, 509, 0, 0, 3302, 3303, 3, 108, 54, 0, 3303, 3304, 5, 490, 0, 0, 3304, - 3305, 5, 517, 0, 0, 3305, 355, 1, 0, 0, 0, 3306, 3309, 3, 712, 356, 0, - 3307, 3309, 5, 521, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3307, 1, 0, 0, - 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 7, 6, 0, 0, 3311, 3310, 1, 0, 0, - 0, 3311, 3312, 1, 0, 0, 0, 3312, 357, 1, 0, 0, 0, 3313, 3314, 5, 507, 0, - 0, 3314, 3315, 3, 362, 181, 0, 3315, 3316, 5, 508, 0, 0, 3316, 359, 1, - 0, 0, 0, 3317, 3318, 7, 17, 0, 0, 3318, 361, 1, 0, 0, 0, 3319, 3324, 3, - 364, 182, 0, 3320, 3321, 5, 286, 0, 0, 3321, 3323, 3, 364, 182, 0, 3322, - 3320, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, - 3325, 1, 0, 0, 0, 3325, 363, 1, 0, 0, 0, 3326, 3324, 1, 0, 0, 0, 3327, - 3332, 3, 366, 183, 0, 3328, 3329, 5, 285, 0, 0, 3329, 3331, 3, 366, 183, - 0, 3330, 3328, 1, 0, 0, 0, 3331, 3334, 1, 0, 0, 0, 3332, 3330, 1, 0, 0, - 0, 3332, 3333, 1, 0, 0, 0, 3333, 365, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, - 0, 3335, 3336, 5, 287, 0, 0, 3336, 3339, 3, 366, 183, 0, 3337, 3339, 3, - 368, 184, 0, 3338, 3335, 1, 0, 0, 0, 3338, 3337, 1, 0, 0, 0, 3339, 367, - 1, 0, 0, 0, 3340, 3344, 3, 370, 185, 0, 3341, 3342, 3, 682, 341, 0, 3342, - 3343, 3, 370, 185, 0, 3343, 3345, 1, 0, 0, 0, 3344, 3341, 1, 0, 0, 0, 3344, - 3345, 1, 0, 0, 0, 3345, 369, 1, 0, 0, 0, 3346, 3353, 3, 382, 191, 0, 3347, - 3353, 3, 372, 186, 0, 3348, 3349, 5, 503, 0, 0, 3349, 3350, 3, 362, 181, - 0, 3350, 3351, 5, 504, 0, 0, 3351, 3353, 1, 0, 0, 0, 3352, 3346, 1, 0, - 0, 0, 3352, 3347, 1, 0, 0, 0, 3352, 3348, 1, 0, 0, 0, 3353, 371, 1, 0, - 0, 0, 3354, 3359, 3, 374, 187, 0, 3355, 3356, 5, 496, 0, 0, 3356, 3358, - 3, 374, 187, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, - 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 373, 1, 0, 0, 0, 3361, 3359, - 1, 0, 0, 0, 3362, 3367, 3, 376, 188, 0, 3363, 3364, 5, 507, 0, 0, 3364, - 3365, 3, 362, 181, 0, 3365, 3366, 5, 508, 0, 0, 3366, 3368, 1, 0, 0, 0, - 3367, 3363, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 375, 1, 0, 0, 0, - 3369, 3375, 3, 378, 189, 0, 3370, 3375, 5, 520, 0, 0, 3371, 3375, 5, 517, - 0, 0, 3372, 3375, 5, 519, 0, 0, 3373, 3375, 5, 516, 0, 0, 3374, 3369, 1, - 0, 0, 0, 3374, 3370, 1, 0, 0, 0, 3374, 3371, 1, 0, 0, 0, 3374, 3372, 1, - 0, 0, 0, 3374, 3373, 1, 0, 0, 0, 3375, 377, 1, 0, 0, 0, 3376, 3381, 3, - 380, 190, 0, 3377, 3378, 5, 502, 0, 0, 3378, 3380, 3, 380, 190, 0, 3379, - 3377, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3379, 1, 0, 0, 0, 3381, - 3382, 1, 0, 0, 0, 3382, 379, 1, 0, 0, 0, 3383, 3381, 1, 0, 0, 0, 3384, - 3385, 8, 18, 0, 0, 3385, 381, 1, 0, 0, 0, 3386, 3387, 3, 384, 192, 0, 3387, - 3396, 5, 503, 0, 0, 3388, 3393, 3, 362, 181, 0, 3389, 3390, 5, 501, 0, - 0, 3390, 3392, 3, 362, 181, 0, 3391, 3389, 1, 0, 0, 0, 3392, 3395, 1, 0, - 0, 0, 3393, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3397, 1, 0, - 0, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3388, 1, 0, 0, 0, 3396, 3397, 1, 0, - 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, 5, 504, 0, 0, 3399, 383, 1, 0, - 0, 0, 3400, 3401, 7, 19, 0, 0, 3401, 385, 1, 0, 0, 0, 3402, 3403, 5, 503, - 0, 0, 3403, 3408, 3, 388, 194, 0, 3404, 3405, 5, 501, 0, 0, 3405, 3407, - 3, 388, 194, 0, 3406, 3404, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3406, - 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3411, 1, 0, 0, 0, 3410, 3408, - 1, 0, 0, 0, 3411, 3412, 5, 504, 0, 0, 3412, 387, 1, 0, 0, 0, 3413, 3414, - 5, 202, 0, 0, 3414, 3415, 5, 509, 0, 0, 3415, 3416, 5, 505, 0, 0, 3416, - 3417, 3, 344, 172, 0, 3417, 3418, 5, 506, 0, 0, 3418, 3441, 1, 0, 0, 0, - 3419, 3420, 5, 203, 0, 0, 3420, 3421, 5, 509, 0, 0, 3421, 3422, 5, 505, - 0, 0, 3422, 3423, 3, 352, 176, 0, 3423, 3424, 5, 506, 0, 0, 3424, 3441, - 1, 0, 0, 0, 3425, 3426, 5, 164, 0, 0, 3426, 3427, 5, 509, 0, 0, 3427, 3441, - 5, 517, 0, 0, 3428, 3429, 5, 35, 0, 0, 3429, 3432, 5, 509, 0, 0, 3430, - 3433, 3, 712, 356, 0, 3431, 3433, 5, 517, 0, 0, 3432, 3430, 1, 0, 0, 0, - 3432, 3431, 1, 0, 0, 0, 3433, 3441, 1, 0, 0, 0, 3434, 3435, 5, 218, 0, - 0, 3435, 3436, 5, 509, 0, 0, 3436, 3441, 5, 517, 0, 0, 3437, 3438, 5, 219, - 0, 0, 3438, 3439, 5, 509, 0, 0, 3439, 3441, 5, 517, 0, 0, 3440, 3413, 1, - 0, 0, 0, 3440, 3419, 1, 0, 0, 0, 3440, 3425, 1, 0, 0, 0, 3440, 3428, 1, - 0, 0, 0, 3440, 3434, 1, 0, 0, 0, 3440, 3437, 1, 0, 0, 0, 3441, 389, 1, - 0, 0, 0, 3442, 3443, 5, 503, 0, 0, 3443, 3448, 3, 392, 196, 0, 3444, 3445, - 5, 501, 0, 0, 3445, 3447, 3, 392, 196, 0, 3446, 3444, 1, 0, 0, 0, 3447, - 3450, 1, 0, 0, 0, 3448, 3446, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, - 3451, 1, 0, 0, 0, 3450, 3448, 1, 0, 0, 0, 3451, 3452, 5, 504, 0, 0, 3452, - 391, 1, 0, 0, 0, 3453, 3454, 5, 202, 0, 0, 3454, 3455, 5, 509, 0, 0, 3455, - 3456, 5, 505, 0, 0, 3456, 3457, 3, 348, 174, 0, 3457, 3458, 5, 506, 0, - 0, 3458, 3469, 1, 0, 0, 0, 3459, 3460, 5, 203, 0, 0, 3460, 3461, 5, 509, - 0, 0, 3461, 3462, 5, 505, 0, 0, 3462, 3463, 3, 352, 176, 0, 3463, 3464, - 5, 506, 0, 0, 3464, 3469, 1, 0, 0, 0, 3465, 3466, 5, 219, 0, 0, 3466, 3467, - 5, 509, 0, 0, 3467, 3469, 5, 517, 0, 0, 3468, 3453, 1, 0, 0, 0, 3468, 3459, - 1, 0, 0, 0, 3468, 3465, 1, 0, 0, 0, 3469, 393, 1, 0, 0, 0, 3470, 3473, - 3, 398, 199, 0, 3471, 3473, 3, 396, 198, 0, 3472, 3470, 1, 0, 0, 0, 3472, - 3471, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3474, - 3475, 1, 0, 0, 0, 3475, 395, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3477, - 3478, 5, 67, 0, 0, 3478, 3479, 5, 387, 0, 0, 3479, 3482, 3, 714, 357, 0, - 3480, 3481, 5, 76, 0, 0, 3481, 3483, 3, 714, 357, 0, 3482, 3480, 1, 0, - 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 397, 1, 0, 0, 0, 3484, 3485, 3, 400, - 200, 0, 3485, 3487, 5, 521, 0, 0, 3486, 3488, 3, 402, 201, 0, 3487, 3486, - 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3491, - 3, 440, 220, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 399, - 1, 0, 0, 0, 3492, 3493, 7, 20, 0, 0, 3493, 401, 1, 0, 0, 0, 3494, 3495, - 5, 503, 0, 0, 3495, 3500, 3, 404, 202, 0, 3496, 3497, 5, 501, 0, 0, 3497, - 3499, 3, 404, 202, 0, 3498, 3496, 1, 0, 0, 0, 3499, 3502, 1, 0, 0, 0, 3500, - 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, - 3500, 1, 0, 0, 0, 3503, 3504, 5, 504, 0, 0, 3504, 403, 1, 0, 0, 0, 3505, - 3506, 5, 191, 0, 0, 3506, 3507, 5, 509, 0, 0, 3507, 3596, 3, 410, 205, - 0, 3508, 3509, 5, 38, 0, 0, 3509, 3510, 5, 509, 0, 0, 3510, 3596, 3, 418, - 209, 0, 3511, 3512, 5, 198, 0, 0, 3512, 3513, 5, 509, 0, 0, 3513, 3596, - 3, 418, 209, 0, 3514, 3515, 5, 116, 0, 0, 3515, 3516, 5, 509, 0, 0, 3516, - 3596, 3, 412, 206, 0, 3517, 3518, 5, 188, 0, 0, 3518, 3519, 5, 509, 0, - 0, 3519, 3596, 3, 420, 210, 0, 3520, 3521, 5, 168, 0, 0, 3521, 3522, 5, - 509, 0, 0, 3522, 3596, 5, 517, 0, 0, 3523, 3524, 5, 199, 0, 0, 3524, 3525, - 5, 509, 0, 0, 3525, 3596, 3, 418, 209, 0, 3526, 3527, 5, 196, 0, 0, 3527, - 3528, 5, 509, 0, 0, 3528, 3596, 3, 420, 210, 0, 3529, 3530, 5, 197, 0, - 0, 3530, 3531, 5, 509, 0, 0, 3531, 3596, 3, 426, 213, 0, 3532, 3533, 5, - 200, 0, 0, 3533, 3534, 5, 509, 0, 0, 3534, 3596, 3, 422, 211, 0, 3535, - 3536, 5, 201, 0, 0, 3536, 3537, 5, 509, 0, 0, 3537, 3596, 3, 422, 211, - 0, 3538, 3539, 5, 209, 0, 0, 3539, 3540, 5, 509, 0, 0, 3540, 3596, 3, 428, - 214, 0, 3541, 3542, 5, 207, 0, 0, 3542, 3543, 5, 509, 0, 0, 3543, 3596, - 5, 517, 0, 0, 3544, 3545, 5, 208, 0, 0, 3545, 3546, 5, 509, 0, 0, 3546, - 3596, 5, 517, 0, 0, 3547, 3548, 5, 204, 0, 0, 3548, 3549, 5, 509, 0, 0, - 3549, 3596, 3, 430, 215, 0, 3550, 3551, 5, 205, 0, 0, 3551, 3552, 5, 509, - 0, 0, 3552, 3596, 3, 430, 215, 0, 3553, 3554, 5, 206, 0, 0, 3554, 3555, - 5, 509, 0, 0, 3555, 3596, 3, 430, 215, 0, 3556, 3557, 5, 193, 0, 0, 3557, - 3558, 5, 509, 0, 0, 3558, 3596, 3, 432, 216, 0, 3559, 3560, 5, 34, 0, 0, - 3560, 3561, 5, 509, 0, 0, 3561, 3596, 3, 712, 356, 0, 3562, 3563, 5, 224, - 0, 0, 3563, 3564, 5, 509, 0, 0, 3564, 3596, 3, 408, 204, 0, 3565, 3566, - 5, 225, 0, 0, 3566, 3567, 5, 509, 0, 0, 3567, 3596, 3, 406, 203, 0, 3568, - 3569, 5, 212, 0, 0, 3569, 3570, 5, 509, 0, 0, 3570, 3596, 3, 436, 218, - 0, 3571, 3572, 5, 215, 0, 0, 3572, 3573, 5, 509, 0, 0, 3573, 3596, 5, 519, - 0, 0, 3574, 3575, 5, 216, 0, 0, 3575, 3576, 5, 509, 0, 0, 3576, 3596, 5, - 519, 0, 0, 3577, 3578, 5, 232, 0, 0, 3578, 3579, 5, 509, 0, 0, 3579, 3596, - 3, 358, 179, 0, 3580, 3581, 5, 232, 0, 0, 3581, 3582, 5, 509, 0, 0, 3582, - 3596, 3, 434, 217, 0, 3583, 3584, 5, 222, 0, 0, 3584, 3585, 5, 509, 0, - 0, 3585, 3596, 3, 358, 179, 0, 3586, 3587, 5, 222, 0, 0, 3587, 3588, 5, - 509, 0, 0, 3588, 3596, 3, 434, 217, 0, 3589, 3590, 5, 190, 0, 0, 3590, - 3591, 5, 509, 0, 0, 3591, 3596, 3, 434, 217, 0, 3592, 3593, 5, 521, 0, - 0, 3593, 3594, 5, 509, 0, 0, 3594, 3596, 3, 434, 217, 0, 3595, 3505, 1, - 0, 0, 0, 3595, 3508, 1, 0, 0, 0, 3595, 3511, 1, 0, 0, 0, 3595, 3514, 1, - 0, 0, 0, 3595, 3517, 1, 0, 0, 0, 3595, 3520, 1, 0, 0, 0, 3595, 3523, 1, - 0, 0, 0, 3595, 3526, 1, 0, 0, 0, 3595, 3529, 1, 0, 0, 0, 3595, 3532, 1, - 0, 0, 0, 3595, 3535, 1, 0, 0, 0, 3595, 3538, 1, 0, 0, 0, 3595, 3541, 1, - 0, 0, 0, 3595, 3544, 1, 0, 0, 0, 3595, 3547, 1, 0, 0, 0, 3595, 3550, 1, - 0, 0, 0, 3595, 3553, 1, 0, 0, 0, 3595, 3556, 1, 0, 0, 0, 3595, 3559, 1, - 0, 0, 0, 3595, 3562, 1, 0, 0, 0, 3595, 3565, 1, 0, 0, 0, 3595, 3568, 1, - 0, 0, 0, 3595, 3571, 1, 0, 0, 0, 3595, 3574, 1, 0, 0, 0, 3595, 3577, 1, - 0, 0, 0, 3595, 3580, 1, 0, 0, 0, 3595, 3583, 1, 0, 0, 0, 3595, 3586, 1, - 0, 0, 0, 3595, 3589, 1, 0, 0, 0, 3595, 3592, 1, 0, 0, 0, 3596, 405, 1, - 0, 0, 0, 3597, 3598, 7, 21, 0, 0, 3598, 407, 1, 0, 0, 0, 3599, 3600, 5, - 507, 0, 0, 3600, 3605, 3, 712, 356, 0, 3601, 3602, 5, 501, 0, 0, 3602, - 3604, 3, 712, 356, 0, 3603, 3601, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, - 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3608, 1, 0, 0, 0, 3607, - 3605, 1, 0, 0, 0, 3608, 3609, 5, 508, 0, 0, 3609, 409, 1, 0, 0, 0, 3610, - 3657, 5, 520, 0, 0, 3611, 3613, 5, 353, 0, 0, 3612, 3614, 5, 71, 0, 0, - 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, - 3615, 3629, 3, 712, 356, 0, 3616, 3627, 5, 72, 0, 0, 3617, 3623, 3, 358, - 179, 0, 3618, 3619, 3, 360, 180, 0, 3619, 3620, 3, 358, 179, 0, 3620, 3622, - 1, 0, 0, 0, 3621, 3618, 1, 0, 0, 0, 3622, 3625, 1, 0, 0, 0, 3623, 3621, - 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3628, 1, 0, 0, 0, 3625, 3623, - 1, 0, 0, 0, 3626, 3628, 3, 672, 336, 0, 3627, 3617, 1, 0, 0, 0, 3627, 3626, - 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3616, 1, 0, 0, 0, 3629, 3630, - 1, 0, 0, 0, 3630, 3640, 1, 0, 0, 0, 3631, 3632, 5, 10, 0, 0, 3632, 3637, - 3, 356, 178, 0, 3633, 3634, 5, 501, 0, 0, 3634, 3636, 3, 356, 178, 0, 3635, - 3633, 1, 0, 0, 0, 3636, 3639, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, - 3638, 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3640, - 3631, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3657, 1, 0, 0, 0, 3642, - 3643, 5, 30, 0, 0, 3643, 3645, 3, 712, 356, 0, 3644, 3646, 3, 414, 207, - 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3657, 1, 0, 0, - 0, 3647, 3648, 5, 31, 0, 0, 3648, 3650, 3, 712, 356, 0, 3649, 3651, 3, - 414, 207, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3657, - 1, 0, 0, 0, 3652, 3653, 5, 27, 0, 0, 3653, 3657, 3, 418, 209, 0, 3654, - 3655, 5, 193, 0, 0, 3655, 3657, 5, 521, 0, 0, 3656, 3610, 1, 0, 0, 0, 3656, - 3611, 1, 0, 0, 0, 3656, 3642, 1, 0, 0, 0, 3656, 3647, 1, 0, 0, 0, 3656, - 3652, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 411, 1, 0, 0, 0, 3658, - 3660, 5, 234, 0, 0, 3659, 3661, 5, 236, 0, 0, 3660, 3659, 1, 0, 0, 0, 3660, - 3661, 1, 0, 0, 0, 3661, 3697, 1, 0, 0, 0, 3662, 3664, 5, 235, 0, 0, 3663, - 3665, 5, 236, 0, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, - 3697, 1, 0, 0, 0, 3666, 3697, 5, 236, 0, 0, 3667, 3697, 5, 239, 0, 0, 3668, - 3670, 5, 100, 0, 0, 3669, 3671, 5, 236, 0, 0, 3670, 3669, 1, 0, 0, 0, 3670, - 3671, 1, 0, 0, 0, 3671, 3697, 1, 0, 0, 0, 3672, 3673, 5, 240, 0, 0, 3673, - 3676, 3, 712, 356, 0, 3674, 3675, 5, 81, 0, 0, 3675, 3677, 3, 412, 206, - 0, 3676, 3674, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3697, 1, 0, 0, - 0, 3678, 3679, 5, 237, 0, 0, 3679, 3681, 3, 712, 356, 0, 3680, 3682, 3, - 414, 207, 0, 3681, 3680, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3697, - 1, 0, 0, 0, 3683, 3684, 5, 30, 0, 0, 3684, 3686, 3, 712, 356, 0, 3685, - 3687, 3, 414, 207, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, - 3697, 1, 0, 0, 0, 3688, 3689, 5, 31, 0, 0, 3689, 3691, 3, 712, 356, 0, - 3690, 3692, 3, 414, 207, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, - 0, 3692, 3697, 1, 0, 0, 0, 3693, 3694, 5, 243, 0, 0, 3694, 3697, 5, 517, - 0, 0, 3695, 3697, 5, 244, 0, 0, 3696, 3658, 1, 0, 0, 0, 3696, 3662, 1, - 0, 0, 0, 3696, 3666, 1, 0, 0, 0, 3696, 3667, 1, 0, 0, 0, 3696, 3668, 1, - 0, 0, 0, 3696, 3672, 1, 0, 0, 0, 3696, 3678, 1, 0, 0, 0, 3696, 3683, 1, - 0, 0, 0, 3696, 3688, 1, 0, 0, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3695, 1, - 0, 0, 0, 3697, 413, 1, 0, 0, 0, 3698, 3699, 5, 503, 0, 0, 3699, 3704, 3, - 416, 208, 0, 3700, 3701, 5, 501, 0, 0, 3701, 3703, 3, 416, 208, 0, 3702, - 3700, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, - 3705, 1, 0, 0, 0, 3705, 3707, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, - 3708, 5, 504, 0, 0, 3708, 415, 1, 0, 0, 0, 3709, 3710, 5, 521, 0, 0, 3710, - 3711, 5, 509, 0, 0, 3711, 3716, 3, 672, 336, 0, 3712, 3713, 5, 520, 0, - 0, 3713, 3714, 5, 490, 0, 0, 3714, 3716, 3, 672, 336, 0, 3715, 3709, 1, - 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3716, 417, 1, 0, 0, 0, 3717, 3721, 5, - 521, 0, 0, 3718, 3721, 5, 523, 0, 0, 3719, 3721, 3, 736, 368, 0, 3720, - 3717, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3719, 1, 0, 0, 0, 3721, - 3730, 1, 0, 0, 0, 3722, 3726, 5, 496, 0, 0, 3723, 3727, 5, 521, 0, 0, 3724, - 3727, 5, 523, 0, 0, 3725, 3727, 3, 736, 368, 0, 3726, 3723, 1, 0, 0, 0, - 3726, 3724, 1, 0, 0, 0, 3726, 3725, 1, 0, 0, 0, 3727, 3729, 1, 0, 0, 0, - 3728, 3722, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, - 3730, 3731, 1, 0, 0, 0, 3731, 419, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, - 3733, 3744, 5, 517, 0, 0, 3734, 3744, 3, 418, 209, 0, 3735, 3741, 5, 520, - 0, 0, 3736, 3739, 5, 502, 0, 0, 3737, 3740, 5, 521, 0, 0, 3738, 3740, 3, - 736, 368, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3738, 1, 0, 0, 0, 3740, 3742, - 1, 0, 0, 0, 3741, 3736, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3744, - 1, 0, 0, 0, 3743, 3733, 1, 0, 0, 0, 3743, 3734, 1, 0, 0, 0, 3743, 3735, - 1, 0, 0, 0, 3744, 421, 1, 0, 0, 0, 3745, 3746, 5, 507, 0, 0, 3746, 3751, - 3, 424, 212, 0, 3747, 3748, 5, 501, 0, 0, 3748, 3750, 3, 424, 212, 0, 3749, - 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, - 3752, 1, 0, 0, 0, 3752, 3754, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, - 3755, 5, 508, 0, 0, 3755, 423, 1, 0, 0, 0, 3756, 3757, 5, 505, 0, 0, 3757, - 3758, 5, 519, 0, 0, 3758, 3759, 5, 506, 0, 0, 3759, 3760, 5, 490, 0, 0, - 3760, 3761, 3, 672, 336, 0, 3761, 425, 1, 0, 0, 0, 3762, 3763, 7, 22, 0, - 0, 3763, 427, 1, 0, 0, 0, 3764, 3765, 7, 23, 0, 0, 3765, 429, 1, 0, 0, - 0, 3766, 3767, 7, 24, 0, 0, 3767, 431, 1, 0, 0, 0, 3768, 3769, 7, 25, 0, - 0, 3769, 433, 1, 0, 0, 0, 3770, 3794, 5, 517, 0, 0, 3771, 3794, 5, 519, - 0, 0, 3772, 3794, 3, 720, 360, 0, 3773, 3794, 3, 712, 356, 0, 3774, 3794, - 5, 521, 0, 0, 3775, 3794, 5, 255, 0, 0, 3776, 3794, 5, 256, 0, 0, 3777, - 3794, 5, 257, 0, 0, 3778, 3794, 5, 258, 0, 0, 3779, 3794, 5, 259, 0, 0, - 3780, 3794, 5, 260, 0, 0, 3781, 3790, 5, 507, 0, 0, 3782, 3787, 3, 672, - 336, 0, 3783, 3784, 5, 501, 0, 0, 3784, 3786, 3, 672, 336, 0, 3785, 3783, - 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, - 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 3782, - 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, - 5, 508, 0, 0, 3793, 3770, 1, 0, 0, 0, 3793, 3771, 1, 0, 0, 0, 3793, 3772, - 1, 0, 0, 0, 3793, 3773, 1, 0, 0, 0, 3793, 3774, 1, 0, 0, 0, 3793, 3775, - 1, 0, 0, 0, 3793, 3776, 1, 0, 0, 0, 3793, 3777, 1, 0, 0, 0, 3793, 3778, - 1, 0, 0, 0, 3793, 3779, 1, 0, 0, 0, 3793, 3780, 1, 0, 0, 0, 3793, 3781, - 1, 0, 0, 0, 3794, 435, 1, 0, 0, 0, 3795, 3796, 5, 507, 0, 0, 3796, 3801, - 3, 438, 219, 0, 3797, 3798, 5, 501, 0, 0, 3798, 3800, 3, 438, 219, 0, 3799, - 3797, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, - 3802, 1, 0, 0, 0, 3802, 3804, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, - 3805, 5, 508, 0, 0, 3805, 3809, 1, 0, 0, 0, 3806, 3807, 5, 507, 0, 0, 3807, - 3809, 5, 508, 0, 0, 3808, 3795, 1, 0, 0, 0, 3808, 3806, 1, 0, 0, 0, 3809, - 437, 1, 0, 0, 0, 3810, 3811, 5, 517, 0, 0, 3811, 3812, 5, 509, 0, 0, 3812, - 3820, 5, 517, 0, 0, 3813, 3814, 5, 517, 0, 0, 3814, 3815, 5, 509, 0, 0, - 3815, 3820, 5, 93, 0, 0, 3816, 3817, 5, 517, 0, 0, 3817, 3818, 5, 509, - 0, 0, 3818, 3820, 5, 485, 0, 0, 3819, 3810, 1, 0, 0, 0, 3819, 3813, 1, - 0, 0, 0, 3819, 3816, 1, 0, 0, 0, 3820, 439, 1, 0, 0, 0, 3821, 3822, 5, - 505, 0, 0, 3822, 3823, 3, 394, 197, 0, 3823, 3824, 5, 506, 0, 0, 3824, - 441, 1, 0, 0, 0, 3825, 3826, 5, 36, 0, 0, 3826, 3828, 3, 712, 356, 0, 3827, - 3829, 3, 444, 222, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, - 3830, 1, 0, 0, 0, 3830, 3834, 5, 96, 0, 0, 3831, 3833, 3, 448, 224, 0, - 3832, 3831, 1, 0, 0, 0, 3833, 3836, 1, 0, 0, 0, 3834, 3832, 1, 0, 0, 0, - 3834, 3835, 1, 0, 0, 0, 3835, 3837, 1, 0, 0, 0, 3836, 3834, 1, 0, 0, 0, - 3837, 3838, 5, 83, 0, 0, 3838, 443, 1, 0, 0, 0, 3839, 3841, 3, 446, 223, - 0, 3840, 3839, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, - 0, 3842, 3843, 1, 0, 0, 0, 3843, 445, 1, 0, 0, 0, 3844, 3845, 5, 406, 0, - 0, 3845, 3846, 5, 517, 0, 0, 3846, 447, 1, 0, 0, 0, 3847, 3848, 5, 33, - 0, 0, 3848, 3851, 3, 712, 356, 0, 3849, 3850, 5, 188, 0, 0, 3850, 3852, - 5, 517, 0, 0, 3851, 3849, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 449, - 1, 0, 0, 0, 3853, 3854, 5, 353, 0, 0, 3854, 3855, 5, 352, 0, 0, 3855, 3857, - 3, 712, 356, 0, 3856, 3858, 3, 452, 226, 0, 3857, 3856, 1, 0, 0, 0, 3858, - 3859, 1, 0, 0, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, - 3869, 1, 0, 0, 0, 3861, 3865, 5, 96, 0, 0, 3862, 3864, 3, 454, 227, 0, - 3863, 3862, 1, 0, 0, 0, 3864, 3867, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, - 3865, 3866, 1, 0, 0, 0, 3866, 3868, 1, 0, 0, 0, 3867, 3865, 1, 0, 0, 0, - 3868, 3870, 5, 83, 0, 0, 3869, 3861, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, - 3870, 451, 1, 0, 0, 0, 3871, 3872, 5, 419, 0, 0, 3872, 3899, 5, 517, 0, - 0, 3873, 3874, 5, 352, 0, 0, 3874, 3878, 5, 262, 0, 0, 3875, 3879, 5, 517, - 0, 0, 3876, 3877, 5, 510, 0, 0, 3877, 3879, 3, 712, 356, 0, 3878, 3875, - 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3899, 1, 0, 0, 0, 3880, 3881, - 5, 63, 0, 0, 3881, 3899, 5, 517, 0, 0, 3882, 3883, 5, 64, 0, 0, 3883, 3899, - 5, 519, 0, 0, 3884, 3885, 5, 353, 0, 0, 3885, 3899, 5, 517, 0, 0, 3886, - 3890, 5, 350, 0, 0, 3887, 3891, 5, 517, 0, 0, 3888, 3889, 5, 510, 0, 0, - 3889, 3891, 3, 712, 356, 0, 3890, 3887, 1, 0, 0, 0, 3890, 3888, 1, 0, 0, - 0, 3891, 3899, 1, 0, 0, 0, 3892, 3896, 5, 351, 0, 0, 3893, 3897, 5, 517, - 0, 0, 3894, 3895, 5, 510, 0, 0, 3895, 3897, 3, 712, 356, 0, 3896, 3893, - 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3897, 3899, 1, 0, 0, 0, 3898, 3871, - 1, 0, 0, 0, 3898, 3873, 1, 0, 0, 0, 3898, 3880, 1, 0, 0, 0, 3898, 3882, - 1, 0, 0, 0, 3898, 3884, 1, 0, 0, 0, 3898, 3886, 1, 0, 0, 0, 3898, 3892, - 1, 0, 0, 0, 3899, 453, 1, 0, 0, 0, 3900, 3901, 5, 354, 0, 0, 3901, 3902, - 3, 714, 357, 0, 3902, 3903, 5, 434, 0, 0, 3903, 3915, 7, 11, 0, 0, 3904, - 3905, 5, 368, 0, 0, 3905, 3906, 3, 714, 357, 0, 3906, 3907, 5, 509, 0, - 0, 3907, 3911, 3, 108, 54, 0, 3908, 3909, 5, 295, 0, 0, 3909, 3912, 5, - 517, 0, 0, 3910, 3912, 5, 288, 0, 0, 3911, 3908, 1, 0, 0, 0, 3911, 3910, - 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3914, 1, 0, 0, 0, 3913, 3904, - 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, - 1, 0, 0, 0, 3916, 3934, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3919, - 5, 77, 0, 0, 3919, 3932, 3, 712, 356, 0, 3920, 3921, 5, 355, 0, 0, 3921, - 3922, 5, 503, 0, 0, 3922, 3927, 3, 456, 228, 0, 3923, 3924, 5, 501, 0, - 0, 3924, 3926, 3, 456, 228, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3929, 1, 0, - 0, 0, 3927, 3925, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3930, 1, 0, - 0, 0, 3929, 3927, 1, 0, 0, 0, 3930, 3931, 5, 504, 0, 0, 3931, 3933, 1, - 0, 0, 0, 3932, 3920, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3935, 1, - 0, 0, 0, 3934, 3918, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3936, 1, - 0, 0, 0, 3936, 3937, 5, 500, 0, 0, 3937, 455, 1, 0, 0, 0, 3938, 3939, 3, - 714, 357, 0, 3939, 3940, 5, 76, 0, 0, 3940, 3941, 3, 714, 357, 0, 3941, - 457, 1, 0, 0, 0, 3942, 3943, 5, 37, 0, 0, 3943, 3944, 3, 712, 356, 0, 3944, - 3945, 5, 419, 0, 0, 3945, 3946, 3, 108, 54, 0, 3946, 3947, 5, 295, 0, 0, - 3947, 3949, 3, 716, 358, 0, 3948, 3950, 3, 460, 230, 0, 3949, 3948, 1, - 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 459, 1, 0, 0, 0, 3951, 3953, 3, - 462, 231, 0, 3952, 3951, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3952, - 1, 0, 0, 0, 3954, 3955, 1, 0, 0, 0, 3955, 461, 1, 0, 0, 0, 3956, 3957, - 5, 406, 0, 0, 3957, 3964, 5, 517, 0, 0, 3958, 3959, 5, 219, 0, 0, 3959, - 3964, 5, 517, 0, 0, 3960, 3961, 5, 367, 0, 0, 3961, 3962, 5, 426, 0, 0, - 3962, 3964, 5, 339, 0, 0, 3963, 3956, 1, 0, 0, 0, 3963, 3958, 1, 0, 0, - 0, 3963, 3960, 1, 0, 0, 0, 3964, 463, 1, 0, 0, 0, 3965, 3966, 5, 444, 0, - 0, 3966, 3975, 5, 517, 0, 0, 3967, 3972, 3, 560, 280, 0, 3968, 3969, 5, - 501, 0, 0, 3969, 3971, 3, 560, 280, 0, 3970, 3968, 1, 0, 0, 0, 3971, 3974, - 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3976, - 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3967, 1, 0, 0, 0, 3975, 3976, - 1, 0, 0, 0, 3976, 465, 1, 0, 0, 0, 3977, 3978, 5, 311, 0, 0, 3978, 3979, - 5, 339, 0, 0, 3979, 3980, 3, 712, 356, 0, 3980, 3981, 3, 468, 234, 0, 3981, - 3982, 3, 470, 235, 0, 3982, 3986, 5, 96, 0, 0, 3983, 3985, 3, 474, 237, - 0, 3984, 3983, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, - 0, 3986, 3987, 1, 0, 0, 0, 3987, 3989, 1, 0, 0, 0, 3988, 3986, 1, 0, 0, - 0, 3989, 3990, 5, 83, 0, 0, 3990, 467, 1, 0, 0, 0, 3991, 3992, 5, 315, - 0, 0, 3992, 3993, 5, 218, 0, 0, 3993, 3994, 5, 517, 0, 0, 3994, 469, 1, - 0, 0, 0, 3995, 3996, 5, 317, 0, 0, 3996, 4010, 5, 424, 0, 0, 3997, 3998, - 5, 317, 0, 0, 3998, 3999, 5, 318, 0, 0, 3999, 4000, 5, 503, 0, 0, 4000, - 4001, 5, 350, 0, 0, 4001, 4002, 5, 490, 0, 0, 4002, 4003, 3, 472, 236, - 0, 4003, 4004, 5, 501, 0, 0, 4004, 4005, 5, 351, 0, 0, 4005, 4006, 5, 490, - 0, 0, 4006, 4007, 3, 472, 236, 0, 4007, 4008, 5, 504, 0, 0, 4008, 4010, - 1, 0, 0, 0, 4009, 3995, 1, 0, 0, 0, 4009, 3997, 1, 0, 0, 0, 4010, 471, - 1, 0, 0, 0, 4011, 4012, 7, 26, 0, 0, 4012, 473, 1, 0, 0, 0, 4013, 4015, - 3, 722, 361, 0, 4014, 4013, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4016, - 1, 0, 0, 0, 4016, 4019, 5, 321, 0, 0, 4017, 4020, 3, 714, 357, 0, 4018, - 4020, 5, 517, 0, 0, 4019, 4017, 1, 0, 0, 0, 4019, 4018, 1, 0, 0, 0, 4020, - 4021, 1, 0, 0, 0, 4021, 4022, 5, 322, 0, 0, 4022, 4023, 3, 476, 238, 0, - 4023, 4024, 5, 323, 0, 0, 4024, 4028, 5, 517, 0, 0, 4025, 4027, 3, 478, - 239, 0, 4026, 4025, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, - 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4028, 1, - 0, 0, 0, 4031, 4032, 5, 326, 0, 0, 4032, 4033, 3, 482, 241, 0, 4033, 4034, - 5, 500, 0, 0, 4034, 475, 1, 0, 0, 0, 4035, 4036, 7, 14, 0, 0, 4036, 477, - 1, 0, 0, 0, 4037, 4038, 5, 368, 0, 0, 4038, 4039, 5, 520, 0, 0, 4039, 4040, - 5, 509, 0, 0, 4040, 4056, 3, 108, 54, 0, 4041, 4042, 5, 354, 0, 0, 4042, - 4043, 5, 520, 0, 0, 4043, 4044, 5, 509, 0, 0, 4044, 4056, 3, 108, 54, 0, - 4045, 4046, 5, 195, 0, 0, 4046, 4047, 5, 517, 0, 0, 4047, 4048, 5, 490, - 0, 0, 4048, 4056, 3, 480, 240, 0, 4049, 4050, 5, 325, 0, 0, 4050, 4051, - 7, 27, 0, 0, 4051, 4052, 5, 71, 0, 0, 4052, 4056, 5, 520, 0, 0, 4053, 4054, - 5, 324, 0, 0, 4054, 4056, 5, 519, 0, 0, 4055, 4037, 1, 0, 0, 0, 4055, 4041, - 1, 0, 0, 0, 4055, 4045, 1, 0, 0, 0, 4055, 4049, 1, 0, 0, 0, 4055, 4053, - 1, 0, 0, 0, 4056, 479, 1, 0, 0, 0, 4057, 4063, 5, 517, 0, 0, 4058, 4063, - 5, 520, 0, 0, 4059, 4060, 5, 517, 0, 0, 4060, 4061, 5, 493, 0, 0, 4061, - 4063, 5, 520, 0, 0, 4062, 4057, 1, 0, 0, 0, 4062, 4058, 1, 0, 0, 0, 4062, - 4059, 1, 0, 0, 0, 4063, 481, 1, 0, 0, 0, 4064, 4065, 5, 329, 0, 0, 4065, - 4066, 5, 76, 0, 0, 4066, 4078, 5, 520, 0, 0, 4067, 4068, 5, 262, 0, 0, - 4068, 4069, 5, 76, 0, 0, 4069, 4078, 5, 520, 0, 0, 4070, 4071, 5, 332, - 0, 0, 4071, 4072, 5, 76, 0, 0, 4072, 4078, 5, 520, 0, 0, 4073, 4074, 5, - 331, 0, 0, 4074, 4075, 5, 76, 0, 0, 4075, 4078, 5, 520, 0, 0, 4076, 4078, - 5, 424, 0, 0, 4077, 4064, 1, 0, 0, 0, 4077, 4067, 1, 0, 0, 0, 4077, 4070, - 1, 0, 0, 0, 4077, 4073, 1, 0, 0, 0, 4077, 4076, 1, 0, 0, 0, 4078, 483, - 1, 0, 0, 0, 4079, 4080, 5, 41, 0, 0, 4080, 4081, 5, 521, 0, 0, 4081, 4082, - 5, 93, 0, 0, 4082, 4083, 3, 712, 356, 0, 4083, 4084, 5, 503, 0, 0, 4084, - 4085, 3, 116, 58, 0, 4085, 4086, 5, 504, 0, 0, 4086, 485, 1, 0, 0, 0, 4087, - 4088, 5, 314, 0, 0, 4088, 4089, 5, 339, 0, 0, 4089, 4090, 3, 712, 356, - 0, 4090, 4091, 5, 503, 0, 0, 4091, 4096, 3, 492, 246, 0, 4092, 4093, 5, - 501, 0, 0, 4093, 4095, 3, 492, 246, 0, 4094, 4092, 1, 0, 0, 0, 4095, 4098, - 1, 0, 0, 0, 4096, 4094, 1, 0, 0, 0, 4096, 4097, 1, 0, 0, 0, 4097, 4099, - 1, 0, 0, 0, 4098, 4096, 1, 0, 0, 0, 4099, 4101, 5, 504, 0, 0, 4100, 4102, - 3, 512, 256, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 487, - 1, 0, 0, 0, 4103, 4104, 5, 314, 0, 0, 4104, 4105, 5, 312, 0, 0, 4105, 4106, - 3, 712, 356, 0, 4106, 4107, 5, 503, 0, 0, 4107, 4112, 3, 492, 246, 0, 4108, - 4109, 5, 501, 0, 0, 4109, 4111, 3, 492, 246, 0, 4110, 4108, 1, 0, 0, 0, - 4111, 4114, 1, 0, 0, 0, 4112, 4110, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, - 4113, 4115, 1, 0, 0, 0, 4114, 4112, 1, 0, 0, 0, 4115, 4117, 5, 504, 0, - 0, 4116, 4118, 3, 496, 248, 0, 4117, 4116, 1, 0, 0, 0, 4117, 4118, 1, 0, - 0, 0, 4118, 4127, 1, 0, 0, 0, 4119, 4123, 5, 505, 0, 0, 4120, 4122, 3, - 500, 250, 0, 4121, 4120, 1, 0, 0, 0, 4122, 4125, 1, 0, 0, 0, 4123, 4121, - 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4123, - 1, 0, 0, 0, 4126, 4128, 5, 506, 0, 0, 4127, 4119, 1, 0, 0, 0, 4127, 4128, - 1, 0, 0, 0, 4128, 489, 1, 0, 0, 0, 4129, 4139, 5, 517, 0, 0, 4130, 4139, - 5, 519, 0, 0, 4131, 4139, 5, 296, 0, 0, 4132, 4139, 5, 297, 0, 0, 4133, - 4135, 5, 30, 0, 0, 4134, 4136, 3, 712, 356, 0, 4135, 4134, 1, 0, 0, 0, - 4135, 4136, 1, 0, 0, 0, 4136, 4139, 1, 0, 0, 0, 4137, 4139, 3, 712, 356, - 0, 4138, 4129, 1, 0, 0, 0, 4138, 4130, 1, 0, 0, 0, 4138, 4131, 1, 0, 0, - 0, 4138, 4132, 1, 0, 0, 0, 4138, 4133, 1, 0, 0, 0, 4138, 4137, 1, 0, 0, - 0, 4139, 491, 1, 0, 0, 0, 4140, 4141, 3, 714, 357, 0, 4141, 4142, 5, 509, - 0, 0, 4142, 4143, 3, 490, 245, 0, 4143, 493, 1, 0, 0, 0, 4144, 4145, 3, - 714, 357, 0, 4145, 4146, 5, 490, 0, 0, 4146, 4147, 3, 490, 245, 0, 4147, - 495, 1, 0, 0, 0, 4148, 4149, 5, 317, 0, 0, 4149, 4154, 3, 498, 249, 0, - 4150, 4151, 5, 501, 0, 0, 4151, 4153, 3, 498, 249, 0, 4152, 4150, 1, 0, - 0, 0, 4153, 4156, 1, 0, 0, 0, 4154, 4152, 1, 0, 0, 0, 4154, 4155, 1, 0, - 0, 0, 4155, 497, 1, 0, 0, 0, 4156, 4154, 1, 0, 0, 0, 4157, 4166, 5, 318, - 0, 0, 4158, 4166, 5, 346, 0, 0, 4159, 4166, 5, 347, 0, 0, 4160, 4162, 5, - 30, 0, 0, 4161, 4163, 3, 712, 356, 0, 4162, 4161, 1, 0, 0, 0, 4162, 4163, - 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4166, 5, 521, 0, 0, 4165, 4157, - 1, 0, 0, 0, 4165, 4158, 1, 0, 0, 0, 4165, 4159, 1, 0, 0, 0, 4165, 4160, - 1, 0, 0, 0, 4165, 4164, 1, 0, 0, 0, 4166, 499, 1, 0, 0, 0, 4167, 4168, - 5, 341, 0, 0, 4168, 4169, 5, 23, 0, 0, 4169, 4172, 3, 712, 356, 0, 4170, - 4171, 5, 76, 0, 0, 4171, 4173, 5, 517, 0, 0, 4172, 4170, 1, 0, 0, 0, 4172, - 4173, 1, 0, 0, 0, 4173, 4185, 1, 0, 0, 0, 4174, 4175, 5, 503, 0, 0, 4175, - 4180, 3, 492, 246, 0, 4176, 4177, 5, 501, 0, 0, 4177, 4179, 3, 492, 246, - 0, 4178, 4176, 1, 0, 0, 0, 4179, 4182, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, - 0, 4180, 4181, 1, 0, 0, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, - 0, 4183, 4184, 5, 504, 0, 0, 4184, 4186, 1, 0, 0, 0, 4185, 4174, 1, 0, - 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4188, 1, 0, 0, 0, 4187, 4189, 3, 502, - 251, 0, 4188, 4187, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 1, - 0, 0, 0, 4190, 4192, 5, 500, 0, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, - 1, 0, 0, 0, 4192, 501, 1, 0, 0, 0, 4193, 4194, 5, 343, 0, 0, 4194, 4204, - 5, 503, 0, 0, 4195, 4205, 5, 495, 0, 0, 4196, 4201, 3, 504, 252, 0, 4197, - 4198, 5, 501, 0, 0, 4198, 4200, 3, 504, 252, 0, 4199, 4197, 1, 0, 0, 0, - 4200, 4203, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, - 4202, 4205, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4204, 4195, 1, 0, 0, 0, - 4204, 4196, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4207, 5, 504, 0, - 0, 4207, 503, 1, 0, 0, 0, 4208, 4211, 5, 521, 0, 0, 4209, 4210, 5, 76, - 0, 0, 4210, 4212, 5, 517, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, - 0, 0, 0, 4212, 4214, 1, 0, 0, 0, 4213, 4215, 3, 506, 253, 0, 4214, 4213, - 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 505, 1, 0, 0, 0, 4216, 4217, - 5, 503, 0, 0, 4217, 4222, 5, 521, 0, 0, 4218, 4219, 5, 501, 0, 0, 4219, - 4221, 5, 521, 0, 0, 4220, 4218, 1, 0, 0, 0, 4221, 4224, 1, 0, 0, 0, 4222, - 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4225, 1, 0, 0, 0, 4224, - 4222, 1, 0, 0, 0, 4225, 4226, 5, 504, 0, 0, 4226, 507, 1, 0, 0, 0, 4227, - 4228, 5, 26, 0, 0, 4228, 4229, 5, 23, 0, 0, 4229, 4230, 3, 712, 356, 0, - 4230, 4231, 5, 71, 0, 0, 4231, 4232, 5, 314, 0, 0, 4232, 4233, 5, 339, - 0, 0, 4233, 4234, 3, 712, 356, 0, 4234, 4235, 5, 503, 0, 0, 4235, 4240, - 3, 492, 246, 0, 4236, 4237, 5, 501, 0, 0, 4237, 4239, 3, 492, 246, 0, 4238, - 4236, 1, 0, 0, 0, 4239, 4242, 1, 0, 0, 0, 4240, 4238, 1, 0, 0, 0, 4240, - 4241, 1, 0, 0, 0, 4241, 4243, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, - 4249, 5, 504, 0, 0, 4244, 4246, 5, 503, 0, 0, 4245, 4247, 3, 100, 50, 0, - 4246, 4245, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, - 4248, 4250, 5, 504, 0, 0, 4249, 4244, 1, 0, 0, 0, 4249, 4250, 1, 0, 0, - 0, 4250, 509, 1, 0, 0, 0, 4251, 4254, 5, 371, 0, 0, 4252, 4255, 3, 712, - 356, 0, 4253, 4255, 5, 521, 0, 0, 4254, 4252, 1, 0, 0, 0, 4254, 4253, 1, - 0, 0, 0, 4255, 4259, 1, 0, 0, 0, 4256, 4258, 3, 34, 17, 0, 4257, 4256, - 1, 0, 0, 0, 4258, 4261, 1, 0, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4260, - 1, 0, 0, 0, 4260, 511, 1, 0, 0, 0, 4261, 4259, 1, 0, 0, 0, 4262, 4263, - 5, 370, 0, 0, 4263, 4264, 5, 503, 0, 0, 4264, 4269, 3, 514, 257, 0, 4265, - 4266, 5, 501, 0, 0, 4266, 4268, 3, 514, 257, 0, 4267, 4265, 1, 0, 0, 0, - 4268, 4271, 1, 0, 0, 0, 4269, 4267, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, - 4270, 4272, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4272, 4273, 5, 504, 0, - 0, 4273, 513, 1, 0, 0, 0, 4274, 4275, 5, 517, 0, 0, 4275, 4276, 5, 509, - 0, 0, 4276, 4277, 3, 490, 245, 0, 4277, 515, 1, 0, 0, 0, 4278, 4279, 5, - 440, 0, 0, 4279, 4280, 5, 441, 0, 0, 4280, 4281, 5, 312, 0, 0, 4281, 4282, - 3, 712, 356, 0, 4282, 4283, 5, 503, 0, 0, 4283, 4288, 3, 492, 246, 0, 4284, - 4285, 5, 501, 0, 0, 4285, 4287, 3, 492, 246, 0, 4286, 4284, 1, 0, 0, 0, - 4287, 4290, 1, 0, 0, 0, 4288, 4286, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, - 4289, 4291, 1, 0, 0, 0, 4290, 4288, 1, 0, 0, 0, 4291, 4292, 5, 504, 0, - 0, 4292, 4294, 5, 505, 0, 0, 4293, 4295, 3, 518, 259, 0, 4294, 4293, 1, - 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4296, 4297, 1, - 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 5, 506, 0, 0, 4299, 517, 1, - 0, 0, 0, 4300, 4301, 5, 403, 0, 0, 4301, 4302, 5, 521, 0, 0, 4302, 4303, - 5, 503, 0, 0, 4303, 4308, 3, 520, 260, 0, 4304, 4305, 5, 501, 0, 0, 4305, - 4307, 3, 520, 260, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4310, 1, 0, 0, 0, 4308, - 4306, 1, 0, 0, 0, 4308, 4309, 1, 0, 0, 0, 4309, 4311, 1, 0, 0, 0, 4310, - 4308, 1, 0, 0, 0, 4311, 4312, 5, 504, 0, 0, 4312, 4315, 7, 28, 0, 0, 4313, - 4314, 5, 23, 0, 0, 4314, 4316, 3, 712, 356, 0, 4315, 4313, 1, 0, 0, 0, - 4315, 4316, 1, 0, 0, 0, 4316, 4319, 1, 0, 0, 0, 4317, 4318, 5, 30, 0, 0, - 4318, 4320, 3, 712, 356, 0, 4319, 4317, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, - 0, 4320, 4321, 1, 0, 0, 0, 4321, 4322, 5, 500, 0, 0, 4322, 519, 1, 0, 0, - 0, 4323, 4324, 5, 521, 0, 0, 4324, 4325, 5, 509, 0, 0, 4325, 4326, 3, 108, - 54, 0, 4326, 521, 1, 0, 0, 0, 4327, 4328, 5, 32, 0, 0, 4328, 4333, 3, 712, - 356, 0, 4329, 4330, 5, 368, 0, 0, 4330, 4331, 5, 520, 0, 0, 4331, 4332, - 5, 509, 0, 0, 4332, 4334, 3, 712, 356, 0, 4333, 4329, 1, 0, 0, 0, 4333, - 4334, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4336, 5, 484, 0, 0, 4336, - 4338, 5, 517, 0, 0, 4337, 4335, 1, 0, 0, 0, 4337, 4338, 1, 0, 0, 0, 4338, - 4341, 1, 0, 0, 0, 4339, 4340, 5, 483, 0, 0, 4340, 4342, 5, 517, 0, 0, 4341, - 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4346, 1, 0, 0, 0, 4343, - 4344, 5, 361, 0, 0, 4344, 4345, 5, 460, 0, 0, 4345, 4347, 7, 29, 0, 0, - 4346, 4343, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4351, 1, 0, 0, 0, - 4348, 4349, 5, 471, 0, 0, 4349, 4350, 5, 33, 0, 0, 4350, 4352, 3, 712, - 356, 0, 4351, 4348, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 4356, 1, - 0, 0, 0, 4353, 4354, 5, 470, 0, 0, 4354, 4355, 5, 268, 0, 0, 4355, 4357, - 5, 517, 0, 0, 4356, 4353, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4358, - 1, 0, 0, 0, 4358, 4359, 5, 96, 0, 0, 4359, 4360, 3, 524, 262, 0, 4360, - 4361, 5, 83, 0, 0, 4361, 4363, 5, 32, 0, 0, 4362, 4364, 5, 500, 0, 0, 4363, - 4362, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4366, 1, 0, 0, 0, 4365, - 4367, 5, 496, 0, 0, 4366, 4365, 1, 0, 0, 0, 4366, 4367, 1, 0, 0, 0, 4367, - 523, 1, 0, 0, 0, 4368, 4370, 3, 526, 263, 0, 4369, 4368, 1, 0, 0, 0, 4370, - 4373, 1, 0, 0, 0, 4371, 4369, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, - 525, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4374, 4375, 3, 528, 264, 0, 4375, - 4376, 5, 500, 0, 0, 4376, 4402, 1, 0, 0, 0, 4377, 4378, 3, 534, 267, 0, - 4378, 4379, 5, 500, 0, 0, 4379, 4402, 1, 0, 0, 0, 4380, 4381, 3, 538, 269, - 0, 4381, 4382, 5, 500, 0, 0, 4382, 4402, 1, 0, 0, 0, 4383, 4384, 3, 540, - 270, 0, 4384, 4385, 5, 500, 0, 0, 4385, 4402, 1, 0, 0, 0, 4386, 4387, 3, - 544, 272, 0, 4387, 4388, 5, 500, 0, 0, 4388, 4402, 1, 0, 0, 0, 4389, 4390, - 3, 548, 274, 0, 4390, 4391, 5, 500, 0, 0, 4391, 4402, 1, 0, 0, 0, 4392, - 4393, 3, 550, 275, 0, 4393, 4394, 5, 500, 0, 0, 4394, 4402, 1, 0, 0, 0, - 4395, 4396, 3, 552, 276, 0, 4396, 4397, 5, 500, 0, 0, 4397, 4402, 1, 0, - 0, 0, 4398, 4399, 3, 554, 277, 0, 4399, 4400, 5, 500, 0, 0, 4400, 4402, - 1, 0, 0, 0, 4401, 4374, 1, 0, 0, 0, 4401, 4377, 1, 0, 0, 0, 4401, 4380, - 1, 0, 0, 0, 4401, 4383, 1, 0, 0, 0, 4401, 4386, 1, 0, 0, 0, 4401, 4389, - 1, 0, 0, 0, 4401, 4392, 1, 0, 0, 0, 4401, 4395, 1, 0, 0, 0, 4401, 4398, - 1, 0, 0, 0, 4402, 527, 1, 0, 0, 0, 4403, 4404, 5, 461, 0, 0, 4404, 4405, - 5, 462, 0, 0, 4405, 4406, 5, 521, 0, 0, 4406, 4409, 5, 517, 0, 0, 4407, - 4408, 5, 33, 0, 0, 4408, 4410, 3, 712, 356, 0, 4409, 4407, 1, 0, 0, 0, - 4409, 4410, 1, 0, 0, 0, 4410, 4414, 1, 0, 0, 0, 4411, 4412, 5, 466, 0, - 0, 4412, 4413, 5, 30, 0, 0, 4413, 4415, 3, 712, 356, 0, 4414, 4411, 1, - 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4419, 1, 0, 0, 0, 4416, 4417, 5, - 466, 0, 0, 4417, 4418, 5, 308, 0, 0, 4418, 4420, 5, 517, 0, 0, 4419, 4416, - 1, 0, 0, 0, 4419, 4420, 1, 0, 0, 0, 4420, 4423, 1, 0, 0, 0, 4421, 4422, - 5, 23, 0, 0, 4422, 4424, 3, 712, 356, 0, 4423, 4421, 1, 0, 0, 0, 4423, - 4424, 1, 0, 0, 0, 4424, 4428, 1, 0, 0, 0, 4425, 4426, 5, 470, 0, 0, 4426, - 4427, 5, 268, 0, 0, 4427, 4429, 5, 517, 0, 0, 4428, 4425, 1, 0, 0, 0, 4428, - 4429, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4431, 5, 483, 0, 0, 4431, - 4433, 5, 517, 0, 0, 4432, 4430, 1, 0, 0, 0, 4432, 4433, 1, 0, 0, 0, 4433, - 4440, 1, 0, 0, 0, 4434, 4436, 5, 465, 0, 0, 4435, 4437, 3, 532, 266, 0, - 4436, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, - 4438, 4439, 1, 0, 0, 0, 4439, 4441, 1, 0, 0, 0, 4440, 4434, 1, 0, 0, 0, - 4440, 4441, 1, 0, 0, 0, 4441, 4449, 1, 0, 0, 0, 4442, 4443, 5, 476, 0, - 0, 4443, 4445, 5, 441, 0, 0, 4444, 4446, 3, 530, 265, 0, 4445, 4444, 1, - 0, 0, 0, 4446, 4447, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4447, 4448, 1, - 0, 0, 0, 4448, 4450, 1, 0, 0, 0, 4449, 4442, 1, 0, 0, 0, 4449, 4450, 1, - 0, 0, 0, 4450, 4501, 1, 0, 0, 0, 4451, 4452, 5, 479, 0, 0, 4452, 4453, - 5, 461, 0, 0, 4453, 4454, 5, 462, 0, 0, 4454, 4455, 5, 521, 0, 0, 4455, - 4458, 5, 517, 0, 0, 4456, 4457, 5, 33, 0, 0, 4457, 4459, 3, 712, 356, 0, - 4458, 4456, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4463, 1, 0, 0, 0, - 4460, 4461, 5, 466, 0, 0, 4461, 4462, 5, 30, 0, 0, 4462, 4464, 3, 712, - 356, 0, 4463, 4460, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4468, 1, - 0, 0, 0, 4465, 4466, 5, 466, 0, 0, 4466, 4467, 5, 308, 0, 0, 4467, 4469, - 5, 517, 0, 0, 4468, 4465, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4472, - 1, 0, 0, 0, 4470, 4471, 5, 23, 0, 0, 4471, 4473, 3, 712, 356, 0, 4472, - 4470, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4477, 1, 0, 0, 0, 4474, - 4475, 5, 470, 0, 0, 4475, 4476, 5, 268, 0, 0, 4476, 4478, 5, 517, 0, 0, - 4477, 4474, 1, 0, 0, 0, 4477, 4478, 1, 0, 0, 0, 4478, 4481, 1, 0, 0, 0, - 4479, 4480, 5, 483, 0, 0, 4480, 4482, 5, 517, 0, 0, 4481, 4479, 1, 0, 0, - 0, 4481, 4482, 1, 0, 0, 0, 4482, 4489, 1, 0, 0, 0, 4483, 4485, 5, 465, - 0, 0, 4484, 4486, 3, 532, 266, 0, 4485, 4484, 1, 0, 0, 0, 4486, 4487, 1, - 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4490, 1, - 0, 0, 0, 4489, 4483, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4498, 1, - 0, 0, 0, 4491, 4492, 5, 476, 0, 0, 4492, 4494, 5, 441, 0, 0, 4493, 4495, - 3, 530, 265, 0, 4494, 4493, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4494, - 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4491, - 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 4501, 1, 0, 0, 0, 4500, 4403, - 1, 0, 0, 0, 4500, 4451, 1, 0, 0, 0, 4501, 529, 1, 0, 0, 0, 4502, 4503, - 5, 477, 0, 0, 4503, 4505, 5, 468, 0, 0, 4504, 4506, 5, 517, 0, 0, 4505, - 4504, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 4511, 1, 0, 0, 0, 4507, - 4508, 5, 505, 0, 0, 4508, 4509, 3, 524, 262, 0, 4509, 4510, 5, 506, 0, - 0, 4510, 4512, 1, 0, 0, 0, 4511, 4507, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, - 0, 4512, 4536, 1, 0, 0, 0, 4513, 4514, 5, 478, 0, 0, 4514, 4515, 5, 477, - 0, 0, 4515, 4517, 5, 468, 0, 0, 4516, 4518, 5, 517, 0, 0, 4517, 4516, 1, - 0, 0, 0, 4517, 4518, 1, 0, 0, 0, 4518, 4523, 1, 0, 0, 0, 4519, 4520, 5, - 505, 0, 0, 4520, 4521, 3, 524, 262, 0, 4521, 4522, 5, 506, 0, 0, 4522, - 4524, 1, 0, 0, 0, 4523, 4519, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, - 4536, 1, 0, 0, 0, 4525, 4527, 5, 468, 0, 0, 4526, 4528, 5, 517, 0, 0, 4527, - 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 4533, 1, 0, 0, 0, 4529, - 4530, 5, 505, 0, 0, 4530, 4531, 3, 524, 262, 0, 4531, 4532, 5, 506, 0, - 0, 4532, 4534, 1, 0, 0, 0, 4533, 4529, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, - 0, 4534, 4536, 1, 0, 0, 0, 4535, 4502, 1, 0, 0, 0, 4535, 4513, 1, 0, 0, - 0, 4535, 4525, 1, 0, 0, 0, 4536, 531, 1, 0, 0, 0, 4537, 4538, 5, 517, 0, - 0, 4538, 4539, 5, 505, 0, 0, 4539, 4540, 3, 524, 262, 0, 4540, 4541, 5, - 506, 0, 0, 4541, 533, 1, 0, 0, 0, 4542, 4543, 5, 113, 0, 0, 4543, 4544, - 5, 30, 0, 0, 4544, 4547, 3, 712, 356, 0, 4545, 4546, 5, 406, 0, 0, 4546, - 4548, 5, 517, 0, 0, 4547, 4545, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, - 4561, 1, 0, 0, 0, 4549, 4550, 5, 139, 0, 0, 4550, 4551, 5, 503, 0, 0, 4551, - 4556, 3, 536, 268, 0, 4552, 4553, 5, 501, 0, 0, 4553, 4555, 3, 536, 268, - 0, 4554, 4552, 1, 0, 0, 0, 4555, 4558, 1, 0, 0, 0, 4556, 4554, 1, 0, 0, - 0, 4556, 4557, 1, 0, 0, 0, 4557, 4559, 1, 0, 0, 0, 4558, 4556, 1, 0, 0, - 0, 4559, 4560, 5, 504, 0, 0, 4560, 4562, 1, 0, 0, 0, 4561, 4549, 1, 0, - 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4569, 1, 0, 0, 0, 4563, 4565, 5, 465, - 0, 0, 4564, 4566, 3, 542, 271, 0, 4565, 4564, 1, 0, 0, 0, 4566, 4567, 1, - 0, 0, 0, 4567, 4565, 1, 0, 0, 0, 4567, 4568, 1, 0, 0, 0, 4568, 4570, 1, - 0, 0, 0, 4569, 4563, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 4578, 1, - 0, 0, 0, 4571, 4572, 5, 476, 0, 0, 4572, 4574, 5, 441, 0, 0, 4573, 4575, - 3, 530, 265, 0, 4574, 4573, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4574, - 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4579, 1, 0, 0, 0, 4578, 4571, - 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 535, 1, 0, 0, 0, 4580, 4581, - 3, 712, 356, 0, 4581, 4582, 5, 490, 0, 0, 4582, 4583, 5, 517, 0, 0, 4583, - 537, 1, 0, 0, 0, 4584, 4585, 5, 113, 0, 0, 4585, 4586, 5, 32, 0, 0, 4586, - 4589, 3, 712, 356, 0, 4587, 4588, 5, 406, 0, 0, 4588, 4590, 5, 517, 0, - 0, 4589, 4587, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4603, 1, 0, 0, - 0, 4591, 4592, 5, 139, 0, 0, 4592, 4593, 5, 503, 0, 0, 4593, 4598, 3, 536, - 268, 0, 4594, 4595, 5, 501, 0, 0, 4595, 4597, 3, 536, 268, 0, 4596, 4594, - 1, 0, 0, 0, 4597, 4600, 1, 0, 0, 0, 4598, 4596, 1, 0, 0, 0, 4598, 4599, - 1, 0, 0, 0, 4599, 4601, 1, 0, 0, 0, 4600, 4598, 1, 0, 0, 0, 4601, 4602, - 5, 504, 0, 0, 4602, 4604, 1, 0, 0, 0, 4603, 4591, 1, 0, 0, 0, 4603, 4604, - 1, 0, 0, 0, 4604, 539, 1, 0, 0, 0, 4605, 4607, 5, 463, 0, 0, 4606, 4608, - 5, 517, 0, 0, 4607, 4606, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4611, - 1, 0, 0, 0, 4609, 4610, 5, 406, 0, 0, 4610, 4612, 5, 517, 0, 0, 4611, 4609, - 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 4619, 1, 0, 0, 0, 4613, 4615, - 5, 465, 0, 0, 4614, 4616, 3, 542, 271, 0, 4615, 4614, 1, 0, 0, 0, 4616, - 4617, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, - 4620, 1, 0, 0, 0, 4619, 4613, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, - 541, 1, 0, 0, 0, 4621, 4622, 7, 30, 0, 0, 4622, 4623, 5, 513, 0, 0, 4623, - 4624, 5, 505, 0, 0, 4624, 4625, 3, 524, 262, 0, 4625, 4626, 5, 506, 0, - 0, 4626, 543, 1, 0, 0, 0, 4627, 4628, 5, 473, 0, 0, 4628, 4631, 5, 464, - 0, 0, 4629, 4630, 5, 406, 0, 0, 4630, 4632, 5, 517, 0, 0, 4631, 4629, 1, - 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 4634, 1, 0, 0, 0, 4633, 4635, 3, - 546, 273, 0, 4634, 4633, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4634, - 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 545, 1, 0, 0, 0, 4638, 4639, - 5, 323, 0, 0, 4639, 4640, 5, 519, 0, 0, 4640, 4641, 5, 505, 0, 0, 4641, - 4642, 3, 524, 262, 0, 4642, 4643, 5, 506, 0, 0, 4643, 547, 1, 0, 0, 0, - 4644, 4645, 5, 469, 0, 0, 4645, 4646, 5, 426, 0, 0, 4646, 4649, 5, 521, - 0, 0, 4647, 4648, 5, 406, 0, 0, 4648, 4650, 5, 517, 0, 0, 4649, 4647, 1, - 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 549, 1, 0, 0, 0, 4651, 4652, 5, - 474, 0, 0, 4652, 4653, 5, 429, 0, 0, 4653, 4655, 5, 468, 0, 0, 4654, 4656, - 5, 517, 0, 0, 4655, 4654, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, - 1, 0, 0, 0, 4657, 4658, 5, 406, 0, 0, 4658, 4660, 5, 517, 0, 0, 4659, 4657, - 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 551, 1, 0, 0, 0, 4661, 4662, - 5, 474, 0, 0, 4662, 4663, 5, 429, 0, 0, 4663, 4666, 5, 467, 0, 0, 4664, - 4665, 5, 406, 0, 0, 4665, 4667, 5, 517, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, - 4667, 1, 0, 0, 0, 4667, 4675, 1, 0, 0, 0, 4668, 4669, 5, 476, 0, 0, 4669, - 4671, 5, 441, 0, 0, 4670, 4672, 3, 530, 265, 0, 4671, 4670, 1, 0, 0, 0, - 4672, 4673, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, - 4674, 4676, 1, 0, 0, 0, 4675, 4668, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, - 4676, 553, 1, 0, 0, 0, 4677, 4678, 5, 475, 0, 0, 4678, 4679, 5, 517, 0, - 0, 4679, 555, 1, 0, 0, 0, 4680, 4681, 3, 558, 279, 0, 4681, 4686, 3, 560, - 280, 0, 4682, 4683, 5, 501, 0, 0, 4683, 4685, 3, 560, 280, 0, 4684, 4682, - 1, 0, 0, 0, 4685, 4688, 1, 0, 0, 0, 4686, 4684, 1, 0, 0, 0, 4686, 4687, - 1, 0, 0, 0, 4687, 4720, 1, 0, 0, 0, 4688, 4686, 1, 0, 0, 0, 4689, 4690, - 5, 37, 0, 0, 4690, 4694, 5, 517, 0, 0, 4691, 4692, 5, 420, 0, 0, 4692, - 4695, 3, 562, 281, 0, 4693, 4695, 5, 19, 0, 0, 4694, 4691, 1, 0, 0, 0, - 4694, 4693, 1, 0, 0, 0, 4695, 4699, 1, 0, 0, 0, 4696, 4697, 5, 289, 0, - 0, 4697, 4698, 5, 444, 0, 0, 4698, 4700, 5, 517, 0, 0, 4699, 4696, 1, 0, - 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4720, 1, 0, 0, 0, 4701, 4702, 5, 19, - 0, 0, 4702, 4703, 5, 37, 0, 0, 4703, 4707, 5, 517, 0, 0, 4704, 4705, 5, - 289, 0, 0, 4705, 4706, 5, 444, 0, 0, 4706, 4708, 5, 517, 0, 0, 4707, 4704, - 1, 0, 0, 0, 4707, 4708, 1, 0, 0, 0, 4708, 4720, 1, 0, 0, 0, 4709, 4710, - 5, 444, 0, 0, 4710, 4711, 5, 517, 0, 0, 4711, 4716, 3, 560, 280, 0, 4712, - 4713, 5, 501, 0, 0, 4713, 4715, 3, 560, 280, 0, 4714, 4712, 1, 0, 0, 0, - 4715, 4718, 1, 0, 0, 0, 4716, 4714, 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, - 4717, 4720, 1, 0, 0, 0, 4718, 4716, 1, 0, 0, 0, 4719, 4680, 1, 0, 0, 0, - 4719, 4689, 1, 0, 0, 0, 4719, 4701, 1, 0, 0, 0, 4719, 4709, 1, 0, 0, 0, - 4720, 557, 1, 0, 0, 0, 4721, 4722, 7, 31, 0, 0, 4722, 559, 1, 0, 0, 0, - 4723, 4724, 5, 521, 0, 0, 4724, 4725, 5, 490, 0, 0, 4725, 4726, 3, 562, - 281, 0, 4726, 561, 1, 0, 0, 0, 4727, 4732, 5, 517, 0, 0, 4728, 4732, 5, - 519, 0, 0, 4729, 4732, 3, 720, 360, 0, 4730, 4732, 3, 712, 356, 0, 4731, - 4727, 1, 0, 0, 0, 4731, 4728, 1, 0, 0, 0, 4731, 4729, 1, 0, 0, 0, 4731, - 4730, 1, 0, 0, 0, 4732, 563, 1, 0, 0, 0, 4733, 4738, 3, 566, 283, 0, 4734, - 4738, 3, 578, 289, 0, 4735, 4738, 3, 580, 290, 0, 4736, 4738, 3, 586, 293, - 0, 4737, 4733, 1, 0, 0, 0, 4737, 4734, 1, 0, 0, 0, 4737, 4735, 1, 0, 0, - 0, 4737, 4736, 1, 0, 0, 0, 4738, 565, 1, 0, 0, 0, 4739, 4740, 5, 65, 0, - 0, 4740, 5175, 5, 377, 0, 0, 4741, 4742, 5, 65, 0, 0, 4742, 4743, 5, 344, - 0, 0, 4743, 4744, 5, 378, 0, 0, 4744, 4745, 5, 71, 0, 0, 4745, 5175, 3, - 712, 356, 0, 4746, 4747, 5, 65, 0, 0, 4747, 4748, 5, 344, 0, 0, 4748, 4749, - 5, 117, 0, 0, 4749, 4750, 5, 71, 0, 0, 4750, 5175, 3, 712, 356, 0, 4751, - 4752, 5, 65, 0, 0, 4752, 4753, 5, 344, 0, 0, 4753, 4754, 5, 405, 0, 0, - 4754, 4755, 5, 71, 0, 0, 4755, 5175, 3, 712, 356, 0, 4756, 4757, 5, 65, - 0, 0, 4757, 4758, 5, 344, 0, 0, 4758, 4759, 5, 404, 0, 0, 4759, 4760, 5, - 71, 0, 0, 4760, 5175, 3, 712, 356, 0, 4761, 4762, 5, 65, 0, 0, 4762, 4768, - 5, 378, 0, 0, 4763, 4766, 5, 289, 0, 0, 4764, 4767, 3, 712, 356, 0, 4765, - 4767, 5, 521, 0, 0, 4766, 4764, 1, 0, 0, 0, 4766, 4765, 1, 0, 0, 0, 4767, - 4769, 1, 0, 0, 0, 4768, 4763, 1, 0, 0, 0, 4768, 4769, 1, 0, 0, 0, 4769, - 5175, 1, 0, 0, 0, 4770, 4771, 5, 65, 0, 0, 4771, 4777, 5, 379, 0, 0, 4772, - 4775, 5, 289, 0, 0, 4773, 4776, 3, 712, 356, 0, 4774, 4776, 5, 521, 0, - 0, 4775, 4773, 1, 0, 0, 0, 4775, 4774, 1, 0, 0, 0, 4776, 4778, 1, 0, 0, - 0, 4777, 4772, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 5175, 1, 0, 0, - 0, 4779, 4780, 5, 65, 0, 0, 4780, 4786, 5, 380, 0, 0, 4781, 4784, 5, 289, - 0, 0, 4782, 4785, 3, 712, 356, 0, 4783, 4785, 5, 521, 0, 0, 4784, 4782, - 1, 0, 0, 0, 4784, 4783, 1, 0, 0, 0, 4785, 4787, 1, 0, 0, 0, 4786, 4781, - 1, 0, 0, 0, 4786, 4787, 1, 0, 0, 0, 4787, 5175, 1, 0, 0, 0, 4788, 4789, - 5, 65, 0, 0, 4789, 4795, 5, 381, 0, 0, 4790, 4793, 5, 289, 0, 0, 4791, - 4794, 3, 712, 356, 0, 4792, 4794, 5, 521, 0, 0, 4793, 4791, 1, 0, 0, 0, - 4793, 4792, 1, 0, 0, 0, 4794, 4796, 1, 0, 0, 0, 4795, 4790, 1, 0, 0, 0, - 4795, 4796, 1, 0, 0, 0, 4796, 5175, 1, 0, 0, 0, 4797, 4798, 5, 65, 0, 0, - 4798, 4804, 5, 382, 0, 0, 4799, 4802, 5, 289, 0, 0, 4800, 4803, 3, 712, - 356, 0, 4801, 4803, 5, 521, 0, 0, 4802, 4800, 1, 0, 0, 0, 4802, 4801, 1, - 0, 0, 0, 4803, 4805, 1, 0, 0, 0, 4804, 4799, 1, 0, 0, 0, 4804, 4805, 1, - 0, 0, 0, 4805, 5175, 1, 0, 0, 0, 4806, 4807, 5, 65, 0, 0, 4807, 4813, 5, - 143, 0, 0, 4808, 4811, 5, 289, 0, 0, 4809, 4812, 3, 712, 356, 0, 4810, - 4812, 5, 521, 0, 0, 4811, 4809, 1, 0, 0, 0, 4811, 4810, 1, 0, 0, 0, 4812, - 4814, 1, 0, 0, 0, 4813, 4808, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, - 5175, 1, 0, 0, 0, 4815, 4816, 5, 65, 0, 0, 4816, 4822, 5, 145, 0, 0, 4817, - 4820, 5, 289, 0, 0, 4818, 4821, 3, 712, 356, 0, 4819, 4821, 5, 521, 0, - 0, 4820, 4818, 1, 0, 0, 0, 4820, 4819, 1, 0, 0, 0, 4821, 4823, 1, 0, 0, - 0, 4822, 4817, 1, 0, 0, 0, 4822, 4823, 1, 0, 0, 0, 4823, 5175, 1, 0, 0, - 0, 4824, 4825, 5, 65, 0, 0, 4825, 4831, 5, 383, 0, 0, 4826, 4829, 5, 289, - 0, 0, 4827, 4830, 3, 712, 356, 0, 4828, 4830, 5, 521, 0, 0, 4829, 4827, - 1, 0, 0, 0, 4829, 4828, 1, 0, 0, 0, 4830, 4832, 1, 0, 0, 0, 4831, 4826, - 1, 0, 0, 0, 4831, 4832, 1, 0, 0, 0, 4832, 5175, 1, 0, 0, 0, 4833, 4834, - 5, 65, 0, 0, 4834, 4840, 5, 384, 0, 0, 4835, 4838, 5, 289, 0, 0, 4836, - 4839, 3, 712, 356, 0, 4837, 4839, 5, 521, 0, 0, 4838, 4836, 1, 0, 0, 0, - 4838, 4837, 1, 0, 0, 0, 4839, 4841, 1, 0, 0, 0, 4840, 4835, 1, 0, 0, 0, - 4840, 4841, 1, 0, 0, 0, 4841, 5175, 1, 0, 0, 0, 4842, 4843, 5, 65, 0, 0, - 4843, 4844, 5, 37, 0, 0, 4844, 4850, 5, 421, 0, 0, 4845, 4848, 5, 289, - 0, 0, 4846, 4849, 3, 712, 356, 0, 4847, 4849, 5, 521, 0, 0, 4848, 4846, - 1, 0, 0, 0, 4848, 4847, 1, 0, 0, 0, 4849, 4851, 1, 0, 0, 0, 4850, 4845, - 1, 0, 0, 0, 4850, 4851, 1, 0, 0, 0, 4851, 5175, 1, 0, 0, 0, 4852, 4853, - 5, 65, 0, 0, 4853, 4859, 5, 144, 0, 0, 4854, 4857, 5, 289, 0, 0, 4855, - 4858, 3, 712, 356, 0, 4856, 4858, 5, 521, 0, 0, 4857, 4855, 1, 0, 0, 0, - 4857, 4856, 1, 0, 0, 0, 4858, 4860, 1, 0, 0, 0, 4859, 4854, 1, 0, 0, 0, - 4859, 4860, 1, 0, 0, 0, 4860, 5175, 1, 0, 0, 0, 4861, 4862, 5, 65, 0, 0, - 4862, 4868, 5, 146, 0, 0, 4863, 4866, 5, 289, 0, 0, 4864, 4867, 3, 712, - 356, 0, 4865, 4867, 5, 521, 0, 0, 4866, 4864, 1, 0, 0, 0, 4866, 4865, 1, - 0, 0, 0, 4867, 4869, 1, 0, 0, 0, 4868, 4863, 1, 0, 0, 0, 4868, 4869, 1, - 0, 0, 0, 4869, 5175, 1, 0, 0, 0, 4870, 4871, 5, 65, 0, 0, 4871, 4872, 5, - 114, 0, 0, 4872, 4878, 5, 117, 0, 0, 4873, 4876, 5, 289, 0, 0, 4874, 4877, - 3, 712, 356, 0, 4875, 4877, 5, 521, 0, 0, 4876, 4874, 1, 0, 0, 0, 4876, - 4875, 1, 0, 0, 0, 4877, 4879, 1, 0, 0, 0, 4878, 4873, 1, 0, 0, 0, 4878, - 4879, 1, 0, 0, 0, 4879, 5175, 1, 0, 0, 0, 4880, 4881, 5, 65, 0, 0, 4881, - 4882, 5, 115, 0, 0, 4882, 4888, 5, 117, 0, 0, 4883, 4886, 5, 289, 0, 0, - 4884, 4887, 3, 712, 356, 0, 4885, 4887, 5, 521, 0, 0, 4886, 4884, 1, 0, - 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 4889, 1, 0, 0, 0, 4888, 4883, 1, 0, - 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 5175, 1, 0, 0, 0, 4890, 4891, 5, 65, - 0, 0, 4891, 4892, 5, 226, 0, 0, 4892, 4898, 5, 227, 0, 0, 4893, 4896, 5, - 289, 0, 0, 4894, 4897, 3, 712, 356, 0, 4895, 4897, 5, 521, 0, 0, 4896, - 4894, 1, 0, 0, 0, 4896, 4895, 1, 0, 0, 0, 4897, 4899, 1, 0, 0, 0, 4898, - 4893, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 5175, 1, 0, 0, 0, 4900, - 4901, 5, 65, 0, 0, 4901, 4902, 5, 329, 0, 0, 4902, 4908, 5, 418, 0, 0, - 4903, 4906, 5, 289, 0, 0, 4904, 4907, 3, 712, 356, 0, 4905, 4907, 5, 521, - 0, 0, 4906, 4904, 1, 0, 0, 0, 4906, 4905, 1, 0, 0, 0, 4907, 4909, 1, 0, - 0, 0, 4908, 4903, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 5175, 1, 0, - 0, 0, 4910, 4911, 5, 65, 0, 0, 4911, 4912, 5, 23, 0, 0, 4912, 5175, 3, - 712, 356, 0, 4913, 4914, 5, 65, 0, 0, 4914, 4915, 5, 27, 0, 0, 4915, 5175, - 3, 712, 356, 0, 4916, 4917, 5, 65, 0, 0, 4917, 4918, 5, 33, 0, 0, 4918, - 5175, 3, 712, 356, 0, 4919, 4920, 5, 65, 0, 0, 4920, 5175, 5, 385, 0, 0, - 4921, 4922, 5, 65, 0, 0, 4922, 5175, 5, 331, 0, 0, 4923, 4924, 5, 65, 0, - 0, 4924, 5175, 5, 333, 0, 0, 4925, 4926, 5, 65, 0, 0, 4926, 4927, 5, 408, - 0, 0, 4927, 5175, 5, 331, 0, 0, 4928, 4929, 5, 65, 0, 0, 4929, 4930, 5, - 408, 0, 0, 4930, 5175, 5, 365, 0, 0, 4931, 4932, 5, 65, 0, 0, 4932, 4933, - 5, 411, 0, 0, 4933, 4934, 5, 427, 0, 0, 4934, 4936, 3, 712, 356, 0, 4935, - 4937, 5, 414, 0, 0, 4936, 4935, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, - 5175, 1, 0, 0, 0, 4938, 4939, 5, 65, 0, 0, 4939, 4940, 5, 412, 0, 0, 4940, - 4941, 5, 427, 0, 0, 4941, 4943, 3, 712, 356, 0, 4942, 4944, 5, 414, 0, - 0, 4943, 4942, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 5175, 1, 0, 0, - 0, 4945, 4946, 5, 65, 0, 0, 4946, 4947, 5, 413, 0, 0, 4947, 4948, 5, 426, - 0, 0, 4948, 5175, 3, 712, 356, 0, 4949, 4950, 5, 65, 0, 0, 4950, 4951, - 5, 415, 0, 0, 4951, 4952, 5, 427, 0, 0, 4952, 5175, 3, 712, 356, 0, 4953, - 4954, 5, 65, 0, 0, 4954, 4955, 5, 221, 0, 0, 4955, 4956, 5, 427, 0, 0, - 4956, 4959, 3, 712, 356, 0, 4957, 4958, 5, 416, 0, 0, 4958, 4960, 5, 519, - 0, 0, 4959, 4957, 1, 0, 0, 0, 4959, 4960, 1, 0, 0, 0, 4960, 5175, 1, 0, - 0, 0, 4961, 4962, 5, 65, 0, 0, 4962, 4964, 5, 187, 0, 0, 4963, 4965, 3, - 568, 284, 0, 4964, 4963, 1, 0, 0, 0, 4964, 4965, 1, 0, 0, 0, 4965, 5175, - 1, 0, 0, 0, 4966, 4967, 5, 65, 0, 0, 4967, 4968, 5, 59, 0, 0, 4968, 5175, - 5, 448, 0, 0, 4969, 4970, 5, 65, 0, 0, 4970, 4971, 5, 29, 0, 0, 4971, 4977, - 5, 450, 0, 0, 4972, 4975, 5, 289, 0, 0, 4973, 4976, 3, 712, 356, 0, 4974, - 4976, 5, 521, 0, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4974, 1, 0, 0, 0, 4976, - 4978, 1, 0, 0, 0, 4977, 4972, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, - 5175, 1, 0, 0, 0, 4979, 4980, 5, 65, 0, 0, 4980, 4981, 5, 461, 0, 0, 4981, - 5175, 5, 450, 0, 0, 4982, 4983, 5, 65, 0, 0, 4983, 4984, 5, 456, 0, 0, - 4984, 5175, 5, 486, 0, 0, 4985, 4986, 5, 65, 0, 0, 4986, 4987, 5, 459, - 0, 0, 4987, 4988, 5, 93, 0, 0, 4988, 5175, 3, 712, 356, 0, 4989, 4990, - 5, 65, 0, 0, 4990, 4991, 5, 459, 0, 0, 4991, 4992, 5, 93, 0, 0, 4992, 4993, - 5, 30, 0, 0, 4993, 5175, 3, 712, 356, 0, 4994, 4995, 5, 65, 0, 0, 4995, - 4996, 5, 459, 0, 0, 4996, 4997, 5, 93, 0, 0, 4997, 4998, 5, 33, 0, 0, 4998, - 5175, 3, 712, 356, 0, 4999, 5000, 5, 65, 0, 0, 5000, 5001, 5, 459, 0, 0, - 5001, 5002, 5, 93, 0, 0, 5002, 5003, 5, 32, 0, 0, 5003, 5175, 3, 712, 356, - 0, 5004, 5005, 5, 65, 0, 0, 5005, 5006, 5, 448, 0, 0, 5006, 5012, 5, 457, - 0, 0, 5007, 5010, 5, 289, 0, 0, 5008, 5011, 3, 712, 356, 0, 5009, 5011, - 5, 521, 0, 0, 5010, 5008, 1, 0, 0, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5013, - 1, 0, 0, 0, 5012, 5007, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5175, - 1, 0, 0, 0, 5014, 5015, 5, 65, 0, 0, 5015, 5016, 5, 314, 0, 0, 5016, 5022, - 5, 340, 0, 0, 5017, 5020, 5, 289, 0, 0, 5018, 5021, 3, 712, 356, 0, 5019, - 5021, 5, 521, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5019, 1, 0, 0, 0, 5021, - 5023, 1, 0, 0, 0, 5022, 5017, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, - 5175, 1, 0, 0, 0, 5024, 5025, 5, 65, 0, 0, 5025, 5026, 5, 314, 0, 0, 5026, - 5032, 5, 313, 0, 0, 5027, 5030, 5, 289, 0, 0, 5028, 5031, 3, 712, 356, - 0, 5029, 5031, 5, 521, 0, 0, 5030, 5028, 1, 0, 0, 0, 5030, 5029, 1, 0, - 0, 0, 5031, 5033, 1, 0, 0, 0, 5032, 5027, 1, 0, 0, 0, 5032, 5033, 1, 0, - 0, 0, 5033, 5175, 1, 0, 0, 0, 5034, 5035, 5, 65, 0, 0, 5035, 5036, 5, 26, - 0, 0, 5036, 5042, 5, 378, 0, 0, 5037, 5040, 5, 289, 0, 0, 5038, 5041, 3, - 712, 356, 0, 5039, 5041, 5, 521, 0, 0, 5040, 5038, 1, 0, 0, 0, 5040, 5039, - 1, 0, 0, 0, 5041, 5043, 1, 0, 0, 0, 5042, 5037, 1, 0, 0, 0, 5042, 5043, - 1, 0, 0, 0, 5043, 5175, 1, 0, 0, 0, 5044, 5045, 5, 65, 0, 0, 5045, 5046, - 5, 26, 0, 0, 5046, 5052, 5, 117, 0, 0, 5047, 5050, 5, 289, 0, 0, 5048, - 5051, 3, 712, 356, 0, 5049, 5051, 5, 521, 0, 0, 5050, 5048, 1, 0, 0, 0, - 5050, 5049, 1, 0, 0, 0, 5051, 5053, 1, 0, 0, 0, 5052, 5047, 1, 0, 0, 0, - 5052, 5053, 1, 0, 0, 0, 5053, 5175, 1, 0, 0, 0, 5054, 5055, 5, 65, 0, 0, - 5055, 5175, 5, 371, 0, 0, 5056, 5057, 5, 65, 0, 0, 5057, 5058, 5, 371, - 0, 0, 5058, 5061, 5, 372, 0, 0, 5059, 5062, 3, 712, 356, 0, 5060, 5062, - 5, 521, 0, 0, 5061, 5059, 1, 0, 0, 0, 5061, 5060, 1, 0, 0, 0, 5061, 5062, - 1, 0, 0, 0, 5062, 5175, 1, 0, 0, 0, 5063, 5064, 5, 65, 0, 0, 5064, 5065, - 5, 371, 0, 0, 5065, 5175, 5, 373, 0, 0, 5066, 5067, 5, 65, 0, 0, 5067, - 5068, 5, 210, 0, 0, 5068, 5071, 5, 211, 0, 0, 5069, 5070, 5, 429, 0, 0, - 5070, 5072, 3, 570, 285, 0, 5071, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, - 0, 5072, 5175, 1, 0, 0, 0, 5073, 5074, 5, 65, 0, 0, 5074, 5077, 5, 417, - 0, 0, 5075, 5076, 5, 416, 0, 0, 5076, 5078, 5, 519, 0, 0, 5077, 5075, 1, - 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5084, 1, 0, 0, 0, 5079, 5082, 5, - 289, 0, 0, 5080, 5083, 3, 712, 356, 0, 5081, 5083, 5, 521, 0, 0, 5082, - 5080, 1, 0, 0, 0, 5082, 5081, 1, 0, 0, 0, 5083, 5085, 1, 0, 0, 0, 5084, - 5079, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5087, 1, 0, 0, 0, 5086, - 5088, 5, 85, 0, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, - 5175, 1, 0, 0, 0, 5089, 5090, 5, 65, 0, 0, 5090, 5091, 5, 440, 0, 0, 5091, - 5092, 5, 441, 0, 0, 5092, 5098, 5, 313, 0, 0, 5093, 5096, 5, 289, 0, 0, - 5094, 5097, 3, 712, 356, 0, 5095, 5097, 5, 521, 0, 0, 5096, 5094, 1, 0, - 0, 0, 5096, 5095, 1, 0, 0, 0, 5097, 5099, 1, 0, 0, 0, 5098, 5093, 1, 0, - 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5175, 1, 0, 0, 0, 5100, 5101, 5, 65, - 0, 0, 5101, 5102, 5, 440, 0, 0, 5102, 5103, 5, 441, 0, 0, 5103, 5109, 5, - 340, 0, 0, 5104, 5107, 5, 289, 0, 0, 5105, 5108, 3, 712, 356, 0, 5106, - 5108, 5, 521, 0, 0, 5107, 5105, 1, 0, 0, 0, 5107, 5106, 1, 0, 0, 0, 5108, - 5110, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, - 5175, 1, 0, 0, 0, 5111, 5112, 5, 65, 0, 0, 5112, 5113, 5, 440, 0, 0, 5113, - 5119, 5, 120, 0, 0, 5114, 5117, 5, 289, 0, 0, 5115, 5118, 3, 712, 356, - 0, 5116, 5118, 5, 521, 0, 0, 5117, 5115, 1, 0, 0, 0, 5117, 5116, 1, 0, - 0, 0, 5118, 5120, 1, 0, 0, 0, 5119, 5114, 1, 0, 0, 0, 5119, 5120, 1, 0, - 0, 0, 5120, 5175, 1, 0, 0, 0, 5121, 5122, 5, 65, 0, 0, 5122, 5175, 5, 443, - 0, 0, 5123, 5124, 5, 65, 0, 0, 5124, 5175, 5, 388, 0, 0, 5125, 5126, 5, - 65, 0, 0, 5126, 5127, 5, 353, 0, 0, 5127, 5133, 5, 385, 0, 0, 5128, 5131, - 5, 289, 0, 0, 5129, 5132, 3, 712, 356, 0, 5130, 5132, 5, 521, 0, 0, 5131, - 5129, 1, 0, 0, 0, 5131, 5130, 1, 0, 0, 0, 5132, 5134, 1, 0, 0, 0, 5133, - 5128, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5175, 1, 0, 0, 0, 5135, - 5136, 5, 65, 0, 0, 5136, 5137, 5, 311, 0, 0, 5137, 5143, 5, 340, 0, 0, - 5138, 5141, 5, 289, 0, 0, 5139, 5142, 3, 712, 356, 0, 5140, 5142, 5, 521, - 0, 0, 5141, 5139, 1, 0, 0, 0, 5141, 5140, 1, 0, 0, 0, 5142, 5144, 1, 0, - 0, 0, 5143, 5138, 1, 0, 0, 0, 5143, 5144, 1, 0, 0, 0, 5144, 5175, 1, 0, - 0, 0, 5145, 5146, 5, 65, 0, 0, 5146, 5147, 5, 342, 0, 0, 5147, 5148, 5, - 311, 0, 0, 5148, 5154, 5, 313, 0, 0, 5149, 5152, 5, 289, 0, 0, 5150, 5153, - 3, 712, 356, 0, 5151, 5153, 5, 521, 0, 0, 5152, 5150, 1, 0, 0, 0, 5152, - 5151, 1, 0, 0, 0, 5153, 5155, 1, 0, 0, 0, 5154, 5149, 1, 0, 0, 0, 5154, - 5155, 1, 0, 0, 0, 5155, 5175, 1, 0, 0, 0, 5156, 5157, 5, 65, 0, 0, 5157, - 5175, 5, 389, 0, 0, 5158, 5159, 5, 65, 0, 0, 5159, 5162, 5, 445, 0, 0, - 5160, 5161, 5, 289, 0, 0, 5161, 5163, 5, 521, 0, 0, 5162, 5160, 1, 0, 0, - 0, 5162, 5163, 1, 0, 0, 0, 5163, 5175, 1, 0, 0, 0, 5164, 5165, 5, 65, 0, - 0, 5165, 5166, 5, 445, 0, 0, 5166, 5167, 5, 429, 0, 0, 5167, 5168, 5, 333, - 0, 0, 5168, 5175, 5, 519, 0, 0, 5169, 5170, 5, 65, 0, 0, 5170, 5171, 5, - 445, 0, 0, 5171, 5172, 5, 446, 0, 0, 5172, 5173, 5, 447, 0, 0, 5173, 5175, - 5, 519, 0, 0, 5174, 4739, 1, 0, 0, 0, 5174, 4741, 1, 0, 0, 0, 5174, 4746, - 1, 0, 0, 0, 5174, 4751, 1, 0, 0, 0, 5174, 4756, 1, 0, 0, 0, 5174, 4761, - 1, 0, 0, 0, 5174, 4770, 1, 0, 0, 0, 5174, 4779, 1, 0, 0, 0, 5174, 4788, - 1, 0, 0, 0, 5174, 4797, 1, 0, 0, 0, 5174, 4806, 1, 0, 0, 0, 5174, 4815, - 1, 0, 0, 0, 5174, 4824, 1, 0, 0, 0, 5174, 4833, 1, 0, 0, 0, 5174, 4842, - 1, 0, 0, 0, 5174, 4852, 1, 0, 0, 0, 5174, 4861, 1, 0, 0, 0, 5174, 4870, - 1, 0, 0, 0, 5174, 4880, 1, 0, 0, 0, 5174, 4890, 1, 0, 0, 0, 5174, 4900, - 1, 0, 0, 0, 5174, 4910, 1, 0, 0, 0, 5174, 4913, 1, 0, 0, 0, 5174, 4916, - 1, 0, 0, 0, 5174, 4919, 1, 0, 0, 0, 5174, 4921, 1, 0, 0, 0, 5174, 4923, - 1, 0, 0, 0, 5174, 4925, 1, 0, 0, 0, 5174, 4928, 1, 0, 0, 0, 5174, 4931, - 1, 0, 0, 0, 5174, 4938, 1, 0, 0, 0, 5174, 4945, 1, 0, 0, 0, 5174, 4949, - 1, 0, 0, 0, 5174, 4953, 1, 0, 0, 0, 5174, 4961, 1, 0, 0, 0, 5174, 4966, - 1, 0, 0, 0, 5174, 4969, 1, 0, 0, 0, 5174, 4979, 1, 0, 0, 0, 5174, 4982, - 1, 0, 0, 0, 5174, 4985, 1, 0, 0, 0, 5174, 4989, 1, 0, 0, 0, 5174, 4994, - 1, 0, 0, 0, 5174, 4999, 1, 0, 0, 0, 5174, 5004, 1, 0, 0, 0, 5174, 5014, - 1, 0, 0, 0, 5174, 5024, 1, 0, 0, 0, 5174, 5034, 1, 0, 0, 0, 5174, 5044, - 1, 0, 0, 0, 5174, 5054, 1, 0, 0, 0, 5174, 5056, 1, 0, 0, 0, 5174, 5063, - 1, 0, 0, 0, 5174, 5066, 1, 0, 0, 0, 5174, 5073, 1, 0, 0, 0, 5174, 5089, - 1, 0, 0, 0, 5174, 5100, 1, 0, 0, 0, 5174, 5111, 1, 0, 0, 0, 5174, 5121, - 1, 0, 0, 0, 5174, 5123, 1, 0, 0, 0, 5174, 5125, 1, 0, 0, 0, 5174, 5135, - 1, 0, 0, 0, 5174, 5145, 1, 0, 0, 0, 5174, 5156, 1, 0, 0, 0, 5174, 5158, - 1, 0, 0, 0, 5174, 5164, 1, 0, 0, 0, 5174, 5169, 1, 0, 0, 0, 5175, 567, - 1, 0, 0, 0, 5176, 5177, 5, 72, 0, 0, 5177, 5182, 3, 572, 286, 0, 5178, - 5179, 5, 285, 0, 0, 5179, 5181, 3, 572, 286, 0, 5180, 5178, 1, 0, 0, 0, - 5181, 5184, 1, 0, 0, 0, 5182, 5180, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, - 5183, 5190, 1, 0, 0, 0, 5184, 5182, 1, 0, 0, 0, 5185, 5188, 5, 289, 0, - 0, 5186, 5189, 3, 712, 356, 0, 5187, 5189, 5, 521, 0, 0, 5188, 5186, 1, - 0, 0, 0, 5188, 5187, 1, 0, 0, 0, 5189, 5191, 1, 0, 0, 0, 5190, 5185, 1, - 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5198, 1, 0, 0, 0, 5192, 5195, 5, - 289, 0, 0, 5193, 5196, 3, 712, 356, 0, 5194, 5196, 5, 521, 0, 0, 5195, - 5193, 1, 0, 0, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5198, 1, 0, 0, 0, 5197, - 5176, 1, 0, 0, 0, 5197, 5192, 1, 0, 0, 0, 5198, 569, 1, 0, 0, 0, 5199, - 5200, 7, 32, 0, 0, 5200, 571, 1, 0, 0, 0, 5201, 5202, 5, 438, 0, 0, 5202, - 5203, 7, 33, 0, 0, 5203, 5208, 5, 517, 0, 0, 5204, 5205, 5, 521, 0, 0, - 5205, 5206, 7, 33, 0, 0, 5206, 5208, 5, 517, 0, 0, 5207, 5201, 1, 0, 0, - 0, 5207, 5204, 1, 0, 0, 0, 5208, 573, 1, 0, 0, 0, 5209, 5210, 5, 517, 0, - 0, 5210, 5211, 5, 490, 0, 0, 5211, 5212, 3, 576, 288, 0, 5212, 575, 1, - 0, 0, 0, 5213, 5218, 5, 517, 0, 0, 5214, 5218, 5, 519, 0, 0, 5215, 5218, - 3, 720, 360, 0, 5216, 5218, 5, 288, 0, 0, 5217, 5213, 1, 0, 0, 0, 5217, - 5214, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5217, 5216, 1, 0, 0, 0, 5218, - 577, 1, 0, 0, 0, 5219, 5220, 5, 66, 0, 0, 5220, 5221, 5, 344, 0, 0, 5221, - 5222, 5, 23, 0, 0, 5222, 5225, 3, 712, 356, 0, 5223, 5224, 5, 433, 0, 0, - 5224, 5226, 5, 521, 0, 0, 5225, 5223, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, - 0, 5226, 5375, 1, 0, 0, 0, 5227, 5228, 5, 66, 0, 0, 5228, 5229, 5, 344, - 0, 0, 5229, 5230, 5, 116, 0, 0, 5230, 5233, 3, 712, 356, 0, 5231, 5232, - 5, 433, 0, 0, 5232, 5234, 5, 521, 0, 0, 5233, 5231, 1, 0, 0, 0, 5233, 5234, - 1, 0, 0, 0, 5234, 5375, 1, 0, 0, 0, 5235, 5236, 5, 66, 0, 0, 5236, 5237, - 5, 344, 0, 0, 5237, 5238, 5, 403, 0, 0, 5238, 5375, 3, 712, 356, 0, 5239, - 5240, 5, 66, 0, 0, 5240, 5241, 5, 23, 0, 0, 5241, 5375, 3, 712, 356, 0, - 5242, 5243, 5, 66, 0, 0, 5243, 5244, 5, 27, 0, 0, 5244, 5375, 3, 712, 356, - 0, 5245, 5246, 5, 66, 0, 0, 5246, 5247, 5, 30, 0, 0, 5247, 5375, 3, 712, - 356, 0, 5248, 5249, 5, 66, 0, 0, 5249, 5250, 5, 31, 0, 0, 5250, 5375, 3, - 712, 356, 0, 5251, 5252, 5, 66, 0, 0, 5252, 5253, 5, 32, 0, 0, 5253, 5375, - 3, 712, 356, 0, 5254, 5255, 5, 66, 0, 0, 5255, 5256, 5, 33, 0, 0, 5256, - 5375, 3, 712, 356, 0, 5257, 5258, 5, 66, 0, 0, 5258, 5259, 5, 34, 0, 0, - 5259, 5375, 3, 712, 356, 0, 5260, 5261, 5, 66, 0, 0, 5261, 5262, 5, 35, - 0, 0, 5262, 5375, 3, 712, 356, 0, 5263, 5264, 5, 66, 0, 0, 5264, 5265, - 5, 28, 0, 0, 5265, 5375, 3, 712, 356, 0, 5266, 5267, 5, 66, 0, 0, 5267, - 5268, 5, 37, 0, 0, 5268, 5375, 3, 712, 356, 0, 5269, 5270, 5, 66, 0, 0, - 5270, 5271, 5, 114, 0, 0, 5271, 5272, 5, 116, 0, 0, 5272, 5375, 3, 712, - 356, 0, 5273, 5274, 5, 66, 0, 0, 5274, 5275, 5, 115, 0, 0, 5275, 5276, - 5, 116, 0, 0, 5276, 5375, 3, 712, 356, 0, 5277, 5278, 5, 66, 0, 0, 5278, - 5279, 5, 29, 0, 0, 5279, 5282, 5, 521, 0, 0, 5280, 5281, 5, 139, 0, 0, - 5281, 5283, 5, 85, 0, 0, 5282, 5280, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, - 5283, 5375, 1, 0, 0, 0, 5284, 5285, 5, 66, 0, 0, 5285, 5286, 5, 29, 0, - 0, 5286, 5287, 5, 449, 0, 0, 5287, 5375, 3, 712, 356, 0, 5288, 5289, 5, - 66, 0, 0, 5289, 5290, 5, 461, 0, 0, 5290, 5291, 5, 449, 0, 0, 5291, 5375, - 5, 517, 0, 0, 5292, 5293, 5, 66, 0, 0, 5293, 5294, 5, 456, 0, 0, 5294, - 5295, 5, 461, 0, 0, 5295, 5375, 5, 517, 0, 0, 5296, 5297, 5, 66, 0, 0, - 5297, 5298, 5, 314, 0, 0, 5298, 5299, 5, 339, 0, 0, 5299, 5375, 3, 712, - 356, 0, 5300, 5301, 5, 66, 0, 0, 5301, 5302, 5, 314, 0, 0, 5302, 5303, - 5, 312, 0, 0, 5303, 5375, 3, 712, 356, 0, 5304, 5305, 5, 66, 0, 0, 5305, - 5306, 5, 26, 0, 0, 5306, 5307, 5, 23, 0, 0, 5307, 5375, 3, 712, 356, 0, - 5308, 5309, 5, 66, 0, 0, 5309, 5312, 5, 371, 0, 0, 5310, 5313, 3, 712, - 356, 0, 5311, 5313, 5, 521, 0, 0, 5312, 5310, 1, 0, 0, 0, 5312, 5311, 1, - 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5375, 1, 0, 0, 0, 5314, 5315, 5, - 66, 0, 0, 5315, 5316, 5, 213, 0, 0, 5316, 5317, 5, 93, 0, 0, 5317, 5318, - 7, 1, 0, 0, 5318, 5321, 3, 712, 356, 0, 5319, 5320, 5, 186, 0, 0, 5320, - 5322, 5, 521, 0, 0, 5321, 5319, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, - 5375, 1, 0, 0, 0, 5323, 5324, 5, 66, 0, 0, 5324, 5325, 5, 408, 0, 0, 5325, - 5326, 5, 502, 0, 0, 5326, 5375, 3, 584, 292, 0, 5327, 5328, 5, 66, 0, 0, - 5328, 5329, 5, 440, 0, 0, 5329, 5330, 5, 441, 0, 0, 5330, 5331, 5, 312, - 0, 0, 5331, 5375, 3, 712, 356, 0, 5332, 5333, 5, 66, 0, 0, 5333, 5334, - 5, 353, 0, 0, 5334, 5335, 5, 352, 0, 0, 5335, 5375, 3, 712, 356, 0, 5336, - 5337, 5, 66, 0, 0, 5337, 5375, 5, 443, 0, 0, 5338, 5339, 5, 66, 0, 0, 5339, - 5340, 5, 387, 0, 0, 5340, 5341, 5, 71, 0, 0, 5341, 5342, 5, 33, 0, 0, 5342, - 5343, 3, 712, 356, 0, 5343, 5344, 5, 186, 0, 0, 5344, 5345, 3, 714, 357, - 0, 5345, 5375, 1, 0, 0, 0, 5346, 5347, 5, 66, 0, 0, 5347, 5348, 5, 387, - 0, 0, 5348, 5349, 5, 71, 0, 0, 5349, 5350, 5, 34, 0, 0, 5350, 5351, 3, - 712, 356, 0, 5351, 5352, 5, 186, 0, 0, 5352, 5353, 3, 714, 357, 0, 5353, - 5375, 1, 0, 0, 0, 5354, 5355, 5, 66, 0, 0, 5355, 5356, 5, 226, 0, 0, 5356, - 5357, 5, 227, 0, 0, 5357, 5375, 3, 712, 356, 0, 5358, 5359, 5, 66, 0, 0, - 5359, 5360, 5, 329, 0, 0, 5360, 5361, 5, 417, 0, 0, 5361, 5375, 3, 712, - 356, 0, 5362, 5363, 5, 66, 0, 0, 5363, 5364, 5, 311, 0, 0, 5364, 5365, - 5, 339, 0, 0, 5365, 5375, 3, 712, 356, 0, 5366, 5367, 5, 66, 0, 0, 5367, - 5368, 5, 342, 0, 0, 5368, 5369, 5, 311, 0, 0, 5369, 5370, 5, 312, 0, 0, - 5370, 5375, 3, 712, 356, 0, 5371, 5372, 5, 66, 0, 0, 5372, 5373, 5, 387, - 0, 0, 5373, 5375, 3, 714, 357, 0, 5374, 5219, 1, 0, 0, 0, 5374, 5227, 1, - 0, 0, 0, 5374, 5235, 1, 0, 0, 0, 5374, 5239, 1, 0, 0, 0, 5374, 5242, 1, - 0, 0, 0, 5374, 5245, 1, 0, 0, 0, 5374, 5248, 1, 0, 0, 0, 5374, 5251, 1, - 0, 0, 0, 5374, 5254, 1, 0, 0, 0, 5374, 5257, 1, 0, 0, 0, 5374, 5260, 1, - 0, 0, 0, 5374, 5263, 1, 0, 0, 0, 5374, 5266, 1, 0, 0, 0, 5374, 5269, 1, - 0, 0, 0, 5374, 5273, 1, 0, 0, 0, 5374, 5277, 1, 0, 0, 0, 5374, 5284, 1, - 0, 0, 0, 5374, 5288, 1, 0, 0, 0, 5374, 5292, 1, 0, 0, 0, 5374, 5296, 1, - 0, 0, 0, 5374, 5300, 1, 0, 0, 0, 5374, 5304, 1, 0, 0, 0, 5374, 5308, 1, - 0, 0, 0, 5374, 5314, 1, 0, 0, 0, 5374, 5323, 1, 0, 0, 0, 5374, 5327, 1, - 0, 0, 0, 5374, 5332, 1, 0, 0, 0, 5374, 5336, 1, 0, 0, 0, 5374, 5338, 1, - 0, 0, 0, 5374, 5346, 1, 0, 0, 0, 5374, 5354, 1, 0, 0, 0, 5374, 5358, 1, - 0, 0, 0, 5374, 5362, 1, 0, 0, 0, 5374, 5366, 1, 0, 0, 0, 5374, 5371, 1, - 0, 0, 0, 5375, 579, 1, 0, 0, 0, 5376, 5378, 5, 70, 0, 0, 5377, 5379, 7, - 34, 0, 0, 5378, 5377, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5380, 1, - 0, 0, 0, 5380, 5381, 3, 592, 296, 0, 5381, 5382, 5, 71, 0, 0, 5382, 5383, - 5, 408, 0, 0, 5383, 5384, 5, 502, 0, 0, 5384, 5389, 3, 584, 292, 0, 5385, - 5387, 5, 76, 0, 0, 5386, 5385, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, - 5388, 1, 0, 0, 0, 5388, 5390, 5, 521, 0, 0, 5389, 5386, 1, 0, 0, 0, 5389, - 5390, 1, 0, 0, 0, 5390, 5394, 1, 0, 0, 0, 5391, 5393, 3, 582, 291, 0, 5392, - 5391, 1, 0, 0, 0, 5393, 5396, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5394, - 5395, 1, 0, 0, 0, 5395, 5399, 1, 0, 0, 0, 5396, 5394, 1, 0, 0, 0, 5397, - 5398, 5, 72, 0, 0, 5398, 5400, 3, 672, 336, 0, 5399, 5397, 1, 0, 0, 0, - 5399, 5400, 1, 0, 0, 0, 5400, 5407, 1, 0, 0, 0, 5401, 5402, 5, 8, 0, 0, - 5402, 5405, 3, 620, 310, 0, 5403, 5404, 5, 73, 0, 0, 5404, 5406, 3, 672, - 336, 0, 5405, 5403, 1, 0, 0, 0, 5405, 5406, 1, 0, 0, 0, 5406, 5408, 1, - 0, 0, 0, 5407, 5401, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5411, 1, - 0, 0, 0, 5409, 5410, 5, 9, 0, 0, 5410, 5412, 3, 616, 308, 0, 5411, 5409, - 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5415, 1, 0, 0, 0, 5413, 5414, - 5, 75, 0, 0, 5414, 5416, 5, 519, 0, 0, 5415, 5413, 1, 0, 0, 0, 5415, 5416, - 1, 0, 0, 0, 5416, 5419, 1, 0, 0, 0, 5417, 5418, 5, 74, 0, 0, 5418, 5420, - 5, 519, 0, 0, 5419, 5417, 1, 0, 0, 0, 5419, 5420, 1, 0, 0, 0, 5420, 581, - 1, 0, 0, 0, 5421, 5423, 3, 606, 303, 0, 5422, 5421, 1, 0, 0, 0, 5422, 5423, - 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5425, 5, 86, 0, 0, 5425, 5426, - 5, 408, 0, 0, 5426, 5427, 5, 502, 0, 0, 5427, 5432, 3, 584, 292, 0, 5428, - 5430, 5, 76, 0, 0, 5429, 5428, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, - 5431, 1, 0, 0, 0, 5431, 5433, 5, 521, 0, 0, 5432, 5429, 1, 0, 0, 0, 5432, - 5433, 1, 0, 0, 0, 5433, 5436, 1, 0, 0, 0, 5434, 5435, 5, 93, 0, 0, 5435, - 5437, 3, 672, 336, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, - 583, 1, 0, 0, 0, 5438, 5439, 7, 35, 0, 0, 5439, 585, 1, 0, 0, 0, 5440, - 5448, 3, 588, 294, 0, 5441, 5443, 5, 125, 0, 0, 5442, 5444, 5, 85, 0, 0, - 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, - 5445, 5447, 3, 588, 294, 0, 5446, 5441, 1, 0, 0, 0, 5447, 5450, 1, 0, 0, - 0, 5448, 5446, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 587, 1, 0, 0, - 0, 5450, 5448, 1, 0, 0, 0, 5451, 5453, 3, 590, 295, 0, 5452, 5454, 3, 598, - 299, 0, 5453, 5452, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5456, 1, - 0, 0, 0, 5455, 5457, 3, 608, 304, 0, 5456, 5455, 1, 0, 0, 0, 5456, 5457, - 1, 0, 0, 0, 5457, 5459, 1, 0, 0, 0, 5458, 5460, 3, 610, 305, 0, 5459, 5458, - 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5462, 1, 0, 0, 0, 5461, 5463, - 3, 612, 306, 0, 5462, 5461, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5465, - 1, 0, 0, 0, 5464, 5466, 3, 614, 307, 0, 5465, 5464, 1, 0, 0, 0, 5465, 5466, - 1, 0, 0, 0, 5466, 5468, 1, 0, 0, 0, 5467, 5469, 3, 622, 311, 0, 5468, 5467, - 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5488, 1, 0, 0, 0, 5470, 5472, - 3, 598, 299, 0, 5471, 5473, 3, 608, 304, 0, 5472, 5471, 1, 0, 0, 0, 5472, - 5473, 1, 0, 0, 0, 5473, 5475, 1, 0, 0, 0, 5474, 5476, 3, 610, 305, 0, 5475, - 5474, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5478, 1, 0, 0, 0, 5477, - 5479, 3, 612, 306, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, - 5480, 1, 0, 0, 0, 5480, 5482, 3, 590, 295, 0, 5481, 5483, 3, 614, 307, - 0, 5482, 5481, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 5485, 1, 0, 0, - 0, 5484, 5486, 3, 622, 311, 0, 5485, 5484, 1, 0, 0, 0, 5485, 5486, 1, 0, - 0, 0, 5486, 5488, 1, 0, 0, 0, 5487, 5451, 1, 0, 0, 0, 5487, 5470, 1, 0, - 0, 0, 5488, 589, 1, 0, 0, 0, 5489, 5491, 5, 70, 0, 0, 5490, 5492, 7, 34, - 0, 0, 5491, 5490, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 1, 0, - 0, 0, 5493, 5494, 3, 592, 296, 0, 5494, 591, 1, 0, 0, 0, 5495, 5505, 5, - 495, 0, 0, 5496, 5501, 3, 594, 297, 0, 5497, 5498, 5, 501, 0, 0, 5498, - 5500, 3, 594, 297, 0, 5499, 5497, 1, 0, 0, 0, 5500, 5503, 1, 0, 0, 0, 5501, - 5499, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5505, 1, 0, 0, 0, 5503, - 5501, 1, 0, 0, 0, 5504, 5495, 1, 0, 0, 0, 5504, 5496, 1, 0, 0, 0, 5505, - 593, 1, 0, 0, 0, 5506, 5509, 3, 672, 336, 0, 5507, 5508, 5, 76, 0, 0, 5508, - 5510, 3, 596, 298, 0, 5509, 5507, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, - 5517, 1, 0, 0, 0, 5511, 5514, 3, 700, 350, 0, 5512, 5513, 5, 76, 0, 0, - 5513, 5515, 3, 596, 298, 0, 5514, 5512, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, - 0, 5515, 5517, 1, 0, 0, 0, 5516, 5506, 1, 0, 0, 0, 5516, 5511, 1, 0, 0, - 0, 5517, 595, 1, 0, 0, 0, 5518, 5521, 5, 521, 0, 0, 5519, 5521, 3, 734, - 367, 0, 5520, 5518, 1, 0, 0, 0, 5520, 5519, 1, 0, 0, 0, 5521, 597, 1, 0, - 0, 0, 5522, 5523, 5, 71, 0, 0, 5523, 5527, 3, 600, 300, 0, 5524, 5526, - 3, 602, 301, 0, 5525, 5524, 1, 0, 0, 0, 5526, 5529, 1, 0, 0, 0, 5527, 5525, - 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 599, 1, 0, 0, 0, 5529, 5527, - 1, 0, 0, 0, 5530, 5535, 3, 712, 356, 0, 5531, 5533, 5, 76, 0, 0, 5532, - 5531, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5534, 1, 0, 0, 0, 5534, - 5536, 5, 521, 0, 0, 5535, 5532, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, - 5547, 1, 0, 0, 0, 5537, 5538, 5, 503, 0, 0, 5538, 5539, 3, 586, 293, 0, - 5539, 5544, 5, 504, 0, 0, 5540, 5542, 5, 76, 0, 0, 5541, 5540, 1, 0, 0, - 0, 5541, 5542, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 5, 521, - 0, 0, 5544, 5541, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 5547, 1, 0, - 0, 0, 5546, 5530, 1, 0, 0, 0, 5546, 5537, 1, 0, 0, 0, 5547, 601, 1, 0, - 0, 0, 5548, 5550, 3, 606, 303, 0, 5549, 5548, 1, 0, 0, 0, 5549, 5550, 1, - 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5552, 5, 86, 0, 0, 5552, 5555, 3, - 600, 300, 0, 5553, 5554, 5, 93, 0, 0, 5554, 5556, 3, 672, 336, 0, 5555, - 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 5569, 1, 0, 0, 0, 5557, - 5559, 3, 606, 303, 0, 5558, 5557, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, - 5560, 1, 0, 0, 0, 5560, 5561, 5, 86, 0, 0, 5561, 5566, 3, 604, 302, 0, - 5562, 5564, 5, 76, 0, 0, 5563, 5562, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, - 5564, 5565, 1, 0, 0, 0, 5565, 5567, 5, 521, 0, 0, 5566, 5563, 1, 0, 0, - 0, 5566, 5567, 1, 0, 0, 0, 5567, 5569, 1, 0, 0, 0, 5568, 5549, 1, 0, 0, - 0, 5568, 5558, 1, 0, 0, 0, 5569, 603, 1, 0, 0, 0, 5570, 5571, 5, 521, 0, - 0, 5571, 5572, 5, 496, 0, 0, 5572, 5573, 3, 712, 356, 0, 5573, 5574, 5, - 496, 0, 0, 5574, 5575, 3, 712, 356, 0, 5575, 5581, 1, 0, 0, 0, 5576, 5577, - 3, 712, 356, 0, 5577, 5578, 5, 496, 0, 0, 5578, 5579, 3, 712, 356, 0, 5579, - 5581, 1, 0, 0, 0, 5580, 5570, 1, 0, 0, 0, 5580, 5576, 1, 0, 0, 0, 5581, - 605, 1, 0, 0, 0, 5582, 5584, 5, 87, 0, 0, 5583, 5585, 5, 90, 0, 0, 5584, - 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5597, 1, 0, 0, 0, 5586, - 5588, 5, 88, 0, 0, 5587, 5589, 5, 90, 0, 0, 5588, 5587, 1, 0, 0, 0, 5588, - 5589, 1, 0, 0, 0, 5589, 5597, 1, 0, 0, 0, 5590, 5597, 5, 89, 0, 0, 5591, - 5593, 5, 91, 0, 0, 5592, 5594, 5, 90, 0, 0, 5593, 5592, 1, 0, 0, 0, 5593, - 5594, 1, 0, 0, 0, 5594, 5597, 1, 0, 0, 0, 5595, 5597, 5, 92, 0, 0, 5596, - 5582, 1, 0, 0, 0, 5596, 5586, 1, 0, 0, 0, 5596, 5590, 1, 0, 0, 0, 5596, - 5591, 1, 0, 0, 0, 5596, 5595, 1, 0, 0, 0, 5597, 607, 1, 0, 0, 0, 5598, - 5599, 5, 72, 0, 0, 5599, 5600, 3, 672, 336, 0, 5600, 609, 1, 0, 0, 0, 5601, - 5602, 5, 8, 0, 0, 5602, 5603, 3, 710, 355, 0, 5603, 611, 1, 0, 0, 0, 5604, - 5605, 5, 73, 0, 0, 5605, 5606, 3, 672, 336, 0, 5606, 613, 1, 0, 0, 0, 5607, - 5608, 5, 9, 0, 0, 5608, 5609, 3, 616, 308, 0, 5609, 615, 1, 0, 0, 0, 5610, - 5615, 3, 618, 309, 0, 5611, 5612, 5, 501, 0, 0, 5612, 5614, 3, 618, 309, - 0, 5613, 5611, 1, 0, 0, 0, 5614, 5617, 1, 0, 0, 0, 5615, 5613, 1, 0, 0, - 0, 5615, 5616, 1, 0, 0, 0, 5616, 617, 1, 0, 0, 0, 5617, 5615, 1, 0, 0, - 0, 5618, 5620, 3, 672, 336, 0, 5619, 5621, 7, 6, 0, 0, 5620, 5619, 1, 0, - 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 619, 1, 0, 0, 0, 5622, 5627, 3, 672, - 336, 0, 5623, 5624, 5, 501, 0, 0, 5624, 5626, 3, 672, 336, 0, 5625, 5623, - 1, 0, 0, 0, 5626, 5629, 1, 0, 0, 0, 5627, 5625, 1, 0, 0, 0, 5627, 5628, - 1, 0, 0, 0, 5628, 621, 1, 0, 0, 0, 5629, 5627, 1, 0, 0, 0, 5630, 5631, - 5, 75, 0, 0, 5631, 5634, 5, 519, 0, 0, 5632, 5633, 5, 74, 0, 0, 5633, 5635, - 5, 519, 0, 0, 5634, 5632, 1, 0, 0, 0, 5634, 5635, 1, 0, 0, 0, 5635, 5643, - 1, 0, 0, 0, 5636, 5637, 5, 74, 0, 0, 5637, 5640, 5, 519, 0, 0, 5638, 5639, - 5, 75, 0, 0, 5639, 5641, 5, 519, 0, 0, 5640, 5638, 1, 0, 0, 0, 5640, 5641, - 1, 0, 0, 0, 5641, 5643, 1, 0, 0, 0, 5642, 5630, 1, 0, 0, 0, 5642, 5636, - 1, 0, 0, 0, 5643, 623, 1, 0, 0, 0, 5644, 5661, 3, 628, 314, 0, 5645, 5661, - 3, 630, 315, 0, 5646, 5661, 3, 632, 316, 0, 5647, 5661, 3, 634, 317, 0, - 5648, 5661, 3, 636, 318, 0, 5649, 5661, 3, 638, 319, 0, 5650, 5661, 3, - 640, 320, 0, 5651, 5661, 3, 642, 321, 0, 5652, 5661, 3, 626, 313, 0, 5653, - 5661, 3, 648, 324, 0, 5654, 5661, 3, 654, 327, 0, 5655, 5661, 3, 656, 328, - 0, 5656, 5661, 3, 670, 335, 0, 5657, 5661, 3, 658, 329, 0, 5658, 5661, - 3, 662, 331, 0, 5659, 5661, 3, 668, 334, 0, 5660, 5644, 1, 0, 0, 0, 5660, - 5645, 1, 0, 0, 0, 5660, 5646, 1, 0, 0, 0, 5660, 5647, 1, 0, 0, 0, 5660, - 5648, 1, 0, 0, 0, 5660, 5649, 1, 0, 0, 0, 5660, 5650, 1, 0, 0, 0, 5660, - 5651, 1, 0, 0, 0, 5660, 5652, 1, 0, 0, 0, 5660, 5653, 1, 0, 0, 0, 5660, - 5654, 1, 0, 0, 0, 5660, 5655, 1, 0, 0, 0, 5660, 5656, 1, 0, 0, 0, 5660, - 5657, 1, 0, 0, 0, 5660, 5658, 1, 0, 0, 0, 5660, 5659, 1, 0, 0, 0, 5661, - 625, 1, 0, 0, 0, 5662, 5663, 5, 158, 0, 0, 5663, 5664, 5, 517, 0, 0, 5664, - 627, 1, 0, 0, 0, 5665, 5666, 5, 56, 0, 0, 5666, 5667, 5, 426, 0, 0, 5667, - 5668, 5, 59, 0, 0, 5668, 5671, 5, 517, 0, 0, 5669, 5670, 5, 61, 0, 0, 5670, - 5672, 5, 517, 0, 0, 5671, 5669, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, - 5673, 1, 0, 0, 0, 5673, 5674, 5, 62, 0, 0, 5674, 5689, 5, 517, 0, 0, 5675, - 5676, 5, 56, 0, 0, 5676, 5677, 5, 58, 0, 0, 5677, 5689, 5, 517, 0, 0, 5678, - 5679, 5, 56, 0, 0, 5679, 5680, 5, 60, 0, 0, 5680, 5681, 5, 63, 0, 0, 5681, - 5682, 5, 517, 0, 0, 5682, 5683, 5, 64, 0, 0, 5683, 5686, 5, 519, 0, 0, - 5684, 5685, 5, 62, 0, 0, 5685, 5687, 5, 517, 0, 0, 5686, 5684, 1, 0, 0, - 0, 5686, 5687, 1, 0, 0, 0, 5687, 5689, 1, 0, 0, 0, 5688, 5665, 1, 0, 0, - 0, 5688, 5675, 1, 0, 0, 0, 5688, 5678, 1, 0, 0, 0, 5689, 629, 1, 0, 0, - 0, 5690, 5691, 5, 57, 0, 0, 5691, 631, 1, 0, 0, 0, 5692, 5709, 5, 393, - 0, 0, 5693, 5694, 5, 394, 0, 0, 5694, 5696, 5, 408, 0, 0, 5695, 5697, 5, - 91, 0, 0, 5696, 5695, 1, 0, 0, 0, 5696, 5697, 1, 0, 0, 0, 5697, 5699, 1, - 0, 0, 0, 5698, 5700, 5, 192, 0, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, - 1, 0, 0, 0, 5700, 5702, 1, 0, 0, 0, 5701, 5703, 5, 409, 0, 0, 5702, 5701, - 1, 0, 0, 0, 5702, 5703, 1, 0, 0, 0, 5703, 5705, 1, 0, 0, 0, 5704, 5706, - 5, 410, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5709, - 1, 0, 0, 0, 5707, 5709, 5, 394, 0, 0, 5708, 5692, 1, 0, 0, 0, 5708, 5693, - 1, 0, 0, 0, 5708, 5707, 1, 0, 0, 0, 5709, 633, 1, 0, 0, 0, 5710, 5711, - 5, 395, 0, 0, 5711, 635, 1, 0, 0, 0, 5712, 5713, 5, 396, 0, 0, 5713, 637, - 1, 0, 0, 0, 5714, 5715, 5, 397, 0, 0, 5715, 5716, 5, 398, 0, 0, 5716, 5717, - 5, 517, 0, 0, 5717, 639, 1, 0, 0, 0, 5718, 5719, 5, 397, 0, 0, 5719, 5720, - 5, 60, 0, 0, 5720, 5721, 5, 517, 0, 0, 5721, 641, 1, 0, 0, 0, 5722, 5724, - 5, 399, 0, 0, 5723, 5725, 3, 644, 322, 0, 5724, 5723, 1, 0, 0, 0, 5724, - 5725, 1, 0, 0, 0, 5725, 5728, 1, 0, 0, 0, 5726, 5727, 5, 433, 0, 0, 5727, - 5729, 3, 646, 323, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, - 5734, 1, 0, 0, 0, 5730, 5731, 5, 65, 0, 0, 5731, 5732, 5, 399, 0, 0, 5732, - 5734, 5, 400, 0, 0, 5733, 5722, 1, 0, 0, 0, 5733, 5730, 1, 0, 0, 0, 5734, - 643, 1, 0, 0, 0, 5735, 5736, 3, 712, 356, 0, 5736, 5737, 5, 502, 0, 0, - 5737, 5738, 5, 495, 0, 0, 5738, 5742, 1, 0, 0, 0, 5739, 5742, 3, 712, 356, - 0, 5740, 5742, 5, 495, 0, 0, 5741, 5735, 1, 0, 0, 0, 5741, 5739, 1, 0, - 0, 0, 5741, 5740, 1, 0, 0, 0, 5742, 645, 1, 0, 0, 0, 5743, 5744, 7, 36, - 0, 0, 5744, 647, 1, 0, 0, 0, 5745, 5746, 5, 67, 0, 0, 5746, 5750, 3, 650, - 325, 0, 5747, 5748, 5, 67, 0, 0, 5748, 5750, 5, 85, 0, 0, 5749, 5745, 1, - 0, 0, 0, 5749, 5747, 1, 0, 0, 0, 5750, 649, 1, 0, 0, 0, 5751, 5756, 3, - 652, 326, 0, 5752, 5753, 5, 501, 0, 0, 5753, 5755, 3, 652, 326, 0, 5754, - 5752, 1, 0, 0, 0, 5755, 5758, 1, 0, 0, 0, 5756, 5754, 1, 0, 0, 0, 5756, - 5757, 1, 0, 0, 0, 5757, 651, 1, 0, 0, 0, 5758, 5756, 1, 0, 0, 0, 5759, - 5760, 7, 37, 0, 0, 5760, 653, 1, 0, 0, 0, 5761, 5762, 5, 68, 0, 0, 5762, - 5763, 5, 338, 0, 0, 5763, 655, 1, 0, 0, 0, 5764, 5765, 5, 69, 0, 0, 5765, - 5766, 5, 517, 0, 0, 5766, 657, 1, 0, 0, 0, 5767, 5768, 5, 434, 0, 0, 5768, - 5769, 5, 56, 0, 0, 5769, 5770, 5, 521, 0, 0, 5770, 5771, 5, 517, 0, 0, - 5771, 5772, 5, 76, 0, 0, 5772, 5830, 5, 521, 0, 0, 5773, 5774, 5, 434, - 0, 0, 5774, 5775, 5, 56, 0, 0, 5775, 5830, 5, 521, 0, 0, 5776, 5777, 5, - 434, 0, 0, 5777, 5778, 5, 57, 0, 0, 5778, 5830, 5, 521, 0, 0, 5779, 5780, - 5, 434, 0, 0, 5780, 5830, 5, 385, 0, 0, 5781, 5782, 5, 434, 0, 0, 5782, - 5783, 5, 521, 0, 0, 5783, 5784, 5, 65, 0, 0, 5784, 5830, 3, 714, 357, 0, - 5785, 5786, 5, 434, 0, 0, 5786, 5787, 5, 521, 0, 0, 5787, 5788, 5, 66, - 0, 0, 5788, 5830, 3, 712, 356, 0, 5789, 5790, 5, 434, 0, 0, 5790, 5791, - 5, 521, 0, 0, 5791, 5792, 5, 362, 0, 0, 5792, 5793, 5, 363, 0, 0, 5793, - 5794, 5, 358, 0, 0, 5794, 5807, 3, 714, 357, 0, 5795, 5796, 5, 365, 0, - 0, 5796, 5797, 5, 503, 0, 0, 5797, 5802, 3, 714, 357, 0, 5798, 5799, 5, - 501, 0, 0, 5799, 5801, 3, 714, 357, 0, 5800, 5798, 1, 0, 0, 0, 5801, 5804, - 1, 0, 0, 0, 5802, 5800, 1, 0, 0, 0, 5802, 5803, 1, 0, 0, 0, 5803, 5805, - 1, 0, 0, 0, 5804, 5802, 1, 0, 0, 0, 5805, 5806, 5, 504, 0, 0, 5806, 5808, - 1, 0, 0, 0, 5807, 5795, 1, 0, 0, 0, 5807, 5808, 1, 0, 0, 0, 5808, 5821, - 1, 0, 0, 0, 5809, 5810, 5, 366, 0, 0, 5810, 5811, 5, 503, 0, 0, 5811, 5816, - 3, 714, 357, 0, 5812, 5813, 5, 501, 0, 0, 5813, 5815, 3, 714, 357, 0, 5814, - 5812, 1, 0, 0, 0, 5815, 5818, 1, 0, 0, 0, 5816, 5814, 1, 0, 0, 0, 5816, - 5817, 1, 0, 0, 0, 5817, 5819, 1, 0, 0, 0, 5818, 5816, 1, 0, 0, 0, 5819, - 5820, 5, 504, 0, 0, 5820, 5822, 1, 0, 0, 0, 5821, 5809, 1, 0, 0, 0, 5821, - 5822, 1, 0, 0, 0, 5822, 5824, 1, 0, 0, 0, 5823, 5825, 5, 364, 0, 0, 5824, - 5823, 1, 0, 0, 0, 5824, 5825, 1, 0, 0, 0, 5825, 5830, 1, 0, 0, 0, 5826, - 5827, 5, 434, 0, 0, 5827, 5828, 5, 521, 0, 0, 5828, 5830, 3, 660, 330, - 0, 5829, 5767, 1, 0, 0, 0, 5829, 5773, 1, 0, 0, 0, 5829, 5776, 1, 0, 0, - 0, 5829, 5779, 1, 0, 0, 0, 5829, 5781, 1, 0, 0, 0, 5829, 5785, 1, 0, 0, - 0, 5829, 5789, 1, 0, 0, 0, 5829, 5826, 1, 0, 0, 0, 5830, 659, 1, 0, 0, - 0, 5831, 5833, 8, 38, 0, 0, 5832, 5831, 1, 0, 0, 0, 5833, 5834, 1, 0, 0, - 0, 5834, 5832, 1, 0, 0, 0, 5834, 5835, 1, 0, 0, 0, 5835, 661, 1, 0, 0, - 0, 5836, 5837, 5, 357, 0, 0, 5837, 5838, 5, 71, 0, 0, 5838, 5839, 3, 714, - 357, 0, 5839, 5840, 5, 354, 0, 0, 5840, 5841, 7, 11, 0, 0, 5841, 5842, - 5, 358, 0, 0, 5842, 5843, 3, 712, 356, 0, 5843, 5844, 5, 355, 0, 0, 5844, - 5845, 5, 503, 0, 0, 5845, 5850, 3, 664, 332, 0, 5846, 5847, 5, 501, 0, - 0, 5847, 5849, 3, 664, 332, 0, 5848, 5846, 1, 0, 0, 0, 5849, 5852, 1, 0, - 0, 0, 5850, 5848, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5853, 1, 0, - 0, 0, 5852, 5850, 1, 0, 0, 0, 5853, 5866, 5, 504, 0, 0, 5854, 5855, 5, - 360, 0, 0, 5855, 5856, 5, 503, 0, 0, 5856, 5861, 3, 666, 333, 0, 5857, - 5858, 5, 501, 0, 0, 5858, 5860, 3, 666, 333, 0, 5859, 5857, 1, 0, 0, 0, - 5860, 5863, 1, 0, 0, 0, 5861, 5859, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, - 5862, 5864, 1, 0, 0, 0, 5863, 5861, 1, 0, 0, 0, 5864, 5865, 5, 504, 0, - 0, 5865, 5867, 1, 0, 0, 0, 5866, 5854, 1, 0, 0, 0, 5866, 5867, 1, 0, 0, - 0, 5867, 5870, 1, 0, 0, 0, 5868, 5869, 5, 359, 0, 0, 5869, 5871, 5, 519, - 0, 0, 5870, 5868, 1, 0, 0, 0, 5870, 5871, 1, 0, 0, 0, 5871, 5874, 1, 0, - 0, 0, 5872, 5873, 5, 75, 0, 0, 5873, 5875, 5, 519, 0, 0, 5874, 5872, 1, - 0, 0, 0, 5874, 5875, 1, 0, 0, 0, 5875, 663, 1, 0, 0, 0, 5876, 5877, 3, - 714, 357, 0, 5877, 5878, 5, 76, 0, 0, 5878, 5879, 3, 714, 357, 0, 5879, - 665, 1, 0, 0, 0, 5880, 5881, 3, 714, 357, 0, 5881, 5882, 5, 426, 0, 0, - 5882, 5883, 3, 714, 357, 0, 5883, 5884, 5, 93, 0, 0, 5884, 5885, 3, 714, - 357, 0, 5885, 5891, 1, 0, 0, 0, 5886, 5887, 3, 714, 357, 0, 5887, 5888, - 5, 426, 0, 0, 5888, 5889, 3, 714, 357, 0, 5889, 5891, 1, 0, 0, 0, 5890, - 5880, 1, 0, 0, 0, 5890, 5886, 1, 0, 0, 0, 5891, 667, 1, 0, 0, 0, 5892, - 5893, 5, 521, 0, 0, 5893, 669, 1, 0, 0, 0, 5894, 5895, 5, 386, 0, 0, 5895, - 5896, 5, 387, 0, 0, 5896, 5897, 3, 714, 357, 0, 5897, 5898, 5, 76, 0, 0, - 5898, 5899, 5, 505, 0, 0, 5899, 5900, 3, 394, 197, 0, 5900, 5901, 5, 506, - 0, 0, 5901, 671, 1, 0, 0, 0, 5902, 5903, 3, 674, 337, 0, 5903, 673, 1, - 0, 0, 0, 5904, 5909, 3, 676, 338, 0, 5905, 5906, 5, 286, 0, 0, 5906, 5908, - 3, 676, 338, 0, 5907, 5905, 1, 0, 0, 0, 5908, 5911, 1, 0, 0, 0, 5909, 5907, - 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 675, 1, 0, 0, 0, 5911, 5909, - 1, 0, 0, 0, 5912, 5917, 3, 678, 339, 0, 5913, 5914, 5, 285, 0, 0, 5914, - 5916, 3, 678, 339, 0, 5915, 5913, 1, 0, 0, 0, 5916, 5919, 1, 0, 0, 0, 5917, - 5915, 1, 0, 0, 0, 5917, 5918, 1, 0, 0, 0, 5918, 677, 1, 0, 0, 0, 5919, - 5917, 1, 0, 0, 0, 5920, 5922, 5, 287, 0, 0, 5921, 5920, 1, 0, 0, 0, 5921, - 5922, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5924, 3, 680, 340, 0, 5924, - 679, 1, 0, 0, 0, 5925, 5954, 3, 684, 342, 0, 5926, 5927, 3, 682, 341, 0, - 5927, 5928, 3, 684, 342, 0, 5928, 5955, 1, 0, 0, 0, 5929, 5955, 5, 6, 0, - 0, 5930, 5955, 5, 5, 0, 0, 5931, 5932, 5, 289, 0, 0, 5932, 5935, 5, 503, - 0, 0, 5933, 5936, 3, 586, 293, 0, 5934, 5936, 3, 710, 355, 0, 5935, 5933, - 1, 0, 0, 0, 5935, 5934, 1, 0, 0, 0, 5936, 5937, 1, 0, 0, 0, 5937, 5938, - 5, 504, 0, 0, 5938, 5955, 1, 0, 0, 0, 5939, 5941, 5, 287, 0, 0, 5940, 5939, - 1, 0, 0, 0, 5940, 5941, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 5943, - 5, 290, 0, 0, 5943, 5944, 3, 684, 342, 0, 5944, 5945, 5, 285, 0, 0, 5945, - 5946, 3, 684, 342, 0, 5946, 5955, 1, 0, 0, 0, 5947, 5949, 5, 287, 0, 0, - 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, - 5950, 5951, 5, 291, 0, 0, 5951, 5955, 3, 684, 342, 0, 5952, 5953, 5, 292, - 0, 0, 5953, 5955, 3, 684, 342, 0, 5954, 5926, 1, 0, 0, 0, 5954, 5929, 1, - 0, 0, 0, 5954, 5930, 1, 0, 0, 0, 5954, 5931, 1, 0, 0, 0, 5954, 5940, 1, - 0, 0, 0, 5954, 5948, 1, 0, 0, 0, 5954, 5952, 1, 0, 0, 0, 5954, 5955, 1, - 0, 0, 0, 5955, 681, 1, 0, 0, 0, 5956, 5957, 7, 39, 0, 0, 5957, 683, 1, - 0, 0, 0, 5958, 5963, 3, 686, 343, 0, 5959, 5960, 7, 40, 0, 0, 5960, 5962, - 3, 686, 343, 0, 5961, 5959, 1, 0, 0, 0, 5962, 5965, 1, 0, 0, 0, 5963, 5961, - 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 685, 1, 0, 0, 0, 5965, 5963, - 1, 0, 0, 0, 5966, 5971, 3, 688, 344, 0, 5967, 5968, 7, 41, 0, 0, 5968, - 5970, 3, 688, 344, 0, 5969, 5967, 1, 0, 0, 0, 5970, 5973, 1, 0, 0, 0, 5971, - 5969, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, 5972, 687, 1, 0, 0, 0, 5973, - 5971, 1, 0, 0, 0, 5974, 5976, 7, 40, 0, 0, 5975, 5974, 1, 0, 0, 0, 5975, - 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5978, 3, 690, 345, 0, 5978, - 689, 1, 0, 0, 0, 5979, 5980, 5, 503, 0, 0, 5980, 5981, 3, 672, 336, 0, - 5981, 5982, 5, 504, 0, 0, 5982, 6001, 1, 0, 0, 0, 5983, 5984, 5, 503, 0, - 0, 5984, 5985, 3, 586, 293, 0, 5985, 5986, 5, 504, 0, 0, 5986, 6001, 1, - 0, 0, 0, 5987, 5988, 5, 293, 0, 0, 5988, 5989, 5, 503, 0, 0, 5989, 5990, - 3, 586, 293, 0, 5990, 5991, 5, 504, 0, 0, 5991, 6001, 1, 0, 0, 0, 5992, - 6001, 3, 694, 347, 0, 5993, 6001, 3, 692, 346, 0, 5994, 6001, 3, 696, 348, - 0, 5995, 6001, 3, 318, 159, 0, 5996, 6001, 3, 310, 155, 0, 5997, 6001, - 3, 700, 350, 0, 5998, 6001, 3, 702, 351, 0, 5999, 6001, 3, 708, 354, 0, - 6000, 5979, 1, 0, 0, 0, 6000, 5983, 1, 0, 0, 0, 6000, 5987, 1, 0, 0, 0, - 6000, 5992, 1, 0, 0, 0, 6000, 5993, 1, 0, 0, 0, 6000, 5994, 1, 0, 0, 0, - 6000, 5995, 1, 0, 0, 0, 6000, 5996, 1, 0, 0, 0, 6000, 5997, 1, 0, 0, 0, - 6000, 5998, 1, 0, 0, 0, 6000, 5999, 1, 0, 0, 0, 6001, 691, 1, 0, 0, 0, - 6002, 6008, 5, 79, 0, 0, 6003, 6004, 5, 80, 0, 0, 6004, 6005, 3, 672, 336, - 0, 6005, 6006, 5, 81, 0, 0, 6006, 6007, 3, 672, 336, 0, 6007, 6009, 1, - 0, 0, 0, 6008, 6003, 1, 0, 0, 0, 6009, 6010, 1, 0, 0, 0, 6010, 6008, 1, - 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 6014, 1, 0, 0, 0, 6012, 6013, 5, - 82, 0, 0, 6013, 6015, 3, 672, 336, 0, 6014, 6012, 1, 0, 0, 0, 6014, 6015, - 1, 0, 0, 0, 6015, 6016, 1, 0, 0, 0, 6016, 6017, 5, 83, 0, 0, 6017, 693, - 1, 0, 0, 0, 6018, 6019, 5, 105, 0, 0, 6019, 6020, 3, 672, 336, 0, 6020, - 6021, 5, 81, 0, 0, 6021, 6022, 3, 672, 336, 0, 6022, 6023, 5, 82, 0, 0, - 6023, 6024, 3, 672, 336, 0, 6024, 695, 1, 0, 0, 0, 6025, 6026, 5, 284, - 0, 0, 6026, 6027, 5, 503, 0, 0, 6027, 6028, 3, 672, 336, 0, 6028, 6029, - 5, 76, 0, 0, 6029, 6030, 3, 698, 349, 0, 6030, 6031, 5, 504, 0, 0, 6031, - 697, 1, 0, 0, 0, 6032, 6033, 7, 42, 0, 0, 6033, 699, 1, 0, 0, 0, 6034, - 6035, 7, 43, 0, 0, 6035, 6041, 5, 503, 0, 0, 6036, 6038, 5, 84, 0, 0, 6037, - 6036, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, - 6042, 3, 672, 336, 0, 6040, 6042, 5, 495, 0, 0, 6041, 6037, 1, 0, 0, 0, - 6041, 6040, 1, 0, 0, 0, 6042, 6043, 1, 0, 0, 0, 6043, 6044, 5, 504, 0, - 0, 6044, 701, 1, 0, 0, 0, 6045, 6046, 3, 704, 352, 0, 6046, 6048, 5, 503, - 0, 0, 6047, 6049, 3, 706, 353, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, - 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 5, 504, 0, 0, 6051, 703, 1, - 0, 0, 0, 6052, 6053, 7, 44, 0, 0, 6053, 705, 1, 0, 0, 0, 6054, 6059, 3, - 672, 336, 0, 6055, 6056, 5, 501, 0, 0, 6056, 6058, 3, 672, 336, 0, 6057, - 6055, 1, 0, 0, 0, 6058, 6061, 1, 0, 0, 0, 6059, 6057, 1, 0, 0, 0, 6059, - 6060, 1, 0, 0, 0, 6060, 707, 1, 0, 0, 0, 6061, 6059, 1, 0, 0, 0, 6062, - 6075, 3, 716, 358, 0, 6063, 6068, 5, 520, 0, 0, 6064, 6065, 5, 502, 0, - 0, 6065, 6067, 3, 104, 52, 0, 6066, 6064, 1, 0, 0, 0, 6067, 6070, 1, 0, - 0, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6075, 1, 0, - 0, 0, 6070, 6068, 1, 0, 0, 0, 6071, 6075, 3, 712, 356, 0, 6072, 6075, 5, - 521, 0, 0, 6073, 6075, 5, 516, 0, 0, 6074, 6062, 1, 0, 0, 0, 6074, 6063, - 1, 0, 0, 0, 6074, 6071, 1, 0, 0, 0, 6074, 6072, 1, 0, 0, 0, 6074, 6073, - 1, 0, 0, 0, 6075, 709, 1, 0, 0, 0, 6076, 6081, 3, 672, 336, 0, 6077, 6078, - 5, 501, 0, 0, 6078, 6080, 3, 672, 336, 0, 6079, 6077, 1, 0, 0, 0, 6080, - 6083, 1, 0, 0, 0, 6081, 6079, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, - 711, 1, 0, 0, 0, 6083, 6081, 1, 0, 0, 0, 6084, 6089, 3, 714, 357, 0, 6085, - 6086, 5, 502, 0, 0, 6086, 6088, 3, 714, 357, 0, 6087, 6085, 1, 0, 0, 0, - 6088, 6091, 1, 0, 0, 0, 6089, 6087, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, - 6090, 713, 1, 0, 0, 0, 6091, 6089, 1, 0, 0, 0, 6092, 6096, 5, 521, 0, 0, - 6093, 6096, 5, 523, 0, 0, 6094, 6096, 3, 736, 368, 0, 6095, 6092, 1, 0, - 0, 0, 6095, 6093, 1, 0, 0, 0, 6095, 6094, 1, 0, 0, 0, 6096, 715, 1, 0, - 0, 0, 6097, 6103, 5, 517, 0, 0, 6098, 6103, 5, 519, 0, 0, 6099, 6103, 3, - 720, 360, 0, 6100, 6103, 5, 288, 0, 0, 6101, 6103, 5, 140, 0, 0, 6102, - 6097, 1, 0, 0, 0, 6102, 6098, 1, 0, 0, 0, 6102, 6099, 1, 0, 0, 0, 6102, - 6100, 1, 0, 0, 0, 6102, 6101, 1, 0, 0, 0, 6103, 717, 1, 0, 0, 0, 6104, - 6113, 5, 507, 0, 0, 6105, 6110, 3, 716, 358, 0, 6106, 6107, 5, 501, 0, - 0, 6107, 6109, 3, 716, 358, 0, 6108, 6106, 1, 0, 0, 0, 6109, 6112, 1, 0, - 0, 0, 6110, 6108, 1, 0, 0, 0, 6110, 6111, 1, 0, 0, 0, 6111, 6114, 1, 0, - 0, 0, 6112, 6110, 1, 0, 0, 0, 6113, 6105, 1, 0, 0, 0, 6113, 6114, 1, 0, - 0, 0, 6114, 6115, 1, 0, 0, 0, 6115, 6116, 5, 508, 0, 0, 6116, 719, 1, 0, - 0, 0, 6117, 6118, 7, 45, 0, 0, 6118, 721, 1, 0, 0, 0, 6119, 6120, 5, 2, - 0, 0, 6120, 723, 1, 0, 0, 0, 6121, 6122, 5, 510, 0, 0, 6122, 6128, 3, 726, - 363, 0, 6123, 6124, 5, 503, 0, 0, 6124, 6125, 3, 728, 364, 0, 6125, 6126, - 5, 504, 0, 0, 6126, 6129, 1, 0, 0, 0, 6127, 6129, 3, 732, 366, 0, 6128, - 6123, 1, 0, 0, 0, 6128, 6127, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, - 725, 1, 0, 0, 0, 6130, 6131, 7, 46, 0, 0, 6131, 727, 1, 0, 0, 0, 6132, - 6137, 3, 730, 365, 0, 6133, 6134, 5, 501, 0, 0, 6134, 6136, 3, 730, 365, - 0, 6135, 6133, 1, 0, 0, 0, 6136, 6139, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, - 0, 6137, 6138, 1, 0, 0, 0, 6138, 729, 1, 0, 0, 0, 6139, 6137, 1, 0, 0, - 0, 6140, 6141, 5, 521, 0, 0, 6141, 6142, 5, 509, 0, 0, 6142, 6145, 3, 732, - 366, 0, 6143, 6145, 3, 732, 366, 0, 6144, 6140, 1, 0, 0, 0, 6144, 6143, - 1, 0, 0, 0, 6145, 731, 1, 0, 0, 0, 6146, 6150, 3, 716, 358, 0, 6147, 6150, - 3, 672, 336, 0, 6148, 6150, 3, 712, 356, 0, 6149, 6146, 1, 0, 0, 0, 6149, - 6147, 1, 0, 0, 0, 6149, 6148, 1, 0, 0, 0, 6150, 733, 1, 0, 0, 0, 6151, - 6152, 7, 47, 0, 0, 6152, 735, 1, 0, 0, 0, 6153, 6154, 7, 48, 0, 0, 6154, - 737, 1, 0, 0, 0, 712, 741, 747, 752, 755, 758, 767, 777, 786, 792, 794, - 798, 801, 806, 812, 839, 847, 855, 863, 871, 883, 896, 909, 921, 932, 936, - 944, 950, 967, 971, 975, 979, 983, 987, 991, 993, 1006, 1011, 1025, 1034, - 1047, 1063, 1072, 1095, 1109, 1113, 1122, 1125, 1133, 1138, 1140, 1219, - 1221, 1234, 1245, 1254, 1256, 1267, 1273, 1281, 1292, 1294, 1302, 1304, - 1323, 1331, 1347, 1371, 1387, 1471, 1480, 1488, 1502, 1509, 1517, 1531, - 1544, 1548, 1554, 1557, 1563, 1566, 1572, 1576, 1580, 1586, 1591, 1594, - 1596, 1602, 1606, 1610, 1613, 1617, 1622, 1629, 1636, 1640, 1645, 1654, - 1660, 1665, 1671, 1676, 1681, 1686, 1690, 1693, 1695, 1701, 1733, 1741, - 1762, 1765, 1776, 1781, 1786, 1795, 1800, 1812, 1838, 1844, 1851, 1857, - 1888, 1902, 1909, 1922, 1929, 1937, 1942, 1947, 1953, 1961, 1968, 1972, - 1976, 1979, 1996, 2001, 2010, 2013, 2018, 2025, 2033, 2047, 2054, 2065, - 2070, 2110, 2125, 2132, 2140, 2147, 2151, 2154, 2160, 2163, 2170, 2174, - 2177, 2182, 2189, 2196, 2212, 2217, 2225, 2231, 2236, 2242, 2247, 2253, - 2258, 2263, 2268, 2273, 2278, 2283, 2288, 2293, 2298, 2303, 2308, 2313, - 2318, 2323, 2328, 2333, 2338, 2343, 2348, 2353, 2358, 2363, 2368, 2373, - 2378, 2383, 2388, 2393, 2398, 2403, 2408, 2413, 2418, 2423, 2428, 2433, - 2438, 2443, 2448, 2453, 2458, 2463, 2468, 2473, 2478, 2483, 2488, 2493, - 2498, 2503, 2508, 2513, 2518, 2523, 2528, 2533, 2538, 2543, 2548, 2553, - 2558, 2563, 2568, 2573, 2578, 2580, 2587, 2592, 2599, 2605, 2608, 2611, - 2617, 2620, 2626, 2630, 2636, 2639, 2642, 2647, 2652, 2661, 2663, 2671, - 2674, 2678, 2682, 2685, 2697, 2719, 2732, 2737, 2747, 2757, 2762, 2770, - 2777, 2781, 2785, 2796, 2803, 2817, 2824, 2828, 2832, 2840, 2844, 2848, - 2858, 2860, 2864, 2867, 2872, 2875, 2878, 2882, 2890, 2894, 2901, 2906, - 2916, 2919, 2923, 2927, 2934, 2941, 2947, 2961, 2968, 2983, 2987, 2994, - 2999, 3003, 3006, 3009, 3013, 3019, 3037, 3042, 3050, 3069, 3073, 3080, - 3083, 3151, 3158, 3163, 3193, 3216, 3227, 3234, 3251, 3254, 3263, 3273, - 3285, 3297, 3308, 3311, 3324, 3332, 3338, 3344, 3352, 3359, 3367, 3374, - 3381, 3393, 3396, 3408, 3432, 3440, 3448, 3468, 3472, 3474, 3482, 3487, - 3490, 3500, 3595, 3605, 3613, 3623, 3627, 3629, 3637, 3640, 3645, 3650, - 3656, 3660, 3664, 3670, 3676, 3681, 3686, 3691, 3696, 3704, 3715, 3720, - 3726, 3730, 3739, 3741, 3743, 3751, 3787, 3790, 3793, 3801, 3808, 3819, - 3828, 3834, 3842, 3851, 3859, 3865, 3869, 3878, 3890, 3896, 3898, 3911, - 3915, 3927, 3932, 3934, 3949, 3954, 3963, 3972, 3975, 3986, 4009, 4014, - 4019, 4028, 4055, 4062, 4077, 4096, 4101, 4112, 4117, 4123, 4127, 4135, - 4138, 4154, 4162, 4165, 4172, 4180, 4185, 4188, 4191, 4201, 4204, 4211, - 4214, 4222, 4240, 4246, 4249, 4254, 4259, 4269, 4288, 4296, 4308, 4315, - 4319, 4333, 4337, 4341, 4346, 4351, 4356, 4363, 4366, 4371, 4401, 4409, - 4414, 4419, 4423, 4428, 4432, 4438, 4440, 4447, 4449, 4458, 4463, 4468, - 4472, 4477, 4481, 4487, 4489, 4496, 4498, 4500, 4505, 4511, 4517, 4523, - 4527, 4533, 4535, 4547, 4556, 4561, 4567, 4569, 4576, 4578, 4589, 4598, - 4603, 4607, 4611, 4617, 4619, 4631, 4636, 4649, 4655, 4659, 4666, 4673, - 4675, 4686, 4694, 4699, 4707, 4716, 4719, 4731, 4737, 4766, 4768, 4775, - 4777, 4784, 4786, 4793, 4795, 4802, 4804, 4811, 4813, 4820, 4822, 4829, - 4831, 4838, 4840, 4848, 4850, 4857, 4859, 4866, 4868, 4876, 4878, 4886, - 4888, 4896, 4898, 4906, 4908, 4936, 4943, 4959, 4964, 4975, 4977, 5010, - 5012, 5020, 5022, 5030, 5032, 5040, 5042, 5050, 5052, 5061, 5071, 5077, - 5082, 5084, 5087, 5096, 5098, 5107, 5109, 5117, 5119, 5131, 5133, 5141, - 5143, 5152, 5154, 5162, 5174, 5182, 5188, 5190, 5195, 5197, 5207, 5217, - 5225, 5233, 5282, 5312, 5321, 5374, 5378, 5386, 5389, 5394, 5399, 5405, - 5407, 5411, 5415, 5419, 5422, 5429, 5432, 5436, 5443, 5448, 5453, 5456, - 5459, 5462, 5465, 5468, 5472, 5475, 5478, 5482, 5485, 5487, 5491, 5501, - 5504, 5509, 5514, 5516, 5520, 5527, 5532, 5535, 5541, 5544, 5546, 5549, - 5555, 5558, 5563, 5566, 5568, 5580, 5584, 5588, 5593, 5596, 5615, 5620, - 5627, 5634, 5640, 5642, 5660, 5671, 5686, 5688, 5696, 5699, 5702, 5705, - 5708, 5724, 5728, 5733, 5741, 5749, 5756, 5802, 5807, 5816, 5821, 5824, - 5829, 5834, 5850, 5861, 5866, 5870, 5874, 5890, 5909, 5917, 5921, 5935, - 5940, 5948, 5954, 5963, 5971, 5975, 6000, 6010, 6014, 6037, 6041, 6048, - 6059, 6068, 6074, 6081, 6089, 6095, 6102, 6110, 6113, 6128, 6137, 6144, - 6149, + 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, + 345, 6055, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 4, 346, + 6063, 8, 346, 11, 346, 12, 346, 6064, 1, 346, 1, 346, 3, 346, 6069, 8, + 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, 347, 1, + 347, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 348, 1, 349, 1, + 349, 1, 350, 1, 350, 1, 350, 3, 350, 6092, 8, 350, 1, 350, 1, 350, 3, 350, + 6096, 8, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6103, 8, + 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 5, 353, 6112, + 8, 353, 10, 353, 12, 353, 6115, 9, 353, 1, 354, 1, 354, 1, 354, 1, 354, + 5, 354, 6121, 8, 354, 10, 354, 12, 354, 6124, 9, 354, 1, 354, 1, 354, 1, + 354, 3, 354, 6129, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 6134, 8, 355, + 10, 355, 12, 355, 6137, 9, 355, 1, 356, 1, 356, 1, 356, 5, 356, 6142, 8, + 356, 10, 356, 12, 356, 6145, 9, 356, 1, 357, 1, 357, 1, 357, 3, 357, 6150, + 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6157, 8, 358, 1, + 359, 1, 359, 1, 359, 1, 359, 5, 359, 6163, 8, 359, 10, 359, 12, 359, 6166, + 9, 359, 3, 359, 6168, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, + 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 6183, + 8, 362, 1, 363, 1, 363, 1, 364, 1, 364, 1, 364, 5, 364, 6190, 8, 364, 10, + 364, 12, 364, 6193, 9, 364, 1, 365, 1, 365, 1, 365, 1, 365, 3, 365, 6199, + 8, 365, 1, 366, 1, 366, 1, 366, 3, 366, 6204, 8, 366, 1, 367, 1, 367, 1, + 368, 1, 368, 1, 368, 0, 0, 369, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, + 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, + 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, + 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, + 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, + 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, + 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, + 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, + 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, + 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, + 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, + 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, + 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, + 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, + 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, + 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, + 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, + 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, + 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, + 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, + 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, + 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, + 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, + 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, + 724, 726, 728, 730, 732, 734, 736, 0, 50, 2, 0, 22, 22, 434, 434, 1, 0, + 33, 34, 2, 0, 30, 30, 33, 33, 2, 0, 457, 458, 489, 489, 2, 0, 93, 93, 489, + 489, 2, 0, 523, 523, 525, 525, 2, 0, 405, 405, 438, 438, 1, 0, 94, 95, + 2, 0, 12, 12, 44, 44, 2, 0, 299, 299, 429, 429, 2, 0, 39, 39, 52, 52, 2, + 0, 14, 16, 54, 55, 1, 0, 521, 522, 2, 0, 500, 500, 506, 506, 3, 0, 69, + 69, 135, 138, 306, 306, 2, 0, 100, 100, 338, 341, 2, 0, 521, 521, 525, + 525, 1, 0, 524, 525, 1, 0, 289, 290, 6, 0, 289, 291, 491, 496, 500, 500, + 504, 508, 511, 512, 520, 524, 4, 0, 128, 128, 291, 291, 300, 301, 525, + 526, 12, 0, 39, 39, 148, 157, 160, 162, 164, 165, 167, 167, 169, 176, 180, + 180, 182, 187, 196, 197, 228, 228, 230, 235, 255, 255, 3, 0, 128, 128, + 140, 140, 525, 525, 3, 0, 259, 265, 405, 405, 525, 525, 4, 0, 135, 136, + 250, 254, 299, 299, 525, 525, 2, 0, 219, 219, 523, 523, 1, 0, 426, 428, + 2, 0, 521, 521, 524, 524, 2, 0, 333, 333, 336, 336, 2, 0, 345, 345, 446, + 446, 2, 0, 342, 342, 525, 525, 2, 0, 299, 301, 521, 521, 2, 0, 386, 386, + 525, 525, 8, 0, 148, 154, 160, 162, 165, 165, 169, 176, 196, 197, 228, + 228, 230, 235, 525, 525, 2, 0, 295, 295, 494, 494, 1, 0, 84, 85, 8, 0, + 143, 145, 189, 189, 194, 194, 226, 226, 318, 318, 381, 382, 384, 387, 525, + 525, 2, 0, 333, 333, 405, 406, 1, 0, 525, 526, 2, 1, 500, 500, 504, 504, + 1, 0, 491, 496, 1, 0, 497, 498, 2, 0, 499, 503, 513, 513, 1, 0, 266, 271, + 1, 0, 280, 284, 7, 0, 123, 123, 128, 128, 140, 140, 187, 187, 280, 286, + 300, 301, 525, 526, 1, 0, 300, 301, 7, 0, 49, 49, 190, 191, 221, 221, 305, + 305, 410, 410, 479, 479, 525, 525, 40, 0, 41, 42, 44, 44, 49, 49, 51, 52, + 54, 54, 69, 69, 116, 116, 124, 124, 135, 136, 138, 138, 164, 164, 168, + 168, 190, 190, 193, 195, 198, 198, 207, 210, 217, 218, 220, 221, 224, 224, + 236, 236, 251, 251, 280, 284, 306, 306, 308, 308, 335, 335, 337, 337, 354, + 355, 375, 375, 378, 378, 399, 399, 405, 405, 407, 407, 423, 424, 426, 429, + 437, 437, 453, 453, 457, 458, 463, 465, 487, 487, 489, 489, 60, 0, 8, 9, + 17, 21, 23, 30, 32, 35, 38, 44, 48, 49, 51, 52, 54, 54, 56, 59, 65, 67, + 69, 76, 81, 90, 93, 93, 96, 101, 103, 106, 110, 110, 112, 114, 116, 118, + 120, 120, 124, 124, 132, 132, 135, 136, 138, 139, 141, 146, 148, 153, 156, + 166, 168, 172, 174, 175, 179, 179, 189, 190, 193, 198, 209, 218, 220, 221, + 223, 224, 228, 236, 249, 252, 255, 255, 266, 274, 280, 284, 289, 295, 298, + 306, 308, 311, 315, 337, 342, 370, 372, 388, 390, 392, 394, 403, 405, 405, + 407, 409, 412, 413, 415, 424, 426, 435, 437, 437, 439, 439, 442, 442, 444, + 448, 452, 478, 484, 487, 489, 490, 502, 503, 7048, 0, 741, 1, 0, 0, 0, + 2, 747, 1, 0, 0, 0, 4, 767, 1, 0, 0, 0, 6, 769, 1, 0, 0, 0, 8, 801, 1, + 0, 0, 0, 10, 936, 1, 0, 0, 0, 12, 950, 1, 0, 0, 0, 14, 967, 1, 0, 0, 0, + 16, 993, 1, 0, 0, 0, 18, 1034, 1, 0, 0, 0, 20, 1036, 1, 0, 0, 0, 22, 1050, + 1, 0, 0, 0, 24, 1066, 1, 0, 0, 0, 26, 1068, 1, 0, 0, 0, 28, 1078, 1, 0, + 0, 0, 30, 1085, 1, 0, 0, 0, 32, 1089, 1, 0, 0, 0, 34, 1116, 1, 0, 0, 0, + 36, 1143, 1, 0, 0, 0, 38, 1224, 1, 0, 0, 0, 40, 1237, 1, 0, 0, 0, 42, 1307, + 1, 0, 0, 0, 44, 1326, 1, 0, 0, 0, 46, 1328, 1, 0, 0, 0, 48, 1336, 1, 0, + 0, 0, 50, 1341, 1, 0, 0, 0, 52, 1374, 1, 0, 0, 0, 54, 1376, 1, 0, 0, 0, + 56, 1381, 1, 0, 0, 0, 58, 1392, 1, 0, 0, 0, 60, 1397, 1, 0, 0, 0, 62, 1405, + 1, 0, 0, 0, 64, 1413, 1, 0, 0, 0, 66, 1421, 1, 0, 0, 0, 68, 1429, 1, 0, + 0, 0, 70, 1437, 1, 0, 0, 0, 72, 1445, 1, 0, 0, 0, 74, 1454, 1, 0, 0, 0, + 76, 1474, 1, 0, 0, 0, 78, 1476, 1, 0, 0, 0, 80, 1496, 1, 0, 0, 0, 82, 1501, + 1, 0, 0, 0, 84, 1507, 1, 0, 0, 0, 86, 1515, 1, 0, 0, 0, 88, 1551, 1, 0, + 0, 0, 90, 1599, 1, 0, 0, 0, 92, 1605, 1, 0, 0, 0, 94, 1616, 1, 0, 0, 0, + 96, 1618, 1, 0, 0, 0, 98, 1632, 1, 0, 0, 0, 100, 1634, 1, 0, 0, 0, 102, + 1643, 1, 0, 0, 0, 104, 1664, 1, 0, 0, 0, 106, 1699, 1, 0, 0, 0, 108, 1737, + 1, 0, 0, 0, 110, 1739, 1, 0, 0, 0, 112, 1766, 1, 0, 0, 0, 114, 1769, 1, + 0, 0, 0, 116, 1775, 1, 0, 0, 0, 118, 1783, 1, 0, 0, 0, 120, 1790, 1, 0, + 0, 0, 122, 1817, 1, 0, 0, 0, 124, 1820, 1, 0, 0, 0, 126, 1843, 1, 0, 0, + 0, 128, 1845, 1, 0, 0, 0, 130, 1919, 1, 0, 0, 0, 132, 1933, 1, 0, 0, 0, + 134, 1953, 1, 0, 0, 0, 136, 1968, 1, 0, 0, 0, 138, 1970, 1, 0, 0, 0, 140, + 1976, 1, 0, 0, 0, 142, 1984, 1, 0, 0, 0, 144, 1986, 1, 0, 0, 0, 146, 1994, + 1, 0, 0, 0, 148, 2003, 1, 0, 0, 0, 150, 2029, 1, 0, 0, 0, 152, 2032, 1, + 0, 0, 0, 154, 2036, 1, 0, 0, 0, 156, 2039, 1, 0, 0, 0, 158, 2049, 1, 0, + 0, 0, 160, 2058, 1, 0, 0, 0, 162, 2060, 1, 0, 0, 0, 164, 2071, 1, 0, 0, + 0, 166, 2080, 1, 0, 0, 0, 168, 2082, 1, 0, 0, 0, 170, 2105, 1, 0, 0, 0, + 172, 2109, 1, 0, 0, 0, 174, 2143, 1, 0, 0, 0, 176, 2158, 1, 0, 0, 0, 178, + 2160, 1, 0, 0, 0, 180, 2168, 1, 0, 0, 0, 182, 2176, 1, 0, 0, 0, 184, 2198, + 1, 0, 0, 0, 186, 2217, 1, 0, 0, 0, 188, 2225, 1, 0, 0, 0, 190, 2231, 1, + 0, 0, 0, 192, 2234, 1, 0, 0, 0, 194, 2240, 1, 0, 0, 0, 196, 2250, 1, 0, + 0, 0, 198, 2258, 1, 0, 0, 0, 200, 2260, 1, 0, 0, 0, 202, 2267, 1, 0, 0, + 0, 204, 2275, 1, 0, 0, 0, 206, 2280, 1, 0, 0, 0, 208, 2613, 1, 0, 0, 0, + 210, 2615, 1, 0, 0, 0, 212, 2622, 1, 0, 0, 0, 214, 2632, 1, 0, 0, 0, 216, + 2646, 1, 0, 0, 0, 218, 2655, 1, 0, 0, 0, 220, 2665, 1, 0, 0, 0, 222, 2677, + 1, 0, 0, 0, 224, 2682, 1, 0, 0, 0, 226, 2687, 1, 0, 0, 0, 228, 2730, 1, + 0, 0, 0, 230, 2752, 1, 0, 0, 0, 232, 2754, 1, 0, 0, 0, 234, 2775, 1, 0, + 0, 0, 236, 2787, 1, 0, 0, 0, 238, 2797, 1, 0, 0, 0, 240, 2799, 1, 0, 0, + 0, 242, 2801, 1, 0, 0, 0, 244, 2805, 1, 0, 0, 0, 246, 2808, 1, 0, 0, 0, + 248, 2820, 1, 0, 0, 0, 250, 2836, 1, 0, 0, 0, 252, 2838, 1, 0, 0, 0, 254, + 2844, 1, 0, 0, 0, 256, 2846, 1, 0, 0, 0, 258, 2850, 1, 0, 0, 0, 260, 2865, + 1, 0, 0, 0, 262, 2881, 1, 0, 0, 0, 264, 2915, 1, 0, 0, 0, 266, 2929, 1, + 0, 0, 0, 268, 2939, 1, 0, 0, 0, 270, 2944, 1, 0, 0, 0, 272, 2962, 1, 0, + 0, 0, 274, 2980, 1, 0, 0, 0, 276, 2982, 1, 0, 0, 0, 278, 2985, 1, 0, 0, + 0, 280, 2989, 1, 0, 0, 0, 282, 3003, 1, 0, 0, 0, 284, 3006, 1, 0, 0, 0, + 286, 3020, 1, 0, 0, 0, 288, 3048, 1, 0, 0, 0, 290, 3052, 1, 0, 0, 0, 292, + 3054, 1, 0, 0, 0, 294, 3056, 1, 0, 0, 0, 296, 3061, 1, 0, 0, 0, 298, 3083, + 1, 0, 0, 0, 300, 3085, 1, 0, 0, 0, 302, 3102, 1, 0, 0, 0, 304, 3106, 1, + 0, 0, 0, 306, 3118, 1, 0, 0, 0, 308, 3121, 1, 0, 0, 0, 310, 3184, 1, 0, + 0, 0, 312, 3186, 1, 0, 0, 0, 314, 3194, 1, 0, 0, 0, 316, 3198, 1, 0, 0, + 0, 318, 3226, 1, 0, 0, 0, 320, 3228, 1, 0, 0, 0, 322, 3234, 1, 0, 0, 0, + 324, 3239, 1, 0, 0, 0, 326, 3244, 1, 0, 0, 0, 328, 3252, 1, 0, 0, 0, 330, + 3260, 1, 0, 0, 0, 332, 3262, 1, 0, 0, 0, 334, 3270, 1, 0, 0, 0, 336, 3274, + 1, 0, 0, 0, 338, 3281, 1, 0, 0, 0, 340, 3294, 1, 0, 0, 0, 342, 3298, 1, + 0, 0, 0, 344, 3301, 1, 0, 0, 0, 346, 3309, 1, 0, 0, 0, 348, 3313, 1, 0, + 0, 0, 350, 3321, 1, 0, 0, 0, 352, 3325, 1, 0, 0, 0, 354, 3333, 1, 0, 0, + 0, 356, 3341, 1, 0, 0, 0, 358, 3346, 1, 0, 0, 0, 360, 3350, 1, 0, 0, 0, + 362, 3352, 1, 0, 0, 0, 364, 3360, 1, 0, 0, 0, 366, 3371, 1, 0, 0, 0, 368, + 3373, 1, 0, 0, 0, 370, 3385, 1, 0, 0, 0, 372, 3387, 1, 0, 0, 0, 374, 3395, + 1, 0, 0, 0, 376, 3407, 1, 0, 0, 0, 378, 3409, 1, 0, 0, 0, 380, 3417, 1, + 0, 0, 0, 382, 3419, 1, 0, 0, 0, 384, 3433, 1, 0, 0, 0, 386, 3435, 1, 0, + 0, 0, 388, 3473, 1, 0, 0, 0, 390, 3475, 1, 0, 0, 0, 392, 3501, 1, 0, 0, + 0, 394, 3507, 1, 0, 0, 0, 396, 3510, 1, 0, 0, 0, 398, 3543, 1, 0, 0, 0, + 400, 3545, 1, 0, 0, 0, 402, 3547, 1, 0, 0, 0, 404, 3652, 1, 0, 0, 0, 406, + 3654, 1, 0, 0, 0, 408, 3656, 1, 0, 0, 0, 410, 3713, 1, 0, 0, 0, 412, 3753, + 1, 0, 0, 0, 414, 3755, 1, 0, 0, 0, 416, 3772, 1, 0, 0, 0, 418, 3777, 1, + 0, 0, 0, 420, 3800, 1, 0, 0, 0, 422, 3802, 1, 0, 0, 0, 424, 3813, 1, 0, + 0, 0, 426, 3819, 1, 0, 0, 0, 428, 3821, 1, 0, 0, 0, 430, 3823, 1, 0, 0, + 0, 432, 3825, 1, 0, 0, 0, 434, 3850, 1, 0, 0, 0, 436, 3865, 1, 0, 0, 0, + 438, 3876, 1, 0, 0, 0, 440, 3878, 1, 0, 0, 0, 442, 3882, 1, 0, 0, 0, 444, + 3897, 1, 0, 0, 0, 446, 3901, 1, 0, 0, 0, 448, 3904, 1, 0, 0, 0, 450, 3910, + 1, 0, 0, 0, 452, 3955, 1, 0, 0, 0, 454, 3957, 1, 0, 0, 0, 456, 3995, 1, + 0, 0, 0, 458, 3999, 1, 0, 0, 0, 460, 4009, 1, 0, 0, 0, 462, 4020, 1, 0, + 0, 0, 464, 4022, 1, 0, 0, 0, 466, 4034, 1, 0, 0, 0, 468, 4048, 1, 0, 0, + 0, 470, 4066, 1, 0, 0, 0, 472, 4068, 1, 0, 0, 0, 474, 4071, 1, 0, 0, 0, + 476, 4092, 1, 0, 0, 0, 478, 4112, 1, 0, 0, 0, 480, 4119, 1, 0, 0, 0, 482, + 4134, 1, 0, 0, 0, 484, 4136, 1, 0, 0, 0, 486, 4144, 1, 0, 0, 0, 488, 4160, + 1, 0, 0, 0, 490, 4195, 1, 0, 0, 0, 492, 4197, 1, 0, 0, 0, 494, 4201, 1, + 0, 0, 0, 496, 4205, 1, 0, 0, 0, 498, 4222, 1, 0, 0, 0, 500, 4224, 1, 0, + 0, 0, 502, 4250, 1, 0, 0, 0, 504, 4265, 1, 0, 0, 0, 506, 4273, 1, 0, 0, + 0, 508, 4284, 1, 0, 0, 0, 510, 4308, 1, 0, 0, 0, 512, 4319, 1, 0, 0, 0, + 514, 4331, 1, 0, 0, 0, 516, 4335, 1, 0, 0, 0, 518, 4357, 1, 0, 0, 0, 520, + 4380, 1, 0, 0, 0, 522, 4384, 1, 0, 0, 0, 524, 4428, 1, 0, 0, 0, 526, 4458, + 1, 0, 0, 0, 528, 4557, 1, 0, 0, 0, 530, 4592, 1, 0, 0, 0, 532, 4594, 1, + 0, 0, 0, 534, 4599, 1, 0, 0, 0, 536, 4637, 1, 0, 0, 0, 538, 4641, 1, 0, + 0, 0, 540, 4662, 1, 0, 0, 0, 542, 4678, 1, 0, 0, 0, 544, 4684, 1, 0, 0, + 0, 546, 4695, 1, 0, 0, 0, 548, 4701, 1, 0, 0, 0, 550, 4708, 1, 0, 0, 0, + 552, 4718, 1, 0, 0, 0, 554, 4734, 1, 0, 0, 0, 556, 4776, 1, 0, 0, 0, 558, + 4778, 1, 0, 0, 0, 560, 4780, 1, 0, 0, 0, 562, 4788, 1, 0, 0, 0, 564, 4794, + 1, 0, 0, 0, 566, 5231, 1, 0, 0, 0, 568, 5254, 1, 0, 0, 0, 570, 5256, 1, + 0, 0, 0, 572, 5264, 1, 0, 0, 0, 574, 5266, 1, 0, 0, 0, 576, 5274, 1, 0, + 0, 0, 578, 5431, 1, 0, 0, 0, 580, 5433, 1, 0, 0, 0, 582, 5479, 1, 0, 0, + 0, 584, 5495, 1, 0, 0, 0, 586, 5497, 1, 0, 0, 0, 588, 5544, 1, 0, 0, 0, + 590, 5546, 1, 0, 0, 0, 592, 5561, 1, 0, 0, 0, 594, 5573, 1, 0, 0, 0, 596, + 5577, 1, 0, 0, 0, 598, 5579, 1, 0, 0, 0, 600, 5603, 1, 0, 0, 0, 602, 5625, + 1, 0, 0, 0, 604, 5637, 1, 0, 0, 0, 606, 5653, 1, 0, 0, 0, 608, 5655, 1, + 0, 0, 0, 610, 5658, 1, 0, 0, 0, 612, 5661, 1, 0, 0, 0, 614, 5664, 1, 0, + 0, 0, 616, 5667, 1, 0, 0, 0, 618, 5675, 1, 0, 0, 0, 620, 5679, 1, 0, 0, + 0, 622, 5699, 1, 0, 0, 0, 624, 5717, 1, 0, 0, 0, 626, 5719, 1, 0, 0, 0, + 628, 5745, 1, 0, 0, 0, 630, 5747, 1, 0, 0, 0, 632, 5765, 1, 0, 0, 0, 634, + 5767, 1, 0, 0, 0, 636, 5769, 1, 0, 0, 0, 638, 5771, 1, 0, 0, 0, 640, 5775, + 1, 0, 0, 0, 642, 5790, 1, 0, 0, 0, 644, 5798, 1, 0, 0, 0, 646, 5800, 1, + 0, 0, 0, 648, 5806, 1, 0, 0, 0, 650, 5808, 1, 0, 0, 0, 652, 5816, 1, 0, + 0, 0, 654, 5818, 1, 0, 0, 0, 656, 5821, 1, 0, 0, 0, 658, 5883, 1, 0, 0, + 0, 660, 5886, 1, 0, 0, 0, 662, 5890, 1, 0, 0, 0, 664, 5930, 1, 0, 0, 0, + 666, 5944, 1, 0, 0, 0, 668, 5946, 1, 0, 0, 0, 670, 5948, 1, 0, 0, 0, 672, + 5956, 1, 0, 0, 0, 674, 5958, 1, 0, 0, 0, 676, 5966, 1, 0, 0, 0, 678, 5975, + 1, 0, 0, 0, 680, 5979, 1, 0, 0, 0, 682, 6010, 1, 0, 0, 0, 684, 6012, 1, + 0, 0, 0, 686, 6020, 1, 0, 0, 0, 688, 6029, 1, 0, 0, 0, 690, 6054, 1, 0, + 0, 0, 692, 6056, 1, 0, 0, 0, 694, 6072, 1, 0, 0, 0, 696, 6079, 1, 0, 0, + 0, 698, 6086, 1, 0, 0, 0, 700, 6088, 1, 0, 0, 0, 702, 6099, 1, 0, 0, 0, + 704, 6106, 1, 0, 0, 0, 706, 6108, 1, 0, 0, 0, 708, 6128, 1, 0, 0, 0, 710, + 6130, 1, 0, 0, 0, 712, 6138, 1, 0, 0, 0, 714, 6149, 1, 0, 0, 0, 716, 6156, + 1, 0, 0, 0, 718, 6158, 1, 0, 0, 0, 720, 6171, 1, 0, 0, 0, 722, 6173, 1, + 0, 0, 0, 724, 6175, 1, 0, 0, 0, 726, 6184, 1, 0, 0, 0, 728, 6186, 1, 0, + 0, 0, 730, 6198, 1, 0, 0, 0, 732, 6203, 1, 0, 0, 0, 734, 6205, 1, 0, 0, + 0, 736, 6207, 1, 0, 0, 0, 738, 740, 3, 2, 1, 0, 739, 738, 1, 0, 0, 0, 740, + 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 744, + 1, 0, 0, 0, 743, 741, 1, 0, 0, 0, 744, 745, 5, 0, 0, 1, 745, 1, 1, 0, 0, + 0, 746, 748, 3, 722, 361, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, + 748, 752, 1, 0, 0, 0, 749, 753, 3, 4, 2, 0, 750, 753, 3, 564, 282, 0, 751, + 753, 3, 624, 312, 0, 752, 749, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 751, + 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 756, 5, 504, 0, 0, 755, 754, 1, + 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 758, 1, 0, 0, 0, 757, 759, 5, 500, + 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 3, 1, 0, 0, 0, 760, + 768, 3, 8, 4, 0, 761, 768, 3, 10, 5, 0, 762, 768, 3, 38, 19, 0, 763, 768, + 3, 40, 20, 0, 764, 768, 3, 42, 21, 0, 765, 768, 3, 6, 3, 0, 766, 768, 3, + 44, 22, 0, 767, 760, 1, 0, 0, 0, 767, 761, 1, 0, 0, 0, 767, 762, 1, 0, + 0, 0, 767, 763, 1, 0, 0, 0, 767, 764, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, + 767, 766, 1, 0, 0, 0, 768, 5, 1, 0, 0, 0, 769, 770, 5, 397, 0, 0, 770, + 771, 5, 189, 0, 0, 771, 772, 5, 48, 0, 0, 772, 777, 3, 574, 287, 0, 773, + 774, 5, 505, 0, 0, 774, 776, 3, 574, 287, 0, 775, 773, 1, 0, 0, 0, 776, + 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, + 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 72, 0, 0, 781, 786, 3, 572, + 286, 0, 782, 783, 5, 289, 0, 0, 783, 785, 3, 572, 286, 0, 784, 782, 1, + 0, 0, 0, 785, 788, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, + 0, 787, 794, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 792, 5, 293, 0, 0, + 790, 793, 3, 712, 356, 0, 791, 793, 5, 525, 0, 0, 792, 790, 1, 0, 0, 0, + 792, 791, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 789, 1, 0, 0, 0, 794, + 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 440, 0, 0, 797, 799, + 5, 441, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 7, 1, 0, + 0, 0, 800, 802, 3, 722, 361, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, + 0, 802, 806, 1, 0, 0, 0, 803, 805, 3, 724, 362, 0, 804, 803, 1, 0, 0, 0, + 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, + 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 812, 5, 17, 0, 0, 810, 811, + 5, 290, 0, 0, 811, 813, 7, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, + 0, 0, 0, 813, 839, 1, 0, 0, 0, 814, 840, 3, 90, 45, 0, 815, 840, 3, 122, + 61, 0, 816, 840, 3, 138, 69, 0, 817, 840, 3, 182, 91, 0, 818, 840, 3, 184, + 92, 0, 819, 840, 3, 336, 168, 0, 820, 840, 3, 338, 169, 0, 821, 840, 3, + 144, 72, 0, 822, 840, 3, 172, 86, 0, 823, 840, 3, 442, 221, 0, 824, 840, + 3, 450, 225, 0, 825, 840, 3, 458, 229, 0, 826, 840, 3, 466, 233, 0, 827, + 840, 3, 484, 242, 0, 828, 840, 3, 486, 243, 0, 829, 840, 3, 488, 244, 0, + 830, 840, 3, 508, 254, 0, 831, 840, 3, 510, 255, 0, 832, 840, 3, 516, 258, + 0, 833, 840, 3, 522, 261, 0, 834, 840, 3, 50, 25, 0, 835, 840, 3, 78, 39, + 0, 836, 840, 3, 156, 78, 0, 837, 840, 3, 168, 84, 0, 838, 840, 3, 464, + 232, 0, 839, 814, 1, 0, 0, 0, 839, 815, 1, 0, 0, 0, 839, 816, 1, 0, 0, + 0, 839, 817, 1, 0, 0, 0, 839, 818, 1, 0, 0, 0, 839, 819, 1, 0, 0, 0, 839, + 820, 1, 0, 0, 0, 839, 821, 1, 0, 0, 0, 839, 822, 1, 0, 0, 0, 839, 823, + 1, 0, 0, 0, 839, 824, 1, 0, 0, 0, 839, 825, 1, 0, 0, 0, 839, 826, 1, 0, + 0, 0, 839, 827, 1, 0, 0, 0, 839, 828, 1, 0, 0, 0, 839, 829, 1, 0, 0, 0, + 839, 830, 1, 0, 0, 0, 839, 831, 1, 0, 0, 0, 839, 832, 1, 0, 0, 0, 839, + 833, 1, 0, 0, 0, 839, 834, 1, 0, 0, 0, 839, 835, 1, 0, 0, 0, 839, 836, + 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 838, 1, 0, 0, 0, 840, 9, 1, 0, 0, + 0, 841, 842, 5, 18, 0, 0, 842, 843, 5, 23, 0, 0, 843, 845, 3, 712, 356, + 0, 844, 846, 3, 130, 65, 0, 845, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, + 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 937, 1, 0, 0, 0, 849, + 850, 5, 18, 0, 0, 850, 851, 5, 27, 0, 0, 851, 853, 3, 712, 356, 0, 852, + 854, 3, 132, 66, 0, 853, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 853, + 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 937, 1, 0, 0, 0, 857, 858, 5, 18, + 0, 0, 858, 859, 5, 28, 0, 0, 859, 861, 3, 712, 356, 0, 860, 862, 3, 134, + 67, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, + 863, 864, 1, 0, 0, 0, 864, 937, 1, 0, 0, 0, 865, 866, 5, 18, 0, 0, 866, + 867, 5, 36, 0, 0, 867, 869, 3, 712, 356, 0, 868, 870, 3, 136, 68, 0, 869, + 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, + 1, 0, 0, 0, 872, 937, 1, 0, 0, 0, 873, 874, 5, 18, 0, 0, 874, 875, 5, 318, + 0, 0, 875, 876, 5, 343, 0, 0, 876, 877, 3, 712, 356, 0, 877, 878, 5, 48, + 0, 0, 878, 883, 3, 494, 247, 0, 879, 880, 5, 505, 0, 0, 880, 882, 3, 494, + 247, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, + 0, 883, 884, 1, 0, 0, 0, 884, 937, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, + 887, 5, 18, 0, 0, 887, 888, 5, 318, 0, 0, 888, 889, 5, 316, 0, 0, 889, + 890, 3, 712, 356, 0, 890, 891, 5, 48, 0, 0, 891, 896, 3, 494, 247, 0, 892, + 893, 5, 505, 0, 0, 893, 895, 3, 494, 247, 0, 894, 892, 1, 0, 0, 0, 895, + 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 937, + 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 5, 18, 0, 0, 900, 901, 5, 215, + 0, 0, 901, 902, 5, 93, 0, 0, 902, 903, 7, 1, 0, 0, 903, 904, 3, 712, 356, + 0, 904, 905, 5, 188, 0, 0, 905, 907, 5, 525, 0, 0, 906, 908, 3, 12, 6, + 0, 907, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, + 910, 1, 0, 0, 0, 910, 937, 1, 0, 0, 0, 911, 912, 5, 18, 0, 0, 912, 913, + 5, 447, 0, 0, 913, 937, 3, 556, 278, 0, 914, 915, 5, 18, 0, 0, 915, 916, + 5, 33, 0, 0, 916, 917, 3, 712, 356, 0, 917, 919, 5, 509, 0, 0, 918, 920, + 3, 16, 8, 0, 919, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 919, 1, 0, + 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 5, 510, 0, + 0, 924, 937, 1, 0, 0, 0, 925, 926, 5, 18, 0, 0, 926, 927, 5, 34, 0, 0, + 927, 928, 3, 712, 356, 0, 928, 930, 5, 509, 0, 0, 929, 931, 3, 16, 8, 0, + 930, 929, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, + 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 510, 0, 0, 935, 937, + 1, 0, 0, 0, 936, 841, 1, 0, 0, 0, 936, 849, 1, 0, 0, 0, 936, 857, 1, 0, + 0, 0, 936, 865, 1, 0, 0, 0, 936, 873, 1, 0, 0, 0, 936, 886, 1, 0, 0, 0, + 936, 899, 1, 0, 0, 0, 936, 911, 1, 0, 0, 0, 936, 914, 1, 0, 0, 0, 936, + 925, 1, 0, 0, 0, 937, 11, 1, 0, 0, 0, 938, 939, 5, 48, 0, 0, 939, 944, + 3, 14, 7, 0, 940, 941, 5, 505, 0, 0, 941, 943, 3, 14, 7, 0, 942, 940, 1, + 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, + 0, 945, 951, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 948, 5, 216, 0, 0, + 948, 949, 5, 212, 0, 0, 949, 951, 5, 213, 0, 0, 950, 938, 1, 0, 0, 0, 950, + 947, 1, 0, 0, 0, 951, 13, 1, 0, 0, 0, 952, 953, 5, 209, 0, 0, 953, 954, + 5, 494, 0, 0, 954, 968, 5, 521, 0, 0, 955, 956, 5, 210, 0, 0, 956, 957, + 5, 494, 0, 0, 957, 968, 5, 521, 0, 0, 958, 959, 5, 521, 0, 0, 959, 960, + 5, 494, 0, 0, 960, 968, 5, 521, 0, 0, 961, 962, 5, 521, 0, 0, 962, 963, + 5, 494, 0, 0, 963, 968, 5, 93, 0, 0, 964, 965, 5, 521, 0, 0, 965, 966, + 5, 494, 0, 0, 966, 968, 5, 489, 0, 0, 967, 952, 1, 0, 0, 0, 967, 955, 1, + 0, 0, 0, 967, 958, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 964, 1, 0, 0, + 0, 968, 15, 1, 0, 0, 0, 969, 971, 3, 18, 9, 0, 970, 972, 5, 504, 0, 0, + 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 994, 1, 0, 0, 0, 973, + 975, 3, 24, 12, 0, 974, 976, 5, 504, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, + 1, 0, 0, 0, 976, 994, 1, 0, 0, 0, 977, 979, 3, 26, 13, 0, 978, 980, 5, + 504, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 994, 1, 0, + 0, 0, 981, 983, 3, 28, 14, 0, 982, 984, 5, 504, 0, 0, 983, 982, 1, 0, 0, + 0, 983, 984, 1, 0, 0, 0, 984, 994, 1, 0, 0, 0, 985, 987, 3, 30, 15, 0, + 986, 988, 5, 504, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, + 994, 1, 0, 0, 0, 989, 991, 3, 32, 16, 0, 990, 992, 5, 504, 0, 0, 991, 990, + 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 994, 1, 0, 0, 0, 993, 969, 1, 0, + 0, 0, 993, 973, 1, 0, 0, 0, 993, 977, 1, 0, 0, 0, 993, 981, 1, 0, 0, 0, + 993, 985, 1, 0, 0, 0, 993, 989, 1, 0, 0, 0, 994, 17, 1, 0, 0, 0, 995, 996, + 5, 48, 0, 0, 996, 997, 5, 35, 0, 0, 997, 998, 5, 494, 0, 0, 998, 1011, + 3, 712, 356, 0, 999, 1000, 5, 359, 0, 0, 1000, 1001, 5, 507, 0, 0, 1001, + 1006, 3, 20, 10, 0, 1002, 1003, 5, 505, 0, 0, 1003, 1005, 3, 20, 10, 0, + 1004, 1002, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, + 1006, 1007, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, + 1009, 1010, 5, 508, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 999, 1, 0, 0, 0, + 1011, 1012, 1, 0, 0, 0, 1012, 1035, 1, 0, 0, 0, 1013, 1014, 5, 48, 0, 0, + 1014, 1015, 3, 22, 11, 0, 1015, 1016, 5, 93, 0, 0, 1016, 1017, 3, 714, + 357, 0, 1017, 1035, 1, 0, 0, 0, 1018, 1019, 5, 48, 0, 0, 1019, 1020, 5, + 507, 0, 0, 1020, 1025, 3, 22, 11, 0, 1021, 1022, 5, 505, 0, 0, 1022, 1024, + 3, 22, 11, 0, 1023, 1021, 1, 0, 0, 0, 1024, 1027, 1, 0, 0, 0, 1025, 1023, + 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1028, 1, 0, 0, 0, 1027, 1025, + 1, 0, 0, 0, 1028, 1029, 5, 508, 0, 0, 1029, 1030, 5, 93, 0, 0, 1030, 1031, + 3, 714, 357, 0, 1031, 1035, 1, 0, 0, 0, 1032, 1033, 5, 48, 0, 0, 1033, + 1035, 3, 22, 11, 0, 1034, 995, 1, 0, 0, 0, 1034, 1013, 1, 0, 0, 0, 1034, + 1018, 1, 0, 0, 0, 1034, 1032, 1, 0, 0, 0, 1035, 19, 1, 0, 0, 0, 1036, 1037, + 3, 714, 357, 0, 1037, 1038, 5, 76, 0, 0, 1038, 1039, 3, 714, 357, 0, 1039, + 21, 1, 0, 0, 0, 1040, 1041, 5, 193, 0, 0, 1041, 1042, 5, 494, 0, 0, 1042, + 1051, 3, 410, 205, 0, 1043, 1044, 3, 714, 357, 0, 1044, 1045, 5, 494, 0, + 0, 1045, 1046, 3, 434, 217, 0, 1046, 1051, 1, 0, 0, 0, 1047, 1048, 5, 521, + 0, 0, 1048, 1049, 5, 494, 0, 0, 1049, 1051, 3, 434, 217, 0, 1050, 1040, + 1, 0, 0, 0, 1050, 1043, 1, 0, 0, 0, 1050, 1047, 1, 0, 0, 0, 1051, 23, 1, + 0, 0, 0, 1052, 1053, 5, 394, 0, 0, 1053, 1054, 5, 396, 0, 0, 1054, 1055, + 3, 714, 357, 0, 1055, 1056, 5, 509, 0, 0, 1056, 1057, 3, 394, 197, 0, 1057, + 1058, 5, 510, 0, 0, 1058, 1067, 1, 0, 0, 0, 1059, 1060, 5, 394, 0, 0, 1060, + 1061, 5, 395, 0, 0, 1061, 1062, 3, 714, 357, 0, 1062, 1063, 5, 509, 0, + 0, 1063, 1064, 3, 394, 197, 0, 1064, 1065, 5, 510, 0, 0, 1065, 1067, 1, + 0, 0, 0, 1066, 1052, 1, 0, 0, 0, 1066, 1059, 1, 0, 0, 0, 1067, 25, 1, 0, + 0, 0, 1068, 1069, 5, 19, 0, 0, 1069, 1070, 5, 188, 0, 0, 1070, 1075, 3, + 714, 357, 0, 1071, 1072, 5, 505, 0, 0, 1072, 1074, 3, 714, 357, 0, 1073, + 1071, 1, 0, 0, 0, 1074, 1077, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1075, + 1076, 1, 0, 0, 0, 1076, 27, 1, 0, 0, 0, 1077, 1075, 1, 0, 0, 0, 1078, 1079, + 5, 434, 0, 0, 1079, 1080, 3, 714, 357, 0, 1080, 1081, 5, 139, 0, 0, 1081, + 1082, 5, 509, 0, 0, 1082, 1083, 3, 394, 197, 0, 1083, 1084, 5, 510, 0, + 0, 1084, 29, 1, 0, 0, 0, 1085, 1086, 5, 47, 0, 0, 1086, 1087, 5, 205, 0, + 0, 1087, 1088, 3, 354, 177, 0, 1088, 31, 1, 0, 0, 0, 1089, 1090, 5, 19, + 0, 0, 1090, 1091, 5, 205, 0, 0, 1091, 1092, 5, 524, 0, 0, 1092, 33, 1, + 0, 0, 0, 1093, 1094, 5, 378, 0, 0, 1094, 1095, 7, 2, 0, 0, 1095, 1098, + 3, 712, 356, 0, 1096, 1097, 5, 433, 0, 0, 1097, 1099, 3, 712, 356, 0, 1098, + 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1117, 1, 0, 0, 0, 1100, + 1101, 5, 379, 0, 0, 1101, 1102, 5, 33, 0, 0, 1102, 1117, 3, 712, 356, 0, + 1103, 1104, 5, 291, 0, 0, 1104, 1105, 5, 380, 0, 0, 1105, 1106, 5, 33, + 0, 0, 1106, 1117, 3, 712, 356, 0, 1107, 1108, 5, 376, 0, 0, 1108, 1112, + 5, 507, 0, 0, 1109, 1111, 3, 36, 18, 0, 1110, 1109, 1, 0, 0, 0, 1111, 1114, + 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, + 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1115, 1117, 5, 508, 0, 0, 1116, 1093, + 1, 0, 0, 0, 1116, 1100, 1, 0, 0, 0, 1116, 1103, 1, 0, 0, 0, 1116, 1107, + 1, 0, 0, 0, 1117, 35, 1, 0, 0, 0, 1118, 1119, 5, 376, 0, 0, 1119, 1120, + 5, 156, 0, 0, 1120, 1125, 5, 521, 0, 0, 1121, 1122, 5, 33, 0, 0, 1122, + 1126, 3, 712, 356, 0, 1123, 1124, 5, 30, 0, 0, 1124, 1126, 3, 712, 356, + 0, 1125, 1121, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, + 0, 1126, 1128, 1, 0, 0, 0, 1127, 1129, 5, 504, 0, 0, 1128, 1127, 1, 0, + 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1144, 1, 0, 0, 0, 1130, 1131, 5, 376, + 0, 0, 1131, 1132, 5, 521, 0, 0, 1132, 1136, 5, 507, 0, 0, 1133, 1135, 3, + 36, 18, 0, 1134, 1133, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, + 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 1, 0, 0, 0, 1138, 1136, + 1, 0, 0, 0, 1139, 1141, 5, 508, 0, 0, 1140, 1142, 5, 504, 0, 0, 1141, 1140, + 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 1, 0, 0, 0, 1143, 1118, + 1, 0, 0, 0, 1143, 1130, 1, 0, 0, 0, 1144, 37, 1, 0, 0, 0, 1145, 1146, 5, + 19, 0, 0, 1146, 1147, 5, 23, 0, 0, 1147, 1225, 3, 712, 356, 0, 1148, 1149, + 5, 19, 0, 0, 1149, 1150, 5, 27, 0, 0, 1150, 1225, 3, 712, 356, 0, 1151, + 1152, 5, 19, 0, 0, 1152, 1153, 5, 28, 0, 0, 1153, 1225, 3, 712, 356, 0, + 1154, 1155, 5, 19, 0, 0, 1155, 1156, 5, 37, 0, 0, 1156, 1225, 3, 712, 356, + 0, 1157, 1158, 5, 19, 0, 0, 1158, 1159, 5, 30, 0, 0, 1159, 1225, 3, 712, + 356, 0, 1160, 1161, 5, 19, 0, 0, 1161, 1162, 5, 31, 0, 0, 1162, 1225, 3, + 712, 356, 0, 1163, 1164, 5, 19, 0, 0, 1164, 1165, 5, 33, 0, 0, 1165, 1225, + 3, 712, 356, 0, 1166, 1167, 5, 19, 0, 0, 1167, 1168, 5, 34, 0, 0, 1168, + 1225, 3, 712, 356, 0, 1169, 1170, 5, 19, 0, 0, 1170, 1171, 5, 29, 0, 0, + 1171, 1225, 3, 712, 356, 0, 1172, 1173, 5, 19, 0, 0, 1173, 1174, 5, 36, + 0, 0, 1174, 1225, 3, 712, 356, 0, 1175, 1176, 5, 19, 0, 0, 1176, 1177, + 5, 114, 0, 0, 1177, 1178, 5, 116, 0, 0, 1178, 1225, 3, 712, 356, 0, 1179, + 1180, 5, 19, 0, 0, 1180, 1181, 5, 41, 0, 0, 1181, 1182, 3, 712, 356, 0, + 1182, 1183, 5, 93, 0, 0, 1183, 1184, 3, 712, 356, 0, 1184, 1225, 1, 0, + 0, 0, 1185, 1186, 5, 19, 0, 0, 1186, 1187, 5, 318, 0, 0, 1187, 1188, 5, + 343, 0, 0, 1188, 1225, 3, 712, 356, 0, 1189, 1190, 5, 19, 0, 0, 1190, 1191, + 5, 318, 0, 0, 1191, 1192, 5, 316, 0, 0, 1192, 1225, 3, 712, 356, 0, 1193, + 1194, 5, 19, 0, 0, 1194, 1195, 5, 444, 0, 0, 1195, 1196, 5, 445, 0, 0, + 1196, 1197, 5, 316, 0, 0, 1197, 1225, 3, 712, 356, 0, 1198, 1199, 5, 19, + 0, 0, 1199, 1200, 5, 32, 0, 0, 1200, 1225, 3, 712, 356, 0, 1201, 1202, + 5, 19, 0, 0, 1202, 1203, 5, 228, 0, 0, 1203, 1204, 5, 229, 0, 0, 1204, + 1225, 3, 712, 356, 0, 1205, 1206, 5, 19, 0, 0, 1206, 1207, 5, 333, 0, 0, + 1207, 1208, 5, 421, 0, 0, 1208, 1225, 3, 712, 356, 0, 1209, 1210, 5, 19, + 0, 0, 1210, 1211, 5, 315, 0, 0, 1211, 1212, 5, 343, 0, 0, 1212, 1225, 3, + 712, 356, 0, 1213, 1214, 5, 19, 0, 0, 1214, 1215, 5, 448, 0, 0, 1215, 1225, + 5, 521, 0, 0, 1216, 1217, 5, 19, 0, 0, 1217, 1218, 5, 221, 0, 0, 1218, + 1219, 5, 521, 0, 0, 1219, 1222, 5, 293, 0, 0, 1220, 1223, 3, 712, 356, + 0, 1221, 1223, 5, 525, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1221, 1, 0, + 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1145, 1, 0, 0, 0, 1224, 1148, 1, 0, + 0, 0, 1224, 1151, 1, 0, 0, 0, 1224, 1154, 1, 0, 0, 0, 1224, 1157, 1, 0, + 0, 0, 1224, 1160, 1, 0, 0, 0, 1224, 1163, 1, 0, 0, 0, 1224, 1166, 1, 0, + 0, 0, 1224, 1169, 1, 0, 0, 0, 1224, 1172, 1, 0, 0, 0, 1224, 1175, 1, 0, + 0, 0, 1224, 1179, 1, 0, 0, 0, 1224, 1185, 1, 0, 0, 0, 1224, 1189, 1, 0, + 0, 0, 1224, 1193, 1, 0, 0, 0, 1224, 1198, 1, 0, 0, 0, 1224, 1201, 1, 0, + 0, 0, 1224, 1205, 1, 0, 0, 0, 1224, 1209, 1, 0, 0, 0, 1224, 1213, 1, 0, + 0, 0, 1224, 1216, 1, 0, 0, 0, 1225, 39, 1, 0, 0, 0, 1226, 1227, 5, 20, + 0, 0, 1227, 1228, 5, 23, 0, 0, 1228, 1229, 3, 712, 356, 0, 1229, 1230, + 5, 430, 0, 0, 1230, 1231, 5, 525, 0, 0, 1231, 1238, 1, 0, 0, 0, 1232, 1233, + 5, 20, 0, 0, 1233, 1234, 5, 29, 0, 0, 1234, 1235, 5, 525, 0, 0, 1235, 1236, + 5, 430, 0, 0, 1236, 1238, 5, 525, 0, 0, 1237, 1226, 1, 0, 0, 0, 1237, 1232, + 1, 0, 0, 0, 1238, 41, 1, 0, 0, 0, 1239, 1248, 5, 21, 0, 0, 1240, 1249, + 5, 33, 0, 0, 1241, 1249, 5, 30, 0, 0, 1242, 1249, 5, 34, 0, 0, 1243, 1249, + 5, 31, 0, 0, 1244, 1249, 5, 28, 0, 0, 1245, 1249, 5, 37, 0, 0, 1246, 1247, + 5, 357, 0, 0, 1247, 1249, 5, 356, 0, 0, 1248, 1240, 1, 0, 0, 0, 1248, 1241, + 1, 0, 0, 0, 1248, 1242, 1, 0, 0, 0, 1248, 1243, 1, 0, 0, 0, 1248, 1244, + 1, 0, 0, 0, 1248, 1245, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1250, + 1, 0, 0, 0, 1250, 1251, 3, 712, 356, 0, 1251, 1252, 5, 430, 0, 0, 1252, + 1253, 5, 221, 0, 0, 1253, 1259, 5, 521, 0, 0, 1254, 1257, 5, 293, 0, 0, + 1255, 1258, 3, 712, 356, 0, 1256, 1258, 5, 525, 0, 0, 1257, 1255, 1, 0, + 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1254, 1, 0, + 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1308, 1, 0, 0, 0, 1261, 1270, 5, 21, + 0, 0, 1262, 1271, 5, 33, 0, 0, 1263, 1271, 5, 30, 0, 0, 1264, 1271, 5, + 34, 0, 0, 1265, 1271, 5, 31, 0, 0, 1266, 1271, 5, 28, 0, 0, 1267, 1271, + 5, 37, 0, 0, 1268, 1269, 5, 357, 0, 0, 1269, 1271, 5, 356, 0, 0, 1270, + 1262, 1, 0, 0, 0, 1270, 1263, 1, 0, 0, 0, 1270, 1264, 1, 0, 0, 0, 1270, + 1265, 1, 0, 0, 0, 1270, 1266, 1, 0, 0, 0, 1270, 1267, 1, 0, 0, 0, 1270, + 1268, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 3, 712, 356, 0, 1273, + 1276, 5, 430, 0, 0, 1274, 1277, 3, 712, 356, 0, 1275, 1277, 5, 525, 0, + 0, 1276, 1274, 1, 0, 0, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1308, 1, 0, 0, + 0, 1278, 1279, 5, 21, 0, 0, 1279, 1280, 5, 23, 0, 0, 1280, 1281, 3, 712, + 356, 0, 1281, 1284, 5, 430, 0, 0, 1282, 1285, 3, 712, 356, 0, 1283, 1285, + 5, 525, 0, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1308, + 1, 0, 0, 0, 1286, 1287, 5, 21, 0, 0, 1287, 1288, 5, 221, 0, 0, 1288, 1289, + 3, 712, 356, 0, 1289, 1290, 5, 430, 0, 0, 1290, 1291, 5, 221, 0, 0, 1291, + 1297, 5, 521, 0, 0, 1292, 1295, 5, 293, 0, 0, 1293, 1296, 3, 712, 356, + 0, 1294, 1296, 5, 525, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1294, 1, 0, + 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1292, 1, 0, 0, 0, 1297, 1298, 1, 0, + 0, 0, 1298, 1308, 1, 0, 0, 0, 1299, 1300, 5, 21, 0, 0, 1300, 1301, 5, 221, + 0, 0, 1301, 1302, 3, 712, 356, 0, 1302, 1305, 5, 430, 0, 0, 1303, 1306, + 3, 712, 356, 0, 1304, 1306, 5, 525, 0, 0, 1305, 1303, 1, 0, 0, 0, 1305, + 1304, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1239, 1, 0, 0, 0, 1307, + 1261, 1, 0, 0, 0, 1307, 1278, 1, 0, 0, 0, 1307, 1286, 1, 0, 0, 0, 1307, + 1299, 1, 0, 0, 0, 1308, 43, 1, 0, 0, 0, 1309, 1327, 3, 46, 23, 0, 1310, + 1327, 3, 48, 24, 0, 1311, 1327, 3, 52, 26, 0, 1312, 1327, 3, 54, 27, 0, + 1313, 1327, 3, 56, 28, 0, 1314, 1327, 3, 58, 29, 0, 1315, 1327, 3, 60, + 30, 0, 1316, 1327, 3, 62, 31, 0, 1317, 1327, 3, 64, 32, 0, 1318, 1327, + 3, 66, 33, 0, 1319, 1327, 3, 68, 34, 0, 1320, 1327, 3, 70, 35, 0, 1321, + 1327, 3, 72, 36, 0, 1322, 1327, 3, 74, 37, 0, 1323, 1327, 3, 76, 38, 0, + 1324, 1327, 3, 80, 40, 0, 1325, 1327, 3, 82, 41, 0, 1326, 1309, 1, 0, 0, + 0, 1326, 1310, 1, 0, 0, 0, 1326, 1311, 1, 0, 0, 0, 1326, 1312, 1, 0, 0, + 0, 1326, 1313, 1, 0, 0, 0, 1326, 1314, 1, 0, 0, 0, 1326, 1315, 1, 0, 0, + 0, 1326, 1316, 1, 0, 0, 0, 1326, 1317, 1, 0, 0, 0, 1326, 1318, 1, 0, 0, + 0, 1326, 1319, 1, 0, 0, 0, 1326, 1320, 1, 0, 0, 0, 1326, 1321, 1, 0, 0, + 0, 1326, 1322, 1, 0, 0, 0, 1326, 1323, 1, 0, 0, 0, 1326, 1324, 1, 0, 0, + 0, 1326, 1325, 1, 0, 0, 0, 1327, 45, 1, 0, 0, 0, 1328, 1329, 5, 17, 0, + 0, 1329, 1330, 5, 29, 0, 0, 1330, 1331, 5, 453, 0, 0, 1331, 1334, 3, 712, + 356, 0, 1332, 1333, 5, 487, 0, 0, 1333, 1335, 5, 521, 0, 0, 1334, 1332, + 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 47, 1, 0, 0, 0, 1336, 1337, 5, + 19, 0, 0, 1337, 1338, 5, 29, 0, 0, 1338, 1339, 5, 453, 0, 0, 1339, 1340, + 3, 712, 356, 0, 1340, 49, 1, 0, 0, 0, 1341, 1342, 5, 465, 0, 0, 1342, 1343, + 5, 453, 0, 0, 1343, 1344, 3, 714, 357, 0, 1344, 1345, 5, 507, 0, 0, 1345, + 1346, 3, 84, 42, 0, 1346, 1350, 5, 508, 0, 0, 1347, 1348, 5, 459, 0, 0, + 1348, 1349, 5, 85, 0, 0, 1349, 1351, 5, 454, 0, 0, 1350, 1347, 1, 0, 0, + 0, 1350, 1351, 1, 0, 0, 0, 1351, 51, 1, 0, 0, 0, 1352, 1353, 5, 18, 0, + 0, 1353, 1354, 5, 465, 0, 0, 1354, 1355, 5, 453, 0, 0, 1355, 1356, 3, 714, + 357, 0, 1356, 1357, 5, 47, 0, 0, 1357, 1358, 5, 29, 0, 0, 1358, 1359, 5, + 454, 0, 0, 1359, 1360, 5, 507, 0, 0, 1360, 1361, 3, 84, 42, 0, 1361, 1362, + 5, 508, 0, 0, 1362, 1375, 1, 0, 0, 0, 1363, 1364, 5, 18, 0, 0, 1364, 1365, + 5, 465, 0, 0, 1365, 1366, 5, 453, 0, 0, 1366, 1367, 3, 714, 357, 0, 1367, + 1368, 5, 133, 0, 0, 1368, 1369, 5, 29, 0, 0, 1369, 1370, 5, 454, 0, 0, + 1370, 1371, 5, 507, 0, 0, 1371, 1372, 3, 84, 42, 0, 1372, 1373, 5, 508, + 0, 0, 1373, 1375, 1, 0, 0, 0, 1374, 1352, 1, 0, 0, 0, 1374, 1363, 1, 0, + 0, 0, 1375, 53, 1, 0, 0, 0, 1376, 1377, 5, 19, 0, 0, 1377, 1378, 5, 465, + 0, 0, 1378, 1379, 5, 453, 0, 0, 1379, 1380, 3, 714, 357, 0, 1380, 55, 1, + 0, 0, 0, 1381, 1382, 5, 455, 0, 0, 1382, 1383, 3, 84, 42, 0, 1383, 1384, + 5, 93, 0, 0, 1384, 1385, 3, 712, 356, 0, 1385, 1386, 5, 507, 0, 0, 1386, + 1387, 3, 86, 43, 0, 1387, 1390, 5, 508, 0, 0, 1388, 1389, 5, 72, 0, 0, + 1389, 1391, 5, 521, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, + 0, 1391, 57, 1, 0, 0, 0, 1392, 1393, 5, 456, 0, 0, 1393, 1394, 3, 84, 42, + 0, 1394, 1395, 5, 93, 0, 0, 1395, 1396, 3, 712, 356, 0, 1396, 59, 1, 0, + 0, 0, 1397, 1398, 5, 455, 0, 0, 1398, 1399, 5, 401, 0, 0, 1399, 1400, 5, + 93, 0, 0, 1400, 1401, 5, 30, 0, 0, 1401, 1402, 3, 712, 356, 0, 1402, 1403, + 5, 430, 0, 0, 1403, 1404, 3, 84, 42, 0, 1404, 61, 1, 0, 0, 0, 1405, 1406, + 5, 456, 0, 0, 1406, 1407, 5, 401, 0, 0, 1407, 1408, 5, 93, 0, 0, 1408, + 1409, 5, 30, 0, 0, 1409, 1410, 3, 712, 356, 0, 1410, 1411, 5, 71, 0, 0, + 1411, 1412, 3, 84, 42, 0, 1412, 63, 1, 0, 0, 0, 1413, 1414, 5, 455, 0, + 0, 1414, 1415, 5, 25, 0, 0, 1415, 1416, 5, 93, 0, 0, 1416, 1417, 5, 33, + 0, 0, 1417, 1418, 3, 712, 356, 0, 1418, 1419, 5, 430, 0, 0, 1419, 1420, + 3, 84, 42, 0, 1420, 65, 1, 0, 0, 0, 1421, 1422, 5, 456, 0, 0, 1422, 1423, + 5, 25, 0, 0, 1423, 1424, 5, 93, 0, 0, 1424, 1425, 5, 33, 0, 0, 1425, 1426, + 3, 712, 356, 0, 1426, 1427, 5, 71, 0, 0, 1427, 1428, 3, 84, 42, 0, 1428, + 67, 1, 0, 0, 0, 1429, 1430, 5, 455, 0, 0, 1430, 1431, 5, 401, 0, 0, 1431, + 1432, 5, 93, 0, 0, 1432, 1433, 5, 32, 0, 0, 1433, 1434, 3, 712, 356, 0, + 1434, 1435, 5, 430, 0, 0, 1435, 1436, 3, 84, 42, 0, 1436, 69, 1, 0, 0, + 0, 1437, 1438, 5, 456, 0, 0, 1438, 1439, 5, 401, 0, 0, 1439, 1440, 5, 93, + 0, 0, 1440, 1441, 5, 32, 0, 0, 1441, 1442, 3, 712, 356, 0, 1442, 1443, + 5, 71, 0, 0, 1443, 1444, 3, 84, 42, 0, 1444, 71, 1, 0, 0, 0, 1445, 1446, + 5, 455, 0, 0, 1446, 1447, 5, 463, 0, 0, 1447, 1448, 5, 93, 0, 0, 1448, + 1449, 5, 318, 0, 0, 1449, 1450, 5, 316, 0, 0, 1450, 1451, 3, 712, 356, + 0, 1451, 1452, 5, 430, 0, 0, 1452, 1453, 3, 84, 42, 0, 1453, 73, 1, 0, + 0, 0, 1454, 1455, 5, 456, 0, 0, 1455, 1456, 5, 463, 0, 0, 1456, 1457, 5, + 93, 0, 0, 1457, 1458, 5, 318, 0, 0, 1458, 1459, 5, 316, 0, 0, 1459, 1460, + 3, 712, 356, 0, 1460, 1461, 5, 71, 0, 0, 1461, 1462, 3, 84, 42, 0, 1462, + 75, 1, 0, 0, 0, 1463, 1464, 5, 18, 0, 0, 1464, 1465, 5, 59, 0, 0, 1465, + 1466, 5, 452, 0, 0, 1466, 1467, 5, 464, 0, 0, 1467, 1475, 7, 3, 0, 0, 1468, + 1469, 5, 18, 0, 0, 1469, 1470, 5, 59, 0, 0, 1470, 1471, 5, 452, 0, 0, 1471, + 1472, 5, 460, 0, 0, 1472, 1473, 5, 490, 0, 0, 1473, 1475, 7, 4, 0, 0, 1474, + 1463, 1, 0, 0, 0, 1474, 1468, 1, 0, 0, 0, 1475, 77, 1, 0, 0, 0, 1476, 1477, + 5, 460, 0, 0, 1477, 1478, 5, 465, 0, 0, 1478, 1479, 5, 521, 0, 0, 1479, + 1480, 5, 355, 0, 0, 1480, 1483, 5, 521, 0, 0, 1481, 1482, 5, 23, 0, 0, + 1482, 1484, 3, 712, 356, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, + 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 5, 507, 0, 0, 1486, 1491, 3, 714, + 357, 0, 1487, 1488, 5, 505, 0, 0, 1488, 1490, 3, 714, 357, 0, 1489, 1487, + 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1491, 1492, + 1, 0, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1495, + 5, 508, 0, 0, 1495, 79, 1, 0, 0, 0, 1496, 1497, 5, 19, 0, 0, 1497, 1498, + 5, 460, 0, 0, 1498, 1499, 5, 465, 0, 0, 1499, 1500, 5, 521, 0, 0, 1500, + 81, 1, 0, 0, 0, 1501, 1502, 5, 397, 0, 0, 1502, 1505, 5, 452, 0, 0, 1503, + 1504, 5, 293, 0, 0, 1504, 1506, 3, 712, 356, 0, 1505, 1503, 1, 0, 0, 0, + 1505, 1506, 1, 0, 0, 0, 1506, 83, 1, 0, 0, 0, 1507, 1512, 3, 712, 356, + 0, 1508, 1509, 5, 505, 0, 0, 1509, 1511, 3, 712, 356, 0, 1510, 1508, 1, + 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1513, 1, + 0, 0, 0, 1513, 85, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1520, 3, 88, + 44, 0, 1516, 1517, 5, 505, 0, 0, 1517, 1519, 3, 88, 44, 0, 1518, 1516, + 1, 0, 0, 0, 1519, 1522, 1, 0, 0, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1521, + 1, 0, 0, 0, 1521, 87, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1523, 1552, 5, + 17, 0, 0, 1524, 1552, 5, 100, 0, 0, 1525, 1526, 5, 485, 0, 0, 1526, 1552, + 5, 499, 0, 0, 1527, 1528, 5, 485, 0, 0, 1528, 1529, 5, 507, 0, 0, 1529, + 1534, 5, 525, 0, 0, 1530, 1531, 5, 505, 0, 0, 1531, 1533, 5, 525, 0, 0, + 1532, 1530, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, + 1534, 1535, 1, 0, 0, 0, 1535, 1537, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, + 1537, 1552, 5, 508, 0, 0, 1538, 1539, 5, 486, 0, 0, 1539, 1552, 5, 499, + 0, 0, 1540, 1541, 5, 486, 0, 0, 1541, 1542, 5, 507, 0, 0, 1542, 1547, 5, + 525, 0, 0, 1543, 1544, 5, 505, 0, 0, 1544, 1546, 5, 525, 0, 0, 1545, 1543, + 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1548, + 1, 0, 0, 0, 1548, 1550, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1552, + 5, 508, 0, 0, 1551, 1523, 1, 0, 0, 0, 1551, 1524, 1, 0, 0, 0, 1551, 1525, + 1, 0, 0, 0, 1551, 1527, 1, 0, 0, 0, 1551, 1538, 1, 0, 0, 0, 1551, 1540, + 1, 0, 0, 0, 1552, 89, 1, 0, 0, 0, 1553, 1554, 5, 24, 0, 0, 1554, 1555, + 5, 23, 0, 0, 1555, 1557, 3, 712, 356, 0, 1556, 1558, 3, 92, 46, 0, 1557, + 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 1, 0, 0, 0, 1559, + 1561, 3, 94, 47, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, + 1600, 1, 0, 0, 0, 1562, 1563, 5, 11, 0, 0, 1563, 1564, 5, 23, 0, 0, 1564, + 1566, 3, 712, 356, 0, 1565, 1567, 3, 92, 46, 0, 1566, 1565, 1, 0, 0, 0, + 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1570, 3, 94, 47, + 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1600, 1, 0, 0, + 0, 1571, 1572, 5, 25, 0, 0, 1572, 1573, 5, 23, 0, 0, 1573, 1575, 3, 712, + 356, 0, 1574, 1576, 3, 94, 47, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, + 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 5, 76, 0, 0, 1578, 1580, 5, + 507, 0, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, + 1, 0, 0, 0, 1581, 1583, 3, 586, 293, 0, 1582, 1584, 5, 508, 0, 0, 1583, + 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1600, 1, 0, 0, 0, 1585, + 1586, 5, 26, 0, 0, 1586, 1587, 5, 23, 0, 0, 1587, 1589, 3, 712, 356, 0, + 1588, 1590, 3, 94, 47, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, + 0, 1590, 1600, 1, 0, 0, 0, 1591, 1592, 5, 23, 0, 0, 1592, 1594, 3, 712, + 356, 0, 1593, 1595, 3, 92, 46, 0, 1594, 1593, 1, 0, 0, 0, 1594, 1595, 1, + 0, 0, 0, 1595, 1597, 1, 0, 0, 0, 1596, 1598, 3, 94, 47, 0, 1597, 1596, + 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1600, 1, 0, 0, 0, 1599, 1553, + 1, 0, 0, 0, 1599, 1562, 1, 0, 0, 0, 1599, 1571, 1, 0, 0, 0, 1599, 1585, + 1, 0, 0, 0, 1599, 1591, 1, 0, 0, 0, 1600, 91, 1, 0, 0, 0, 1601, 1602, 5, + 46, 0, 0, 1602, 1606, 3, 712, 356, 0, 1603, 1604, 5, 45, 0, 0, 1604, 1606, + 3, 712, 356, 0, 1605, 1601, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1606, 93, + 1, 0, 0, 0, 1607, 1609, 5, 507, 0, 0, 1608, 1610, 3, 100, 50, 0, 1609, + 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, + 1613, 5, 508, 0, 0, 1612, 1614, 3, 96, 48, 0, 1613, 1612, 1, 0, 0, 0, 1613, + 1614, 1, 0, 0, 0, 1614, 1617, 1, 0, 0, 0, 1615, 1617, 3, 96, 48, 0, 1616, + 1607, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 95, 1, 0, 0, 0, 1618, 1625, + 3, 98, 49, 0, 1619, 1621, 5, 505, 0, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, + 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 3, 98, 49, 0, 1623, 1620, + 1, 0, 0, 0, 1624, 1627, 1, 0, 0, 0, 1625, 1623, 1, 0, 0, 0, 1625, 1626, + 1, 0, 0, 0, 1626, 97, 1, 0, 0, 0, 1627, 1625, 1, 0, 0, 0, 1628, 1629, 5, + 410, 0, 0, 1629, 1633, 5, 521, 0, 0, 1630, 1631, 5, 41, 0, 0, 1631, 1633, + 3, 114, 57, 0, 1632, 1628, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1633, 99, + 1, 0, 0, 0, 1634, 1639, 3, 102, 51, 0, 1635, 1636, 5, 505, 0, 0, 1636, + 1638, 3, 102, 51, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, + 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 101, 1, 0, 0, 0, 1641, + 1639, 1, 0, 0, 0, 1642, 1644, 3, 722, 361, 0, 1643, 1642, 1, 0, 0, 0, 1643, + 1644, 1, 0, 0, 0, 1644, 1648, 1, 0, 0, 0, 1645, 1647, 3, 724, 362, 0, 1646, + 1645, 1, 0, 0, 0, 1647, 1650, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1648, + 1649, 1, 0, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1648, 1, 0, 0, 0, 1651, + 1652, 3, 104, 52, 0, 1652, 1653, 5, 513, 0, 0, 1653, 1657, 3, 108, 54, + 0, 1654, 1656, 3, 106, 53, 0, 1655, 1654, 1, 0, 0, 0, 1656, 1659, 1, 0, + 0, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 103, 1, 0, + 0, 0, 1659, 1657, 1, 0, 0, 0, 1660, 1665, 5, 525, 0, 0, 1661, 1665, 5, + 527, 0, 0, 1662, 1665, 3, 734, 367, 0, 1663, 1665, 5, 38, 0, 0, 1664, 1660, + 1, 0, 0, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1663, + 1, 0, 0, 0, 1665, 105, 1, 0, 0, 0, 1666, 1669, 5, 7, 0, 0, 1667, 1668, + 5, 306, 0, 0, 1668, 1670, 5, 521, 0, 0, 1669, 1667, 1, 0, 0, 0, 1669, 1670, + 1, 0, 0, 0, 1670, 1700, 1, 0, 0, 0, 1671, 1672, 5, 291, 0, 0, 1672, 1675, + 5, 292, 0, 0, 1673, 1674, 5, 306, 0, 0, 1674, 1676, 5, 521, 0, 0, 1675, + 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1700, 1, 0, 0, 0, 1677, + 1680, 5, 298, 0, 0, 1678, 1679, 5, 306, 0, 0, 1679, 1681, 5, 521, 0, 0, + 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1700, 1, 0, 0, 0, + 1682, 1685, 5, 299, 0, 0, 1683, 1686, 3, 716, 358, 0, 1684, 1686, 3, 672, + 336, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1700, 1, + 0, 0, 0, 1687, 1690, 5, 305, 0, 0, 1688, 1689, 5, 306, 0, 0, 1689, 1691, + 5, 521, 0, 0, 1690, 1688, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1700, + 1, 0, 0, 0, 1692, 1697, 5, 314, 0, 0, 1693, 1695, 5, 484, 0, 0, 1694, 1693, + 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, + 3, 712, 356, 0, 1697, 1694, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1700, + 1, 0, 0, 0, 1699, 1666, 1, 0, 0, 0, 1699, 1671, 1, 0, 0, 0, 1699, 1677, + 1, 0, 0, 0, 1699, 1682, 1, 0, 0, 0, 1699, 1687, 1, 0, 0, 0, 1699, 1692, + 1, 0, 0, 0, 1700, 107, 1, 0, 0, 0, 1701, 1705, 5, 266, 0, 0, 1702, 1703, + 5, 507, 0, 0, 1703, 1704, 7, 5, 0, 0, 1704, 1706, 5, 508, 0, 0, 1705, 1702, + 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1738, 1, 0, 0, 0, 1707, 1738, + 5, 267, 0, 0, 1708, 1738, 5, 268, 0, 0, 1709, 1738, 5, 269, 0, 0, 1710, + 1738, 5, 270, 0, 0, 1711, 1738, 5, 271, 0, 0, 1712, 1738, 5, 272, 0, 0, + 1713, 1738, 5, 273, 0, 0, 1714, 1738, 5, 274, 0, 0, 1715, 1738, 5, 275, + 0, 0, 1716, 1738, 5, 276, 0, 0, 1717, 1738, 5, 277, 0, 0, 1718, 1719, 5, + 278, 0, 0, 1719, 1720, 5, 507, 0, 0, 1720, 1721, 3, 110, 55, 0, 1721, 1722, + 5, 508, 0, 0, 1722, 1738, 1, 0, 0, 0, 1723, 1724, 5, 23, 0, 0, 1724, 1725, + 5, 495, 0, 0, 1725, 1726, 5, 525, 0, 0, 1726, 1738, 5, 496, 0, 0, 1727, + 1728, 5, 279, 0, 0, 1728, 1738, 3, 712, 356, 0, 1729, 1730, 5, 28, 0, 0, + 1730, 1731, 5, 507, 0, 0, 1731, 1732, 3, 712, 356, 0, 1732, 1733, 5, 508, + 0, 0, 1733, 1738, 1, 0, 0, 0, 1734, 1735, 5, 13, 0, 0, 1735, 1738, 3, 712, + 356, 0, 1736, 1738, 3, 712, 356, 0, 1737, 1701, 1, 0, 0, 0, 1737, 1707, + 1, 0, 0, 0, 1737, 1708, 1, 0, 0, 0, 1737, 1709, 1, 0, 0, 0, 1737, 1710, + 1, 0, 0, 0, 1737, 1711, 1, 0, 0, 0, 1737, 1712, 1, 0, 0, 0, 1737, 1713, + 1, 0, 0, 0, 1737, 1714, 1, 0, 0, 0, 1737, 1715, 1, 0, 0, 0, 1737, 1716, + 1, 0, 0, 0, 1737, 1717, 1, 0, 0, 0, 1737, 1718, 1, 0, 0, 0, 1737, 1723, + 1, 0, 0, 0, 1737, 1727, 1, 0, 0, 0, 1737, 1729, 1, 0, 0, 0, 1737, 1734, + 1, 0, 0, 0, 1737, 1736, 1, 0, 0, 0, 1738, 109, 1, 0, 0, 0, 1739, 1740, + 7, 6, 0, 0, 1740, 111, 1, 0, 0, 0, 1741, 1745, 5, 266, 0, 0, 1742, 1743, + 5, 507, 0, 0, 1743, 1744, 7, 5, 0, 0, 1744, 1746, 5, 508, 0, 0, 1745, 1742, + 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1767, 1, 0, 0, 0, 1747, 1767, + 5, 267, 0, 0, 1748, 1767, 5, 268, 0, 0, 1749, 1767, 5, 269, 0, 0, 1750, + 1767, 5, 270, 0, 0, 1751, 1767, 5, 271, 0, 0, 1752, 1767, 5, 272, 0, 0, + 1753, 1767, 5, 273, 0, 0, 1754, 1767, 5, 274, 0, 0, 1755, 1767, 5, 275, + 0, 0, 1756, 1767, 5, 276, 0, 0, 1757, 1767, 5, 277, 0, 0, 1758, 1759, 5, + 279, 0, 0, 1759, 1767, 3, 712, 356, 0, 1760, 1761, 5, 28, 0, 0, 1761, 1762, + 5, 507, 0, 0, 1762, 1763, 3, 712, 356, 0, 1763, 1764, 5, 508, 0, 0, 1764, + 1767, 1, 0, 0, 0, 1765, 1767, 3, 712, 356, 0, 1766, 1741, 1, 0, 0, 0, 1766, + 1747, 1, 0, 0, 0, 1766, 1748, 1, 0, 0, 0, 1766, 1749, 1, 0, 0, 0, 1766, + 1750, 1, 0, 0, 0, 1766, 1751, 1, 0, 0, 0, 1766, 1752, 1, 0, 0, 0, 1766, + 1753, 1, 0, 0, 0, 1766, 1754, 1, 0, 0, 0, 1766, 1755, 1, 0, 0, 0, 1766, + 1756, 1, 0, 0, 0, 1766, 1757, 1, 0, 0, 0, 1766, 1758, 1, 0, 0, 0, 1766, + 1760, 1, 0, 0, 0, 1766, 1765, 1, 0, 0, 0, 1767, 113, 1, 0, 0, 0, 1768, + 1770, 5, 525, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, + 1771, 1, 0, 0, 0, 1771, 1772, 5, 507, 0, 0, 1772, 1773, 3, 116, 58, 0, + 1773, 1774, 5, 508, 0, 0, 1774, 115, 1, 0, 0, 0, 1775, 1780, 3, 118, 59, + 0, 1776, 1777, 5, 505, 0, 0, 1777, 1779, 3, 118, 59, 0, 1778, 1776, 1, + 0, 0, 0, 1779, 1782, 1, 0, 0, 0, 1780, 1778, 1, 0, 0, 0, 1780, 1781, 1, + 0, 0, 0, 1781, 117, 1, 0, 0, 0, 1782, 1780, 1, 0, 0, 0, 1783, 1785, 3, + 120, 60, 0, 1784, 1786, 7, 7, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, + 1, 0, 0, 0, 1786, 119, 1, 0, 0, 0, 1787, 1791, 5, 525, 0, 0, 1788, 1791, + 5, 527, 0, 0, 1789, 1791, 3, 734, 367, 0, 1790, 1787, 1, 0, 0, 0, 1790, + 1788, 1, 0, 0, 0, 1790, 1789, 1, 0, 0, 0, 1791, 121, 1, 0, 0, 0, 1792, + 1793, 5, 27, 0, 0, 1793, 1794, 3, 712, 356, 0, 1794, 1795, 5, 71, 0, 0, + 1795, 1796, 3, 712, 356, 0, 1796, 1797, 5, 430, 0, 0, 1797, 1799, 3, 712, + 356, 0, 1798, 1800, 3, 124, 62, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, + 1, 0, 0, 0, 1800, 1818, 1, 0, 0, 0, 1801, 1802, 5, 27, 0, 0, 1802, 1803, + 3, 712, 356, 0, 1803, 1804, 5, 507, 0, 0, 1804, 1805, 5, 71, 0, 0, 1805, + 1806, 3, 712, 356, 0, 1806, 1807, 5, 430, 0, 0, 1807, 1812, 3, 712, 356, + 0, 1808, 1809, 5, 505, 0, 0, 1809, 1811, 3, 126, 63, 0, 1810, 1808, 1, + 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, + 0, 0, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1816, 5, + 508, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1792, 1, 0, 0, 0, 1817, 1801, + 1, 0, 0, 0, 1818, 123, 1, 0, 0, 0, 1819, 1821, 3, 126, 63, 0, 1820, 1819, + 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, + 1, 0, 0, 0, 1823, 125, 1, 0, 0, 0, 1824, 1826, 5, 423, 0, 0, 1825, 1827, + 5, 513, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, + 1, 0, 0, 0, 1828, 1844, 7, 8, 0, 0, 1829, 1831, 5, 42, 0, 0, 1830, 1832, + 5, 513, 0, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, + 1, 0, 0, 0, 1833, 1844, 7, 9, 0, 0, 1834, 1836, 5, 51, 0, 0, 1835, 1837, + 5, 513, 0, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, + 1, 0, 0, 0, 1838, 1844, 7, 10, 0, 0, 1839, 1840, 5, 53, 0, 0, 1840, 1844, + 3, 128, 64, 0, 1841, 1842, 5, 410, 0, 0, 1842, 1844, 5, 521, 0, 0, 1843, + 1824, 1, 0, 0, 0, 1843, 1829, 1, 0, 0, 0, 1843, 1834, 1, 0, 0, 0, 1843, + 1839, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 127, 1, 0, 0, 0, 1845, + 1846, 7, 11, 0, 0, 1846, 129, 1, 0, 0, 0, 1847, 1848, 5, 47, 0, 0, 1848, + 1849, 5, 38, 0, 0, 1849, 1920, 3, 102, 51, 0, 1850, 1851, 5, 47, 0, 0, + 1851, 1852, 5, 39, 0, 0, 1852, 1920, 3, 102, 51, 0, 1853, 1854, 5, 20, + 0, 0, 1854, 1855, 5, 38, 0, 0, 1855, 1856, 3, 104, 52, 0, 1856, 1857, 5, + 430, 0, 0, 1857, 1858, 3, 104, 52, 0, 1858, 1920, 1, 0, 0, 0, 1859, 1860, + 5, 20, 0, 0, 1860, 1861, 5, 39, 0, 0, 1861, 1862, 3, 104, 52, 0, 1862, + 1863, 5, 430, 0, 0, 1863, 1864, 3, 104, 52, 0, 1864, 1920, 1, 0, 0, 0, + 1865, 1866, 5, 22, 0, 0, 1866, 1867, 5, 38, 0, 0, 1867, 1869, 3, 104, 52, + 0, 1868, 1870, 5, 513, 0, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, + 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1875, 3, 108, 54, 0, 1872, 1874, 3, + 106, 53, 0, 1873, 1872, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, + 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1920, 1, 0, 0, 0, 1877, 1875, + 1, 0, 0, 0, 1878, 1879, 5, 22, 0, 0, 1879, 1880, 5, 39, 0, 0, 1880, 1882, + 3, 104, 52, 0, 1881, 1883, 5, 513, 0, 0, 1882, 1881, 1, 0, 0, 0, 1882, + 1883, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1888, 3, 108, 54, 0, 1885, + 1887, 3, 106, 53, 0, 1886, 1885, 1, 0, 0, 0, 1887, 1890, 1, 0, 0, 0, 1888, + 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1920, 1, 0, 0, 0, 1890, + 1888, 1, 0, 0, 0, 1891, 1892, 5, 19, 0, 0, 1892, 1893, 5, 38, 0, 0, 1893, + 1920, 3, 104, 52, 0, 1894, 1895, 5, 19, 0, 0, 1895, 1896, 5, 39, 0, 0, + 1896, 1920, 3, 104, 52, 0, 1897, 1898, 5, 48, 0, 0, 1898, 1899, 5, 50, + 0, 0, 1899, 1920, 5, 521, 0, 0, 1900, 1901, 5, 48, 0, 0, 1901, 1902, 5, + 410, 0, 0, 1902, 1920, 5, 521, 0, 0, 1903, 1904, 5, 48, 0, 0, 1904, 1905, + 5, 43, 0, 0, 1905, 1920, 5, 42, 0, 0, 1906, 1907, 5, 48, 0, 0, 1907, 1908, + 5, 49, 0, 0, 1908, 1909, 5, 507, 0, 0, 1909, 1910, 5, 523, 0, 0, 1910, + 1911, 5, 505, 0, 0, 1911, 1912, 5, 523, 0, 0, 1912, 1920, 5, 508, 0, 0, + 1913, 1914, 5, 47, 0, 0, 1914, 1915, 5, 41, 0, 0, 1915, 1920, 3, 114, 57, + 0, 1916, 1917, 5, 19, 0, 0, 1917, 1918, 5, 41, 0, 0, 1918, 1920, 5, 525, + 0, 0, 1919, 1847, 1, 0, 0, 0, 1919, 1850, 1, 0, 0, 0, 1919, 1853, 1, 0, + 0, 0, 1919, 1859, 1, 0, 0, 0, 1919, 1865, 1, 0, 0, 0, 1919, 1878, 1, 0, + 0, 0, 1919, 1891, 1, 0, 0, 0, 1919, 1894, 1, 0, 0, 0, 1919, 1897, 1, 0, + 0, 0, 1919, 1900, 1, 0, 0, 0, 1919, 1903, 1, 0, 0, 0, 1919, 1906, 1, 0, + 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1916, 1, 0, 0, 0, 1920, 131, 1, 0, + 0, 0, 1921, 1922, 5, 48, 0, 0, 1922, 1923, 5, 53, 0, 0, 1923, 1934, 3, + 128, 64, 0, 1924, 1925, 5, 48, 0, 0, 1925, 1926, 5, 42, 0, 0, 1926, 1934, + 7, 9, 0, 0, 1927, 1928, 5, 48, 0, 0, 1928, 1929, 5, 51, 0, 0, 1929, 1934, + 7, 10, 0, 0, 1930, 1931, 5, 48, 0, 0, 1931, 1932, 5, 410, 0, 0, 1932, 1934, + 5, 521, 0, 0, 1933, 1921, 1, 0, 0, 0, 1933, 1924, 1, 0, 0, 0, 1933, 1927, + 1, 0, 0, 0, 1933, 1930, 1, 0, 0, 0, 1934, 133, 1, 0, 0, 0, 1935, 1936, + 5, 47, 0, 0, 1936, 1937, 5, 424, 0, 0, 1937, 1940, 5, 525, 0, 0, 1938, + 1939, 5, 190, 0, 0, 1939, 1941, 5, 521, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, + 1941, 1, 0, 0, 0, 1941, 1954, 1, 0, 0, 0, 1942, 1943, 5, 20, 0, 0, 1943, + 1944, 5, 424, 0, 0, 1944, 1945, 5, 525, 0, 0, 1945, 1946, 5, 430, 0, 0, + 1946, 1954, 5, 525, 0, 0, 1947, 1948, 5, 19, 0, 0, 1948, 1949, 5, 424, + 0, 0, 1949, 1954, 5, 525, 0, 0, 1950, 1951, 5, 48, 0, 0, 1951, 1952, 5, + 410, 0, 0, 1952, 1954, 5, 521, 0, 0, 1953, 1935, 1, 0, 0, 0, 1953, 1942, + 1, 0, 0, 0, 1953, 1947, 1, 0, 0, 0, 1953, 1950, 1, 0, 0, 0, 1954, 135, + 1, 0, 0, 0, 1955, 1956, 5, 47, 0, 0, 1956, 1957, 5, 33, 0, 0, 1957, 1960, + 3, 712, 356, 0, 1958, 1959, 5, 49, 0, 0, 1959, 1961, 5, 523, 0, 0, 1960, + 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1969, 1, 0, 0, 0, 1962, + 1963, 5, 19, 0, 0, 1963, 1964, 5, 33, 0, 0, 1964, 1969, 3, 712, 356, 0, + 1965, 1966, 5, 48, 0, 0, 1966, 1967, 5, 410, 0, 0, 1967, 1969, 5, 521, + 0, 0, 1968, 1955, 1, 0, 0, 0, 1968, 1962, 1, 0, 0, 0, 1968, 1965, 1, 0, + 0, 0, 1969, 137, 1, 0, 0, 0, 1970, 1971, 5, 29, 0, 0, 1971, 1973, 5, 525, + 0, 0, 1972, 1974, 3, 140, 70, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, + 0, 0, 0, 1974, 139, 1, 0, 0, 0, 1975, 1977, 3, 142, 71, 0, 1976, 1975, + 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1976, 1, 0, 0, 0, 1978, 1979, + 1, 0, 0, 0, 1979, 141, 1, 0, 0, 0, 1980, 1981, 5, 410, 0, 0, 1981, 1985, + 5, 521, 0, 0, 1982, 1983, 5, 221, 0, 0, 1983, 1985, 5, 521, 0, 0, 1984, + 1980, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1985, 143, 1, 0, 0, 0, 1986, + 1987, 5, 28, 0, 0, 1987, 1988, 3, 712, 356, 0, 1988, 1989, 5, 507, 0, 0, + 1989, 1990, 3, 146, 73, 0, 1990, 1992, 5, 508, 0, 0, 1991, 1993, 3, 152, + 76, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 145, 1, 0, + 0, 0, 1994, 1999, 3, 148, 74, 0, 1995, 1996, 5, 505, 0, 0, 1996, 1998, + 3, 148, 74, 0, 1997, 1995, 1, 0, 0, 0, 1998, 2001, 1, 0, 0, 0, 1999, 1997, + 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 147, 1, 0, 0, 0, 2001, 1999, + 1, 0, 0, 0, 2002, 2004, 3, 722, 361, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, + 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2010, 3, 150, 75, 0, 2006, 2008, + 5, 190, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, + 1, 0, 0, 0, 2009, 2011, 5, 521, 0, 0, 2010, 2007, 1, 0, 0, 0, 2010, 2011, + 1, 0, 0, 0, 2011, 149, 1, 0, 0, 0, 2012, 2030, 5, 525, 0, 0, 2013, 2030, + 5, 527, 0, 0, 2014, 2030, 3, 734, 367, 0, 2015, 2030, 5, 316, 0, 0, 2016, + 2030, 5, 317, 0, 0, 2017, 2030, 5, 351, 0, 0, 2018, 2030, 5, 350, 0, 0, + 2019, 2030, 5, 322, 0, 0, 2020, 2030, 5, 343, 0, 0, 2021, 2030, 5, 344, + 0, 0, 2022, 2030, 5, 345, 0, 0, 2023, 2030, 5, 347, 0, 0, 2024, 2030, 5, + 26, 0, 0, 2025, 2030, 5, 352, 0, 0, 2026, 2030, 5, 374, 0, 0, 2027, 2030, + 5, 488, 0, 0, 2028, 2030, 5, 421, 0, 0, 2029, 2012, 1, 0, 0, 0, 2029, 2013, + 1, 0, 0, 0, 2029, 2014, 1, 0, 0, 0, 2029, 2015, 1, 0, 0, 0, 2029, 2016, + 1, 0, 0, 0, 2029, 2017, 1, 0, 0, 0, 2029, 2018, 1, 0, 0, 0, 2029, 2019, + 1, 0, 0, 0, 2029, 2020, 1, 0, 0, 0, 2029, 2021, 1, 0, 0, 0, 2029, 2022, + 1, 0, 0, 0, 2029, 2023, 1, 0, 0, 0, 2029, 2024, 1, 0, 0, 0, 2029, 2025, + 1, 0, 0, 0, 2029, 2026, 1, 0, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, + 1, 0, 0, 0, 2030, 151, 1, 0, 0, 0, 2031, 2033, 3, 154, 77, 0, 2032, 2031, + 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, + 1, 0, 0, 0, 2035, 153, 1, 0, 0, 0, 2036, 2037, 5, 410, 0, 0, 2037, 2038, + 5, 521, 0, 0, 2038, 155, 1, 0, 0, 0, 2039, 2040, 5, 228, 0, 0, 2040, 2041, + 5, 229, 0, 0, 2041, 2043, 3, 712, 356, 0, 2042, 2044, 3, 158, 79, 0, 2043, + 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2046, 1, 0, 0, 0, 2045, + 2047, 3, 162, 81, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, + 157, 1, 0, 0, 0, 2048, 2050, 3, 160, 80, 0, 2049, 2048, 1, 0, 0, 0, 2050, + 2051, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, + 159, 1, 0, 0, 0, 2053, 2054, 5, 365, 0, 0, 2054, 2055, 5, 464, 0, 0, 2055, + 2059, 5, 521, 0, 0, 2056, 2057, 5, 410, 0, 0, 2057, 2059, 5, 521, 0, 0, + 2058, 2053, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2059, 161, 1, 0, 0, 0, + 2060, 2061, 5, 507, 0, 0, 2061, 2066, 3, 164, 82, 0, 2062, 2063, 5, 505, + 0, 0, 2063, 2065, 3, 164, 82, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2068, 1, + 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2069, 1, + 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 2070, 5, 508, 0, 0, 2070, 163, 1, + 0, 0, 0, 2071, 2072, 5, 228, 0, 0, 2072, 2073, 3, 166, 83, 0, 2073, 2074, + 5, 71, 0, 0, 2074, 2075, 5, 336, 0, 0, 2075, 2076, 5, 521, 0, 0, 2076, + 165, 1, 0, 0, 0, 2077, 2081, 5, 525, 0, 0, 2078, 2081, 5, 527, 0, 0, 2079, + 2081, 3, 734, 367, 0, 2080, 2077, 1, 0, 0, 0, 2080, 2078, 1, 0, 0, 0, 2080, + 2079, 1, 0, 0, 0, 2081, 167, 1, 0, 0, 0, 2082, 2083, 5, 333, 0, 0, 2083, + 2084, 5, 421, 0, 0, 2084, 2087, 3, 712, 356, 0, 2085, 2086, 5, 410, 0, + 0, 2086, 2088, 5, 521, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, + 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 5, 34, 0, 0, 2090, 2103, 7, 12, + 0, 0, 2091, 2092, 5, 411, 0, 0, 2092, 2093, 5, 507, 0, 0, 2093, 2098, 3, + 170, 85, 0, 2094, 2095, 5, 505, 0, 0, 2095, 2097, 3, 170, 85, 0, 2096, + 2094, 1, 0, 0, 0, 2097, 2100, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2098, + 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2101, + 2102, 5, 508, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, + 2104, 1, 0, 0, 0, 2104, 169, 1, 0, 0, 0, 2105, 2106, 5, 521, 0, 0, 2106, + 2107, 5, 76, 0, 0, 2107, 2108, 5, 521, 0, 0, 2108, 171, 1, 0, 0, 0, 2109, + 2110, 5, 302, 0, 0, 2110, 2111, 5, 304, 0, 0, 2111, 2112, 3, 712, 356, + 0, 2112, 2113, 5, 433, 0, 0, 2113, 2114, 3, 712, 356, 0, 2114, 2115, 3, + 174, 87, 0, 2115, 173, 1, 0, 0, 0, 2116, 2117, 5, 311, 0, 0, 2117, 2118, + 3, 672, 336, 0, 2118, 2119, 5, 303, 0, 0, 2119, 2120, 5, 521, 0, 0, 2120, + 2144, 1, 0, 0, 0, 2121, 2122, 5, 305, 0, 0, 2122, 2123, 3, 178, 89, 0, + 2123, 2124, 5, 303, 0, 0, 2124, 2125, 5, 521, 0, 0, 2125, 2144, 1, 0, 0, + 0, 2126, 2127, 5, 298, 0, 0, 2127, 2128, 3, 180, 90, 0, 2128, 2129, 5, + 303, 0, 0, 2129, 2130, 5, 521, 0, 0, 2130, 2144, 1, 0, 0, 0, 2131, 2132, + 5, 308, 0, 0, 2132, 2133, 3, 178, 89, 0, 2133, 2134, 3, 176, 88, 0, 2134, + 2135, 5, 303, 0, 0, 2135, 2136, 5, 521, 0, 0, 2136, 2144, 1, 0, 0, 0, 2137, + 2138, 5, 309, 0, 0, 2138, 2139, 3, 178, 89, 0, 2139, 2140, 5, 521, 0, 0, + 2140, 2141, 5, 303, 0, 0, 2141, 2142, 5, 521, 0, 0, 2142, 2144, 1, 0, 0, + 0, 2143, 2116, 1, 0, 0, 0, 2143, 2121, 1, 0, 0, 0, 2143, 2126, 1, 0, 0, + 0, 2143, 2131, 1, 0, 0, 0, 2143, 2137, 1, 0, 0, 0, 2144, 175, 1, 0, 0, + 0, 2145, 2146, 5, 294, 0, 0, 2146, 2147, 3, 716, 358, 0, 2147, 2148, 5, + 289, 0, 0, 2148, 2149, 3, 716, 358, 0, 2149, 2159, 1, 0, 0, 0, 2150, 2151, + 5, 495, 0, 0, 2151, 2159, 3, 716, 358, 0, 2152, 2153, 5, 492, 0, 0, 2153, + 2159, 3, 716, 358, 0, 2154, 2155, 5, 496, 0, 0, 2155, 2159, 3, 716, 358, + 0, 2156, 2157, 5, 493, 0, 0, 2157, 2159, 3, 716, 358, 0, 2158, 2145, 1, + 0, 0, 0, 2158, 2150, 1, 0, 0, 0, 2158, 2152, 1, 0, 0, 0, 2158, 2154, 1, + 0, 0, 0, 2158, 2156, 1, 0, 0, 0, 2159, 177, 1, 0, 0, 0, 2160, 2165, 5, + 525, 0, 0, 2161, 2162, 5, 500, 0, 0, 2162, 2164, 5, 525, 0, 0, 2163, 2161, + 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, + 1, 0, 0, 0, 2166, 179, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2173, + 3, 178, 89, 0, 2169, 2170, 5, 505, 0, 0, 2170, 2172, 3, 178, 89, 0, 2171, + 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, + 2174, 1, 0, 0, 0, 2174, 181, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, + 2177, 5, 30, 0, 0, 2177, 2178, 3, 712, 356, 0, 2178, 2180, 5, 507, 0, 0, + 2179, 2181, 3, 194, 97, 0, 2180, 2179, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, + 0, 2181, 2182, 1, 0, 0, 0, 2182, 2184, 5, 508, 0, 0, 2183, 2185, 3, 200, + 100, 0, 2184, 2183, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 1, + 0, 0, 0, 2186, 2188, 3, 202, 101, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, + 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 5, 96, 0, 0, 2190, 2191, + 3, 206, 103, 0, 2191, 2193, 5, 83, 0, 0, 2192, 2194, 5, 504, 0, 0, 2193, + 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, + 2197, 5, 500, 0, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, + 183, 1, 0, 0, 0, 2198, 2199, 5, 114, 0, 0, 2199, 2200, 5, 116, 0, 0, 2200, + 2201, 3, 712, 356, 0, 2201, 2203, 5, 507, 0, 0, 2202, 2204, 3, 186, 93, + 0, 2203, 2202, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, + 0, 2205, 2207, 5, 508, 0, 0, 2206, 2208, 3, 190, 95, 0, 2207, 2206, 1, + 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2211, 3, + 192, 96, 0, 2210, 2209, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2212, + 1, 0, 0, 0, 2212, 2213, 5, 76, 0, 0, 2213, 2215, 5, 522, 0, 0, 2214, 2216, + 5, 504, 0, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 185, + 1, 0, 0, 0, 2217, 2222, 3, 188, 94, 0, 2218, 2219, 5, 505, 0, 0, 2219, + 2221, 3, 188, 94, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, + 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 187, 1, 0, 0, 0, 2224, + 2222, 1, 0, 0, 0, 2225, 2226, 3, 198, 99, 0, 2226, 2227, 5, 513, 0, 0, + 2227, 2229, 3, 108, 54, 0, 2228, 2230, 5, 7, 0, 0, 2229, 2228, 1, 0, 0, + 0, 2229, 2230, 1, 0, 0, 0, 2230, 189, 1, 0, 0, 0, 2231, 2232, 5, 77, 0, + 0, 2232, 2233, 3, 108, 54, 0, 2233, 191, 1, 0, 0, 0, 2234, 2235, 5, 371, + 0, 0, 2235, 2236, 5, 76, 0, 0, 2236, 2237, 5, 521, 0, 0, 2237, 2238, 5, + 293, 0, 0, 2238, 2239, 5, 521, 0, 0, 2239, 193, 1, 0, 0, 0, 2240, 2245, + 3, 196, 98, 0, 2241, 2242, 5, 505, 0, 0, 2242, 2244, 3, 196, 98, 0, 2243, + 2241, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, + 2246, 1, 0, 0, 0, 2246, 195, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, + 2251, 3, 198, 99, 0, 2249, 2251, 5, 524, 0, 0, 2250, 2248, 1, 0, 0, 0, + 2250, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 513, 0, + 0, 2253, 2254, 3, 108, 54, 0, 2254, 197, 1, 0, 0, 0, 2255, 2259, 5, 525, + 0, 0, 2256, 2259, 5, 527, 0, 0, 2257, 2259, 3, 734, 367, 0, 2258, 2255, + 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2257, 1, 0, 0, 0, 2259, 199, + 1, 0, 0, 0, 2260, 2261, 5, 77, 0, 0, 2261, 2264, 3, 108, 54, 0, 2262, 2263, + 5, 76, 0, 0, 2263, 2265, 5, 524, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, + 1, 0, 0, 0, 2265, 201, 1, 0, 0, 0, 2266, 2268, 3, 204, 102, 0, 2267, 2266, + 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, + 1, 0, 0, 0, 2270, 203, 1, 0, 0, 0, 2271, 2272, 5, 221, 0, 0, 2272, 2276, + 5, 521, 0, 0, 2273, 2274, 5, 410, 0, 0, 2274, 2276, 5, 521, 0, 0, 2275, + 2271, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2276, 205, 1, 0, 0, 0, 2277, + 2279, 3, 208, 104, 0, 2278, 2277, 1, 0, 0, 0, 2279, 2282, 1, 0, 0, 0, 2280, + 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 207, 1, 0, 0, 0, 2282, + 2280, 1, 0, 0, 0, 2283, 2285, 3, 724, 362, 0, 2284, 2283, 1, 0, 0, 0, 2285, + 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, + 2289, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2291, 3, 210, 105, 0, 2290, + 2292, 5, 504, 0, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, + 2614, 1, 0, 0, 0, 2293, 2295, 3, 724, 362, 0, 2294, 2293, 1, 0, 0, 0, 2295, + 2298, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, + 2299, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2301, 3, 212, 106, 0, 2300, + 2302, 5, 504, 0, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, + 2614, 1, 0, 0, 0, 2303, 2305, 3, 724, 362, 0, 2304, 2303, 1, 0, 0, 0, 2305, + 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, + 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2311, 3, 320, 160, 0, 2310, + 2312, 5, 504, 0, 0, 2311, 2310, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, + 2614, 1, 0, 0, 0, 2313, 2315, 3, 724, 362, 0, 2314, 2313, 1, 0, 0, 0, 2315, + 2318, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, + 2319, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2321, 3, 214, 107, 0, 2320, + 2322, 5, 504, 0, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, + 2614, 1, 0, 0, 0, 2323, 2325, 3, 724, 362, 0, 2324, 2323, 1, 0, 0, 0, 2325, + 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, + 2329, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2331, 3, 216, 108, 0, 2330, + 2332, 5, 504, 0, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, + 2614, 1, 0, 0, 0, 2333, 2335, 3, 724, 362, 0, 2334, 2333, 1, 0, 0, 0, 2335, + 2338, 1, 0, 0, 0, 2336, 2334, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, + 2339, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2341, 3, 220, 110, 0, 2340, + 2342, 5, 504, 0, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, + 2614, 1, 0, 0, 0, 2343, 2345, 3, 724, 362, 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, 2351, 3, 222, 111, 0, 2350, + 2352, 5, 504, 0, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, + 2614, 1, 0, 0, 0, 2353, 2355, 3, 724, 362, 0, 2354, 2353, 1, 0, 0, 0, 2355, + 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, + 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2361, 3, 224, 112, 0, 2360, + 2362, 5, 504, 0, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, + 2614, 1, 0, 0, 0, 2363, 2365, 3, 724, 362, 0, 2364, 2363, 1, 0, 0, 0, 2365, + 2368, 1, 0, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, + 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2371, 3, 226, 113, 0, 2370, + 2372, 5, 504, 0, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, + 2614, 1, 0, 0, 0, 2373, 2375, 3, 724, 362, 0, 2374, 2373, 1, 0, 0, 0, 2375, + 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, + 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2381, 3, 232, 116, 0, 2380, + 2382, 5, 504, 0, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, + 2614, 1, 0, 0, 0, 2383, 2385, 3, 724, 362, 0, 2384, 2383, 1, 0, 0, 0, 2385, + 2388, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, + 2389, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2391, 3, 234, 117, 0, 2390, + 2392, 5, 504, 0, 0, 2391, 2390, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, + 2614, 1, 0, 0, 0, 2393, 2395, 3, 724, 362, 0, 2394, 2393, 1, 0, 0, 0, 2395, + 2398, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, + 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2401, 3, 236, 118, 0, 2400, + 2402, 5, 504, 0, 0, 2401, 2400, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, + 2614, 1, 0, 0, 0, 2403, 2405, 3, 724, 362, 0, 2404, 2403, 1, 0, 0, 0, 2405, + 2408, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, + 2409, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2411, 3, 238, 119, 0, 2410, + 2412, 5, 504, 0, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, + 2614, 1, 0, 0, 0, 2413, 2415, 3, 724, 362, 0, 2414, 2413, 1, 0, 0, 0, 2415, + 2418, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, + 2419, 1, 0, 0, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2421, 3, 240, 120, 0, 2420, + 2422, 5, 504, 0, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, + 2614, 1, 0, 0, 0, 2423, 2425, 3, 724, 362, 0, 2424, 2423, 1, 0, 0, 0, 2425, + 2428, 1, 0, 0, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, + 2429, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2431, 3, 242, 121, 0, 2430, + 2432, 5, 504, 0, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, + 2614, 1, 0, 0, 0, 2433, 2435, 3, 724, 362, 0, 2434, 2433, 1, 0, 0, 0, 2435, + 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, + 2439, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2441, 3, 244, 122, 0, 2440, + 2442, 5, 504, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, + 2614, 1, 0, 0, 0, 2443, 2445, 3, 724, 362, 0, 2444, 2443, 1, 0, 0, 0, 2445, + 2448, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, + 2449, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2451, 3, 246, 123, 0, 2450, + 2452, 5, 504, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, + 2614, 1, 0, 0, 0, 2453, 2455, 3, 724, 362, 0, 2454, 2453, 1, 0, 0, 0, 2455, + 2458, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, + 2459, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2459, 2461, 3, 258, 129, 0, 2460, + 2462, 5, 504, 0, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, + 2614, 1, 0, 0, 0, 2463, 2465, 3, 724, 362, 0, 2464, 2463, 1, 0, 0, 0, 2465, + 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, + 2469, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2471, 3, 260, 130, 0, 2470, + 2472, 5, 504, 0, 0, 2471, 2470, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, + 2614, 1, 0, 0, 0, 2473, 2475, 3, 724, 362, 0, 2474, 2473, 1, 0, 0, 0, 2475, + 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, + 2479, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2481, 3, 262, 131, 0, 2480, + 2482, 5, 504, 0, 0, 2481, 2480, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, + 2614, 1, 0, 0, 0, 2483, 2485, 3, 724, 362, 0, 2484, 2483, 1, 0, 0, 0, 2485, + 2488, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, + 2489, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2491, 3, 264, 132, 0, 2490, + 2492, 5, 504, 0, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, + 2614, 1, 0, 0, 0, 2493, 2495, 3, 724, 362, 0, 2494, 2493, 1, 0, 0, 0, 2495, + 2498, 1, 0, 0, 0, 2496, 2494, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, + 2499, 1, 0, 0, 0, 2498, 2496, 1, 0, 0, 0, 2499, 2501, 3, 270, 135, 0, 2500, + 2502, 5, 504, 0, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, + 2614, 1, 0, 0, 0, 2503, 2505, 3, 724, 362, 0, 2504, 2503, 1, 0, 0, 0, 2505, + 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, + 2509, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2511, 3, 276, 138, 0, 2510, + 2512, 5, 504, 0, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, + 2614, 1, 0, 0, 0, 2513, 2515, 3, 724, 362, 0, 2514, 2513, 1, 0, 0, 0, 2515, + 2518, 1, 0, 0, 0, 2516, 2514, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, + 2519, 1, 0, 0, 0, 2518, 2516, 1, 0, 0, 0, 2519, 2521, 3, 278, 139, 0, 2520, + 2522, 5, 504, 0, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, + 2614, 1, 0, 0, 0, 2523, 2525, 3, 724, 362, 0, 2524, 2523, 1, 0, 0, 0, 2525, + 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, + 2529, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2531, 3, 280, 140, 0, 2530, + 2532, 5, 504, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, + 2614, 1, 0, 0, 0, 2533, 2535, 3, 724, 362, 0, 2534, 2533, 1, 0, 0, 0, 2535, + 2538, 1, 0, 0, 0, 2536, 2534, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, + 2539, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2541, 3, 282, 141, 0, 2540, + 2542, 5, 504, 0, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, + 2614, 1, 0, 0, 0, 2543, 2545, 3, 724, 362, 0, 2544, 2543, 1, 0, 0, 0, 2545, + 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, + 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2551, 3, 308, 154, 0, 2550, + 2552, 5, 504, 0, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, + 2614, 1, 0, 0, 0, 2553, 2555, 3, 724, 362, 0, 2554, 2553, 1, 0, 0, 0, 2555, + 2558, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, + 2559, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2561, 3, 316, 158, 0, 2560, + 2562, 5, 504, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, + 2614, 1, 0, 0, 0, 2563, 2565, 3, 724, 362, 0, 2564, 2563, 1, 0, 0, 0, 2565, + 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, + 2569, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2571, 3, 322, 161, 0, 2570, + 2572, 5, 504, 0, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, + 2614, 1, 0, 0, 0, 2573, 2575, 3, 724, 362, 0, 2574, 2573, 1, 0, 0, 0, 2575, + 2578, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, + 2579, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2581, 3, 324, 162, 0, 2580, + 2582, 5, 504, 0, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, + 2614, 1, 0, 0, 0, 2583, 2585, 3, 724, 362, 0, 2584, 2583, 1, 0, 0, 0, 2585, + 2588, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, + 2589, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2589, 2591, 3, 284, 142, 0, 2590, + 2592, 5, 504, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, + 2614, 1, 0, 0, 0, 2593, 2595, 3, 724, 362, 0, 2594, 2593, 1, 0, 0, 0, 2595, + 2598, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, + 2599, 1, 0, 0, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2601, 3, 286, 143, 0, 2600, + 2602, 5, 504, 0, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, + 2614, 1, 0, 0, 0, 2603, 2605, 3, 724, 362, 0, 2604, 2603, 1, 0, 0, 0, 2605, + 2608, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2606, 2607, 1, 0, 0, 0, 2607, + 2609, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2611, 3, 304, 152, 0, 2610, + 2612, 5, 504, 0, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, + 2614, 1, 0, 0, 0, 2613, 2286, 1, 0, 0, 0, 2613, 2296, 1, 0, 0, 0, 2613, + 2306, 1, 0, 0, 0, 2613, 2316, 1, 0, 0, 0, 2613, 2326, 1, 0, 0, 0, 2613, + 2336, 1, 0, 0, 0, 2613, 2346, 1, 0, 0, 0, 2613, 2356, 1, 0, 0, 0, 2613, + 2366, 1, 0, 0, 0, 2613, 2376, 1, 0, 0, 0, 2613, 2386, 1, 0, 0, 0, 2613, + 2396, 1, 0, 0, 0, 2613, 2406, 1, 0, 0, 0, 2613, 2416, 1, 0, 0, 0, 2613, + 2426, 1, 0, 0, 0, 2613, 2436, 1, 0, 0, 0, 2613, 2446, 1, 0, 0, 0, 2613, + 2456, 1, 0, 0, 0, 2613, 2466, 1, 0, 0, 0, 2613, 2476, 1, 0, 0, 0, 2613, + 2486, 1, 0, 0, 0, 2613, 2496, 1, 0, 0, 0, 2613, 2506, 1, 0, 0, 0, 2613, + 2516, 1, 0, 0, 0, 2613, 2526, 1, 0, 0, 0, 2613, 2536, 1, 0, 0, 0, 2613, + 2546, 1, 0, 0, 0, 2613, 2556, 1, 0, 0, 0, 2613, 2566, 1, 0, 0, 0, 2613, + 2576, 1, 0, 0, 0, 2613, 2586, 1, 0, 0, 0, 2613, 2596, 1, 0, 0, 0, 2613, + 2606, 1, 0, 0, 0, 2614, 209, 1, 0, 0, 0, 2615, 2616, 5, 97, 0, 0, 2616, + 2617, 5, 524, 0, 0, 2617, 2620, 3, 108, 54, 0, 2618, 2619, 5, 494, 0, 0, + 2619, 2621, 3, 672, 336, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, + 0, 2621, 211, 1, 0, 0, 0, 2622, 2625, 5, 48, 0, 0, 2623, 2626, 5, 524, + 0, 0, 2624, 2626, 3, 218, 109, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, + 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 5, 494, 0, 0, 2628, 2629, + 3, 672, 336, 0, 2629, 213, 1, 0, 0, 0, 2630, 2631, 5, 524, 0, 0, 2631, + 2633, 5, 494, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, + 2634, 1, 0, 0, 0, 2634, 2635, 5, 17, 0, 0, 2635, 2641, 3, 112, 56, 0, 2636, + 2638, 5, 507, 0, 0, 2637, 2639, 3, 326, 163, 0, 2638, 2637, 1, 0, 0, 0, + 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 5, 508, 0, + 0, 2641, 2636, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, + 0, 2643, 2645, 3, 230, 115, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, + 0, 0, 2645, 215, 1, 0, 0, 0, 2646, 2647, 5, 98, 0, 0, 2647, 2653, 5, 524, + 0, 0, 2648, 2650, 5, 507, 0, 0, 2649, 2651, 3, 326, 163, 0, 2650, 2649, + 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, + 5, 508, 0, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 217, + 1, 0, 0, 0, 2655, 2661, 5, 524, 0, 0, 2656, 2659, 7, 13, 0, 0, 2657, 2660, + 5, 525, 0, 0, 2658, 2660, 3, 712, 356, 0, 2659, 2657, 1, 0, 0, 0, 2659, + 2658, 1, 0, 0, 0, 2660, 2662, 1, 0, 0, 0, 2661, 2656, 1, 0, 0, 0, 2662, + 2663, 1, 0, 0, 0, 2663, 2661, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, + 219, 1, 0, 0, 0, 2665, 2666, 5, 101, 0, 0, 2666, 2669, 5, 524, 0, 0, 2667, + 2668, 5, 139, 0, 0, 2668, 2670, 5, 120, 0, 0, 2669, 2667, 1, 0, 0, 0, 2669, + 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2673, 5, 398, 0, 0, 2672, + 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, + 2676, 3, 230, 115, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, + 221, 1, 0, 0, 0, 2677, 2678, 5, 100, 0, 0, 2678, 2680, 5, 524, 0, 0, 2679, + 2681, 3, 230, 115, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, + 223, 1, 0, 0, 0, 2682, 2683, 5, 102, 0, 0, 2683, 2685, 5, 524, 0, 0, 2684, + 2686, 5, 398, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, + 225, 1, 0, 0, 0, 2687, 2688, 5, 99, 0, 0, 2688, 2689, 5, 524, 0, 0, 2689, + 2690, 5, 71, 0, 0, 2690, 2696, 3, 228, 114, 0, 2691, 2694, 5, 72, 0, 0, + 2692, 2695, 3, 358, 179, 0, 2693, 2695, 3, 672, 336, 0, 2694, 2692, 1, + 0, 0, 0, 2694, 2693, 1, 0, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2691, 1, + 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2707, 1, 0, 0, 0, 2698, 2699, 5, + 10, 0, 0, 2699, 2704, 3, 356, 178, 0, 2700, 2701, 5, 505, 0, 0, 2701, 2703, + 3, 356, 178, 0, 2702, 2700, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, + 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2708, 1, 0, 0, 0, 2706, 2704, + 1, 0, 0, 0, 2707, 2698, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2711, + 1, 0, 0, 0, 2709, 2710, 5, 75, 0, 0, 2710, 2712, 3, 672, 336, 0, 2711, + 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2715, 1, 0, 0, 0, 2713, + 2714, 5, 74, 0, 0, 2714, 2716, 3, 672, 336, 0, 2715, 2713, 1, 0, 0, 0, + 2715, 2716, 1, 0, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2719, 3, 230, 115, + 0, 2718, 2717, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 227, 1, 0, 0, + 0, 2720, 2731, 3, 712, 356, 0, 2721, 2722, 5, 524, 0, 0, 2722, 2723, 5, + 500, 0, 0, 2723, 2731, 3, 712, 356, 0, 2724, 2725, 5, 507, 0, 0, 2725, + 2726, 3, 586, 293, 0, 2726, 2727, 5, 508, 0, 0, 2727, 2731, 1, 0, 0, 0, + 2728, 2729, 5, 357, 0, 0, 2729, 2731, 5, 521, 0, 0, 2730, 2720, 1, 0, 0, + 0, 2730, 2721, 1, 0, 0, 0, 2730, 2724, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, + 0, 2731, 229, 1, 0, 0, 0, 2732, 2733, 5, 93, 0, 0, 2733, 2734, 5, 306, + 0, 0, 2734, 2753, 5, 108, 0, 0, 2735, 2736, 5, 93, 0, 0, 2736, 2737, 5, + 306, 0, 0, 2737, 2753, 5, 102, 0, 0, 2738, 2739, 5, 93, 0, 0, 2739, 2740, + 5, 306, 0, 0, 2740, 2741, 5, 509, 0, 0, 2741, 2742, 3, 206, 103, 0, 2742, + 2743, 5, 510, 0, 0, 2743, 2753, 1, 0, 0, 0, 2744, 2745, 5, 93, 0, 0, 2745, + 2746, 5, 306, 0, 0, 2746, 2747, 5, 439, 0, 0, 2747, 2748, 5, 102, 0, 0, + 2748, 2749, 5, 509, 0, 0, 2749, 2750, 3, 206, 103, 0, 2750, 2751, 5, 510, + 0, 0, 2751, 2753, 1, 0, 0, 0, 2752, 2732, 1, 0, 0, 0, 2752, 2735, 1, 0, + 0, 0, 2752, 2738, 1, 0, 0, 0, 2752, 2744, 1, 0, 0, 0, 2753, 231, 1, 0, + 0, 0, 2754, 2755, 5, 105, 0, 0, 2755, 2756, 3, 672, 336, 0, 2756, 2757, + 5, 81, 0, 0, 2757, 2765, 3, 206, 103, 0, 2758, 2759, 5, 106, 0, 0, 2759, + 2760, 3, 672, 336, 0, 2760, 2761, 5, 81, 0, 0, 2761, 2762, 3, 206, 103, + 0, 2762, 2764, 1, 0, 0, 0, 2763, 2758, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, + 0, 2765, 2763, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2770, 1, 0, 0, + 0, 2767, 2765, 1, 0, 0, 0, 2768, 2769, 5, 82, 0, 0, 2769, 2771, 3, 206, + 103, 0, 2770, 2768, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2772, 1, + 0, 0, 0, 2772, 2773, 5, 83, 0, 0, 2773, 2774, 5, 105, 0, 0, 2774, 233, + 1, 0, 0, 0, 2775, 2776, 5, 103, 0, 0, 2776, 2777, 5, 524, 0, 0, 2777, 2780, + 5, 293, 0, 0, 2778, 2781, 5, 524, 0, 0, 2779, 2781, 3, 218, 109, 0, 2780, + 2778, 1, 0, 0, 0, 2780, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, + 2783, 5, 96, 0, 0, 2783, 2784, 3, 206, 103, 0, 2784, 2785, 5, 83, 0, 0, + 2785, 2786, 5, 103, 0, 0, 2786, 235, 1, 0, 0, 0, 2787, 2788, 5, 104, 0, + 0, 2788, 2790, 3, 672, 336, 0, 2789, 2791, 5, 96, 0, 0, 2790, 2789, 1, + 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 3, + 206, 103, 0, 2793, 2795, 5, 83, 0, 0, 2794, 2796, 5, 104, 0, 0, 2795, 2794, + 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 237, 1, 0, 0, 0, 2797, 2798, + 5, 108, 0, 0, 2798, 239, 1, 0, 0, 0, 2799, 2800, 5, 109, 0, 0, 2800, 241, + 1, 0, 0, 0, 2801, 2803, 5, 110, 0, 0, 2802, 2804, 3, 672, 336, 0, 2803, + 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 243, 1, 0, 0, 0, 2805, + 2806, 5, 307, 0, 0, 2806, 2807, 5, 306, 0, 0, 2807, 245, 1, 0, 0, 0, 2808, + 2810, 5, 112, 0, 0, 2809, 2811, 3, 248, 124, 0, 2810, 2809, 1, 0, 0, 0, + 2810, 2811, 1, 0, 0, 0, 2811, 2814, 1, 0, 0, 0, 2812, 2813, 5, 119, 0, + 0, 2813, 2815, 5, 521, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, + 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 3, 672, 336, 0, 2817, 2819, 3, + 254, 127, 0, 2818, 2817, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 247, + 1, 0, 0, 0, 2820, 2821, 7, 14, 0, 0, 2821, 249, 1, 0, 0, 0, 2822, 2823, + 5, 139, 0, 0, 2823, 2824, 5, 507, 0, 0, 2824, 2829, 3, 252, 126, 0, 2825, + 2826, 5, 505, 0, 0, 2826, 2828, 3, 252, 126, 0, 2827, 2825, 1, 0, 0, 0, + 2828, 2831, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, + 2830, 2832, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2832, 2833, 5, 508, 0, + 0, 2833, 2837, 1, 0, 0, 0, 2834, 2835, 5, 373, 0, 0, 2835, 2837, 3, 718, + 359, 0, 2836, 2822, 1, 0, 0, 0, 2836, 2834, 1, 0, 0, 0, 2837, 251, 1, 0, + 0, 0, 2838, 2839, 5, 509, 0, 0, 2839, 2840, 5, 523, 0, 0, 2840, 2841, 5, + 510, 0, 0, 2841, 2842, 5, 494, 0, 0, 2842, 2843, 3, 672, 336, 0, 2843, + 253, 1, 0, 0, 0, 2844, 2845, 3, 250, 125, 0, 2845, 255, 1, 0, 0, 0, 2846, + 2847, 3, 252, 126, 0, 2847, 257, 1, 0, 0, 0, 2848, 2849, 5, 524, 0, 0, + 2849, 2851, 5, 494, 0, 0, 2850, 2848, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, + 0, 2851, 2852, 1, 0, 0, 0, 2852, 2853, 5, 113, 0, 0, 2853, 2854, 5, 30, + 0, 0, 2854, 2855, 3, 712, 356, 0, 2855, 2857, 5, 507, 0, 0, 2856, 2858, + 3, 266, 133, 0, 2857, 2856, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2859, + 1, 0, 0, 0, 2859, 2861, 5, 508, 0, 0, 2860, 2862, 3, 230, 115, 0, 2861, + 2860, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 259, 1, 0, 0, 0, 2863, + 2864, 5, 524, 0, 0, 2864, 2866, 5, 494, 0, 0, 2865, 2863, 1, 0, 0, 0, 2865, + 2866, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2868, 5, 113, 0, 0, 2868, + 2869, 5, 114, 0, 0, 2869, 2870, 5, 116, 0, 0, 2870, 2871, 3, 712, 356, + 0, 2871, 2873, 5, 507, 0, 0, 2872, 2874, 3, 266, 133, 0, 2873, 2872, 1, + 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2877, 5, + 508, 0, 0, 2876, 2878, 3, 230, 115, 0, 2877, 2876, 1, 0, 0, 0, 2877, 2878, + 1, 0, 0, 0, 2878, 261, 1, 0, 0, 0, 2879, 2880, 5, 524, 0, 0, 2880, 2882, + 5, 494, 0, 0, 2881, 2879, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, + 1, 0, 0, 0, 2883, 2884, 5, 401, 0, 0, 2884, 2885, 5, 357, 0, 0, 2885, 2886, + 5, 358, 0, 0, 2886, 2893, 3, 712, 356, 0, 2887, 2891, 5, 166, 0, 0, 2888, + 2892, 5, 521, 0, 0, 2889, 2892, 5, 522, 0, 0, 2890, 2892, 3, 672, 336, + 0, 2891, 2888, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2891, 2890, 1, 0, 0, + 0, 2892, 2894, 1, 0, 0, 0, 2893, 2887, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, + 0, 2894, 2900, 1, 0, 0, 0, 2895, 2897, 5, 507, 0, 0, 2896, 2898, 3, 266, + 133, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2899, 1, + 0, 0, 0, 2899, 2901, 5, 508, 0, 0, 2900, 2895, 1, 0, 0, 0, 2900, 2901, + 1, 0, 0, 0, 2901, 2908, 1, 0, 0, 0, 2902, 2903, 5, 356, 0, 0, 2903, 2905, + 5, 507, 0, 0, 2904, 2906, 3, 266, 133, 0, 2905, 2904, 1, 0, 0, 0, 2905, + 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2909, 5, 508, 0, 0, 2908, + 2902, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2911, 1, 0, 0, 0, 2910, + 2912, 3, 230, 115, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, + 263, 1, 0, 0, 0, 2913, 2914, 5, 524, 0, 0, 2914, 2916, 5, 494, 0, 0, 2915, + 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, + 2918, 5, 113, 0, 0, 2918, 2919, 5, 26, 0, 0, 2919, 2920, 5, 116, 0, 0, + 2920, 2921, 3, 712, 356, 0, 2921, 2923, 5, 507, 0, 0, 2922, 2924, 3, 266, + 133, 0, 2923, 2922, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2925, 1, + 0, 0, 0, 2925, 2927, 5, 508, 0, 0, 2926, 2928, 3, 230, 115, 0, 2927, 2926, + 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 265, 1, 0, 0, 0, 2929, 2934, + 3, 268, 134, 0, 2930, 2931, 5, 505, 0, 0, 2931, 2933, 3, 268, 134, 0, 2932, + 2930, 1, 0, 0, 0, 2933, 2936, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2934, + 2935, 1, 0, 0, 0, 2935, 267, 1, 0, 0, 0, 2936, 2934, 1, 0, 0, 0, 2937, + 2940, 5, 524, 0, 0, 2938, 2940, 3, 198, 99, 0, 2939, 2937, 1, 0, 0, 0, + 2939, 2938, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2942, 5, 494, 0, + 0, 2942, 2943, 3, 672, 336, 0, 2943, 269, 1, 0, 0, 0, 2944, 2945, 5, 65, + 0, 0, 2945, 2946, 5, 33, 0, 0, 2946, 2952, 3, 712, 356, 0, 2947, 2949, + 5, 507, 0, 0, 2948, 2950, 3, 272, 136, 0, 2949, 2948, 1, 0, 0, 0, 2949, + 2950, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2953, 5, 508, 0, 0, 2952, + 2947, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2956, 1, 0, 0, 0, 2954, + 2955, 5, 433, 0, 0, 2955, 2957, 5, 524, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, + 2957, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2959, 5, 139, 0, 0, 2959, + 2961, 3, 326, 163, 0, 2960, 2958, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, + 271, 1, 0, 0, 0, 2962, 2967, 3, 274, 137, 0, 2963, 2964, 5, 505, 0, 0, + 2964, 2966, 3, 274, 137, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2969, 1, 0, 0, + 0, 2967, 2965, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 273, 1, 0, 0, + 0, 2969, 2967, 1, 0, 0, 0, 2970, 2971, 5, 524, 0, 0, 2971, 2974, 5, 494, + 0, 0, 2972, 2975, 5, 524, 0, 0, 2973, 2975, 3, 672, 336, 0, 2974, 2972, + 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2981, 1, 0, 0, 0, 2976, 2977, + 3, 714, 357, 0, 2977, 2978, 5, 513, 0, 0, 2978, 2979, 3, 672, 336, 0, 2979, + 2981, 1, 0, 0, 0, 2980, 2970, 1, 0, 0, 0, 2980, 2976, 1, 0, 0, 0, 2981, + 275, 1, 0, 0, 0, 2982, 2983, 5, 118, 0, 0, 2983, 2984, 5, 33, 0, 0, 2984, + 277, 1, 0, 0, 0, 2985, 2986, 5, 65, 0, 0, 2986, 2987, 5, 378, 0, 0, 2987, + 2988, 5, 33, 0, 0, 2988, 279, 1, 0, 0, 0, 2989, 2990, 5, 65, 0, 0, 2990, + 2991, 5, 407, 0, 0, 2991, 2994, 3, 672, 336, 0, 2992, 2993, 5, 423, 0, + 0, 2993, 2995, 3, 714, 357, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, + 0, 0, 2995, 3001, 1, 0, 0, 0, 2996, 2997, 5, 142, 0, 0, 2997, 2998, 5, + 511, 0, 0, 2998, 2999, 3, 710, 355, 0, 2999, 3000, 5, 512, 0, 0, 3000, + 3002, 1, 0, 0, 0, 3001, 2996, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, + 281, 1, 0, 0, 0, 3003, 3004, 5, 111, 0, 0, 3004, 3005, 3, 672, 336, 0, + 3005, 283, 1, 0, 0, 0, 3006, 3007, 5, 302, 0, 0, 3007, 3008, 5, 303, 0, + 0, 3008, 3009, 3, 218, 109, 0, 3009, 3010, 5, 407, 0, 0, 3010, 3016, 3, + 672, 336, 0, 3011, 3012, 5, 142, 0, 0, 3012, 3013, 5, 511, 0, 0, 3013, + 3014, 3, 710, 355, 0, 3014, 3015, 5, 512, 0, 0, 3015, 3017, 1, 0, 0, 0, + 3016, 3011, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 285, 1, 0, 0, 0, + 3018, 3019, 5, 524, 0, 0, 3019, 3021, 5, 494, 0, 0, 3020, 3018, 1, 0, 0, + 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 315, + 0, 0, 3023, 3024, 5, 113, 0, 0, 3024, 3025, 3, 288, 144, 0, 3025, 3027, + 3, 290, 145, 0, 3026, 3028, 3, 292, 146, 0, 3027, 3026, 1, 0, 0, 0, 3027, + 3028, 1, 0, 0, 0, 3028, 3032, 1, 0, 0, 0, 3029, 3031, 3, 294, 147, 0, 3030, + 3029, 1, 0, 0, 0, 3031, 3034, 1, 0, 0, 0, 3032, 3030, 1, 0, 0, 0, 3032, + 3033, 1, 0, 0, 0, 3033, 3036, 1, 0, 0, 0, 3034, 3032, 1, 0, 0, 0, 3035, + 3037, 3, 296, 148, 0, 3036, 3035, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, + 3039, 1, 0, 0, 0, 3038, 3040, 3, 298, 149, 0, 3039, 3038, 1, 0, 0, 0, 3039, + 3040, 1, 0, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3043, 3, 300, 150, 0, 3042, + 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, + 3046, 3, 302, 151, 0, 3045, 3047, 3, 230, 115, 0, 3046, 3045, 1, 0, 0, + 0, 3046, 3047, 1, 0, 0, 0, 3047, 287, 1, 0, 0, 0, 3048, 3049, 7, 15, 0, + 0, 3049, 289, 1, 0, 0, 0, 3050, 3053, 5, 521, 0, 0, 3051, 3053, 3, 672, + 336, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 291, 1, 0, + 0, 0, 3054, 3055, 3, 250, 125, 0, 3055, 293, 1, 0, 0, 0, 3056, 3057, 5, + 197, 0, 0, 3057, 3058, 7, 16, 0, 0, 3058, 3059, 5, 494, 0, 0, 3059, 3060, + 3, 672, 336, 0, 3060, 295, 1, 0, 0, 0, 3061, 3062, 5, 320, 0, 0, 3062, + 3063, 5, 322, 0, 0, 3063, 3064, 3, 672, 336, 0, 3064, 3065, 5, 355, 0, + 0, 3065, 3066, 3, 672, 336, 0, 3066, 297, 1, 0, 0, 0, 3067, 3068, 5, 329, + 0, 0, 3068, 3070, 5, 521, 0, 0, 3069, 3071, 3, 250, 125, 0, 3070, 3069, + 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3084, 1, 0, 0, 0, 3072, 3073, + 5, 329, 0, 0, 3073, 3075, 3, 672, 336, 0, 3074, 3076, 3, 250, 125, 0, 3075, + 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3084, 1, 0, 0, 0, 3077, + 3078, 5, 329, 0, 0, 3078, 3079, 5, 360, 0, 0, 3079, 3080, 3, 712, 356, + 0, 3080, 3081, 5, 71, 0, 0, 3081, 3082, 5, 524, 0, 0, 3082, 3084, 1, 0, + 0, 0, 3083, 3067, 1, 0, 0, 0, 3083, 3072, 1, 0, 0, 0, 3083, 3077, 1, 0, + 0, 0, 3084, 299, 1, 0, 0, 0, 3085, 3086, 5, 328, 0, 0, 3086, 3087, 3, 672, + 336, 0, 3087, 301, 1, 0, 0, 0, 3088, 3089, 5, 77, 0, 0, 3089, 3103, 5, + 266, 0, 0, 3090, 3091, 5, 77, 0, 0, 3091, 3103, 5, 330, 0, 0, 3092, 3093, + 5, 77, 0, 0, 3093, 3094, 5, 360, 0, 0, 3094, 3095, 3, 712, 356, 0, 3095, + 3096, 5, 76, 0, 0, 3096, 3097, 3, 712, 356, 0, 3097, 3103, 1, 0, 0, 0, + 3098, 3099, 5, 77, 0, 0, 3099, 3103, 5, 428, 0, 0, 3100, 3101, 5, 77, 0, + 0, 3101, 3103, 5, 323, 0, 0, 3102, 3088, 1, 0, 0, 0, 3102, 3090, 1, 0, + 0, 0, 3102, 3092, 1, 0, 0, 0, 3102, 3098, 1, 0, 0, 0, 3102, 3100, 1, 0, + 0, 0, 3103, 303, 1, 0, 0, 0, 3104, 3105, 5, 524, 0, 0, 3105, 3107, 5, 494, + 0, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3108, 1, 0, + 0, 0, 3108, 3109, 5, 332, 0, 0, 3109, 3110, 5, 315, 0, 0, 3110, 3111, 5, + 331, 0, 0, 3111, 3113, 3, 712, 356, 0, 3112, 3114, 3, 306, 153, 0, 3113, + 3112, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3116, 1, 0, 0, 0, 3115, + 3117, 3, 230, 115, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, + 305, 1, 0, 0, 0, 3118, 3119, 5, 329, 0, 0, 3119, 3120, 5, 524, 0, 0, 3120, + 307, 1, 0, 0, 0, 3121, 3122, 5, 524, 0, 0, 3122, 3123, 5, 494, 0, 0, 3123, + 3124, 3, 310, 155, 0, 3124, 309, 1, 0, 0, 0, 3125, 3126, 5, 121, 0, 0, + 3126, 3127, 5, 507, 0, 0, 3127, 3128, 5, 524, 0, 0, 3128, 3185, 5, 508, + 0, 0, 3129, 3130, 5, 122, 0, 0, 3130, 3131, 5, 507, 0, 0, 3131, 3132, 5, + 524, 0, 0, 3132, 3185, 5, 508, 0, 0, 3133, 3134, 5, 123, 0, 0, 3134, 3135, + 5, 507, 0, 0, 3135, 3136, 5, 524, 0, 0, 3136, 3137, 5, 505, 0, 0, 3137, + 3138, 3, 672, 336, 0, 3138, 3139, 5, 508, 0, 0, 3139, 3185, 1, 0, 0, 0, + 3140, 3141, 5, 187, 0, 0, 3141, 3142, 5, 507, 0, 0, 3142, 3143, 5, 524, + 0, 0, 3143, 3144, 5, 505, 0, 0, 3144, 3145, 3, 672, 336, 0, 3145, 3146, + 5, 508, 0, 0, 3146, 3185, 1, 0, 0, 0, 3147, 3148, 5, 124, 0, 0, 3148, 3149, + 5, 507, 0, 0, 3149, 3150, 5, 524, 0, 0, 3150, 3151, 5, 505, 0, 0, 3151, + 3152, 3, 312, 156, 0, 3152, 3153, 5, 508, 0, 0, 3153, 3185, 1, 0, 0, 0, + 3154, 3155, 5, 125, 0, 0, 3155, 3156, 5, 507, 0, 0, 3156, 3157, 5, 524, + 0, 0, 3157, 3158, 5, 505, 0, 0, 3158, 3159, 5, 524, 0, 0, 3159, 3185, 5, + 508, 0, 0, 3160, 3161, 5, 126, 0, 0, 3161, 3162, 5, 507, 0, 0, 3162, 3163, + 5, 524, 0, 0, 3163, 3164, 5, 505, 0, 0, 3164, 3165, 5, 524, 0, 0, 3165, + 3185, 5, 508, 0, 0, 3166, 3167, 5, 127, 0, 0, 3167, 3168, 5, 507, 0, 0, + 3168, 3169, 5, 524, 0, 0, 3169, 3170, 5, 505, 0, 0, 3170, 3171, 5, 524, + 0, 0, 3171, 3185, 5, 508, 0, 0, 3172, 3173, 5, 128, 0, 0, 3173, 3174, 5, + 507, 0, 0, 3174, 3175, 5, 524, 0, 0, 3175, 3176, 5, 505, 0, 0, 3176, 3177, + 5, 524, 0, 0, 3177, 3185, 5, 508, 0, 0, 3178, 3179, 5, 134, 0, 0, 3179, + 3180, 5, 507, 0, 0, 3180, 3181, 5, 524, 0, 0, 3181, 3182, 5, 505, 0, 0, + 3182, 3183, 5, 524, 0, 0, 3183, 3185, 5, 508, 0, 0, 3184, 3125, 1, 0, 0, + 0, 3184, 3129, 1, 0, 0, 0, 3184, 3133, 1, 0, 0, 0, 3184, 3140, 1, 0, 0, + 0, 3184, 3147, 1, 0, 0, 0, 3184, 3154, 1, 0, 0, 0, 3184, 3160, 1, 0, 0, + 0, 3184, 3166, 1, 0, 0, 0, 3184, 3172, 1, 0, 0, 0, 3184, 3178, 1, 0, 0, + 0, 3185, 311, 1, 0, 0, 0, 3186, 3191, 3, 314, 157, 0, 3187, 3188, 5, 505, + 0, 0, 3188, 3190, 3, 314, 157, 0, 3189, 3187, 1, 0, 0, 0, 3190, 3193, 1, + 0, 0, 0, 3191, 3189, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 313, 1, + 0, 0, 0, 3193, 3191, 1, 0, 0, 0, 3194, 3196, 5, 525, 0, 0, 3195, 3197, + 7, 7, 0, 0, 3196, 3195, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 315, + 1, 0, 0, 0, 3198, 3199, 5, 524, 0, 0, 3199, 3200, 5, 494, 0, 0, 3200, 3201, + 3, 318, 159, 0, 3201, 317, 1, 0, 0, 0, 3202, 3203, 5, 280, 0, 0, 3203, + 3204, 5, 507, 0, 0, 3204, 3205, 5, 524, 0, 0, 3205, 3227, 5, 508, 0, 0, + 3206, 3207, 5, 281, 0, 0, 3207, 3208, 5, 507, 0, 0, 3208, 3209, 3, 218, + 109, 0, 3209, 3210, 5, 508, 0, 0, 3210, 3227, 1, 0, 0, 0, 3211, 3212, 5, + 129, 0, 0, 3212, 3213, 5, 507, 0, 0, 3213, 3214, 3, 218, 109, 0, 3214, + 3215, 5, 508, 0, 0, 3215, 3227, 1, 0, 0, 0, 3216, 3217, 5, 130, 0, 0, 3217, + 3218, 5, 507, 0, 0, 3218, 3219, 3, 218, 109, 0, 3219, 3220, 5, 508, 0, + 0, 3220, 3227, 1, 0, 0, 0, 3221, 3222, 5, 131, 0, 0, 3222, 3223, 5, 507, + 0, 0, 3223, 3224, 3, 218, 109, 0, 3224, 3225, 5, 508, 0, 0, 3225, 3227, + 1, 0, 0, 0, 3226, 3202, 1, 0, 0, 0, 3226, 3206, 1, 0, 0, 0, 3226, 3211, + 1, 0, 0, 0, 3226, 3216, 1, 0, 0, 0, 3226, 3221, 1, 0, 0, 0, 3227, 319, + 1, 0, 0, 0, 3228, 3229, 5, 524, 0, 0, 3229, 3230, 5, 494, 0, 0, 3230, 3231, + 5, 17, 0, 0, 3231, 3232, 5, 13, 0, 0, 3232, 3233, 3, 712, 356, 0, 3233, + 321, 1, 0, 0, 0, 3234, 3235, 5, 47, 0, 0, 3235, 3236, 5, 524, 0, 0, 3236, + 3237, 5, 430, 0, 0, 3237, 3238, 5, 524, 0, 0, 3238, 323, 1, 0, 0, 0, 3239, + 3240, 5, 133, 0, 0, 3240, 3241, 5, 524, 0, 0, 3241, 3242, 5, 71, 0, 0, + 3242, 3243, 5, 524, 0, 0, 3243, 325, 1, 0, 0, 0, 3244, 3249, 3, 328, 164, + 0, 3245, 3246, 5, 505, 0, 0, 3246, 3248, 3, 328, 164, 0, 3247, 3245, 1, + 0, 0, 0, 3248, 3251, 1, 0, 0, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, + 0, 0, 0, 3250, 327, 1, 0, 0, 0, 3251, 3249, 1, 0, 0, 0, 3252, 3253, 3, + 330, 165, 0, 3253, 3254, 5, 494, 0, 0, 3254, 3255, 3, 672, 336, 0, 3255, + 329, 1, 0, 0, 0, 3256, 3261, 3, 712, 356, 0, 3257, 3261, 5, 525, 0, 0, + 3258, 3261, 5, 527, 0, 0, 3259, 3261, 3, 734, 367, 0, 3260, 3256, 1, 0, + 0, 0, 3260, 3257, 1, 0, 0, 0, 3260, 3258, 1, 0, 0, 0, 3260, 3259, 1, 0, + 0, 0, 3261, 331, 1, 0, 0, 0, 3262, 3267, 3, 334, 167, 0, 3263, 3264, 5, + 505, 0, 0, 3264, 3266, 3, 334, 167, 0, 3265, 3263, 1, 0, 0, 0, 3266, 3269, + 1, 0, 0, 0, 3267, 3265, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 333, + 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3270, 3271, 5, 525, 0, 0, 3271, 3272, + 5, 494, 0, 0, 3272, 3273, 3, 672, 336, 0, 3273, 335, 1, 0, 0, 0, 3274, + 3275, 5, 33, 0, 0, 3275, 3276, 3, 712, 356, 0, 3276, 3277, 3, 386, 193, + 0, 3277, 3278, 5, 509, 0, 0, 3278, 3279, 3, 394, 197, 0, 3279, 3280, 5, + 510, 0, 0, 3280, 337, 1, 0, 0, 0, 3281, 3282, 5, 34, 0, 0, 3282, 3284, + 3, 712, 356, 0, 3283, 3285, 3, 390, 195, 0, 3284, 3283, 1, 0, 0, 0, 3284, + 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 340, 170, 0, 3287, + 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, + 3290, 5, 509, 0, 0, 3290, 3291, 3, 394, 197, 0, 3291, 3292, 5, 510, 0, + 0, 3292, 339, 1, 0, 0, 0, 3293, 3295, 3, 342, 171, 0, 3294, 3293, 1, 0, + 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, + 0, 0, 3297, 341, 1, 0, 0, 0, 3298, 3299, 5, 221, 0, 0, 3299, 3300, 5, 521, + 0, 0, 3300, 343, 1, 0, 0, 0, 3301, 3306, 3, 346, 173, 0, 3302, 3303, 5, + 505, 0, 0, 3303, 3305, 3, 346, 173, 0, 3304, 3302, 1, 0, 0, 0, 3305, 3308, + 1, 0, 0, 0, 3306, 3304, 1, 0, 0, 0, 3306, 3307, 1, 0, 0, 0, 3307, 345, + 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3309, 3310, 7, 17, 0, 0, 3310, 3311, + 5, 513, 0, 0, 3311, 3312, 3, 108, 54, 0, 3312, 347, 1, 0, 0, 0, 3313, 3318, + 3, 350, 175, 0, 3314, 3315, 5, 505, 0, 0, 3315, 3317, 3, 350, 175, 0, 3316, + 3314, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, + 3319, 1, 0, 0, 0, 3319, 349, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, + 3322, 7, 17, 0, 0, 3322, 3323, 5, 513, 0, 0, 3323, 3324, 3, 108, 54, 0, + 3324, 351, 1, 0, 0, 0, 3325, 3330, 3, 354, 177, 0, 3326, 3327, 5, 505, + 0, 0, 3327, 3329, 3, 354, 177, 0, 3328, 3326, 1, 0, 0, 0, 3329, 3332, 1, + 0, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 353, 1, + 0, 0, 0, 3332, 3330, 1, 0, 0, 0, 3333, 3334, 5, 524, 0, 0, 3334, 3335, + 5, 513, 0, 0, 3335, 3336, 3, 108, 54, 0, 3336, 3337, 5, 494, 0, 0, 3337, + 3338, 5, 521, 0, 0, 3338, 355, 1, 0, 0, 0, 3339, 3342, 3, 712, 356, 0, + 3340, 3342, 5, 525, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3340, 1, 0, 0, + 0, 3342, 3344, 1, 0, 0, 0, 3343, 3345, 7, 7, 0, 0, 3344, 3343, 1, 0, 0, + 0, 3344, 3345, 1, 0, 0, 0, 3345, 357, 1, 0, 0, 0, 3346, 3347, 5, 511, 0, + 0, 3347, 3348, 3, 362, 181, 0, 3348, 3349, 5, 512, 0, 0, 3349, 359, 1, + 0, 0, 0, 3350, 3351, 7, 18, 0, 0, 3351, 361, 1, 0, 0, 0, 3352, 3357, 3, + 364, 182, 0, 3353, 3354, 5, 290, 0, 0, 3354, 3356, 3, 364, 182, 0, 3355, + 3353, 1, 0, 0, 0, 3356, 3359, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3357, + 3358, 1, 0, 0, 0, 3358, 363, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3360, + 3365, 3, 366, 183, 0, 3361, 3362, 5, 289, 0, 0, 3362, 3364, 3, 366, 183, + 0, 3363, 3361, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, + 0, 3365, 3366, 1, 0, 0, 0, 3366, 365, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, + 0, 3368, 3369, 5, 291, 0, 0, 3369, 3372, 3, 366, 183, 0, 3370, 3372, 3, + 368, 184, 0, 3371, 3368, 1, 0, 0, 0, 3371, 3370, 1, 0, 0, 0, 3372, 367, + 1, 0, 0, 0, 3373, 3377, 3, 370, 185, 0, 3374, 3375, 3, 682, 341, 0, 3375, + 3376, 3, 370, 185, 0, 3376, 3378, 1, 0, 0, 0, 3377, 3374, 1, 0, 0, 0, 3377, + 3378, 1, 0, 0, 0, 3378, 369, 1, 0, 0, 0, 3379, 3386, 3, 382, 191, 0, 3380, + 3386, 3, 372, 186, 0, 3381, 3382, 5, 507, 0, 0, 3382, 3383, 3, 362, 181, + 0, 3383, 3384, 5, 508, 0, 0, 3384, 3386, 1, 0, 0, 0, 3385, 3379, 1, 0, + 0, 0, 3385, 3380, 1, 0, 0, 0, 3385, 3381, 1, 0, 0, 0, 3386, 371, 1, 0, + 0, 0, 3387, 3392, 3, 374, 187, 0, 3388, 3389, 5, 500, 0, 0, 3389, 3391, + 3, 374, 187, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, + 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 373, 1, 0, 0, 0, 3394, 3392, + 1, 0, 0, 0, 3395, 3400, 3, 376, 188, 0, 3396, 3397, 5, 511, 0, 0, 3397, + 3398, 3, 362, 181, 0, 3398, 3399, 5, 512, 0, 0, 3399, 3401, 1, 0, 0, 0, + 3400, 3396, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 375, 1, 0, 0, 0, + 3402, 3408, 3, 378, 189, 0, 3403, 3408, 5, 524, 0, 0, 3404, 3408, 5, 521, + 0, 0, 3405, 3408, 5, 523, 0, 0, 3406, 3408, 5, 520, 0, 0, 3407, 3402, 1, + 0, 0, 0, 3407, 3403, 1, 0, 0, 0, 3407, 3404, 1, 0, 0, 0, 3407, 3405, 1, + 0, 0, 0, 3407, 3406, 1, 0, 0, 0, 3408, 377, 1, 0, 0, 0, 3409, 3414, 3, + 380, 190, 0, 3410, 3411, 5, 506, 0, 0, 3411, 3413, 3, 380, 190, 0, 3412, + 3410, 1, 0, 0, 0, 3413, 3416, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3414, + 3415, 1, 0, 0, 0, 3415, 379, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3417, + 3418, 8, 19, 0, 0, 3418, 381, 1, 0, 0, 0, 3419, 3420, 3, 384, 192, 0, 3420, + 3429, 5, 507, 0, 0, 3421, 3426, 3, 362, 181, 0, 3422, 3423, 5, 505, 0, + 0, 3423, 3425, 3, 362, 181, 0, 3424, 3422, 1, 0, 0, 0, 3425, 3428, 1, 0, + 0, 0, 3426, 3424, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3430, 1, 0, + 0, 0, 3428, 3426, 1, 0, 0, 0, 3429, 3421, 1, 0, 0, 0, 3429, 3430, 1, 0, + 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 508, 0, 0, 3432, 383, 1, 0, + 0, 0, 3433, 3434, 7, 20, 0, 0, 3434, 385, 1, 0, 0, 0, 3435, 3436, 5, 507, + 0, 0, 3436, 3441, 3, 388, 194, 0, 3437, 3438, 5, 505, 0, 0, 3438, 3440, + 3, 388, 194, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, + 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3441, + 1, 0, 0, 0, 3444, 3445, 5, 508, 0, 0, 3445, 387, 1, 0, 0, 0, 3446, 3447, + 5, 204, 0, 0, 3447, 3448, 5, 513, 0, 0, 3448, 3449, 5, 509, 0, 0, 3449, + 3450, 3, 344, 172, 0, 3450, 3451, 5, 510, 0, 0, 3451, 3474, 1, 0, 0, 0, + 3452, 3453, 5, 205, 0, 0, 3453, 3454, 5, 513, 0, 0, 3454, 3455, 5, 509, + 0, 0, 3455, 3456, 3, 352, 176, 0, 3456, 3457, 5, 510, 0, 0, 3457, 3474, + 1, 0, 0, 0, 3458, 3459, 5, 164, 0, 0, 3459, 3460, 5, 513, 0, 0, 3460, 3474, + 5, 521, 0, 0, 3461, 3462, 5, 35, 0, 0, 3462, 3465, 5, 513, 0, 0, 3463, + 3466, 3, 712, 356, 0, 3464, 3466, 5, 521, 0, 0, 3465, 3463, 1, 0, 0, 0, + 3465, 3464, 1, 0, 0, 0, 3466, 3474, 1, 0, 0, 0, 3467, 3468, 5, 220, 0, + 0, 3468, 3469, 5, 513, 0, 0, 3469, 3474, 5, 521, 0, 0, 3470, 3471, 5, 221, + 0, 0, 3471, 3472, 5, 513, 0, 0, 3472, 3474, 5, 521, 0, 0, 3473, 3446, 1, + 0, 0, 0, 3473, 3452, 1, 0, 0, 0, 3473, 3458, 1, 0, 0, 0, 3473, 3461, 1, + 0, 0, 0, 3473, 3467, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 389, 1, + 0, 0, 0, 3475, 3476, 5, 507, 0, 0, 3476, 3481, 3, 392, 196, 0, 3477, 3478, + 5, 505, 0, 0, 3478, 3480, 3, 392, 196, 0, 3479, 3477, 1, 0, 0, 0, 3480, + 3483, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, + 3484, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3485, 5, 508, 0, 0, 3485, + 391, 1, 0, 0, 0, 3486, 3487, 5, 204, 0, 0, 3487, 3488, 5, 513, 0, 0, 3488, + 3489, 5, 509, 0, 0, 3489, 3490, 3, 348, 174, 0, 3490, 3491, 5, 510, 0, + 0, 3491, 3502, 1, 0, 0, 0, 3492, 3493, 5, 205, 0, 0, 3493, 3494, 5, 513, + 0, 0, 3494, 3495, 5, 509, 0, 0, 3495, 3496, 3, 352, 176, 0, 3496, 3497, + 5, 510, 0, 0, 3497, 3502, 1, 0, 0, 0, 3498, 3499, 5, 221, 0, 0, 3499, 3500, + 5, 513, 0, 0, 3500, 3502, 5, 521, 0, 0, 3501, 3486, 1, 0, 0, 0, 3501, 3492, + 1, 0, 0, 0, 3501, 3498, 1, 0, 0, 0, 3502, 393, 1, 0, 0, 0, 3503, 3506, + 3, 398, 199, 0, 3504, 3506, 3, 396, 198, 0, 3505, 3503, 1, 0, 0, 0, 3505, + 3504, 1, 0, 0, 0, 3506, 3509, 1, 0, 0, 0, 3507, 3505, 1, 0, 0, 0, 3507, + 3508, 1, 0, 0, 0, 3508, 395, 1, 0, 0, 0, 3509, 3507, 1, 0, 0, 0, 3510, + 3511, 5, 67, 0, 0, 3511, 3512, 5, 391, 0, 0, 3512, 3515, 3, 714, 357, 0, + 3513, 3514, 5, 76, 0, 0, 3514, 3516, 3, 714, 357, 0, 3515, 3513, 1, 0, + 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 397, 1, 0, 0, 0, 3517, 3518, 3, 400, + 200, 0, 3518, 3520, 5, 525, 0, 0, 3519, 3521, 3, 402, 201, 0, 3520, 3519, + 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3523, 1, 0, 0, 0, 3522, 3524, + 3, 440, 220, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3544, + 1, 0, 0, 0, 3525, 3526, 5, 181, 0, 0, 3526, 3527, 5, 521, 0, 0, 3527, 3529, + 5, 525, 0, 0, 3528, 3530, 3, 402, 201, 0, 3529, 3528, 1, 0, 0, 0, 3529, + 3530, 1, 0, 0, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3533, 3, 440, 220, 0, 3532, + 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3544, 1, 0, 0, 0, 3534, + 3535, 5, 180, 0, 0, 3535, 3536, 5, 521, 0, 0, 3536, 3538, 5, 525, 0, 0, + 3537, 3539, 3, 402, 201, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, + 0, 3539, 3541, 1, 0, 0, 0, 3540, 3542, 3, 440, 220, 0, 3541, 3540, 1, 0, + 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3517, 1, 0, + 0, 0, 3543, 3525, 1, 0, 0, 0, 3543, 3534, 1, 0, 0, 0, 3544, 399, 1, 0, + 0, 0, 3545, 3546, 7, 21, 0, 0, 3546, 401, 1, 0, 0, 0, 3547, 3548, 5, 507, + 0, 0, 3548, 3553, 3, 404, 202, 0, 3549, 3550, 5, 505, 0, 0, 3550, 3552, + 3, 404, 202, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3555, 1, 0, 0, 0, 3553, 3551, + 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3553, + 1, 0, 0, 0, 3556, 3557, 5, 508, 0, 0, 3557, 403, 1, 0, 0, 0, 3558, 3559, + 5, 193, 0, 0, 3559, 3560, 5, 513, 0, 0, 3560, 3653, 3, 410, 205, 0, 3561, + 3562, 5, 38, 0, 0, 3562, 3563, 5, 513, 0, 0, 3563, 3653, 3, 418, 209, 0, + 3564, 3565, 5, 200, 0, 0, 3565, 3566, 5, 513, 0, 0, 3566, 3653, 3, 418, + 209, 0, 3567, 3568, 5, 116, 0, 0, 3568, 3569, 5, 513, 0, 0, 3569, 3653, + 3, 412, 206, 0, 3570, 3571, 5, 190, 0, 0, 3571, 3572, 5, 513, 0, 0, 3572, + 3653, 3, 420, 210, 0, 3573, 3574, 5, 168, 0, 0, 3574, 3575, 5, 513, 0, + 0, 3575, 3653, 5, 521, 0, 0, 3576, 3577, 5, 201, 0, 0, 3577, 3578, 5, 513, + 0, 0, 3578, 3653, 3, 418, 209, 0, 3579, 3580, 5, 198, 0, 0, 3580, 3581, + 5, 513, 0, 0, 3581, 3653, 3, 420, 210, 0, 3582, 3583, 5, 199, 0, 0, 3583, + 3584, 5, 513, 0, 0, 3584, 3653, 3, 426, 213, 0, 3585, 3586, 5, 202, 0, + 0, 3586, 3587, 5, 513, 0, 0, 3587, 3653, 3, 422, 211, 0, 3588, 3589, 5, + 203, 0, 0, 3589, 3590, 5, 513, 0, 0, 3590, 3653, 3, 422, 211, 0, 3591, + 3592, 5, 211, 0, 0, 3592, 3593, 5, 513, 0, 0, 3593, 3653, 3, 428, 214, + 0, 3594, 3595, 5, 209, 0, 0, 3595, 3596, 5, 513, 0, 0, 3596, 3653, 5, 521, + 0, 0, 3597, 3598, 5, 210, 0, 0, 3598, 3599, 5, 513, 0, 0, 3599, 3653, 5, + 521, 0, 0, 3600, 3601, 5, 206, 0, 0, 3601, 3602, 5, 513, 0, 0, 3602, 3653, + 3, 430, 215, 0, 3603, 3604, 5, 207, 0, 0, 3604, 3605, 5, 513, 0, 0, 3605, + 3653, 3, 430, 215, 0, 3606, 3607, 5, 208, 0, 0, 3607, 3608, 5, 513, 0, + 0, 3608, 3653, 3, 430, 215, 0, 3609, 3610, 5, 195, 0, 0, 3610, 3611, 5, + 513, 0, 0, 3611, 3653, 3, 432, 216, 0, 3612, 3613, 5, 34, 0, 0, 3613, 3614, + 5, 513, 0, 0, 3614, 3653, 3, 712, 356, 0, 3615, 3616, 5, 226, 0, 0, 3616, + 3617, 5, 513, 0, 0, 3617, 3653, 3, 408, 204, 0, 3618, 3619, 5, 227, 0, + 0, 3619, 3620, 5, 513, 0, 0, 3620, 3653, 3, 406, 203, 0, 3621, 3622, 5, + 214, 0, 0, 3622, 3623, 5, 513, 0, 0, 3623, 3653, 3, 436, 218, 0, 3624, + 3625, 5, 217, 0, 0, 3625, 3626, 5, 513, 0, 0, 3626, 3653, 5, 523, 0, 0, + 3627, 3628, 5, 218, 0, 0, 3628, 3629, 5, 513, 0, 0, 3629, 3653, 5, 523, + 0, 0, 3630, 3631, 5, 236, 0, 0, 3631, 3632, 5, 513, 0, 0, 3632, 3653, 3, + 358, 179, 0, 3633, 3634, 5, 236, 0, 0, 3634, 3635, 5, 513, 0, 0, 3635, + 3653, 3, 434, 217, 0, 3636, 3637, 5, 224, 0, 0, 3637, 3638, 5, 513, 0, + 0, 3638, 3653, 3, 358, 179, 0, 3639, 3640, 5, 224, 0, 0, 3640, 3641, 5, + 513, 0, 0, 3641, 3653, 3, 434, 217, 0, 3642, 3643, 5, 192, 0, 0, 3643, + 3644, 5, 513, 0, 0, 3644, 3653, 3, 434, 217, 0, 3645, 3646, 5, 525, 0, + 0, 3646, 3647, 5, 513, 0, 0, 3647, 3653, 3, 434, 217, 0, 3648, 3649, 3, + 736, 368, 0, 3649, 3650, 5, 513, 0, 0, 3650, 3651, 3, 434, 217, 0, 3651, + 3653, 1, 0, 0, 0, 3652, 3558, 1, 0, 0, 0, 3652, 3561, 1, 0, 0, 0, 3652, + 3564, 1, 0, 0, 0, 3652, 3567, 1, 0, 0, 0, 3652, 3570, 1, 0, 0, 0, 3652, + 3573, 1, 0, 0, 0, 3652, 3576, 1, 0, 0, 0, 3652, 3579, 1, 0, 0, 0, 3652, + 3582, 1, 0, 0, 0, 3652, 3585, 1, 0, 0, 0, 3652, 3588, 1, 0, 0, 0, 3652, + 3591, 1, 0, 0, 0, 3652, 3594, 1, 0, 0, 0, 3652, 3597, 1, 0, 0, 0, 3652, + 3600, 1, 0, 0, 0, 3652, 3603, 1, 0, 0, 0, 3652, 3606, 1, 0, 0, 0, 3652, + 3609, 1, 0, 0, 0, 3652, 3612, 1, 0, 0, 0, 3652, 3615, 1, 0, 0, 0, 3652, + 3618, 1, 0, 0, 0, 3652, 3621, 1, 0, 0, 0, 3652, 3624, 1, 0, 0, 0, 3652, + 3627, 1, 0, 0, 0, 3652, 3630, 1, 0, 0, 0, 3652, 3633, 1, 0, 0, 0, 3652, + 3636, 1, 0, 0, 0, 3652, 3639, 1, 0, 0, 0, 3652, 3642, 1, 0, 0, 0, 3652, + 3645, 1, 0, 0, 0, 3652, 3648, 1, 0, 0, 0, 3653, 405, 1, 0, 0, 0, 3654, + 3655, 7, 22, 0, 0, 3655, 407, 1, 0, 0, 0, 3656, 3657, 5, 511, 0, 0, 3657, + 3662, 3, 712, 356, 0, 3658, 3659, 5, 505, 0, 0, 3659, 3661, 3, 712, 356, + 0, 3660, 3658, 1, 0, 0, 0, 3661, 3664, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, + 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, + 0, 3665, 3666, 5, 512, 0, 0, 3666, 409, 1, 0, 0, 0, 3667, 3714, 5, 524, + 0, 0, 3668, 3670, 5, 357, 0, 0, 3669, 3671, 5, 71, 0, 0, 3670, 3669, 1, + 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3686, 3, + 712, 356, 0, 3673, 3684, 5, 72, 0, 0, 3674, 3680, 3, 358, 179, 0, 3675, + 3676, 3, 360, 180, 0, 3676, 3677, 3, 358, 179, 0, 3677, 3679, 1, 0, 0, + 0, 3678, 3675, 1, 0, 0, 0, 3679, 3682, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, + 0, 3680, 3681, 1, 0, 0, 0, 3681, 3685, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, + 0, 3683, 3685, 3, 672, 336, 0, 3684, 3674, 1, 0, 0, 0, 3684, 3683, 1, 0, + 0, 0, 3685, 3687, 1, 0, 0, 0, 3686, 3673, 1, 0, 0, 0, 3686, 3687, 1, 0, + 0, 0, 3687, 3697, 1, 0, 0, 0, 3688, 3689, 5, 10, 0, 0, 3689, 3694, 3, 356, + 178, 0, 3690, 3691, 5, 505, 0, 0, 3691, 3693, 3, 356, 178, 0, 3692, 3690, + 1, 0, 0, 0, 3693, 3696, 1, 0, 0, 0, 3694, 3692, 1, 0, 0, 0, 3694, 3695, + 1, 0, 0, 0, 3695, 3698, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3688, + 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3714, 1, 0, 0, 0, 3699, 3700, + 5, 30, 0, 0, 3700, 3702, 3, 712, 356, 0, 3701, 3703, 3, 414, 207, 0, 3702, + 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3714, 1, 0, 0, 0, 3704, + 3705, 5, 31, 0, 0, 3705, 3707, 3, 712, 356, 0, 3706, 3708, 3, 414, 207, + 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3714, 1, 0, 0, + 0, 3709, 3710, 5, 27, 0, 0, 3710, 3714, 3, 418, 209, 0, 3711, 3712, 5, + 195, 0, 0, 3712, 3714, 5, 525, 0, 0, 3713, 3667, 1, 0, 0, 0, 3713, 3668, + 1, 0, 0, 0, 3713, 3699, 1, 0, 0, 0, 3713, 3704, 1, 0, 0, 0, 3713, 3709, + 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3714, 411, 1, 0, 0, 0, 3715, 3717, + 5, 238, 0, 0, 3716, 3718, 5, 240, 0, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, + 1, 0, 0, 0, 3718, 3754, 1, 0, 0, 0, 3719, 3721, 5, 239, 0, 0, 3720, 3722, + 5, 240, 0, 0, 3721, 3720, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3754, + 1, 0, 0, 0, 3723, 3754, 5, 240, 0, 0, 3724, 3754, 5, 243, 0, 0, 3725, 3727, + 5, 100, 0, 0, 3726, 3728, 5, 240, 0, 0, 3727, 3726, 1, 0, 0, 0, 3727, 3728, + 1, 0, 0, 0, 3728, 3754, 1, 0, 0, 0, 3729, 3730, 5, 244, 0, 0, 3730, 3733, + 3, 712, 356, 0, 3731, 3732, 5, 81, 0, 0, 3732, 3734, 3, 412, 206, 0, 3733, + 3731, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3754, 1, 0, 0, 0, 3735, + 3736, 5, 241, 0, 0, 3736, 3738, 3, 712, 356, 0, 3737, 3739, 3, 414, 207, + 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3754, 1, 0, 0, + 0, 3740, 3741, 5, 30, 0, 0, 3741, 3743, 3, 712, 356, 0, 3742, 3744, 3, + 414, 207, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3754, + 1, 0, 0, 0, 3745, 3746, 5, 31, 0, 0, 3746, 3748, 3, 712, 356, 0, 3747, + 3749, 3, 414, 207, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, + 3754, 1, 0, 0, 0, 3750, 3751, 5, 247, 0, 0, 3751, 3754, 5, 521, 0, 0, 3752, + 3754, 5, 248, 0, 0, 3753, 3715, 1, 0, 0, 0, 3753, 3719, 1, 0, 0, 0, 3753, + 3723, 1, 0, 0, 0, 3753, 3724, 1, 0, 0, 0, 3753, 3725, 1, 0, 0, 0, 3753, + 3729, 1, 0, 0, 0, 3753, 3735, 1, 0, 0, 0, 3753, 3740, 1, 0, 0, 0, 3753, + 3745, 1, 0, 0, 0, 3753, 3750, 1, 0, 0, 0, 3753, 3752, 1, 0, 0, 0, 3754, + 413, 1, 0, 0, 0, 3755, 3756, 5, 507, 0, 0, 3756, 3761, 3, 416, 208, 0, + 3757, 3758, 5, 505, 0, 0, 3758, 3760, 3, 416, 208, 0, 3759, 3757, 1, 0, + 0, 0, 3760, 3763, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3762, 1, 0, + 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3761, 1, 0, 0, 0, 3764, 3765, 5, 508, + 0, 0, 3765, 415, 1, 0, 0, 0, 3766, 3767, 5, 525, 0, 0, 3767, 3768, 5, 513, + 0, 0, 3768, 3773, 3, 672, 336, 0, 3769, 3770, 5, 524, 0, 0, 3770, 3771, + 5, 494, 0, 0, 3771, 3773, 3, 672, 336, 0, 3772, 3766, 1, 0, 0, 0, 3772, + 3769, 1, 0, 0, 0, 3773, 417, 1, 0, 0, 0, 3774, 3778, 5, 525, 0, 0, 3775, + 3778, 5, 527, 0, 0, 3776, 3778, 3, 736, 368, 0, 3777, 3774, 1, 0, 0, 0, + 3777, 3775, 1, 0, 0, 0, 3777, 3776, 1, 0, 0, 0, 3778, 3787, 1, 0, 0, 0, + 3779, 3783, 5, 500, 0, 0, 3780, 3784, 5, 525, 0, 0, 3781, 3784, 5, 527, + 0, 0, 3782, 3784, 3, 736, 368, 0, 3783, 3780, 1, 0, 0, 0, 3783, 3781, 1, + 0, 0, 0, 3783, 3782, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3779, 1, + 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, + 0, 0, 0, 3788, 419, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 3801, 5, + 521, 0, 0, 3791, 3801, 3, 418, 209, 0, 3792, 3798, 5, 524, 0, 0, 3793, + 3796, 5, 506, 0, 0, 3794, 3797, 5, 525, 0, 0, 3795, 3797, 3, 736, 368, + 0, 3796, 3794, 1, 0, 0, 0, 3796, 3795, 1, 0, 0, 0, 3797, 3799, 1, 0, 0, + 0, 3798, 3793, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 3801, 1, 0, 0, + 0, 3800, 3790, 1, 0, 0, 0, 3800, 3791, 1, 0, 0, 0, 3800, 3792, 1, 0, 0, + 0, 3801, 421, 1, 0, 0, 0, 3802, 3803, 5, 511, 0, 0, 3803, 3808, 3, 424, + 212, 0, 3804, 3805, 5, 505, 0, 0, 3805, 3807, 3, 424, 212, 0, 3806, 3804, + 1, 0, 0, 0, 3807, 3810, 1, 0, 0, 0, 3808, 3806, 1, 0, 0, 0, 3808, 3809, + 1, 0, 0, 0, 3809, 3811, 1, 0, 0, 0, 3810, 3808, 1, 0, 0, 0, 3811, 3812, + 5, 512, 0, 0, 3812, 423, 1, 0, 0, 0, 3813, 3814, 5, 509, 0, 0, 3814, 3815, + 5, 523, 0, 0, 3815, 3816, 5, 510, 0, 0, 3816, 3817, 5, 494, 0, 0, 3817, + 3818, 3, 672, 336, 0, 3818, 425, 1, 0, 0, 0, 3819, 3820, 7, 23, 0, 0, 3820, + 427, 1, 0, 0, 0, 3821, 3822, 7, 24, 0, 0, 3822, 429, 1, 0, 0, 0, 3823, + 3824, 7, 25, 0, 0, 3824, 431, 1, 0, 0, 0, 3825, 3826, 7, 26, 0, 0, 3826, + 433, 1, 0, 0, 0, 3827, 3851, 5, 521, 0, 0, 3828, 3851, 5, 523, 0, 0, 3829, + 3851, 3, 720, 360, 0, 3830, 3851, 3, 712, 356, 0, 3831, 3851, 5, 525, 0, + 0, 3832, 3851, 5, 259, 0, 0, 3833, 3851, 5, 260, 0, 0, 3834, 3851, 5, 261, + 0, 0, 3835, 3851, 5, 262, 0, 0, 3836, 3851, 5, 263, 0, 0, 3837, 3851, 5, + 264, 0, 0, 3838, 3847, 5, 511, 0, 0, 3839, 3844, 3, 672, 336, 0, 3840, + 3841, 5, 505, 0, 0, 3841, 3843, 3, 672, 336, 0, 3842, 3840, 1, 0, 0, 0, + 3843, 3846, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3844, 3845, 1, 0, 0, 0, + 3845, 3848, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3847, 3839, 1, 0, 0, 0, + 3847, 3848, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3851, 5, 512, 0, + 0, 3850, 3827, 1, 0, 0, 0, 3850, 3828, 1, 0, 0, 0, 3850, 3829, 1, 0, 0, + 0, 3850, 3830, 1, 0, 0, 0, 3850, 3831, 1, 0, 0, 0, 3850, 3832, 1, 0, 0, + 0, 3850, 3833, 1, 0, 0, 0, 3850, 3834, 1, 0, 0, 0, 3850, 3835, 1, 0, 0, + 0, 3850, 3836, 1, 0, 0, 0, 3850, 3837, 1, 0, 0, 0, 3850, 3838, 1, 0, 0, + 0, 3851, 435, 1, 0, 0, 0, 3852, 3853, 5, 511, 0, 0, 3853, 3858, 3, 438, + 219, 0, 3854, 3855, 5, 505, 0, 0, 3855, 3857, 3, 438, 219, 0, 3856, 3854, + 1, 0, 0, 0, 3857, 3860, 1, 0, 0, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, + 1, 0, 0, 0, 3859, 3861, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3861, 3862, + 5, 512, 0, 0, 3862, 3866, 1, 0, 0, 0, 3863, 3864, 5, 511, 0, 0, 3864, 3866, + 5, 512, 0, 0, 3865, 3852, 1, 0, 0, 0, 3865, 3863, 1, 0, 0, 0, 3866, 437, + 1, 0, 0, 0, 3867, 3868, 5, 521, 0, 0, 3868, 3869, 5, 513, 0, 0, 3869, 3877, + 5, 521, 0, 0, 3870, 3871, 5, 521, 0, 0, 3871, 3872, 5, 513, 0, 0, 3872, + 3877, 5, 93, 0, 0, 3873, 3874, 5, 521, 0, 0, 3874, 3875, 5, 513, 0, 0, + 3875, 3877, 5, 489, 0, 0, 3876, 3867, 1, 0, 0, 0, 3876, 3870, 1, 0, 0, + 0, 3876, 3873, 1, 0, 0, 0, 3877, 439, 1, 0, 0, 0, 3878, 3879, 5, 509, 0, + 0, 3879, 3880, 3, 394, 197, 0, 3880, 3881, 5, 510, 0, 0, 3881, 441, 1, + 0, 0, 0, 3882, 3883, 5, 36, 0, 0, 3883, 3885, 3, 712, 356, 0, 3884, 3886, + 3, 444, 222, 0, 3885, 3884, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3887, + 1, 0, 0, 0, 3887, 3891, 5, 96, 0, 0, 3888, 3890, 3, 448, 224, 0, 3889, + 3888, 1, 0, 0, 0, 3890, 3893, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3891, + 3892, 1, 0, 0, 0, 3892, 3894, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3894, + 3895, 5, 83, 0, 0, 3895, 443, 1, 0, 0, 0, 3896, 3898, 3, 446, 223, 0, 3897, + 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, + 3900, 1, 0, 0, 0, 3900, 445, 1, 0, 0, 0, 3901, 3902, 5, 410, 0, 0, 3902, + 3903, 5, 521, 0, 0, 3903, 447, 1, 0, 0, 0, 3904, 3905, 5, 33, 0, 0, 3905, + 3908, 3, 712, 356, 0, 3906, 3907, 5, 190, 0, 0, 3907, 3909, 5, 521, 0, + 0, 3908, 3906, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 449, 1, 0, 0, + 0, 3910, 3911, 5, 357, 0, 0, 3911, 3912, 5, 356, 0, 0, 3912, 3914, 3, 712, + 356, 0, 3913, 3915, 3, 452, 226, 0, 3914, 3913, 1, 0, 0, 0, 3915, 3916, + 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3926, + 1, 0, 0, 0, 3918, 3922, 5, 96, 0, 0, 3919, 3921, 3, 454, 227, 0, 3920, + 3919, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3922, + 3923, 1, 0, 0, 0, 3923, 3925, 1, 0, 0, 0, 3924, 3922, 1, 0, 0, 0, 3925, + 3927, 5, 83, 0, 0, 3926, 3918, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, + 451, 1, 0, 0, 0, 3928, 3929, 5, 423, 0, 0, 3929, 3956, 5, 521, 0, 0, 3930, + 3931, 5, 356, 0, 0, 3931, 3935, 5, 266, 0, 0, 3932, 3936, 5, 521, 0, 0, + 3933, 3934, 5, 514, 0, 0, 3934, 3936, 3, 712, 356, 0, 3935, 3932, 1, 0, + 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3956, 1, 0, 0, 0, 3937, 3938, 5, 63, + 0, 0, 3938, 3956, 5, 521, 0, 0, 3939, 3940, 5, 64, 0, 0, 3940, 3956, 5, + 523, 0, 0, 3941, 3942, 5, 357, 0, 0, 3942, 3956, 5, 521, 0, 0, 3943, 3947, + 5, 354, 0, 0, 3944, 3948, 5, 521, 0, 0, 3945, 3946, 5, 514, 0, 0, 3946, + 3948, 3, 712, 356, 0, 3947, 3944, 1, 0, 0, 0, 3947, 3945, 1, 0, 0, 0, 3948, + 3956, 1, 0, 0, 0, 3949, 3953, 5, 355, 0, 0, 3950, 3954, 5, 521, 0, 0, 3951, + 3952, 5, 514, 0, 0, 3952, 3954, 3, 712, 356, 0, 3953, 3950, 1, 0, 0, 0, + 3953, 3951, 1, 0, 0, 0, 3954, 3956, 1, 0, 0, 0, 3955, 3928, 1, 0, 0, 0, + 3955, 3930, 1, 0, 0, 0, 3955, 3937, 1, 0, 0, 0, 3955, 3939, 1, 0, 0, 0, + 3955, 3941, 1, 0, 0, 0, 3955, 3943, 1, 0, 0, 0, 3955, 3949, 1, 0, 0, 0, + 3956, 453, 1, 0, 0, 0, 3957, 3958, 5, 358, 0, 0, 3958, 3959, 3, 714, 357, + 0, 3959, 3960, 5, 438, 0, 0, 3960, 3972, 7, 12, 0, 0, 3961, 3962, 5, 372, + 0, 0, 3962, 3963, 3, 714, 357, 0, 3963, 3964, 5, 513, 0, 0, 3964, 3968, + 3, 108, 54, 0, 3965, 3966, 5, 299, 0, 0, 3966, 3969, 5, 521, 0, 0, 3967, + 3969, 5, 292, 0, 0, 3968, 3965, 1, 0, 0, 0, 3968, 3967, 1, 0, 0, 0, 3968, + 3969, 1, 0, 0, 0, 3969, 3971, 1, 0, 0, 0, 3970, 3961, 1, 0, 0, 0, 3971, + 3974, 1, 0, 0, 0, 3972, 3970, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, + 3991, 1, 0, 0, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3976, 5, 77, 0, 0, 3976, + 3989, 3, 712, 356, 0, 3977, 3978, 5, 359, 0, 0, 3978, 3979, 5, 507, 0, + 0, 3979, 3984, 3, 456, 228, 0, 3980, 3981, 5, 505, 0, 0, 3981, 3983, 3, + 456, 228, 0, 3982, 3980, 1, 0, 0, 0, 3983, 3986, 1, 0, 0, 0, 3984, 3982, + 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3987, 1, 0, 0, 0, 3986, 3984, + 1, 0, 0, 0, 3987, 3988, 5, 508, 0, 0, 3988, 3990, 1, 0, 0, 0, 3989, 3977, + 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3992, 1, 0, 0, 0, 3991, 3975, + 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3994, + 5, 504, 0, 0, 3994, 455, 1, 0, 0, 0, 3995, 3996, 3, 714, 357, 0, 3996, + 3997, 5, 76, 0, 0, 3997, 3998, 3, 714, 357, 0, 3998, 457, 1, 0, 0, 0, 3999, + 4000, 5, 37, 0, 0, 4000, 4001, 3, 712, 356, 0, 4001, 4002, 5, 423, 0, 0, + 4002, 4003, 3, 108, 54, 0, 4003, 4004, 5, 299, 0, 0, 4004, 4006, 3, 716, + 358, 0, 4005, 4007, 3, 460, 230, 0, 4006, 4005, 1, 0, 0, 0, 4006, 4007, + 1, 0, 0, 0, 4007, 459, 1, 0, 0, 0, 4008, 4010, 3, 462, 231, 0, 4009, 4008, + 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4012, + 1, 0, 0, 0, 4012, 461, 1, 0, 0, 0, 4013, 4014, 5, 410, 0, 0, 4014, 4021, + 5, 521, 0, 0, 4015, 4016, 5, 221, 0, 0, 4016, 4021, 5, 521, 0, 0, 4017, + 4018, 5, 371, 0, 0, 4018, 4019, 5, 430, 0, 0, 4019, 4021, 5, 343, 0, 0, + 4020, 4013, 1, 0, 0, 0, 4020, 4015, 1, 0, 0, 0, 4020, 4017, 1, 0, 0, 0, + 4021, 463, 1, 0, 0, 0, 4022, 4023, 5, 448, 0, 0, 4023, 4032, 5, 521, 0, + 0, 4024, 4029, 3, 560, 280, 0, 4025, 4026, 5, 505, 0, 0, 4026, 4028, 3, + 560, 280, 0, 4027, 4025, 1, 0, 0, 0, 4028, 4031, 1, 0, 0, 0, 4029, 4027, + 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4033, 1, 0, 0, 0, 4031, 4029, + 1, 0, 0, 0, 4032, 4024, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 465, + 1, 0, 0, 0, 4034, 4035, 5, 315, 0, 0, 4035, 4036, 5, 343, 0, 0, 4036, 4037, + 3, 712, 356, 0, 4037, 4038, 3, 468, 234, 0, 4038, 4039, 3, 470, 235, 0, + 4039, 4043, 5, 96, 0, 0, 4040, 4042, 3, 474, 237, 0, 4041, 4040, 1, 0, + 0, 0, 4042, 4045, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4043, 4044, 1, 0, + 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4043, 1, 0, 0, 0, 4046, 4047, 5, 83, + 0, 0, 4047, 467, 1, 0, 0, 0, 4048, 4049, 5, 319, 0, 0, 4049, 4050, 5, 220, + 0, 0, 4050, 4051, 5, 521, 0, 0, 4051, 469, 1, 0, 0, 0, 4052, 4053, 5, 321, + 0, 0, 4053, 4067, 5, 428, 0, 0, 4054, 4055, 5, 321, 0, 0, 4055, 4056, 5, + 322, 0, 0, 4056, 4057, 5, 507, 0, 0, 4057, 4058, 5, 354, 0, 0, 4058, 4059, + 5, 494, 0, 0, 4059, 4060, 3, 472, 236, 0, 4060, 4061, 5, 505, 0, 0, 4061, + 4062, 5, 355, 0, 0, 4062, 4063, 5, 494, 0, 0, 4063, 4064, 3, 472, 236, + 0, 4064, 4065, 5, 508, 0, 0, 4065, 4067, 1, 0, 0, 0, 4066, 4052, 1, 0, + 0, 0, 4066, 4054, 1, 0, 0, 0, 4067, 471, 1, 0, 0, 0, 4068, 4069, 7, 27, + 0, 0, 4069, 473, 1, 0, 0, 0, 4070, 4072, 3, 722, 361, 0, 4071, 4070, 1, + 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4073, 1, 0, 0, 0, 4073, 4076, 5, + 325, 0, 0, 4074, 4077, 3, 714, 357, 0, 4075, 4077, 5, 521, 0, 0, 4076, + 4074, 1, 0, 0, 0, 4076, 4075, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, + 4079, 5, 326, 0, 0, 4079, 4080, 3, 476, 238, 0, 4080, 4081, 5, 327, 0, + 0, 4081, 4085, 5, 521, 0, 0, 4082, 4084, 3, 478, 239, 0, 4083, 4082, 1, + 0, 0, 0, 4084, 4087, 1, 0, 0, 0, 4085, 4083, 1, 0, 0, 0, 4085, 4086, 1, + 0, 0, 0, 4086, 4088, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4088, 4089, 5, + 330, 0, 0, 4089, 4090, 3, 482, 241, 0, 4090, 4091, 5, 504, 0, 0, 4091, + 475, 1, 0, 0, 0, 4092, 4093, 7, 15, 0, 0, 4093, 477, 1, 0, 0, 0, 4094, + 4095, 5, 372, 0, 0, 4095, 4096, 5, 524, 0, 0, 4096, 4097, 5, 513, 0, 0, + 4097, 4113, 3, 108, 54, 0, 4098, 4099, 5, 358, 0, 0, 4099, 4100, 5, 524, + 0, 0, 4100, 4101, 5, 513, 0, 0, 4101, 4113, 3, 108, 54, 0, 4102, 4103, + 5, 197, 0, 0, 4103, 4104, 5, 521, 0, 0, 4104, 4105, 5, 494, 0, 0, 4105, + 4113, 3, 480, 240, 0, 4106, 4107, 5, 329, 0, 0, 4107, 4108, 7, 28, 0, 0, + 4108, 4109, 5, 71, 0, 0, 4109, 4113, 5, 524, 0, 0, 4110, 4111, 5, 328, + 0, 0, 4111, 4113, 5, 523, 0, 0, 4112, 4094, 1, 0, 0, 0, 4112, 4098, 1, + 0, 0, 0, 4112, 4102, 1, 0, 0, 0, 4112, 4106, 1, 0, 0, 0, 4112, 4110, 1, + 0, 0, 0, 4113, 479, 1, 0, 0, 0, 4114, 4120, 5, 521, 0, 0, 4115, 4120, 5, + 524, 0, 0, 4116, 4117, 5, 521, 0, 0, 4117, 4118, 5, 497, 0, 0, 4118, 4120, + 5, 524, 0, 0, 4119, 4114, 1, 0, 0, 0, 4119, 4115, 1, 0, 0, 0, 4119, 4116, + 1, 0, 0, 0, 4120, 481, 1, 0, 0, 0, 4121, 4122, 5, 333, 0, 0, 4122, 4123, + 5, 76, 0, 0, 4123, 4135, 5, 524, 0, 0, 4124, 4125, 5, 266, 0, 0, 4125, + 4126, 5, 76, 0, 0, 4126, 4135, 5, 524, 0, 0, 4127, 4128, 5, 336, 0, 0, + 4128, 4129, 5, 76, 0, 0, 4129, 4135, 5, 524, 0, 0, 4130, 4131, 5, 335, + 0, 0, 4131, 4132, 5, 76, 0, 0, 4132, 4135, 5, 524, 0, 0, 4133, 4135, 5, + 428, 0, 0, 4134, 4121, 1, 0, 0, 0, 4134, 4124, 1, 0, 0, 0, 4134, 4127, + 1, 0, 0, 0, 4134, 4130, 1, 0, 0, 0, 4134, 4133, 1, 0, 0, 0, 4135, 483, + 1, 0, 0, 0, 4136, 4137, 5, 41, 0, 0, 4137, 4138, 5, 525, 0, 0, 4138, 4139, + 5, 93, 0, 0, 4139, 4140, 3, 712, 356, 0, 4140, 4141, 5, 507, 0, 0, 4141, + 4142, 3, 116, 58, 0, 4142, 4143, 5, 508, 0, 0, 4143, 485, 1, 0, 0, 0, 4144, + 4145, 5, 318, 0, 0, 4145, 4146, 5, 343, 0, 0, 4146, 4147, 3, 712, 356, + 0, 4147, 4148, 5, 507, 0, 0, 4148, 4153, 3, 492, 246, 0, 4149, 4150, 5, + 505, 0, 0, 4150, 4152, 3, 492, 246, 0, 4151, 4149, 1, 0, 0, 0, 4152, 4155, + 1, 0, 0, 0, 4153, 4151, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, + 1, 0, 0, 0, 4155, 4153, 1, 0, 0, 0, 4156, 4158, 5, 508, 0, 0, 4157, 4159, + 3, 512, 256, 0, 4158, 4157, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 487, + 1, 0, 0, 0, 4160, 4161, 5, 318, 0, 0, 4161, 4162, 5, 316, 0, 0, 4162, 4163, + 3, 712, 356, 0, 4163, 4164, 5, 507, 0, 0, 4164, 4169, 3, 492, 246, 0, 4165, + 4166, 5, 505, 0, 0, 4166, 4168, 3, 492, 246, 0, 4167, 4165, 1, 0, 0, 0, + 4168, 4171, 1, 0, 0, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, + 4170, 4172, 1, 0, 0, 0, 4171, 4169, 1, 0, 0, 0, 4172, 4174, 5, 508, 0, + 0, 4173, 4175, 3, 496, 248, 0, 4174, 4173, 1, 0, 0, 0, 4174, 4175, 1, 0, + 0, 0, 4175, 4184, 1, 0, 0, 0, 4176, 4180, 5, 509, 0, 0, 4177, 4179, 3, + 500, 250, 0, 4178, 4177, 1, 0, 0, 0, 4179, 4182, 1, 0, 0, 0, 4180, 4178, + 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4180, + 1, 0, 0, 0, 4183, 4185, 5, 510, 0, 0, 4184, 4176, 1, 0, 0, 0, 4184, 4185, + 1, 0, 0, 0, 4185, 489, 1, 0, 0, 0, 4186, 4196, 5, 521, 0, 0, 4187, 4196, + 5, 523, 0, 0, 4188, 4196, 5, 300, 0, 0, 4189, 4196, 5, 301, 0, 0, 4190, + 4192, 5, 30, 0, 0, 4191, 4193, 3, 712, 356, 0, 4192, 4191, 1, 0, 0, 0, + 4192, 4193, 1, 0, 0, 0, 4193, 4196, 1, 0, 0, 0, 4194, 4196, 3, 712, 356, + 0, 4195, 4186, 1, 0, 0, 0, 4195, 4187, 1, 0, 0, 0, 4195, 4188, 1, 0, 0, + 0, 4195, 4189, 1, 0, 0, 0, 4195, 4190, 1, 0, 0, 0, 4195, 4194, 1, 0, 0, + 0, 4196, 491, 1, 0, 0, 0, 4197, 4198, 3, 714, 357, 0, 4198, 4199, 5, 513, + 0, 0, 4199, 4200, 3, 490, 245, 0, 4200, 493, 1, 0, 0, 0, 4201, 4202, 3, + 714, 357, 0, 4202, 4203, 5, 494, 0, 0, 4203, 4204, 3, 490, 245, 0, 4204, + 495, 1, 0, 0, 0, 4205, 4206, 5, 321, 0, 0, 4206, 4211, 3, 498, 249, 0, + 4207, 4208, 5, 505, 0, 0, 4208, 4210, 3, 498, 249, 0, 4209, 4207, 1, 0, + 0, 0, 4210, 4213, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, + 0, 0, 4212, 497, 1, 0, 0, 0, 4213, 4211, 1, 0, 0, 0, 4214, 4223, 5, 322, + 0, 0, 4215, 4223, 5, 350, 0, 0, 4216, 4223, 5, 351, 0, 0, 4217, 4219, 5, + 30, 0, 0, 4218, 4220, 3, 712, 356, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, + 1, 0, 0, 0, 4220, 4223, 1, 0, 0, 0, 4221, 4223, 5, 525, 0, 0, 4222, 4214, + 1, 0, 0, 0, 4222, 4215, 1, 0, 0, 0, 4222, 4216, 1, 0, 0, 0, 4222, 4217, + 1, 0, 0, 0, 4222, 4221, 1, 0, 0, 0, 4223, 499, 1, 0, 0, 0, 4224, 4225, + 5, 345, 0, 0, 4225, 4226, 5, 23, 0, 0, 4226, 4229, 3, 712, 356, 0, 4227, + 4228, 5, 76, 0, 0, 4228, 4230, 5, 521, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, + 4230, 1, 0, 0, 0, 4230, 4242, 1, 0, 0, 0, 4231, 4232, 5, 507, 0, 0, 4232, + 4237, 3, 492, 246, 0, 4233, 4234, 5, 505, 0, 0, 4234, 4236, 3, 492, 246, + 0, 4235, 4233, 1, 0, 0, 0, 4236, 4239, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, + 0, 4237, 4238, 1, 0, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4237, 1, 0, 0, + 0, 4240, 4241, 5, 508, 0, 0, 4241, 4243, 1, 0, 0, 0, 4242, 4231, 1, 0, + 0, 0, 4242, 4243, 1, 0, 0, 0, 4243, 4245, 1, 0, 0, 0, 4244, 4246, 3, 502, + 251, 0, 4245, 4244, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4248, 1, + 0, 0, 0, 4247, 4249, 5, 504, 0, 0, 4248, 4247, 1, 0, 0, 0, 4248, 4249, + 1, 0, 0, 0, 4249, 501, 1, 0, 0, 0, 4250, 4251, 5, 347, 0, 0, 4251, 4261, + 5, 507, 0, 0, 4252, 4262, 5, 499, 0, 0, 4253, 4258, 3, 504, 252, 0, 4254, + 4255, 5, 505, 0, 0, 4255, 4257, 3, 504, 252, 0, 4256, 4254, 1, 0, 0, 0, + 4257, 4260, 1, 0, 0, 0, 4258, 4256, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, + 4259, 4262, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4261, 4252, 1, 0, 0, 0, + 4261, 4253, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 4264, 5, 508, 0, + 0, 4264, 503, 1, 0, 0, 0, 4265, 4268, 5, 525, 0, 0, 4266, 4267, 5, 76, + 0, 0, 4267, 4269, 5, 521, 0, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4269, 1, + 0, 0, 0, 4269, 4271, 1, 0, 0, 0, 4270, 4272, 3, 506, 253, 0, 4271, 4270, + 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 505, 1, 0, 0, 0, 4273, 4274, + 5, 507, 0, 0, 4274, 4279, 5, 525, 0, 0, 4275, 4276, 5, 505, 0, 0, 4276, + 4278, 5, 525, 0, 0, 4277, 4275, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, + 4277, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, + 4279, 1, 0, 0, 0, 4282, 4283, 5, 508, 0, 0, 4283, 507, 1, 0, 0, 0, 4284, + 4285, 5, 26, 0, 0, 4285, 4286, 5, 23, 0, 0, 4286, 4287, 3, 712, 356, 0, + 4287, 4288, 5, 71, 0, 0, 4288, 4289, 5, 318, 0, 0, 4289, 4290, 5, 343, + 0, 0, 4290, 4291, 3, 712, 356, 0, 4291, 4292, 5, 507, 0, 0, 4292, 4297, + 3, 492, 246, 0, 4293, 4294, 5, 505, 0, 0, 4294, 4296, 3, 492, 246, 0, 4295, + 4293, 1, 0, 0, 0, 4296, 4299, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, + 4298, 1, 0, 0, 0, 4298, 4300, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4300, + 4306, 5, 508, 0, 0, 4301, 4303, 5, 507, 0, 0, 4302, 4304, 3, 100, 50, 0, + 4303, 4302, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, + 4305, 4307, 5, 508, 0, 0, 4306, 4301, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, + 0, 4307, 509, 1, 0, 0, 0, 4308, 4311, 5, 375, 0, 0, 4309, 4312, 3, 712, + 356, 0, 4310, 4312, 5, 525, 0, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4310, 1, + 0, 0, 0, 4312, 4316, 1, 0, 0, 0, 4313, 4315, 3, 34, 17, 0, 4314, 4313, + 1, 0, 0, 0, 4315, 4318, 1, 0, 0, 0, 4316, 4314, 1, 0, 0, 0, 4316, 4317, + 1, 0, 0, 0, 4317, 511, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4319, 4320, + 5, 374, 0, 0, 4320, 4321, 5, 507, 0, 0, 4321, 4326, 3, 514, 257, 0, 4322, + 4323, 5, 505, 0, 0, 4323, 4325, 3, 514, 257, 0, 4324, 4322, 1, 0, 0, 0, + 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, + 4327, 4329, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4330, 5, 508, 0, + 0, 4330, 513, 1, 0, 0, 0, 4331, 4332, 5, 521, 0, 0, 4332, 4333, 5, 513, + 0, 0, 4333, 4334, 3, 490, 245, 0, 4334, 515, 1, 0, 0, 0, 4335, 4336, 5, + 444, 0, 0, 4336, 4337, 5, 445, 0, 0, 4337, 4338, 5, 316, 0, 0, 4338, 4339, + 3, 712, 356, 0, 4339, 4340, 5, 507, 0, 0, 4340, 4345, 3, 492, 246, 0, 4341, + 4342, 5, 505, 0, 0, 4342, 4344, 3, 492, 246, 0, 4343, 4341, 1, 0, 0, 0, + 4344, 4347, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, + 4346, 4348, 1, 0, 0, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4349, 5, 508, 0, + 0, 4349, 4351, 5, 509, 0, 0, 4350, 4352, 3, 518, 259, 0, 4351, 4350, 1, + 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4353, 4354, 1, + 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 5, 510, 0, 0, 4356, 517, 1, + 0, 0, 0, 4357, 4358, 5, 407, 0, 0, 4358, 4359, 5, 525, 0, 0, 4359, 4360, + 5, 507, 0, 0, 4360, 4365, 3, 520, 260, 0, 4361, 4362, 5, 505, 0, 0, 4362, + 4364, 3, 520, 260, 0, 4363, 4361, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, + 4363, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 4368, 1, 0, 0, 0, 4367, + 4365, 1, 0, 0, 0, 4368, 4369, 5, 508, 0, 0, 4369, 4372, 7, 29, 0, 0, 4370, + 4371, 5, 23, 0, 0, 4371, 4373, 3, 712, 356, 0, 4372, 4370, 1, 0, 0, 0, + 4372, 4373, 1, 0, 0, 0, 4373, 4376, 1, 0, 0, 0, 4374, 4375, 5, 30, 0, 0, + 4375, 4377, 3, 712, 356, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, + 0, 4377, 4378, 1, 0, 0, 0, 4378, 4379, 5, 504, 0, 0, 4379, 519, 1, 0, 0, + 0, 4380, 4381, 5, 525, 0, 0, 4381, 4382, 5, 513, 0, 0, 4382, 4383, 3, 108, + 54, 0, 4383, 521, 1, 0, 0, 0, 4384, 4385, 5, 32, 0, 0, 4385, 4390, 3, 712, + 356, 0, 4386, 4387, 5, 372, 0, 0, 4387, 4388, 5, 524, 0, 0, 4388, 4389, + 5, 513, 0, 0, 4389, 4391, 3, 712, 356, 0, 4390, 4386, 1, 0, 0, 0, 4390, + 4391, 1, 0, 0, 0, 4391, 4394, 1, 0, 0, 0, 4392, 4393, 5, 488, 0, 0, 4393, + 4395, 5, 521, 0, 0, 4394, 4392, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, + 4398, 1, 0, 0, 0, 4396, 4397, 5, 487, 0, 0, 4397, 4399, 5, 521, 0, 0, 4398, + 4396, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 4403, 1, 0, 0, 0, 4400, + 4401, 5, 365, 0, 0, 4401, 4402, 5, 464, 0, 0, 4402, 4404, 7, 30, 0, 0, + 4403, 4400, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4408, 1, 0, 0, 0, + 4405, 4406, 5, 475, 0, 0, 4406, 4407, 5, 33, 0, 0, 4407, 4409, 3, 712, + 356, 0, 4408, 4405, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 4413, 1, + 0, 0, 0, 4410, 4411, 5, 474, 0, 0, 4411, 4412, 5, 272, 0, 0, 4412, 4414, + 5, 521, 0, 0, 4413, 4410, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4415, + 1, 0, 0, 0, 4415, 4416, 5, 96, 0, 0, 4416, 4417, 3, 524, 262, 0, 4417, + 4418, 5, 83, 0, 0, 4418, 4420, 5, 32, 0, 0, 4419, 4421, 5, 504, 0, 0, 4420, + 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4423, 1, 0, 0, 0, 4422, + 4424, 5, 500, 0, 0, 4423, 4422, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, + 523, 1, 0, 0, 0, 4425, 4427, 3, 526, 263, 0, 4426, 4425, 1, 0, 0, 0, 4427, + 4430, 1, 0, 0, 0, 4428, 4426, 1, 0, 0, 0, 4428, 4429, 1, 0, 0, 0, 4429, + 525, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4431, 4432, 3, 528, 264, 0, 4432, + 4433, 5, 504, 0, 0, 4433, 4459, 1, 0, 0, 0, 4434, 4435, 3, 534, 267, 0, + 4435, 4436, 5, 504, 0, 0, 4436, 4459, 1, 0, 0, 0, 4437, 4438, 3, 538, 269, + 0, 4438, 4439, 5, 504, 0, 0, 4439, 4459, 1, 0, 0, 0, 4440, 4441, 3, 540, + 270, 0, 4441, 4442, 5, 504, 0, 0, 4442, 4459, 1, 0, 0, 0, 4443, 4444, 3, + 544, 272, 0, 4444, 4445, 5, 504, 0, 0, 4445, 4459, 1, 0, 0, 0, 4446, 4447, + 3, 548, 274, 0, 4447, 4448, 5, 504, 0, 0, 4448, 4459, 1, 0, 0, 0, 4449, + 4450, 3, 550, 275, 0, 4450, 4451, 5, 504, 0, 0, 4451, 4459, 1, 0, 0, 0, + 4452, 4453, 3, 552, 276, 0, 4453, 4454, 5, 504, 0, 0, 4454, 4459, 1, 0, + 0, 0, 4455, 4456, 3, 554, 277, 0, 4456, 4457, 5, 504, 0, 0, 4457, 4459, + 1, 0, 0, 0, 4458, 4431, 1, 0, 0, 0, 4458, 4434, 1, 0, 0, 0, 4458, 4437, + 1, 0, 0, 0, 4458, 4440, 1, 0, 0, 0, 4458, 4443, 1, 0, 0, 0, 4458, 4446, + 1, 0, 0, 0, 4458, 4449, 1, 0, 0, 0, 4458, 4452, 1, 0, 0, 0, 4458, 4455, + 1, 0, 0, 0, 4459, 527, 1, 0, 0, 0, 4460, 4461, 5, 465, 0, 0, 4461, 4462, + 5, 466, 0, 0, 4462, 4463, 5, 525, 0, 0, 4463, 4466, 5, 521, 0, 0, 4464, + 4465, 5, 33, 0, 0, 4465, 4467, 3, 712, 356, 0, 4466, 4464, 1, 0, 0, 0, + 4466, 4467, 1, 0, 0, 0, 4467, 4471, 1, 0, 0, 0, 4468, 4469, 5, 470, 0, + 0, 4469, 4470, 5, 30, 0, 0, 4470, 4472, 3, 712, 356, 0, 4471, 4468, 1, + 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4476, 1, 0, 0, 0, 4473, 4474, 5, + 470, 0, 0, 4474, 4475, 5, 312, 0, 0, 4475, 4477, 5, 521, 0, 0, 4476, 4473, + 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4480, 1, 0, 0, 0, 4478, 4479, + 5, 23, 0, 0, 4479, 4481, 3, 712, 356, 0, 4480, 4478, 1, 0, 0, 0, 4480, + 4481, 1, 0, 0, 0, 4481, 4485, 1, 0, 0, 0, 4482, 4483, 5, 474, 0, 0, 4483, + 4484, 5, 272, 0, 0, 4484, 4486, 5, 521, 0, 0, 4485, 4482, 1, 0, 0, 0, 4485, + 4486, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4488, 5, 487, 0, 0, 4488, + 4490, 5, 521, 0, 0, 4489, 4487, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, + 4497, 1, 0, 0, 0, 4491, 4493, 5, 469, 0, 0, 4492, 4494, 3, 532, 266, 0, + 4493, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4493, 1, 0, 0, 0, + 4495, 4496, 1, 0, 0, 0, 4496, 4498, 1, 0, 0, 0, 4497, 4491, 1, 0, 0, 0, + 4497, 4498, 1, 0, 0, 0, 4498, 4506, 1, 0, 0, 0, 4499, 4500, 5, 480, 0, + 0, 4500, 4502, 5, 445, 0, 0, 4501, 4503, 3, 530, 265, 0, 4502, 4501, 1, + 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4505, 1, + 0, 0, 0, 4505, 4507, 1, 0, 0, 0, 4506, 4499, 1, 0, 0, 0, 4506, 4507, 1, + 0, 0, 0, 4507, 4558, 1, 0, 0, 0, 4508, 4509, 5, 483, 0, 0, 4509, 4510, + 5, 465, 0, 0, 4510, 4511, 5, 466, 0, 0, 4511, 4512, 5, 525, 0, 0, 4512, + 4515, 5, 521, 0, 0, 4513, 4514, 5, 33, 0, 0, 4514, 4516, 3, 712, 356, 0, + 4515, 4513, 1, 0, 0, 0, 4515, 4516, 1, 0, 0, 0, 4516, 4520, 1, 0, 0, 0, + 4517, 4518, 5, 470, 0, 0, 4518, 4519, 5, 30, 0, 0, 4519, 4521, 3, 712, + 356, 0, 4520, 4517, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 4525, 1, + 0, 0, 0, 4522, 4523, 5, 470, 0, 0, 4523, 4524, 5, 312, 0, 0, 4524, 4526, + 5, 521, 0, 0, 4525, 4522, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4529, + 1, 0, 0, 0, 4527, 4528, 5, 23, 0, 0, 4528, 4530, 3, 712, 356, 0, 4529, + 4527, 1, 0, 0, 0, 4529, 4530, 1, 0, 0, 0, 4530, 4534, 1, 0, 0, 0, 4531, + 4532, 5, 474, 0, 0, 4532, 4533, 5, 272, 0, 0, 4533, 4535, 5, 521, 0, 0, + 4534, 4531, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4538, 1, 0, 0, 0, + 4536, 4537, 5, 487, 0, 0, 4537, 4539, 5, 521, 0, 0, 4538, 4536, 1, 0, 0, + 0, 4538, 4539, 1, 0, 0, 0, 4539, 4546, 1, 0, 0, 0, 4540, 4542, 5, 469, + 0, 0, 4541, 4543, 3, 532, 266, 0, 4542, 4541, 1, 0, 0, 0, 4543, 4544, 1, + 0, 0, 0, 4544, 4542, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4547, 1, + 0, 0, 0, 4546, 4540, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4555, 1, + 0, 0, 0, 4548, 4549, 5, 480, 0, 0, 4549, 4551, 5, 445, 0, 0, 4550, 4552, + 3, 530, 265, 0, 4551, 4550, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4551, + 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4556, 1, 0, 0, 0, 4555, 4548, + 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4558, 1, 0, 0, 0, 4557, 4460, + 1, 0, 0, 0, 4557, 4508, 1, 0, 0, 0, 4558, 529, 1, 0, 0, 0, 4559, 4560, + 5, 481, 0, 0, 4560, 4562, 5, 472, 0, 0, 4561, 4563, 5, 521, 0, 0, 4562, + 4561, 1, 0, 0, 0, 4562, 4563, 1, 0, 0, 0, 4563, 4568, 1, 0, 0, 0, 4564, + 4565, 5, 509, 0, 0, 4565, 4566, 3, 524, 262, 0, 4566, 4567, 5, 510, 0, + 0, 4567, 4569, 1, 0, 0, 0, 4568, 4564, 1, 0, 0, 0, 4568, 4569, 1, 0, 0, + 0, 4569, 4593, 1, 0, 0, 0, 4570, 4571, 5, 482, 0, 0, 4571, 4572, 5, 481, + 0, 0, 4572, 4574, 5, 472, 0, 0, 4573, 4575, 5, 521, 0, 0, 4574, 4573, 1, + 0, 0, 0, 4574, 4575, 1, 0, 0, 0, 4575, 4580, 1, 0, 0, 0, 4576, 4577, 5, + 509, 0, 0, 4577, 4578, 3, 524, 262, 0, 4578, 4579, 5, 510, 0, 0, 4579, + 4581, 1, 0, 0, 0, 4580, 4576, 1, 0, 0, 0, 4580, 4581, 1, 0, 0, 0, 4581, + 4593, 1, 0, 0, 0, 4582, 4584, 5, 472, 0, 0, 4583, 4585, 5, 521, 0, 0, 4584, + 4583, 1, 0, 0, 0, 4584, 4585, 1, 0, 0, 0, 4585, 4590, 1, 0, 0, 0, 4586, + 4587, 5, 509, 0, 0, 4587, 4588, 3, 524, 262, 0, 4588, 4589, 5, 510, 0, + 0, 4589, 4591, 1, 0, 0, 0, 4590, 4586, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, + 0, 4591, 4593, 1, 0, 0, 0, 4592, 4559, 1, 0, 0, 0, 4592, 4570, 1, 0, 0, + 0, 4592, 4582, 1, 0, 0, 0, 4593, 531, 1, 0, 0, 0, 4594, 4595, 5, 521, 0, + 0, 4595, 4596, 5, 509, 0, 0, 4596, 4597, 3, 524, 262, 0, 4597, 4598, 5, + 510, 0, 0, 4598, 533, 1, 0, 0, 0, 4599, 4600, 5, 113, 0, 0, 4600, 4601, + 5, 30, 0, 0, 4601, 4604, 3, 712, 356, 0, 4602, 4603, 5, 410, 0, 0, 4603, + 4605, 5, 521, 0, 0, 4604, 4602, 1, 0, 0, 0, 4604, 4605, 1, 0, 0, 0, 4605, + 4618, 1, 0, 0, 0, 4606, 4607, 5, 139, 0, 0, 4607, 4608, 5, 507, 0, 0, 4608, + 4613, 3, 536, 268, 0, 4609, 4610, 5, 505, 0, 0, 4610, 4612, 3, 536, 268, + 0, 4611, 4609, 1, 0, 0, 0, 4612, 4615, 1, 0, 0, 0, 4613, 4611, 1, 0, 0, + 0, 4613, 4614, 1, 0, 0, 0, 4614, 4616, 1, 0, 0, 0, 4615, 4613, 1, 0, 0, + 0, 4616, 4617, 5, 508, 0, 0, 4617, 4619, 1, 0, 0, 0, 4618, 4606, 1, 0, + 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 4626, 1, 0, 0, 0, 4620, 4622, 5, 469, + 0, 0, 4621, 4623, 3, 542, 271, 0, 4622, 4621, 1, 0, 0, 0, 4623, 4624, 1, + 0, 0, 0, 4624, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4627, 1, + 0, 0, 0, 4626, 4620, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4635, 1, + 0, 0, 0, 4628, 4629, 5, 480, 0, 0, 4629, 4631, 5, 445, 0, 0, 4630, 4632, + 3, 530, 265, 0, 4631, 4630, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4631, + 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4636, 1, 0, 0, 0, 4635, 4628, + 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 535, 1, 0, 0, 0, 4637, 4638, + 3, 712, 356, 0, 4638, 4639, 5, 494, 0, 0, 4639, 4640, 5, 521, 0, 0, 4640, + 537, 1, 0, 0, 0, 4641, 4642, 5, 113, 0, 0, 4642, 4643, 5, 32, 0, 0, 4643, + 4646, 3, 712, 356, 0, 4644, 4645, 5, 410, 0, 0, 4645, 4647, 5, 521, 0, + 0, 4646, 4644, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4660, 1, 0, 0, + 0, 4648, 4649, 5, 139, 0, 0, 4649, 4650, 5, 507, 0, 0, 4650, 4655, 3, 536, + 268, 0, 4651, 4652, 5, 505, 0, 0, 4652, 4654, 3, 536, 268, 0, 4653, 4651, + 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, + 1, 0, 0, 0, 4656, 4658, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4659, + 5, 508, 0, 0, 4659, 4661, 1, 0, 0, 0, 4660, 4648, 1, 0, 0, 0, 4660, 4661, + 1, 0, 0, 0, 4661, 539, 1, 0, 0, 0, 4662, 4664, 5, 467, 0, 0, 4663, 4665, + 5, 521, 0, 0, 4664, 4663, 1, 0, 0, 0, 4664, 4665, 1, 0, 0, 0, 4665, 4668, + 1, 0, 0, 0, 4666, 4667, 5, 410, 0, 0, 4667, 4669, 5, 521, 0, 0, 4668, 4666, + 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4676, 1, 0, 0, 0, 4670, 4672, + 5, 469, 0, 0, 4671, 4673, 3, 542, 271, 0, 4672, 4671, 1, 0, 0, 0, 4673, + 4674, 1, 0, 0, 0, 4674, 4672, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, + 4677, 1, 0, 0, 0, 4676, 4670, 1, 0, 0, 0, 4676, 4677, 1, 0, 0, 0, 4677, + 541, 1, 0, 0, 0, 4678, 4679, 7, 31, 0, 0, 4679, 4680, 5, 517, 0, 0, 4680, + 4681, 5, 509, 0, 0, 4681, 4682, 3, 524, 262, 0, 4682, 4683, 5, 510, 0, + 0, 4683, 543, 1, 0, 0, 0, 4684, 4685, 5, 477, 0, 0, 4685, 4688, 5, 468, + 0, 0, 4686, 4687, 5, 410, 0, 0, 4687, 4689, 5, 521, 0, 0, 4688, 4686, 1, + 0, 0, 0, 4688, 4689, 1, 0, 0, 0, 4689, 4691, 1, 0, 0, 0, 4690, 4692, 3, + 546, 273, 0, 4691, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4691, + 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 545, 1, 0, 0, 0, 4695, 4696, + 5, 327, 0, 0, 4696, 4697, 5, 523, 0, 0, 4697, 4698, 5, 509, 0, 0, 4698, + 4699, 3, 524, 262, 0, 4699, 4700, 5, 510, 0, 0, 4700, 547, 1, 0, 0, 0, + 4701, 4702, 5, 473, 0, 0, 4702, 4703, 5, 430, 0, 0, 4703, 4706, 5, 525, + 0, 0, 4704, 4705, 5, 410, 0, 0, 4705, 4707, 5, 521, 0, 0, 4706, 4704, 1, + 0, 0, 0, 4706, 4707, 1, 0, 0, 0, 4707, 549, 1, 0, 0, 0, 4708, 4709, 5, + 478, 0, 0, 4709, 4710, 5, 433, 0, 0, 4710, 4712, 5, 472, 0, 0, 4711, 4713, + 5, 521, 0, 0, 4712, 4711, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4716, + 1, 0, 0, 0, 4714, 4715, 5, 410, 0, 0, 4715, 4717, 5, 521, 0, 0, 4716, 4714, + 1, 0, 0, 0, 4716, 4717, 1, 0, 0, 0, 4717, 551, 1, 0, 0, 0, 4718, 4719, + 5, 478, 0, 0, 4719, 4720, 5, 433, 0, 0, 4720, 4723, 5, 471, 0, 0, 4721, + 4722, 5, 410, 0, 0, 4722, 4724, 5, 521, 0, 0, 4723, 4721, 1, 0, 0, 0, 4723, + 4724, 1, 0, 0, 0, 4724, 4732, 1, 0, 0, 0, 4725, 4726, 5, 480, 0, 0, 4726, + 4728, 5, 445, 0, 0, 4727, 4729, 3, 530, 265, 0, 4728, 4727, 1, 0, 0, 0, + 4729, 4730, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4731, 1, 0, 0, 0, + 4731, 4733, 1, 0, 0, 0, 4732, 4725, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, + 4733, 553, 1, 0, 0, 0, 4734, 4735, 5, 479, 0, 0, 4735, 4736, 5, 521, 0, + 0, 4736, 555, 1, 0, 0, 0, 4737, 4738, 3, 558, 279, 0, 4738, 4743, 3, 560, + 280, 0, 4739, 4740, 5, 505, 0, 0, 4740, 4742, 3, 560, 280, 0, 4741, 4739, + 1, 0, 0, 0, 4742, 4745, 1, 0, 0, 0, 4743, 4741, 1, 0, 0, 0, 4743, 4744, + 1, 0, 0, 0, 4744, 4777, 1, 0, 0, 0, 4745, 4743, 1, 0, 0, 0, 4746, 4747, + 5, 37, 0, 0, 4747, 4751, 5, 521, 0, 0, 4748, 4749, 5, 424, 0, 0, 4749, + 4752, 3, 562, 281, 0, 4750, 4752, 5, 19, 0, 0, 4751, 4748, 1, 0, 0, 0, + 4751, 4750, 1, 0, 0, 0, 4752, 4756, 1, 0, 0, 0, 4753, 4754, 5, 293, 0, + 0, 4754, 4755, 5, 448, 0, 0, 4755, 4757, 5, 521, 0, 0, 4756, 4753, 1, 0, + 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4777, 1, 0, 0, 0, 4758, 4759, 5, 19, + 0, 0, 4759, 4760, 5, 37, 0, 0, 4760, 4764, 5, 521, 0, 0, 4761, 4762, 5, + 293, 0, 0, 4762, 4763, 5, 448, 0, 0, 4763, 4765, 5, 521, 0, 0, 4764, 4761, + 1, 0, 0, 0, 4764, 4765, 1, 0, 0, 0, 4765, 4777, 1, 0, 0, 0, 4766, 4767, + 5, 448, 0, 0, 4767, 4768, 5, 521, 0, 0, 4768, 4773, 3, 560, 280, 0, 4769, + 4770, 5, 505, 0, 0, 4770, 4772, 3, 560, 280, 0, 4771, 4769, 1, 0, 0, 0, + 4772, 4775, 1, 0, 0, 0, 4773, 4771, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, + 4774, 4777, 1, 0, 0, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4737, 1, 0, 0, 0, + 4776, 4746, 1, 0, 0, 0, 4776, 4758, 1, 0, 0, 0, 4776, 4766, 1, 0, 0, 0, + 4777, 557, 1, 0, 0, 0, 4778, 4779, 7, 32, 0, 0, 4779, 559, 1, 0, 0, 0, + 4780, 4781, 5, 525, 0, 0, 4781, 4782, 5, 494, 0, 0, 4782, 4783, 3, 562, + 281, 0, 4783, 561, 1, 0, 0, 0, 4784, 4789, 5, 521, 0, 0, 4785, 4789, 5, + 523, 0, 0, 4786, 4789, 3, 720, 360, 0, 4787, 4789, 3, 712, 356, 0, 4788, + 4784, 1, 0, 0, 0, 4788, 4785, 1, 0, 0, 0, 4788, 4786, 1, 0, 0, 0, 4788, + 4787, 1, 0, 0, 0, 4789, 563, 1, 0, 0, 0, 4790, 4795, 3, 566, 283, 0, 4791, + 4795, 3, 578, 289, 0, 4792, 4795, 3, 580, 290, 0, 4793, 4795, 3, 586, 293, + 0, 4794, 4790, 1, 0, 0, 0, 4794, 4791, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, + 0, 4794, 4793, 1, 0, 0, 0, 4795, 565, 1, 0, 0, 0, 4796, 4797, 5, 65, 0, + 0, 4797, 5232, 5, 381, 0, 0, 4798, 4799, 5, 65, 0, 0, 4799, 4800, 5, 348, + 0, 0, 4800, 4801, 5, 382, 0, 0, 4801, 4802, 5, 71, 0, 0, 4802, 5232, 3, + 712, 356, 0, 4803, 4804, 5, 65, 0, 0, 4804, 4805, 5, 348, 0, 0, 4805, 4806, + 5, 117, 0, 0, 4806, 4807, 5, 71, 0, 0, 4807, 5232, 3, 712, 356, 0, 4808, + 4809, 5, 65, 0, 0, 4809, 4810, 5, 348, 0, 0, 4810, 4811, 5, 409, 0, 0, + 4811, 4812, 5, 71, 0, 0, 4812, 5232, 3, 712, 356, 0, 4813, 4814, 5, 65, + 0, 0, 4814, 4815, 5, 348, 0, 0, 4815, 4816, 5, 408, 0, 0, 4816, 4817, 5, + 71, 0, 0, 4817, 5232, 3, 712, 356, 0, 4818, 4819, 5, 65, 0, 0, 4819, 4825, + 5, 382, 0, 0, 4820, 4823, 5, 293, 0, 0, 4821, 4824, 3, 712, 356, 0, 4822, + 4824, 5, 525, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4822, 1, 0, 0, 0, 4824, + 4826, 1, 0, 0, 0, 4825, 4820, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, + 5232, 1, 0, 0, 0, 4827, 4828, 5, 65, 0, 0, 4828, 4834, 5, 383, 0, 0, 4829, + 4832, 5, 293, 0, 0, 4830, 4833, 3, 712, 356, 0, 4831, 4833, 5, 525, 0, + 0, 4832, 4830, 1, 0, 0, 0, 4832, 4831, 1, 0, 0, 0, 4833, 4835, 1, 0, 0, + 0, 4834, 4829, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 5232, 1, 0, 0, + 0, 4836, 4837, 5, 65, 0, 0, 4837, 4843, 5, 384, 0, 0, 4838, 4841, 5, 293, + 0, 0, 4839, 4842, 3, 712, 356, 0, 4840, 4842, 5, 525, 0, 0, 4841, 4839, + 1, 0, 0, 0, 4841, 4840, 1, 0, 0, 0, 4842, 4844, 1, 0, 0, 0, 4843, 4838, + 1, 0, 0, 0, 4843, 4844, 1, 0, 0, 0, 4844, 5232, 1, 0, 0, 0, 4845, 4846, + 5, 65, 0, 0, 4846, 4852, 5, 385, 0, 0, 4847, 4850, 5, 293, 0, 0, 4848, + 4851, 3, 712, 356, 0, 4849, 4851, 5, 525, 0, 0, 4850, 4848, 1, 0, 0, 0, + 4850, 4849, 1, 0, 0, 0, 4851, 4853, 1, 0, 0, 0, 4852, 4847, 1, 0, 0, 0, + 4852, 4853, 1, 0, 0, 0, 4853, 5232, 1, 0, 0, 0, 4854, 4855, 5, 65, 0, 0, + 4855, 4861, 5, 386, 0, 0, 4856, 4859, 5, 293, 0, 0, 4857, 4860, 3, 712, + 356, 0, 4858, 4860, 5, 525, 0, 0, 4859, 4857, 1, 0, 0, 0, 4859, 4858, 1, + 0, 0, 0, 4860, 4862, 1, 0, 0, 0, 4861, 4856, 1, 0, 0, 0, 4861, 4862, 1, + 0, 0, 0, 4862, 5232, 1, 0, 0, 0, 4863, 4864, 5, 65, 0, 0, 4864, 4870, 5, + 143, 0, 0, 4865, 4868, 5, 293, 0, 0, 4866, 4869, 3, 712, 356, 0, 4867, + 4869, 5, 525, 0, 0, 4868, 4866, 1, 0, 0, 0, 4868, 4867, 1, 0, 0, 0, 4869, + 4871, 1, 0, 0, 0, 4870, 4865, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, + 5232, 1, 0, 0, 0, 4872, 4873, 5, 65, 0, 0, 4873, 4879, 5, 145, 0, 0, 4874, + 4877, 5, 293, 0, 0, 4875, 4878, 3, 712, 356, 0, 4876, 4878, 5, 525, 0, + 0, 4877, 4875, 1, 0, 0, 0, 4877, 4876, 1, 0, 0, 0, 4878, 4880, 1, 0, 0, + 0, 4879, 4874, 1, 0, 0, 0, 4879, 4880, 1, 0, 0, 0, 4880, 5232, 1, 0, 0, + 0, 4881, 4882, 5, 65, 0, 0, 4882, 4888, 5, 387, 0, 0, 4883, 4886, 5, 293, + 0, 0, 4884, 4887, 3, 712, 356, 0, 4885, 4887, 5, 525, 0, 0, 4886, 4884, + 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 4889, 1, 0, 0, 0, 4888, 4883, + 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 5232, 1, 0, 0, 0, 4890, 4891, + 5, 65, 0, 0, 4891, 4897, 5, 388, 0, 0, 4892, 4895, 5, 293, 0, 0, 4893, + 4896, 3, 712, 356, 0, 4894, 4896, 5, 525, 0, 0, 4895, 4893, 1, 0, 0, 0, + 4895, 4894, 1, 0, 0, 0, 4896, 4898, 1, 0, 0, 0, 4897, 4892, 1, 0, 0, 0, + 4897, 4898, 1, 0, 0, 0, 4898, 5232, 1, 0, 0, 0, 4899, 4900, 5, 65, 0, 0, + 4900, 4901, 5, 37, 0, 0, 4901, 4907, 5, 425, 0, 0, 4902, 4905, 5, 293, + 0, 0, 4903, 4906, 3, 712, 356, 0, 4904, 4906, 5, 525, 0, 0, 4905, 4903, + 1, 0, 0, 0, 4905, 4904, 1, 0, 0, 0, 4906, 4908, 1, 0, 0, 0, 4907, 4902, + 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 5232, 1, 0, 0, 0, 4909, 4910, + 5, 65, 0, 0, 4910, 4916, 5, 144, 0, 0, 4911, 4914, 5, 293, 0, 0, 4912, + 4915, 3, 712, 356, 0, 4913, 4915, 5, 525, 0, 0, 4914, 4912, 1, 0, 0, 0, + 4914, 4913, 1, 0, 0, 0, 4915, 4917, 1, 0, 0, 0, 4916, 4911, 1, 0, 0, 0, + 4916, 4917, 1, 0, 0, 0, 4917, 5232, 1, 0, 0, 0, 4918, 4919, 5, 65, 0, 0, + 4919, 4925, 5, 146, 0, 0, 4920, 4923, 5, 293, 0, 0, 4921, 4924, 3, 712, + 356, 0, 4922, 4924, 5, 525, 0, 0, 4923, 4921, 1, 0, 0, 0, 4923, 4922, 1, + 0, 0, 0, 4924, 4926, 1, 0, 0, 0, 4925, 4920, 1, 0, 0, 0, 4925, 4926, 1, + 0, 0, 0, 4926, 5232, 1, 0, 0, 0, 4927, 4928, 5, 65, 0, 0, 4928, 4929, 5, + 114, 0, 0, 4929, 4935, 5, 117, 0, 0, 4930, 4933, 5, 293, 0, 0, 4931, 4934, + 3, 712, 356, 0, 4932, 4934, 5, 525, 0, 0, 4933, 4931, 1, 0, 0, 0, 4933, + 4932, 1, 0, 0, 0, 4934, 4936, 1, 0, 0, 0, 4935, 4930, 1, 0, 0, 0, 4935, + 4936, 1, 0, 0, 0, 4936, 5232, 1, 0, 0, 0, 4937, 4938, 5, 65, 0, 0, 4938, + 4939, 5, 115, 0, 0, 4939, 4945, 5, 117, 0, 0, 4940, 4943, 5, 293, 0, 0, + 4941, 4944, 3, 712, 356, 0, 4942, 4944, 5, 525, 0, 0, 4943, 4941, 1, 0, + 0, 0, 4943, 4942, 1, 0, 0, 0, 4944, 4946, 1, 0, 0, 0, 4945, 4940, 1, 0, + 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 5232, 1, 0, 0, 0, 4947, 4948, 5, 65, + 0, 0, 4948, 4949, 5, 228, 0, 0, 4949, 4955, 5, 229, 0, 0, 4950, 4953, 5, + 293, 0, 0, 4951, 4954, 3, 712, 356, 0, 4952, 4954, 5, 525, 0, 0, 4953, + 4951, 1, 0, 0, 0, 4953, 4952, 1, 0, 0, 0, 4954, 4956, 1, 0, 0, 0, 4955, + 4950, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 5232, 1, 0, 0, 0, 4957, + 4958, 5, 65, 0, 0, 4958, 4959, 5, 333, 0, 0, 4959, 4965, 5, 422, 0, 0, + 4960, 4963, 5, 293, 0, 0, 4961, 4964, 3, 712, 356, 0, 4962, 4964, 5, 525, + 0, 0, 4963, 4961, 1, 0, 0, 0, 4963, 4962, 1, 0, 0, 0, 4964, 4966, 1, 0, + 0, 0, 4965, 4960, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 5232, 1, 0, + 0, 0, 4967, 4968, 5, 65, 0, 0, 4968, 4969, 5, 23, 0, 0, 4969, 5232, 3, + 712, 356, 0, 4970, 4971, 5, 65, 0, 0, 4971, 4972, 5, 27, 0, 0, 4972, 5232, + 3, 712, 356, 0, 4973, 4974, 5, 65, 0, 0, 4974, 4975, 5, 33, 0, 0, 4975, + 5232, 3, 712, 356, 0, 4976, 4977, 5, 65, 0, 0, 4977, 5232, 5, 389, 0, 0, + 4978, 4979, 5, 65, 0, 0, 4979, 5232, 5, 335, 0, 0, 4980, 4981, 5, 65, 0, + 0, 4981, 5232, 5, 337, 0, 0, 4982, 4983, 5, 65, 0, 0, 4983, 4984, 5, 412, + 0, 0, 4984, 5232, 5, 335, 0, 0, 4985, 4986, 5, 65, 0, 0, 4986, 4987, 5, + 412, 0, 0, 4987, 5232, 5, 369, 0, 0, 4988, 4989, 5, 65, 0, 0, 4989, 4990, + 5, 415, 0, 0, 4990, 4991, 5, 431, 0, 0, 4991, 4993, 3, 712, 356, 0, 4992, + 4994, 5, 418, 0, 0, 4993, 4992, 1, 0, 0, 0, 4993, 4994, 1, 0, 0, 0, 4994, + 5232, 1, 0, 0, 0, 4995, 4996, 5, 65, 0, 0, 4996, 4997, 5, 416, 0, 0, 4997, + 4998, 5, 431, 0, 0, 4998, 5000, 3, 712, 356, 0, 4999, 5001, 5, 418, 0, + 0, 5000, 4999, 1, 0, 0, 0, 5000, 5001, 1, 0, 0, 0, 5001, 5232, 1, 0, 0, + 0, 5002, 5003, 5, 65, 0, 0, 5003, 5004, 5, 417, 0, 0, 5004, 5005, 5, 430, + 0, 0, 5005, 5232, 3, 712, 356, 0, 5006, 5007, 5, 65, 0, 0, 5007, 5008, + 5, 419, 0, 0, 5008, 5009, 5, 431, 0, 0, 5009, 5232, 3, 712, 356, 0, 5010, + 5011, 5, 65, 0, 0, 5011, 5012, 5, 223, 0, 0, 5012, 5013, 5, 431, 0, 0, + 5013, 5016, 3, 712, 356, 0, 5014, 5015, 5, 420, 0, 0, 5015, 5017, 5, 523, + 0, 0, 5016, 5014, 1, 0, 0, 0, 5016, 5017, 1, 0, 0, 0, 5017, 5232, 1, 0, + 0, 0, 5018, 5019, 5, 65, 0, 0, 5019, 5021, 5, 189, 0, 0, 5020, 5022, 3, + 568, 284, 0, 5021, 5020, 1, 0, 0, 0, 5021, 5022, 1, 0, 0, 0, 5022, 5232, + 1, 0, 0, 0, 5023, 5024, 5, 65, 0, 0, 5024, 5025, 5, 59, 0, 0, 5025, 5232, + 5, 452, 0, 0, 5026, 5027, 5, 65, 0, 0, 5027, 5028, 5, 29, 0, 0, 5028, 5034, + 5, 454, 0, 0, 5029, 5032, 5, 293, 0, 0, 5030, 5033, 3, 712, 356, 0, 5031, + 5033, 5, 525, 0, 0, 5032, 5030, 1, 0, 0, 0, 5032, 5031, 1, 0, 0, 0, 5033, + 5035, 1, 0, 0, 0, 5034, 5029, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, + 5232, 1, 0, 0, 0, 5036, 5037, 5, 65, 0, 0, 5037, 5038, 5, 465, 0, 0, 5038, + 5232, 5, 454, 0, 0, 5039, 5040, 5, 65, 0, 0, 5040, 5041, 5, 460, 0, 0, + 5041, 5232, 5, 490, 0, 0, 5042, 5043, 5, 65, 0, 0, 5043, 5044, 5, 463, + 0, 0, 5044, 5045, 5, 93, 0, 0, 5045, 5232, 3, 712, 356, 0, 5046, 5047, + 5, 65, 0, 0, 5047, 5048, 5, 463, 0, 0, 5048, 5049, 5, 93, 0, 0, 5049, 5050, + 5, 30, 0, 0, 5050, 5232, 3, 712, 356, 0, 5051, 5052, 5, 65, 0, 0, 5052, + 5053, 5, 463, 0, 0, 5053, 5054, 5, 93, 0, 0, 5054, 5055, 5, 33, 0, 0, 5055, + 5232, 3, 712, 356, 0, 5056, 5057, 5, 65, 0, 0, 5057, 5058, 5, 463, 0, 0, + 5058, 5059, 5, 93, 0, 0, 5059, 5060, 5, 32, 0, 0, 5060, 5232, 3, 712, 356, + 0, 5061, 5062, 5, 65, 0, 0, 5062, 5063, 5, 452, 0, 0, 5063, 5069, 5, 461, + 0, 0, 5064, 5067, 5, 293, 0, 0, 5065, 5068, 3, 712, 356, 0, 5066, 5068, + 5, 525, 0, 0, 5067, 5065, 1, 0, 0, 0, 5067, 5066, 1, 0, 0, 0, 5068, 5070, + 1, 0, 0, 0, 5069, 5064, 1, 0, 0, 0, 5069, 5070, 1, 0, 0, 0, 5070, 5232, + 1, 0, 0, 0, 5071, 5072, 5, 65, 0, 0, 5072, 5073, 5, 318, 0, 0, 5073, 5079, + 5, 344, 0, 0, 5074, 5077, 5, 293, 0, 0, 5075, 5078, 3, 712, 356, 0, 5076, + 5078, 5, 525, 0, 0, 5077, 5075, 1, 0, 0, 0, 5077, 5076, 1, 0, 0, 0, 5078, + 5080, 1, 0, 0, 0, 5079, 5074, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, + 5232, 1, 0, 0, 0, 5081, 5082, 5, 65, 0, 0, 5082, 5083, 5, 318, 0, 0, 5083, + 5089, 5, 317, 0, 0, 5084, 5087, 5, 293, 0, 0, 5085, 5088, 3, 712, 356, + 0, 5086, 5088, 5, 525, 0, 0, 5087, 5085, 1, 0, 0, 0, 5087, 5086, 1, 0, + 0, 0, 5088, 5090, 1, 0, 0, 0, 5089, 5084, 1, 0, 0, 0, 5089, 5090, 1, 0, + 0, 0, 5090, 5232, 1, 0, 0, 0, 5091, 5092, 5, 65, 0, 0, 5092, 5093, 5, 26, + 0, 0, 5093, 5099, 5, 382, 0, 0, 5094, 5097, 5, 293, 0, 0, 5095, 5098, 3, + 712, 356, 0, 5096, 5098, 5, 525, 0, 0, 5097, 5095, 1, 0, 0, 0, 5097, 5096, + 1, 0, 0, 0, 5098, 5100, 1, 0, 0, 0, 5099, 5094, 1, 0, 0, 0, 5099, 5100, + 1, 0, 0, 0, 5100, 5232, 1, 0, 0, 0, 5101, 5102, 5, 65, 0, 0, 5102, 5103, + 5, 26, 0, 0, 5103, 5109, 5, 117, 0, 0, 5104, 5107, 5, 293, 0, 0, 5105, + 5108, 3, 712, 356, 0, 5106, 5108, 5, 525, 0, 0, 5107, 5105, 1, 0, 0, 0, + 5107, 5106, 1, 0, 0, 0, 5108, 5110, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, + 5109, 5110, 1, 0, 0, 0, 5110, 5232, 1, 0, 0, 0, 5111, 5112, 5, 65, 0, 0, + 5112, 5232, 5, 375, 0, 0, 5113, 5114, 5, 65, 0, 0, 5114, 5115, 5, 375, + 0, 0, 5115, 5118, 5, 376, 0, 0, 5116, 5119, 3, 712, 356, 0, 5117, 5119, + 5, 525, 0, 0, 5118, 5116, 1, 0, 0, 0, 5118, 5117, 1, 0, 0, 0, 5118, 5119, + 1, 0, 0, 0, 5119, 5232, 1, 0, 0, 0, 5120, 5121, 5, 65, 0, 0, 5121, 5122, + 5, 375, 0, 0, 5122, 5232, 5, 377, 0, 0, 5123, 5124, 5, 65, 0, 0, 5124, + 5125, 5, 212, 0, 0, 5125, 5128, 5, 213, 0, 0, 5126, 5127, 5, 433, 0, 0, + 5127, 5129, 3, 570, 285, 0, 5128, 5126, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, + 0, 5129, 5232, 1, 0, 0, 0, 5130, 5131, 5, 65, 0, 0, 5131, 5134, 5, 421, + 0, 0, 5132, 5133, 5, 420, 0, 0, 5133, 5135, 5, 523, 0, 0, 5134, 5132, 1, + 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5141, 1, 0, 0, 0, 5136, 5139, 5, + 293, 0, 0, 5137, 5140, 3, 712, 356, 0, 5138, 5140, 5, 525, 0, 0, 5139, + 5137, 1, 0, 0, 0, 5139, 5138, 1, 0, 0, 0, 5140, 5142, 1, 0, 0, 0, 5141, + 5136, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5144, 1, 0, 0, 0, 5143, + 5145, 5, 85, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, + 5232, 1, 0, 0, 0, 5146, 5147, 5, 65, 0, 0, 5147, 5148, 5, 444, 0, 0, 5148, + 5149, 5, 445, 0, 0, 5149, 5155, 5, 317, 0, 0, 5150, 5153, 5, 293, 0, 0, + 5151, 5154, 3, 712, 356, 0, 5152, 5154, 5, 525, 0, 0, 5153, 5151, 1, 0, + 0, 0, 5153, 5152, 1, 0, 0, 0, 5154, 5156, 1, 0, 0, 0, 5155, 5150, 1, 0, + 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5232, 1, 0, 0, 0, 5157, 5158, 5, 65, + 0, 0, 5158, 5159, 5, 444, 0, 0, 5159, 5160, 5, 445, 0, 0, 5160, 5166, 5, + 344, 0, 0, 5161, 5164, 5, 293, 0, 0, 5162, 5165, 3, 712, 356, 0, 5163, + 5165, 5, 525, 0, 0, 5164, 5162, 1, 0, 0, 0, 5164, 5163, 1, 0, 0, 0, 5165, + 5167, 1, 0, 0, 0, 5166, 5161, 1, 0, 0, 0, 5166, 5167, 1, 0, 0, 0, 5167, + 5232, 1, 0, 0, 0, 5168, 5169, 5, 65, 0, 0, 5169, 5170, 5, 444, 0, 0, 5170, + 5176, 5, 120, 0, 0, 5171, 5174, 5, 293, 0, 0, 5172, 5175, 3, 712, 356, + 0, 5173, 5175, 5, 525, 0, 0, 5174, 5172, 1, 0, 0, 0, 5174, 5173, 1, 0, + 0, 0, 5175, 5177, 1, 0, 0, 0, 5176, 5171, 1, 0, 0, 0, 5176, 5177, 1, 0, + 0, 0, 5177, 5232, 1, 0, 0, 0, 5178, 5179, 5, 65, 0, 0, 5179, 5232, 5, 447, + 0, 0, 5180, 5181, 5, 65, 0, 0, 5181, 5232, 5, 392, 0, 0, 5182, 5183, 5, + 65, 0, 0, 5183, 5184, 5, 357, 0, 0, 5184, 5190, 5, 389, 0, 0, 5185, 5188, + 5, 293, 0, 0, 5186, 5189, 3, 712, 356, 0, 5187, 5189, 5, 525, 0, 0, 5188, + 5186, 1, 0, 0, 0, 5188, 5187, 1, 0, 0, 0, 5189, 5191, 1, 0, 0, 0, 5190, + 5185, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5232, 1, 0, 0, 0, 5192, + 5193, 5, 65, 0, 0, 5193, 5194, 5, 315, 0, 0, 5194, 5200, 5, 344, 0, 0, + 5195, 5198, 5, 293, 0, 0, 5196, 5199, 3, 712, 356, 0, 5197, 5199, 5, 525, + 0, 0, 5198, 5196, 1, 0, 0, 0, 5198, 5197, 1, 0, 0, 0, 5199, 5201, 1, 0, + 0, 0, 5200, 5195, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5232, 1, 0, + 0, 0, 5202, 5203, 5, 65, 0, 0, 5203, 5204, 5, 346, 0, 0, 5204, 5205, 5, + 315, 0, 0, 5205, 5211, 5, 317, 0, 0, 5206, 5209, 5, 293, 0, 0, 5207, 5210, + 3, 712, 356, 0, 5208, 5210, 5, 525, 0, 0, 5209, 5207, 1, 0, 0, 0, 5209, + 5208, 1, 0, 0, 0, 5210, 5212, 1, 0, 0, 0, 5211, 5206, 1, 0, 0, 0, 5211, + 5212, 1, 0, 0, 0, 5212, 5232, 1, 0, 0, 0, 5213, 5214, 5, 65, 0, 0, 5214, + 5232, 5, 393, 0, 0, 5215, 5216, 5, 65, 0, 0, 5216, 5219, 5, 449, 0, 0, + 5217, 5218, 5, 293, 0, 0, 5218, 5220, 5, 525, 0, 0, 5219, 5217, 1, 0, 0, + 0, 5219, 5220, 1, 0, 0, 0, 5220, 5232, 1, 0, 0, 0, 5221, 5222, 5, 65, 0, + 0, 5222, 5223, 5, 449, 0, 0, 5223, 5224, 5, 433, 0, 0, 5224, 5225, 5, 337, + 0, 0, 5225, 5232, 5, 523, 0, 0, 5226, 5227, 5, 65, 0, 0, 5227, 5228, 5, + 449, 0, 0, 5228, 5229, 5, 450, 0, 0, 5229, 5230, 5, 451, 0, 0, 5230, 5232, + 5, 523, 0, 0, 5231, 4796, 1, 0, 0, 0, 5231, 4798, 1, 0, 0, 0, 5231, 4803, + 1, 0, 0, 0, 5231, 4808, 1, 0, 0, 0, 5231, 4813, 1, 0, 0, 0, 5231, 4818, + 1, 0, 0, 0, 5231, 4827, 1, 0, 0, 0, 5231, 4836, 1, 0, 0, 0, 5231, 4845, + 1, 0, 0, 0, 5231, 4854, 1, 0, 0, 0, 5231, 4863, 1, 0, 0, 0, 5231, 4872, + 1, 0, 0, 0, 5231, 4881, 1, 0, 0, 0, 5231, 4890, 1, 0, 0, 0, 5231, 4899, + 1, 0, 0, 0, 5231, 4909, 1, 0, 0, 0, 5231, 4918, 1, 0, 0, 0, 5231, 4927, + 1, 0, 0, 0, 5231, 4937, 1, 0, 0, 0, 5231, 4947, 1, 0, 0, 0, 5231, 4957, + 1, 0, 0, 0, 5231, 4967, 1, 0, 0, 0, 5231, 4970, 1, 0, 0, 0, 5231, 4973, + 1, 0, 0, 0, 5231, 4976, 1, 0, 0, 0, 5231, 4978, 1, 0, 0, 0, 5231, 4980, + 1, 0, 0, 0, 5231, 4982, 1, 0, 0, 0, 5231, 4985, 1, 0, 0, 0, 5231, 4988, + 1, 0, 0, 0, 5231, 4995, 1, 0, 0, 0, 5231, 5002, 1, 0, 0, 0, 5231, 5006, + 1, 0, 0, 0, 5231, 5010, 1, 0, 0, 0, 5231, 5018, 1, 0, 0, 0, 5231, 5023, + 1, 0, 0, 0, 5231, 5026, 1, 0, 0, 0, 5231, 5036, 1, 0, 0, 0, 5231, 5039, + 1, 0, 0, 0, 5231, 5042, 1, 0, 0, 0, 5231, 5046, 1, 0, 0, 0, 5231, 5051, + 1, 0, 0, 0, 5231, 5056, 1, 0, 0, 0, 5231, 5061, 1, 0, 0, 0, 5231, 5071, + 1, 0, 0, 0, 5231, 5081, 1, 0, 0, 0, 5231, 5091, 1, 0, 0, 0, 5231, 5101, + 1, 0, 0, 0, 5231, 5111, 1, 0, 0, 0, 5231, 5113, 1, 0, 0, 0, 5231, 5120, + 1, 0, 0, 0, 5231, 5123, 1, 0, 0, 0, 5231, 5130, 1, 0, 0, 0, 5231, 5146, + 1, 0, 0, 0, 5231, 5157, 1, 0, 0, 0, 5231, 5168, 1, 0, 0, 0, 5231, 5178, + 1, 0, 0, 0, 5231, 5180, 1, 0, 0, 0, 5231, 5182, 1, 0, 0, 0, 5231, 5192, + 1, 0, 0, 0, 5231, 5202, 1, 0, 0, 0, 5231, 5213, 1, 0, 0, 0, 5231, 5215, + 1, 0, 0, 0, 5231, 5221, 1, 0, 0, 0, 5231, 5226, 1, 0, 0, 0, 5232, 567, + 1, 0, 0, 0, 5233, 5234, 5, 72, 0, 0, 5234, 5239, 3, 572, 286, 0, 5235, + 5236, 5, 289, 0, 0, 5236, 5238, 3, 572, 286, 0, 5237, 5235, 1, 0, 0, 0, + 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, + 5240, 5247, 1, 0, 0, 0, 5241, 5239, 1, 0, 0, 0, 5242, 5245, 5, 293, 0, + 0, 5243, 5246, 3, 712, 356, 0, 5244, 5246, 5, 525, 0, 0, 5245, 5243, 1, + 0, 0, 0, 5245, 5244, 1, 0, 0, 0, 5246, 5248, 1, 0, 0, 0, 5247, 5242, 1, + 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5255, 1, 0, 0, 0, 5249, 5252, 5, + 293, 0, 0, 5250, 5253, 3, 712, 356, 0, 5251, 5253, 5, 525, 0, 0, 5252, + 5250, 1, 0, 0, 0, 5252, 5251, 1, 0, 0, 0, 5253, 5255, 1, 0, 0, 0, 5254, + 5233, 1, 0, 0, 0, 5254, 5249, 1, 0, 0, 0, 5255, 569, 1, 0, 0, 0, 5256, + 5257, 7, 33, 0, 0, 5257, 571, 1, 0, 0, 0, 5258, 5259, 5, 442, 0, 0, 5259, + 5260, 7, 34, 0, 0, 5260, 5265, 5, 521, 0, 0, 5261, 5262, 5, 525, 0, 0, + 5262, 5263, 7, 34, 0, 0, 5263, 5265, 5, 521, 0, 0, 5264, 5258, 1, 0, 0, + 0, 5264, 5261, 1, 0, 0, 0, 5265, 573, 1, 0, 0, 0, 5266, 5267, 5, 521, 0, + 0, 5267, 5268, 5, 494, 0, 0, 5268, 5269, 3, 576, 288, 0, 5269, 575, 1, + 0, 0, 0, 5270, 5275, 5, 521, 0, 0, 5271, 5275, 5, 523, 0, 0, 5272, 5275, + 3, 720, 360, 0, 5273, 5275, 5, 292, 0, 0, 5274, 5270, 1, 0, 0, 0, 5274, + 5271, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5273, 1, 0, 0, 0, 5275, + 577, 1, 0, 0, 0, 5276, 5277, 5, 66, 0, 0, 5277, 5278, 5, 348, 0, 0, 5278, + 5279, 5, 23, 0, 0, 5279, 5282, 3, 712, 356, 0, 5280, 5281, 5, 437, 0, 0, + 5281, 5283, 5, 525, 0, 0, 5282, 5280, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, + 0, 5283, 5432, 1, 0, 0, 0, 5284, 5285, 5, 66, 0, 0, 5285, 5286, 5, 348, + 0, 0, 5286, 5287, 5, 116, 0, 0, 5287, 5290, 3, 712, 356, 0, 5288, 5289, + 5, 437, 0, 0, 5289, 5291, 5, 525, 0, 0, 5290, 5288, 1, 0, 0, 0, 5290, 5291, + 1, 0, 0, 0, 5291, 5432, 1, 0, 0, 0, 5292, 5293, 5, 66, 0, 0, 5293, 5294, + 5, 348, 0, 0, 5294, 5295, 5, 407, 0, 0, 5295, 5432, 3, 712, 356, 0, 5296, + 5297, 5, 66, 0, 0, 5297, 5298, 5, 23, 0, 0, 5298, 5432, 3, 712, 356, 0, + 5299, 5300, 5, 66, 0, 0, 5300, 5301, 5, 27, 0, 0, 5301, 5432, 3, 712, 356, + 0, 5302, 5303, 5, 66, 0, 0, 5303, 5304, 5, 30, 0, 0, 5304, 5432, 3, 712, + 356, 0, 5305, 5306, 5, 66, 0, 0, 5306, 5307, 5, 31, 0, 0, 5307, 5432, 3, + 712, 356, 0, 5308, 5309, 5, 66, 0, 0, 5309, 5310, 5, 32, 0, 0, 5310, 5432, + 3, 712, 356, 0, 5311, 5312, 5, 66, 0, 0, 5312, 5313, 5, 33, 0, 0, 5313, + 5432, 3, 712, 356, 0, 5314, 5315, 5, 66, 0, 0, 5315, 5316, 5, 34, 0, 0, + 5316, 5432, 3, 712, 356, 0, 5317, 5318, 5, 66, 0, 0, 5318, 5319, 5, 35, + 0, 0, 5319, 5432, 3, 712, 356, 0, 5320, 5321, 5, 66, 0, 0, 5321, 5322, + 5, 28, 0, 0, 5322, 5432, 3, 712, 356, 0, 5323, 5324, 5, 66, 0, 0, 5324, + 5325, 5, 37, 0, 0, 5325, 5432, 3, 712, 356, 0, 5326, 5327, 5, 66, 0, 0, + 5327, 5328, 5, 114, 0, 0, 5328, 5329, 5, 116, 0, 0, 5329, 5432, 3, 712, + 356, 0, 5330, 5331, 5, 66, 0, 0, 5331, 5332, 5, 115, 0, 0, 5332, 5333, + 5, 116, 0, 0, 5333, 5432, 3, 712, 356, 0, 5334, 5335, 5, 66, 0, 0, 5335, + 5336, 5, 29, 0, 0, 5336, 5339, 5, 525, 0, 0, 5337, 5338, 5, 139, 0, 0, + 5338, 5340, 5, 85, 0, 0, 5339, 5337, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, + 5340, 5432, 1, 0, 0, 0, 5341, 5342, 5, 66, 0, 0, 5342, 5343, 5, 29, 0, + 0, 5343, 5344, 5, 453, 0, 0, 5344, 5432, 3, 712, 356, 0, 5345, 5346, 5, + 66, 0, 0, 5346, 5347, 5, 465, 0, 0, 5347, 5348, 5, 453, 0, 0, 5348, 5432, + 5, 521, 0, 0, 5349, 5350, 5, 66, 0, 0, 5350, 5351, 5, 460, 0, 0, 5351, + 5352, 5, 465, 0, 0, 5352, 5432, 5, 521, 0, 0, 5353, 5354, 5, 66, 0, 0, + 5354, 5355, 5, 318, 0, 0, 5355, 5356, 5, 343, 0, 0, 5356, 5432, 3, 712, + 356, 0, 5357, 5358, 5, 66, 0, 0, 5358, 5359, 5, 318, 0, 0, 5359, 5360, + 5, 316, 0, 0, 5360, 5432, 3, 712, 356, 0, 5361, 5362, 5, 66, 0, 0, 5362, + 5363, 5, 26, 0, 0, 5363, 5364, 5, 23, 0, 0, 5364, 5432, 3, 712, 356, 0, + 5365, 5366, 5, 66, 0, 0, 5366, 5369, 5, 375, 0, 0, 5367, 5370, 3, 712, + 356, 0, 5368, 5370, 5, 525, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5368, 1, + 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 5432, 1, 0, 0, 0, 5371, 5372, 5, + 66, 0, 0, 5372, 5373, 5, 215, 0, 0, 5373, 5374, 5, 93, 0, 0, 5374, 5375, + 7, 1, 0, 0, 5375, 5378, 3, 712, 356, 0, 5376, 5377, 5, 188, 0, 0, 5377, + 5379, 5, 525, 0, 0, 5378, 5376, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, + 5432, 1, 0, 0, 0, 5380, 5381, 5, 66, 0, 0, 5381, 5382, 5, 412, 0, 0, 5382, + 5383, 5, 506, 0, 0, 5383, 5432, 3, 584, 292, 0, 5384, 5385, 5, 66, 0, 0, + 5385, 5386, 5, 444, 0, 0, 5386, 5387, 5, 445, 0, 0, 5387, 5388, 5, 316, + 0, 0, 5388, 5432, 3, 712, 356, 0, 5389, 5390, 5, 66, 0, 0, 5390, 5391, + 5, 357, 0, 0, 5391, 5392, 5, 356, 0, 0, 5392, 5432, 3, 712, 356, 0, 5393, + 5394, 5, 66, 0, 0, 5394, 5432, 5, 447, 0, 0, 5395, 5396, 5, 66, 0, 0, 5396, + 5397, 5, 391, 0, 0, 5397, 5398, 5, 71, 0, 0, 5398, 5399, 5, 33, 0, 0, 5399, + 5400, 3, 712, 356, 0, 5400, 5401, 5, 188, 0, 0, 5401, 5402, 3, 714, 357, + 0, 5402, 5432, 1, 0, 0, 0, 5403, 5404, 5, 66, 0, 0, 5404, 5405, 5, 391, + 0, 0, 5405, 5406, 5, 71, 0, 0, 5406, 5407, 5, 34, 0, 0, 5407, 5408, 3, + 712, 356, 0, 5408, 5409, 5, 188, 0, 0, 5409, 5410, 3, 714, 357, 0, 5410, + 5432, 1, 0, 0, 0, 5411, 5412, 5, 66, 0, 0, 5412, 5413, 5, 228, 0, 0, 5413, + 5414, 5, 229, 0, 0, 5414, 5432, 3, 712, 356, 0, 5415, 5416, 5, 66, 0, 0, + 5416, 5417, 5, 333, 0, 0, 5417, 5418, 5, 421, 0, 0, 5418, 5432, 3, 712, + 356, 0, 5419, 5420, 5, 66, 0, 0, 5420, 5421, 5, 315, 0, 0, 5421, 5422, + 5, 343, 0, 0, 5422, 5432, 3, 712, 356, 0, 5423, 5424, 5, 66, 0, 0, 5424, + 5425, 5, 346, 0, 0, 5425, 5426, 5, 315, 0, 0, 5426, 5427, 5, 316, 0, 0, + 5427, 5432, 3, 712, 356, 0, 5428, 5429, 5, 66, 0, 0, 5429, 5430, 5, 391, + 0, 0, 5430, 5432, 3, 714, 357, 0, 5431, 5276, 1, 0, 0, 0, 5431, 5284, 1, + 0, 0, 0, 5431, 5292, 1, 0, 0, 0, 5431, 5296, 1, 0, 0, 0, 5431, 5299, 1, + 0, 0, 0, 5431, 5302, 1, 0, 0, 0, 5431, 5305, 1, 0, 0, 0, 5431, 5308, 1, + 0, 0, 0, 5431, 5311, 1, 0, 0, 0, 5431, 5314, 1, 0, 0, 0, 5431, 5317, 1, + 0, 0, 0, 5431, 5320, 1, 0, 0, 0, 5431, 5323, 1, 0, 0, 0, 5431, 5326, 1, + 0, 0, 0, 5431, 5330, 1, 0, 0, 0, 5431, 5334, 1, 0, 0, 0, 5431, 5341, 1, + 0, 0, 0, 5431, 5345, 1, 0, 0, 0, 5431, 5349, 1, 0, 0, 0, 5431, 5353, 1, + 0, 0, 0, 5431, 5357, 1, 0, 0, 0, 5431, 5361, 1, 0, 0, 0, 5431, 5365, 1, + 0, 0, 0, 5431, 5371, 1, 0, 0, 0, 5431, 5380, 1, 0, 0, 0, 5431, 5384, 1, + 0, 0, 0, 5431, 5389, 1, 0, 0, 0, 5431, 5393, 1, 0, 0, 0, 5431, 5395, 1, + 0, 0, 0, 5431, 5403, 1, 0, 0, 0, 5431, 5411, 1, 0, 0, 0, 5431, 5415, 1, + 0, 0, 0, 5431, 5419, 1, 0, 0, 0, 5431, 5423, 1, 0, 0, 0, 5431, 5428, 1, + 0, 0, 0, 5432, 579, 1, 0, 0, 0, 5433, 5435, 5, 70, 0, 0, 5434, 5436, 7, + 35, 0, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5437, 1, + 0, 0, 0, 5437, 5438, 3, 592, 296, 0, 5438, 5439, 5, 71, 0, 0, 5439, 5440, + 5, 412, 0, 0, 5440, 5441, 5, 506, 0, 0, 5441, 5446, 3, 584, 292, 0, 5442, + 5444, 5, 76, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, + 5445, 1, 0, 0, 0, 5445, 5447, 5, 525, 0, 0, 5446, 5443, 1, 0, 0, 0, 5446, + 5447, 1, 0, 0, 0, 5447, 5451, 1, 0, 0, 0, 5448, 5450, 3, 582, 291, 0, 5449, + 5448, 1, 0, 0, 0, 5450, 5453, 1, 0, 0, 0, 5451, 5449, 1, 0, 0, 0, 5451, + 5452, 1, 0, 0, 0, 5452, 5456, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5454, + 5455, 5, 72, 0, 0, 5455, 5457, 3, 672, 336, 0, 5456, 5454, 1, 0, 0, 0, + 5456, 5457, 1, 0, 0, 0, 5457, 5464, 1, 0, 0, 0, 5458, 5459, 5, 8, 0, 0, + 5459, 5462, 3, 620, 310, 0, 5460, 5461, 5, 73, 0, 0, 5461, 5463, 3, 672, + 336, 0, 5462, 5460, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5465, 1, + 0, 0, 0, 5464, 5458, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5468, 1, + 0, 0, 0, 5466, 5467, 5, 9, 0, 0, 5467, 5469, 3, 616, 308, 0, 5468, 5466, + 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5472, 1, 0, 0, 0, 5470, 5471, + 5, 75, 0, 0, 5471, 5473, 5, 523, 0, 0, 5472, 5470, 1, 0, 0, 0, 5472, 5473, + 1, 0, 0, 0, 5473, 5476, 1, 0, 0, 0, 5474, 5475, 5, 74, 0, 0, 5475, 5477, + 5, 523, 0, 0, 5476, 5474, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 581, + 1, 0, 0, 0, 5478, 5480, 3, 606, 303, 0, 5479, 5478, 1, 0, 0, 0, 5479, 5480, + 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 5, 86, 0, 0, 5482, 5483, + 5, 412, 0, 0, 5483, 5484, 5, 506, 0, 0, 5484, 5489, 3, 584, 292, 0, 5485, + 5487, 5, 76, 0, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, + 5488, 1, 0, 0, 0, 5488, 5490, 5, 525, 0, 0, 5489, 5486, 1, 0, 0, 0, 5489, + 5490, 1, 0, 0, 0, 5490, 5493, 1, 0, 0, 0, 5491, 5492, 5, 93, 0, 0, 5492, + 5494, 3, 672, 336, 0, 5493, 5491, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, + 583, 1, 0, 0, 0, 5495, 5496, 7, 36, 0, 0, 5496, 585, 1, 0, 0, 0, 5497, + 5505, 3, 588, 294, 0, 5498, 5500, 5, 125, 0, 0, 5499, 5501, 5, 85, 0, 0, + 5500, 5499, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, + 5502, 5504, 3, 588, 294, 0, 5503, 5498, 1, 0, 0, 0, 5504, 5507, 1, 0, 0, + 0, 5505, 5503, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 587, 1, 0, 0, + 0, 5507, 5505, 1, 0, 0, 0, 5508, 5510, 3, 590, 295, 0, 5509, 5511, 3, 598, + 299, 0, 5510, 5509, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 5513, 1, + 0, 0, 0, 5512, 5514, 3, 608, 304, 0, 5513, 5512, 1, 0, 0, 0, 5513, 5514, + 1, 0, 0, 0, 5514, 5516, 1, 0, 0, 0, 5515, 5517, 3, 610, 305, 0, 5516, 5515, + 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, + 3, 612, 306, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5522, + 1, 0, 0, 0, 5521, 5523, 3, 614, 307, 0, 5522, 5521, 1, 0, 0, 0, 5522, 5523, + 1, 0, 0, 0, 5523, 5525, 1, 0, 0, 0, 5524, 5526, 3, 622, 311, 0, 5525, 5524, + 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5545, 1, 0, 0, 0, 5527, 5529, + 3, 598, 299, 0, 5528, 5530, 3, 608, 304, 0, 5529, 5528, 1, 0, 0, 0, 5529, + 5530, 1, 0, 0, 0, 5530, 5532, 1, 0, 0, 0, 5531, 5533, 3, 610, 305, 0, 5532, + 5531, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5535, 1, 0, 0, 0, 5534, + 5536, 3, 612, 306, 0, 5535, 5534, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, + 5537, 1, 0, 0, 0, 5537, 5539, 3, 590, 295, 0, 5538, 5540, 3, 614, 307, + 0, 5539, 5538, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5542, 1, 0, 0, + 0, 5541, 5543, 3, 622, 311, 0, 5542, 5541, 1, 0, 0, 0, 5542, 5543, 1, 0, + 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5508, 1, 0, 0, 0, 5544, 5527, 1, 0, + 0, 0, 5545, 589, 1, 0, 0, 0, 5546, 5548, 5, 70, 0, 0, 5547, 5549, 7, 35, + 0, 0, 5548, 5547, 1, 0, 0, 0, 5548, 5549, 1, 0, 0, 0, 5549, 5550, 1, 0, + 0, 0, 5550, 5551, 3, 592, 296, 0, 5551, 591, 1, 0, 0, 0, 5552, 5562, 5, + 499, 0, 0, 5553, 5558, 3, 594, 297, 0, 5554, 5555, 5, 505, 0, 0, 5555, + 5557, 3, 594, 297, 0, 5556, 5554, 1, 0, 0, 0, 5557, 5560, 1, 0, 0, 0, 5558, + 5556, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5562, 1, 0, 0, 0, 5560, + 5558, 1, 0, 0, 0, 5561, 5552, 1, 0, 0, 0, 5561, 5553, 1, 0, 0, 0, 5562, + 593, 1, 0, 0, 0, 5563, 5566, 3, 672, 336, 0, 5564, 5565, 5, 76, 0, 0, 5565, + 5567, 3, 596, 298, 0, 5566, 5564, 1, 0, 0, 0, 5566, 5567, 1, 0, 0, 0, 5567, + 5574, 1, 0, 0, 0, 5568, 5571, 3, 700, 350, 0, 5569, 5570, 5, 76, 0, 0, + 5570, 5572, 3, 596, 298, 0, 5571, 5569, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, + 0, 5572, 5574, 1, 0, 0, 0, 5573, 5563, 1, 0, 0, 0, 5573, 5568, 1, 0, 0, + 0, 5574, 595, 1, 0, 0, 0, 5575, 5578, 5, 525, 0, 0, 5576, 5578, 3, 734, + 367, 0, 5577, 5575, 1, 0, 0, 0, 5577, 5576, 1, 0, 0, 0, 5578, 597, 1, 0, + 0, 0, 5579, 5580, 5, 71, 0, 0, 5580, 5584, 3, 600, 300, 0, 5581, 5583, + 3, 602, 301, 0, 5582, 5581, 1, 0, 0, 0, 5583, 5586, 1, 0, 0, 0, 5584, 5582, + 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 599, 1, 0, 0, 0, 5586, 5584, + 1, 0, 0, 0, 5587, 5592, 3, 712, 356, 0, 5588, 5590, 5, 76, 0, 0, 5589, + 5588, 1, 0, 0, 0, 5589, 5590, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, + 5593, 5, 525, 0, 0, 5592, 5589, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, + 5604, 1, 0, 0, 0, 5594, 5595, 5, 507, 0, 0, 5595, 5596, 3, 586, 293, 0, + 5596, 5601, 5, 508, 0, 0, 5597, 5599, 5, 76, 0, 0, 5598, 5597, 1, 0, 0, + 0, 5598, 5599, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5602, 5, 525, + 0, 0, 5601, 5598, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5604, 1, 0, + 0, 0, 5603, 5587, 1, 0, 0, 0, 5603, 5594, 1, 0, 0, 0, 5604, 601, 1, 0, + 0, 0, 5605, 5607, 3, 606, 303, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, + 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 5, 86, 0, 0, 5609, 5612, 3, + 600, 300, 0, 5610, 5611, 5, 93, 0, 0, 5611, 5613, 3, 672, 336, 0, 5612, + 5610, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5626, 1, 0, 0, 0, 5614, + 5616, 3, 606, 303, 0, 5615, 5614, 1, 0, 0, 0, 5615, 5616, 1, 0, 0, 0, 5616, + 5617, 1, 0, 0, 0, 5617, 5618, 5, 86, 0, 0, 5618, 5623, 3, 604, 302, 0, + 5619, 5621, 5, 76, 0, 0, 5620, 5619, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, + 5621, 5622, 1, 0, 0, 0, 5622, 5624, 5, 525, 0, 0, 5623, 5620, 1, 0, 0, + 0, 5623, 5624, 1, 0, 0, 0, 5624, 5626, 1, 0, 0, 0, 5625, 5606, 1, 0, 0, + 0, 5625, 5615, 1, 0, 0, 0, 5626, 603, 1, 0, 0, 0, 5627, 5628, 5, 525, 0, + 0, 5628, 5629, 5, 500, 0, 0, 5629, 5630, 3, 712, 356, 0, 5630, 5631, 5, + 500, 0, 0, 5631, 5632, 3, 712, 356, 0, 5632, 5638, 1, 0, 0, 0, 5633, 5634, + 3, 712, 356, 0, 5634, 5635, 5, 500, 0, 0, 5635, 5636, 3, 712, 356, 0, 5636, + 5638, 1, 0, 0, 0, 5637, 5627, 1, 0, 0, 0, 5637, 5633, 1, 0, 0, 0, 5638, + 605, 1, 0, 0, 0, 5639, 5641, 5, 87, 0, 0, 5640, 5642, 5, 90, 0, 0, 5641, + 5640, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5654, 1, 0, 0, 0, 5643, + 5645, 5, 88, 0, 0, 5644, 5646, 5, 90, 0, 0, 5645, 5644, 1, 0, 0, 0, 5645, + 5646, 1, 0, 0, 0, 5646, 5654, 1, 0, 0, 0, 5647, 5654, 5, 89, 0, 0, 5648, + 5650, 5, 91, 0, 0, 5649, 5651, 5, 90, 0, 0, 5650, 5649, 1, 0, 0, 0, 5650, + 5651, 1, 0, 0, 0, 5651, 5654, 1, 0, 0, 0, 5652, 5654, 5, 92, 0, 0, 5653, + 5639, 1, 0, 0, 0, 5653, 5643, 1, 0, 0, 0, 5653, 5647, 1, 0, 0, 0, 5653, + 5648, 1, 0, 0, 0, 5653, 5652, 1, 0, 0, 0, 5654, 607, 1, 0, 0, 0, 5655, + 5656, 5, 72, 0, 0, 5656, 5657, 3, 672, 336, 0, 5657, 609, 1, 0, 0, 0, 5658, + 5659, 5, 8, 0, 0, 5659, 5660, 3, 710, 355, 0, 5660, 611, 1, 0, 0, 0, 5661, + 5662, 5, 73, 0, 0, 5662, 5663, 3, 672, 336, 0, 5663, 613, 1, 0, 0, 0, 5664, + 5665, 5, 9, 0, 0, 5665, 5666, 3, 616, 308, 0, 5666, 615, 1, 0, 0, 0, 5667, + 5672, 3, 618, 309, 0, 5668, 5669, 5, 505, 0, 0, 5669, 5671, 3, 618, 309, + 0, 5670, 5668, 1, 0, 0, 0, 5671, 5674, 1, 0, 0, 0, 5672, 5670, 1, 0, 0, + 0, 5672, 5673, 1, 0, 0, 0, 5673, 617, 1, 0, 0, 0, 5674, 5672, 1, 0, 0, + 0, 5675, 5677, 3, 672, 336, 0, 5676, 5678, 7, 7, 0, 0, 5677, 5676, 1, 0, + 0, 0, 5677, 5678, 1, 0, 0, 0, 5678, 619, 1, 0, 0, 0, 5679, 5684, 3, 672, + 336, 0, 5680, 5681, 5, 505, 0, 0, 5681, 5683, 3, 672, 336, 0, 5682, 5680, + 1, 0, 0, 0, 5683, 5686, 1, 0, 0, 0, 5684, 5682, 1, 0, 0, 0, 5684, 5685, + 1, 0, 0, 0, 5685, 621, 1, 0, 0, 0, 5686, 5684, 1, 0, 0, 0, 5687, 5688, + 5, 75, 0, 0, 5688, 5691, 5, 523, 0, 0, 5689, 5690, 5, 74, 0, 0, 5690, 5692, + 5, 523, 0, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5700, + 1, 0, 0, 0, 5693, 5694, 5, 74, 0, 0, 5694, 5697, 5, 523, 0, 0, 5695, 5696, + 5, 75, 0, 0, 5696, 5698, 5, 523, 0, 0, 5697, 5695, 1, 0, 0, 0, 5697, 5698, + 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5687, 1, 0, 0, 0, 5699, 5693, + 1, 0, 0, 0, 5700, 623, 1, 0, 0, 0, 5701, 5718, 3, 628, 314, 0, 5702, 5718, + 3, 630, 315, 0, 5703, 5718, 3, 632, 316, 0, 5704, 5718, 3, 634, 317, 0, + 5705, 5718, 3, 636, 318, 0, 5706, 5718, 3, 638, 319, 0, 5707, 5718, 3, + 640, 320, 0, 5708, 5718, 3, 642, 321, 0, 5709, 5718, 3, 626, 313, 0, 5710, + 5718, 3, 648, 324, 0, 5711, 5718, 3, 654, 327, 0, 5712, 5718, 3, 656, 328, + 0, 5713, 5718, 3, 670, 335, 0, 5714, 5718, 3, 658, 329, 0, 5715, 5718, + 3, 662, 331, 0, 5716, 5718, 3, 668, 334, 0, 5717, 5701, 1, 0, 0, 0, 5717, + 5702, 1, 0, 0, 0, 5717, 5703, 1, 0, 0, 0, 5717, 5704, 1, 0, 0, 0, 5717, + 5705, 1, 0, 0, 0, 5717, 5706, 1, 0, 0, 0, 5717, 5707, 1, 0, 0, 0, 5717, + 5708, 1, 0, 0, 0, 5717, 5709, 1, 0, 0, 0, 5717, 5710, 1, 0, 0, 0, 5717, + 5711, 1, 0, 0, 0, 5717, 5712, 1, 0, 0, 0, 5717, 5713, 1, 0, 0, 0, 5717, + 5714, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5717, 5716, 1, 0, 0, 0, 5718, + 625, 1, 0, 0, 0, 5719, 5720, 5, 158, 0, 0, 5720, 5721, 5, 521, 0, 0, 5721, + 627, 1, 0, 0, 0, 5722, 5723, 5, 56, 0, 0, 5723, 5724, 5, 430, 0, 0, 5724, + 5725, 5, 59, 0, 0, 5725, 5728, 5, 521, 0, 0, 5726, 5727, 5, 61, 0, 0, 5727, + 5729, 5, 521, 0, 0, 5728, 5726, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, + 5730, 1, 0, 0, 0, 5730, 5731, 5, 62, 0, 0, 5731, 5746, 5, 521, 0, 0, 5732, + 5733, 5, 56, 0, 0, 5733, 5734, 5, 58, 0, 0, 5734, 5746, 5, 521, 0, 0, 5735, + 5736, 5, 56, 0, 0, 5736, 5737, 5, 60, 0, 0, 5737, 5738, 5, 63, 0, 0, 5738, + 5739, 5, 521, 0, 0, 5739, 5740, 5, 64, 0, 0, 5740, 5743, 5, 523, 0, 0, + 5741, 5742, 5, 62, 0, 0, 5742, 5744, 5, 521, 0, 0, 5743, 5741, 1, 0, 0, + 0, 5743, 5744, 1, 0, 0, 0, 5744, 5746, 1, 0, 0, 0, 5745, 5722, 1, 0, 0, + 0, 5745, 5732, 1, 0, 0, 0, 5745, 5735, 1, 0, 0, 0, 5746, 629, 1, 0, 0, + 0, 5747, 5748, 5, 57, 0, 0, 5748, 631, 1, 0, 0, 0, 5749, 5766, 5, 397, + 0, 0, 5750, 5751, 5, 398, 0, 0, 5751, 5753, 5, 412, 0, 0, 5752, 5754, 5, + 91, 0, 0, 5753, 5752, 1, 0, 0, 0, 5753, 5754, 1, 0, 0, 0, 5754, 5756, 1, + 0, 0, 0, 5755, 5757, 5, 194, 0, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, + 1, 0, 0, 0, 5757, 5759, 1, 0, 0, 0, 5758, 5760, 5, 413, 0, 0, 5759, 5758, + 1, 0, 0, 0, 5759, 5760, 1, 0, 0, 0, 5760, 5762, 1, 0, 0, 0, 5761, 5763, + 5, 414, 0, 0, 5762, 5761, 1, 0, 0, 0, 5762, 5763, 1, 0, 0, 0, 5763, 5766, + 1, 0, 0, 0, 5764, 5766, 5, 398, 0, 0, 5765, 5749, 1, 0, 0, 0, 5765, 5750, + 1, 0, 0, 0, 5765, 5764, 1, 0, 0, 0, 5766, 633, 1, 0, 0, 0, 5767, 5768, + 5, 399, 0, 0, 5768, 635, 1, 0, 0, 0, 5769, 5770, 5, 400, 0, 0, 5770, 637, + 1, 0, 0, 0, 5771, 5772, 5, 401, 0, 0, 5772, 5773, 5, 402, 0, 0, 5773, 5774, + 5, 521, 0, 0, 5774, 639, 1, 0, 0, 0, 5775, 5776, 5, 401, 0, 0, 5776, 5777, + 5, 60, 0, 0, 5777, 5778, 5, 521, 0, 0, 5778, 641, 1, 0, 0, 0, 5779, 5781, + 5, 403, 0, 0, 5780, 5782, 3, 644, 322, 0, 5781, 5780, 1, 0, 0, 0, 5781, + 5782, 1, 0, 0, 0, 5782, 5785, 1, 0, 0, 0, 5783, 5784, 5, 437, 0, 0, 5784, + 5786, 3, 646, 323, 0, 5785, 5783, 1, 0, 0, 0, 5785, 5786, 1, 0, 0, 0, 5786, + 5791, 1, 0, 0, 0, 5787, 5788, 5, 65, 0, 0, 5788, 5789, 5, 403, 0, 0, 5789, + 5791, 5, 404, 0, 0, 5790, 5779, 1, 0, 0, 0, 5790, 5787, 1, 0, 0, 0, 5791, + 643, 1, 0, 0, 0, 5792, 5793, 3, 712, 356, 0, 5793, 5794, 5, 506, 0, 0, + 5794, 5795, 5, 499, 0, 0, 5795, 5799, 1, 0, 0, 0, 5796, 5799, 3, 712, 356, + 0, 5797, 5799, 5, 499, 0, 0, 5798, 5792, 1, 0, 0, 0, 5798, 5796, 1, 0, + 0, 0, 5798, 5797, 1, 0, 0, 0, 5799, 645, 1, 0, 0, 0, 5800, 5801, 7, 37, + 0, 0, 5801, 647, 1, 0, 0, 0, 5802, 5803, 5, 67, 0, 0, 5803, 5807, 3, 650, + 325, 0, 5804, 5805, 5, 67, 0, 0, 5805, 5807, 5, 85, 0, 0, 5806, 5802, 1, + 0, 0, 0, 5806, 5804, 1, 0, 0, 0, 5807, 649, 1, 0, 0, 0, 5808, 5813, 3, + 652, 326, 0, 5809, 5810, 5, 505, 0, 0, 5810, 5812, 3, 652, 326, 0, 5811, + 5809, 1, 0, 0, 0, 5812, 5815, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5813, + 5814, 1, 0, 0, 0, 5814, 651, 1, 0, 0, 0, 5815, 5813, 1, 0, 0, 0, 5816, + 5817, 7, 38, 0, 0, 5817, 653, 1, 0, 0, 0, 5818, 5819, 5, 68, 0, 0, 5819, + 5820, 5, 342, 0, 0, 5820, 655, 1, 0, 0, 0, 5821, 5822, 5, 69, 0, 0, 5822, + 5823, 5, 521, 0, 0, 5823, 657, 1, 0, 0, 0, 5824, 5825, 5, 438, 0, 0, 5825, + 5826, 5, 56, 0, 0, 5826, 5827, 5, 525, 0, 0, 5827, 5828, 5, 521, 0, 0, + 5828, 5829, 5, 76, 0, 0, 5829, 5884, 5, 525, 0, 0, 5830, 5831, 5, 438, + 0, 0, 5831, 5832, 5, 57, 0, 0, 5832, 5884, 5, 525, 0, 0, 5833, 5834, 5, + 438, 0, 0, 5834, 5884, 5, 389, 0, 0, 5835, 5836, 5, 438, 0, 0, 5836, 5837, + 5, 525, 0, 0, 5837, 5838, 5, 65, 0, 0, 5838, 5884, 5, 525, 0, 0, 5839, + 5840, 5, 438, 0, 0, 5840, 5841, 5, 525, 0, 0, 5841, 5842, 5, 66, 0, 0, + 5842, 5884, 5, 525, 0, 0, 5843, 5844, 5, 438, 0, 0, 5844, 5845, 5, 525, + 0, 0, 5845, 5846, 5, 366, 0, 0, 5846, 5847, 5, 367, 0, 0, 5847, 5848, 5, + 362, 0, 0, 5848, 5861, 3, 714, 357, 0, 5849, 5850, 5, 369, 0, 0, 5850, + 5851, 5, 507, 0, 0, 5851, 5856, 3, 714, 357, 0, 5852, 5853, 5, 505, 0, + 0, 5853, 5855, 3, 714, 357, 0, 5854, 5852, 1, 0, 0, 0, 5855, 5858, 1, 0, + 0, 0, 5856, 5854, 1, 0, 0, 0, 5856, 5857, 1, 0, 0, 0, 5857, 5859, 1, 0, + 0, 0, 5858, 5856, 1, 0, 0, 0, 5859, 5860, 5, 508, 0, 0, 5860, 5862, 1, + 0, 0, 0, 5861, 5849, 1, 0, 0, 0, 5861, 5862, 1, 0, 0, 0, 5862, 5875, 1, + 0, 0, 0, 5863, 5864, 5, 370, 0, 0, 5864, 5865, 5, 507, 0, 0, 5865, 5870, + 3, 714, 357, 0, 5866, 5867, 5, 505, 0, 0, 5867, 5869, 3, 714, 357, 0, 5868, + 5866, 1, 0, 0, 0, 5869, 5872, 1, 0, 0, 0, 5870, 5868, 1, 0, 0, 0, 5870, + 5871, 1, 0, 0, 0, 5871, 5873, 1, 0, 0, 0, 5872, 5870, 1, 0, 0, 0, 5873, + 5874, 5, 508, 0, 0, 5874, 5876, 1, 0, 0, 0, 5875, 5863, 1, 0, 0, 0, 5875, + 5876, 1, 0, 0, 0, 5876, 5878, 1, 0, 0, 0, 5877, 5879, 5, 368, 0, 0, 5878, + 5877, 1, 0, 0, 0, 5878, 5879, 1, 0, 0, 0, 5879, 5884, 1, 0, 0, 0, 5880, + 5881, 5, 438, 0, 0, 5881, 5882, 5, 525, 0, 0, 5882, 5884, 3, 660, 330, + 0, 5883, 5824, 1, 0, 0, 0, 5883, 5830, 1, 0, 0, 0, 5883, 5833, 1, 0, 0, + 0, 5883, 5835, 1, 0, 0, 0, 5883, 5839, 1, 0, 0, 0, 5883, 5843, 1, 0, 0, + 0, 5883, 5880, 1, 0, 0, 0, 5884, 659, 1, 0, 0, 0, 5885, 5887, 8, 39, 0, + 0, 5886, 5885, 1, 0, 0, 0, 5887, 5888, 1, 0, 0, 0, 5888, 5886, 1, 0, 0, + 0, 5888, 5889, 1, 0, 0, 0, 5889, 661, 1, 0, 0, 0, 5890, 5891, 5, 361, 0, + 0, 5891, 5892, 5, 71, 0, 0, 5892, 5893, 3, 714, 357, 0, 5893, 5894, 5, + 358, 0, 0, 5894, 5895, 7, 12, 0, 0, 5895, 5896, 5, 362, 0, 0, 5896, 5897, + 3, 712, 356, 0, 5897, 5898, 5, 359, 0, 0, 5898, 5899, 5, 507, 0, 0, 5899, + 5904, 3, 664, 332, 0, 5900, 5901, 5, 505, 0, 0, 5901, 5903, 3, 664, 332, + 0, 5902, 5900, 1, 0, 0, 0, 5903, 5906, 1, 0, 0, 0, 5904, 5902, 1, 0, 0, + 0, 5904, 5905, 1, 0, 0, 0, 5905, 5907, 1, 0, 0, 0, 5906, 5904, 1, 0, 0, + 0, 5907, 5920, 5, 508, 0, 0, 5908, 5909, 5, 364, 0, 0, 5909, 5910, 5, 507, + 0, 0, 5910, 5915, 3, 666, 333, 0, 5911, 5912, 5, 505, 0, 0, 5912, 5914, + 3, 666, 333, 0, 5913, 5911, 1, 0, 0, 0, 5914, 5917, 1, 0, 0, 0, 5915, 5913, + 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5918, 1, 0, 0, 0, 5917, 5915, + 1, 0, 0, 0, 5918, 5919, 5, 508, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5908, + 1, 0, 0, 0, 5920, 5921, 1, 0, 0, 0, 5921, 5924, 1, 0, 0, 0, 5922, 5923, + 5, 363, 0, 0, 5923, 5925, 5, 523, 0, 0, 5924, 5922, 1, 0, 0, 0, 5924, 5925, + 1, 0, 0, 0, 5925, 5928, 1, 0, 0, 0, 5926, 5927, 5, 75, 0, 0, 5927, 5929, + 5, 523, 0, 0, 5928, 5926, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 663, + 1, 0, 0, 0, 5930, 5931, 3, 714, 357, 0, 5931, 5932, 5, 76, 0, 0, 5932, + 5933, 3, 714, 357, 0, 5933, 665, 1, 0, 0, 0, 5934, 5935, 3, 714, 357, 0, + 5935, 5936, 5, 430, 0, 0, 5936, 5937, 3, 714, 357, 0, 5937, 5938, 5, 93, + 0, 0, 5938, 5939, 3, 714, 357, 0, 5939, 5945, 1, 0, 0, 0, 5940, 5941, 3, + 714, 357, 0, 5941, 5942, 5, 430, 0, 0, 5942, 5943, 3, 714, 357, 0, 5943, + 5945, 1, 0, 0, 0, 5944, 5934, 1, 0, 0, 0, 5944, 5940, 1, 0, 0, 0, 5945, + 667, 1, 0, 0, 0, 5946, 5947, 5, 525, 0, 0, 5947, 669, 1, 0, 0, 0, 5948, + 5949, 5, 390, 0, 0, 5949, 5950, 5, 391, 0, 0, 5950, 5951, 3, 714, 357, + 0, 5951, 5952, 5, 76, 0, 0, 5952, 5953, 5, 509, 0, 0, 5953, 5954, 3, 394, + 197, 0, 5954, 5955, 5, 510, 0, 0, 5955, 671, 1, 0, 0, 0, 5956, 5957, 3, + 674, 337, 0, 5957, 673, 1, 0, 0, 0, 5958, 5963, 3, 676, 338, 0, 5959, 5960, + 5, 290, 0, 0, 5960, 5962, 3, 676, 338, 0, 5961, 5959, 1, 0, 0, 0, 5962, + 5965, 1, 0, 0, 0, 5963, 5961, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, + 675, 1, 0, 0, 0, 5965, 5963, 1, 0, 0, 0, 5966, 5971, 3, 678, 339, 0, 5967, + 5968, 5, 289, 0, 0, 5968, 5970, 3, 678, 339, 0, 5969, 5967, 1, 0, 0, 0, + 5970, 5973, 1, 0, 0, 0, 5971, 5969, 1, 0, 0, 0, 5971, 5972, 1, 0, 0, 0, + 5972, 677, 1, 0, 0, 0, 5973, 5971, 1, 0, 0, 0, 5974, 5976, 5, 291, 0, 0, + 5975, 5974, 1, 0, 0, 0, 5975, 5976, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, + 5977, 5978, 3, 680, 340, 0, 5978, 679, 1, 0, 0, 0, 5979, 6008, 3, 684, + 342, 0, 5980, 5981, 3, 682, 341, 0, 5981, 5982, 3, 684, 342, 0, 5982, 6009, + 1, 0, 0, 0, 5983, 6009, 5, 6, 0, 0, 5984, 6009, 5, 5, 0, 0, 5985, 5986, + 5, 293, 0, 0, 5986, 5989, 5, 507, 0, 0, 5987, 5990, 3, 586, 293, 0, 5988, + 5990, 3, 710, 355, 0, 5989, 5987, 1, 0, 0, 0, 5989, 5988, 1, 0, 0, 0, 5990, + 5991, 1, 0, 0, 0, 5991, 5992, 5, 508, 0, 0, 5992, 6009, 1, 0, 0, 0, 5993, + 5995, 5, 291, 0, 0, 5994, 5993, 1, 0, 0, 0, 5994, 5995, 1, 0, 0, 0, 5995, + 5996, 1, 0, 0, 0, 5996, 5997, 5, 294, 0, 0, 5997, 5998, 3, 684, 342, 0, + 5998, 5999, 5, 289, 0, 0, 5999, 6000, 3, 684, 342, 0, 6000, 6009, 1, 0, + 0, 0, 6001, 6003, 5, 291, 0, 0, 6002, 6001, 1, 0, 0, 0, 6002, 6003, 1, + 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 6005, 5, 295, 0, 0, 6005, 6009, + 3, 684, 342, 0, 6006, 6007, 5, 296, 0, 0, 6007, 6009, 3, 684, 342, 0, 6008, + 5980, 1, 0, 0, 0, 6008, 5983, 1, 0, 0, 0, 6008, 5984, 1, 0, 0, 0, 6008, + 5985, 1, 0, 0, 0, 6008, 5994, 1, 0, 0, 0, 6008, 6002, 1, 0, 0, 0, 6008, + 6006, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 681, 1, 0, 0, 0, 6010, + 6011, 7, 40, 0, 0, 6011, 683, 1, 0, 0, 0, 6012, 6017, 3, 686, 343, 0, 6013, + 6014, 7, 41, 0, 0, 6014, 6016, 3, 686, 343, 0, 6015, 6013, 1, 0, 0, 0, + 6016, 6019, 1, 0, 0, 0, 6017, 6015, 1, 0, 0, 0, 6017, 6018, 1, 0, 0, 0, + 6018, 685, 1, 0, 0, 0, 6019, 6017, 1, 0, 0, 0, 6020, 6025, 3, 688, 344, + 0, 6021, 6022, 7, 42, 0, 0, 6022, 6024, 3, 688, 344, 0, 6023, 6021, 1, + 0, 0, 0, 6024, 6027, 1, 0, 0, 0, 6025, 6023, 1, 0, 0, 0, 6025, 6026, 1, + 0, 0, 0, 6026, 687, 1, 0, 0, 0, 6027, 6025, 1, 0, 0, 0, 6028, 6030, 7, + 41, 0, 0, 6029, 6028, 1, 0, 0, 0, 6029, 6030, 1, 0, 0, 0, 6030, 6031, 1, + 0, 0, 0, 6031, 6032, 3, 690, 345, 0, 6032, 689, 1, 0, 0, 0, 6033, 6034, + 5, 507, 0, 0, 6034, 6035, 3, 672, 336, 0, 6035, 6036, 5, 508, 0, 0, 6036, + 6055, 1, 0, 0, 0, 6037, 6038, 5, 507, 0, 0, 6038, 6039, 3, 586, 293, 0, + 6039, 6040, 5, 508, 0, 0, 6040, 6055, 1, 0, 0, 0, 6041, 6042, 5, 297, 0, + 0, 6042, 6043, 5, 507, 0, 0, 6043, 6044, 3, 586, 293, 0, 6044, 6045, 5, + 508, 0, 0, 6045, 6055, 1, 0, 0, 0, 6046, 6055, 3, 694, 347, 0, 6047, 6055, + 3, 692, 346, 0, 6048, 6055, 3, 696, 348, 0, 6049, 6055, 3, 318, 159, 0, + 6050, 6055, 3, 310, 155, 0, 6051, 6055, 3, 700, 350, 0, 6052, 6055, 3, + 702, 351, 0, 6053, 6055, 3, 708, 354, 0, 6054, 6033, 1, 0, 0, 0, 6054, + 6037, 1, 0, 0, 0, 6054, 6041, 1, 0, 0, 0, 6054, 6046, 1, 0, 0, 0, 6054, + 6047, 1, 0, 0, 0, 6054, 6048, 1, 0, 0, 0, 6054, 6049, 1, 0, 0, 0, 6054, + 6050, 1, 0, 0, 0, 6054, 6051, 1, 0, 0, 0, 6054, 6052, 1, 0, 0, 0, 6054, + 6053, 1, 0, 0, 0, 6055, 691, 1, 0, 0, 0, 6056, 6062, 5, 79, 0, 0, 6057, + 6058, 5, 80, 0, 0, 6058, 6059, 3, 672, 336, 0, 6059, 6060, 5, 81, 0, 0, + 6060, 6061, 3, 672, 336, 0, 6061, 6063, 1, 0, 0, 0, 6062, 6057, 1, 0, 0, + 0, 6063, 6064, 1, 0, 0, 0, 6064, 6062, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, + 0, 6065, 6068, 1, 0, 0, 0, 6066, 6067, 5, 82, 0, 0, 6067, 6069, 3, 672, + 336, 0, 6068, 6066, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6070, 1, + 0, 0, 0, 6070, 6071, 5, 83, 0, 0, 6071, 693, 1, 0, 0, 0, 6072, 6073, 5, + 105, 0, 0, 6073, 6074, 3, 672, 336, 0, 6074, 6075, 5, 81, 0, 0, 6075, 6076, + 3, 672, 336, 0, 6076, 6077, 5, 82, 0, 0, 6077, 6078, 3, 672, 336, 0, 6078, + 695, 1, 0, 0, 0, 6079, 6080, 5, 288, 0, 0, 6080, 6081, 5, 507, 0, 0, 6081, + 6082, 3, 672, 336, 0, 6082, 6083, 5, 76, 0, 0, 6083, 6084, 3, 698, 349, + 0, 6084, 6085, 5, 508, 0, 0, 6085, 697, 1, 0, 0, 0, 6086, 6087, 7, 43, + 0, 0, 6087, 699, 1, 0, 0, 0, 6088, 6089, 7, 44, 0, 0, 6089, 6095, 5, 507, + 0, 0, 6090, 6092, 5, 84, 0, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, + 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6096, 3, 672, 336, 0, 6094, 6096, 5, + 499, 0, 0, 6095, 6091, 1, 0, 0, 0, 6095, 6094, 1, 0, 0, 0, 6096, 6097, + 1, 0, 0, 0, 6097, 6098, 5, 508, 0, 0, 6098, 701, 1, 0, 0, 0, 6099, 6100, + 3, 704, 352, 0, 6100, 6102, 5, 507, 0, 0, 6101, 6103, 3, 706, 353, 0, 6102, + 6101, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, + 6105, 5, 508, 0, 0, 6105, 703, 1, 0, 0, 0, 6106, 6107, 7, 45, 0, 0, 6107, + 705, 1, 0, 0, 0, 6108, 6113, 3, 672, 336, 0, 6109, 6110, 5, 505, 0, 0, + 6110, 6112, 3, 672, 336, 0, 6111, 6109, 1, 0, 0, 0, 6112, 6115, 1, 0, 0, + 0, 6113, 6111, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 707, 1, 0, 0, + 0, 6115, 6113, 1, 0, 0, 0, 6116, 6129, 3, 716, 358, 0, 6117, 6122, 5, 524, + 0, 0, 6118, 6119, 5, 506, 0, 0, 6119, 6121, 3, 104, 52, 0, 6120, 6118, + 1, 0, 0, 0, 6121, 6124, 1, 0, 0, 0, 6122, 6120, 1, 0, 0, 0, 6122, 6123, + 1, 0, 0, 0, 6123, 6129, 1, 0, 0, 0, 6124, 6122, 1, 0, 0, 0, 6125, 6129, + 3, 712, 356, 0, 6126, 6129, 5, 525, 0, 0, 6127, 6129, 5, 520, 0, 0, 6128, + 6116, 1, 0, 0, 0, 6128, 6117, 1, 0, 0, 0, 6128, 6125, 1, 0, 0, 0, 6128, + 6126, 1, 0, 0, 0, 6128, 6127, 1, 0, 0, 0, 6129, 709, 1, 0, 0, 0, 6130, + 6135, 3, 672, 336, 0, 6131, 6132, 5, 505, 0, 0, 6132, 6134, 3, 672, 336, + 0, 6133, 6131, 1, 0, 0, 0, 6134, 6137, 1, 0, 0, 0, 6135, 6133, 1, 0, 0, + 0, 6135, 6136, 1, 0, 0, 0, 6136, 711, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, + 0, 6138, 6143, 3, 714, 357, 0, 6139, 6140, 5, 506, 0, 0, 6140, 6142, 3, + 714, 357, 0, 6141, 6139, 1, 0, 0, 0, 6142, 6145, 1, 0, 0, 0, 6143, 6141, + 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 713, 1, 0, 0, 0, 6145, 6143, + 1, 0, 0, 0, 6146, 6150, 5, 525, 0, 0, 6147, 6150, 5, 527, 0, 0, 6148, 6150, + 3, 736, 368, 0, 6149, 6146, 1, 0, 0, 0, 6149, 6147, 1, 0, 0, 0, 6149, 6148, + 1, 0, 0, 0, 6150, 715, 1, 0, 0, 0, 6151, 6157, 5, 521, 0, 0, 6152, 6157, + 5, 523, 0, 0, 6153, 6157, 3, 720, 360, 0, 6154, 6157, 5, 292, 0, 0, 6155, + 6157, 5, 140, 0, 0, 6156, 6151, 1, 0, 0, 0, 6156, 6152, 1, 0, 0, 0, 6156, + 6153, 1, 0, 0, 0, 6156, 6154, 1, 0, 0, 0, 6156, 6155, 1, 0, 0, 0, 6157, + 717, 1, 0, 0, 0, 6158, 6167, 5, 511, 0, 0, 6159, 6164, 3, 716, 358, 0, + 6160, 6161, 5, 505, 0, 0, 6161, 6163, 3, 716, 358, 0, 6162, 6160, 1, 0, + 0, 0, 6163, 6166, 1, 0, 0, 0, 6164, 6162, 1, 0, 0, 0, 6164, 6165, 1, 0, + 0, 0, 6165, 6168, 1, 0, 0, 0, 6166, 6164, 1, 0, 0, 0, 6167, 6159, 1, 0, + 0, 0, 6167, 6168, 1, 0, 0, 0, 6168, 6169, 1, 0, 0, 0, 6169, 6170, 5, 512, + 0, 0, 6170, 719, 1, 0, 0, 0, 6171, 6172, 7, 46, 0, 0, 6172, 721, 1, 0, + 0, 0, 6173, 6174, 5, 2, 0, 0, 6174, 723, 1, 0, 0, 0, 6175, 6176, 5, 514, + 0, 0, 6176, 6182, 3, 726, 363, 0, 6177, 6178, 5, 507, 0, 0, 6178, 6179, + 3, 728, 364, 0, 6179, 6180, 5, 508, 0, 0, 6180, 6183, 1, 0, 0, 0, 6181, + 6183, 3, 732, 366, 0, 6182, 6177, 1, 0, 0, 0, 6182, 6181, 1, 0, 0, 0, 6182, + 6183, 1, 0, 0, 0, 6183, 725, 1, 0, 0, 0, 6184, 6185, 7, 47, 0, 0, 6185, + 727, 1, 0, 0, 0, 6186, 6191, 3, 730, 365, 0, 6187, 6188, 5, 505, 0, 0, + 6188, 6190, 3, 730, 365, 0, 6189, 6187, 1, 0, 0, 0, 6190, 6193, 1, 0, 0, + 0, 6191, 6189, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 729, 1, 0, 0, + 0, 6193, 6191, 1, 0, 0, 0, 6194, 6195, 5, 525, 0, 0, 6195, 6196, 5, 513, + 0, 0, 6196, 6199, 3, 732, 366, 0, 6197, 6199, 3, 732, 366, 0, 6198, 6194, + 1, 0, 0, 0, 6198, 6197, 1, 0, 0, 0, 6199, 731, 1, 0, 0, 0, 6200, 6204, + 3, 716, 358, 0, 6201, 6204, 3, 672, 336, 0, 6202, 6204, 3, 712, 356, 0, + 6203, 6200, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6202, 1, 0, 0, 0, + 6204, 733, 1, 0, 0, 0, 6205, 6206, 7, 48, 0, 0, 6206, 735, 1, 0, 0, 0, + 6207, 6208, 7, 49, 0, 0, 6208, 737, 1, 0, 0, 0, 722, 741, 747, 752, 755, + 758, 767, 777, 786, 792, 794, 798, 801, 806, 812, 839, 847, 855, 863, 871, + 883, 896, 909, 921, 932, 936, 944, 950, 967, 971, 975, 979, 983, 987, 991, + 993, 1006, 1011, 1025, 1034, 1050, 1066, 1075, 1098, 1112, 1116, 1125, + 1128, 1136, 1141, 1143, 1222, 1224, 1237, 1248, 1257, 1259, 1270, 1276, + 1284, 1295, 1297, 1305, 1307, 1326, 1334, 1350, 1374, 1390, 1474, 1483, + 1491, 1505, 1512, 1520, 1534, 1547, 1551, 1557, 1560, 1566, 1569, 1575, + 1579, 1583, 1589, 1594, 1597, 1599, 1605, 1609, 1613, 1616, 1620, 1625, + 1632, 1639, 1643, 1648, 1657, 1664, 1669, 1675, 1680, 1685, 1690, 1694, + 1697, 1699, 1705, 1737, 1745, 1766, 1769, 1780, 1785, 1790, 1799, 1812, + 1817, 1822, 1826, 1831, 1836, 1843, 1869, 1875, 1882, 1888, 1919, 1933, + 1940, 1953, 1960, 1968, 1973, 1978, 1984, 1992, 1999, 2003, 2007, 2010, + 2029, 2034, 2043, 2046, 2051, 2058, 2066, 2080, 2087, 2098, 2103, 2143, + 2158, 2165, 2173, 2180, 2184, 2187, 2193, 2196, 2203, 2207, 2210, 2215, + 2222, 2229, 2245, 2250, 2258, 2264, 2269, 2275, 2280, 2286, 2291, 2296, + 2301, 2306, 2311, 2316, 2321, 2326, 2331, 2336, 2341, 2346, 2351, 2356, + 2361, 2366, 2371, 2376, 2381, 2386, 2391, 2396, 2401, 2406, 2411, 2416, + 2421, 2426, 2431, 2436, 2441, 2446, 2451, 2456, 2461, 2466, 2471, 2476, + 2481, 2486, 2491, 2496, 2501, 2506, 2511, 2516, 2521, 2526, 2531, 2536, + 2541, 2546, 2551, 2556, 2561, 2566, 2571, 2576, 2581, 2586, 2591, 2596, + 2601, 2606, 2611, 2613, 2620, 2625, 2632, 2638, 2641, 2644, 2650, 2653, + 2659, 2663, 2669, 2672, 2675, 2680, 2685, 2694, 2696, 2704, 2707, 2711, + 2715, 2718, 2730, 2752, 2765, 2770, 2780, 2790, 2795, 2803, 2810, 2814, + 2818, 2829, 2836, 2850, 2857, 2861, 2865, 2873, 2877, 2881, 2891, 2893, + 2897, 2900, 2905, 2908, 2911, 2915, 2923, 2927, 2934, 2939, 2949, 2952, + 2956, 2960, 2967, 2974, 2980, 2994, 3001, 3016, 3020, 3027, 3032, 3036, + 3039, 3042, 3046, 3052, 3070, 3075, 3083, 3102, 3106, 3113, 3116, 3184, + 3191, 3196, 3226, 3249, 3260, 3267, 3284, 3287, 3296, 3306, 3318, 3330, + 3341, 3344, 3357, 3365, 3371, 3377, 3385, 3392, 3400, 3407, 3414, 3426, + 3429, 3441, 3465, 3473, 3481, 3501, 3505, 3507, 3515, 3520, 3523, 3529, + 3532, 3538, 3541, 3543, 3553, 3652, 3662, 3670, 3680, 3684, 3686, 3694, + 3697, 3702, 3707, 3713, 3717, 3721, 3727, 3733, 3738, 3743, 3748, 3753, + 3761, 3772, 3777, 3783, 3787, 3796, 3798, 3800, 3808, 3844, 3847, 3850, + 3858, 3865, 3876, 3885, 3891, 3899, 3908, 3916, 3922, 3926, 3935, 3947, + 3953, 3955, 3968, 3972, 3984, 3989, 3991, 4006, 4011, 4020, 4029, 4032, + 4043, 4066, 4071, 4076, 4085, 4112, 4119, 4134, 4153, 4158, 4169, 4174, + 4180, 4184, 4192, 4195, 4211, 4219, 4222, 4229, 4237, 4242, 4245, 4248, + 4258, 4261, 4268, 4271, 4279, 4297, 4303, 4306, 4311, 4316, 4326, 4345, + 4353, 4365, 4372, 4376, 4390, 4394, 4398, 4403, 4408, 4413, 4420, 4423, + 4428, 4458, 4466, 4471, 4476, 4480, 4485, 4489, 4495, 4497, 4504, 4506, + 4515, 4520, 4525, 4529, 4534, 4538, 4544, 4546, 4553, 4555, 4557, 4562, + 4568, 4574, 4580, 4584, 4590, 4592, 4604, 4613, 4618, 4624, 4626, 4633, + 4635, 4646, 4655, 4660, 4664, 4668, 4674, 4676, 4688, 4693, 4706, 4712, + 4716, 4723, 4730, 4732, 4743, 4751, 4756, 4764, 4773, 4776, 4788, 4794, + 4823, 4825, 4832, 4834, 4841, 4843, 4850, 4852, 4859, 4861, 4868, 4870, + 4877, 4879, 4886, 4888, 4895, 4897, 4905, 4907, 4914, 4916, 4923, 4925, + 4933, 4935, 4943, 4945, 4953, 4955, 4963, 4965, 4993, 5000, 5016, 5021, + 5032, 5034, 5067, 5069, 5077, 5079, 5087, 5089, 5097, 5099, 5107, 5109, + 5118, 5128, 5134, 5139, 5141, 5144, 5153, 5155, 5164, 5166, 5174, 5176, + 5188, 5190, 5198, 5200, 5209, 5211, 5219, 5231, 5239, 5245, 5247, 5252, + 5254, 5264, 5274, 5282, 5290, 5339, 5369, 5378, 5431, 5435, 5443, 5446, + 5451, 5456, 5462, 5464, 5468, 5472, 5476, 5479, 5486, 5489, 5493, 5500, + 5505, 5510, 5513, 5516, 5519, 5522, 5525, 5529, 5532, 5535, 5539, 5542, + 5544, 5548, 5558, 5561, 5566, 5571, 5573, 5577, 5584, 5589, 5592, 5598, + 5601, 5603, 5606, 5612, 5615, 5620, 5623, 5625, 5637, 5641, 5645, 5650, + 5653, 5672, 5677, 5684, 5691, 5697, 5699, 5717, 5728, 5743, 5745, 5753, + 5756, 5759, 5762, 5765, 5781, 5785, 5790, 5798, 5806, 5813, 5856, 5861, + 5870, 5875, 5878, 5883, 5888, 5904, 5915, 5920, 5924, 5928, 5944, 5963, + 5971, 5975, 5989, 5994, 6002, 6008, 6017, 6025, 6029, 6054, 6064, 6068, + 6091, 6095, 6102, 6113, 6122, 6128, 6135, 6143, 6149, 6156, 6164, 6167, + 6182, 6191, 6198, 6203, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -3698,349 +3729,353 @@ const ( MDLParserFILEINPUT = 178 MDLParserIMAGEINPUT = 179 MDLParserCUSTOMWIDGET = 180 - MDLParserTEXTFILTER = 181 - MDLParserNUMBERFILTER = 182 - MDLParserDROPDOWNFILTER = 183 - MDLParserDATEFILTER = 184 - MDLParserFILTER = 185 - MDLParserWIDGET = 186 - MDLParserWIDGETS = 187 - MDLParserCAPTION = 188 - MDLParserICON = 189 - MDLParserTOOLTIP = 190 - MDLParserDATASOURCE = 191 - MDLParserSOURCE_KW = 192 - MDLParserSELECTION = 193 - MDLParserFOOTER = 194 - MDLParserHEADER = 195 - MDLParserCONTENT = 196 - MDLParserRENDERMODE = 197 - MDLParserBINDS = 198 - MDLParserATTR = 199 - MDLParserCONTENTPARAMS = 200 - MDLParserCAPTIONPARAMS = 201 - MDLParserPARAMS = 202 - MDLParserVARIABLES_KW = 203 - MDLParserDESKTOPWIDTH = 204 - MDLParserTABLETWIDTH = 205 - MDLParserPHONEWIDTH = 206 - MDLParserCLASS = 207 - MDLParserSTYLE = 208 - MDLParserBUTTONSTYLE = 209 - MDLParserDESIGN = 210 - MDLParserPROPERTIES = 211 - MDLParserDESIGNPROPERTIES = 212 - MDLParserSTYLING = 213 - MDLParserCLEAR = 214 - MDLParserWIDTH = 215 - MDLParserHEIGHT = 216 - MDLParserAUTOFILL = 217 - MDLParserURL = 218 - MDLParserFOLDER = 219 - MDLParserPASSING = 220 - MDLParserCONTEXT = 221 - MDLParserEDITABLE = 222 - MDLParserREADONLY = 223 - MDLParserATTRIBUTES = 224 - MDLParserFILTERTYPE = 225 - MDLParserIMAGE = 226 - MDLParserCOLLECTION = 227 - MDLParserSTATICIMAGE = 228 - MDLParserDYNAMICIMAGE = 229 - MDLParserCUSTOMCONTAINER = 230 - MDLParserGROUPBOX = 231 - MDLParserVISIBLE = 232 - MDLParserSAVECHANGES = 233 - MDLParserSAVE_CHANGES = 234 - MDLParserCANCEL_CHANGES = 235 - MDLParserCLOSE_PAGE = 236 - MDLParserSHOW_PAGE = 237 - MDLParserDELETE_ACTION = 238 - MDLParserDELETE_OBJECT = 239 - MDLParserCREATE_OBJECT = 240 - MDLParserCALL_MICROFLOW = 241 - MDLParserCALL_NANOFLOW = 242 - MDLParserOPEN_LINK = 243 - MDLParserSIGN_OUT = 244 - MDLParserCANCEL = 245 - MDLParserPRIMARY = 246 - MDLParserSUCCESS = 247 - MDLParserDANGER = 248 - MDLParserWARNING_STYLE = 249 - MDLParserINFO_STYLE = 250 - MDLParserTEMPLATE = 251 - MDLParserONCLICK = 252 - MDLParserONCHANGE = 253 - MDLParserTABINDEX = 254 - MDLParserH1 = 255 - MDLParserH2 = 256 - MDLParserH3 = 257 - MDLParserH4 = 258 - MDLParserH5 = 259 - MDLParserH6 = 260 - MDLParserPARAGRAPH = 261 - MDLParserSTRING_TYPE = 262 - MDLParserINTEGER_TYPE = 263 - MDLParserLONG_TYPE = 264 - MDLParserDECIMAL_TYPE = 265 - MDLParserBOOLEAN_TYPE = 266 - MDLParserDATETIME_TYPE = 267 - MDLParserDATE_TYPE = 268 - MDLParserAUTONUMBER_TYPE = 269 - MDLParserBINARY_TYPE = 270 - MDLParserHASHEDSTRING_TYPE = 271 - MDLParserCURRENCY_TYPE = 272 - MDLParserFLOAT_TYPE = 273 - MDLParserSTRINGTEMPLATE_TYPE = 274 - MDLParserENUM_TYPE = 275 - MDLParserCOUNT = 276 - MDLParserSUM = 277 - MDLParserAVG = 278 - MDLParserMIN = 279 - MDLParserMAX = 280 - MDLParserLENGTH = 281 - MDLParserTRIM = 282 - MDLParserCOALESCE = 283 - MDLParserCAST = 284 - MDLParserAND = 285 - MDLParserOR = 286 - MDLParserNOT = 287 - MDLParserNULL = 288 - MDLParserIN = 289 - MDLParserBETWEEN = 290 - MDLParserLIKE = 291 - MDLParserMATCH = 292 - MDLParserEXISTS = 293 - MDLParserUNIQUE = 294 - MDLParserDEFAULT = 295 - MDLParserTRUE = 296 - MDLParserFALSE = 297 - MDLParserVALIDATION = 298 - MDLParserFEEDBACK = 299 - MDLParserRULE = 300 - MDLParserREQUIRED = 301 - MDLParserERROR = 302 - MDLParserRAISE = 303 - MDLParserRANGE = 304 - MDLParserREGEX = 305 - MDLParserPATTERN = 306 - MDLParserEXPRESSION = 307 - MDLParserXPATH = 308 - MDLParserCONSTRAINT = 309 - MDLParserCALCULATED = 310 - MDLParserREST = 311 - MDLParserSERVICE = 312 - MDLParserSERVICES = 313 - MDLParserODATA = 314 - MDLParserBASE = 315 - MDLParserAUTH = 316 - MDLParserAUTHENTICATION = 317 - MDLParserBASIC = 318 - MDLParserNOTHING = 319 - MDLParserOAUTH = 320 - MDLParserOPERATION = 321 - MDLParserMETHOD = 322 - MDLParserPATH = 323 - MDLParserTIMEOUT = 324 - MDLParserBODY = 325 - MDLParserRESPONSE = 326 - MDLParserREQUEST = 327 - MDLParserSEND = 328 - MDLParserJSON = 329 - MDLParserXML = 330 - MDLParserSTATUS = 331 - MDLParserFILE_KW = 332 - MDLParserVERSION = 333 - MDLParserGET = 334 - MDLParserPOST = 335 - MDLParserPUT = 336 - MDLParserPATCH = 337 - MDLParserAPI = 338 - MDLParserCLIENT = 339 - MDLParserCLIENTS = 340 - MDLParserPUBLISH = 341 - MDLParserPUBLISHED = 342 - MDLParserEXPOSE = 343 - MDLParserCONTRACT = 344 - MDLParserNAMESPACE_KW = 345 - MDLParserSESSION = 346 - MDLParserGUEST = 347 - MDLParserPAGING = 348 - MDLParserNOT_SUPPORTED = 349 - MDLParserUSERNAME = 350 - MDLParserPASSWORD = 351 - MDLParserCONNECTION = 352 - MDLParserDATABASE = 353 - MDLParserQUERY = 354 - MDLParserMAP = 355 - MDLParserMAPPING = 356 - MDLParserIMPORT = 357 - MDLParserINTO = 358 - MDLParserBATCH = 359 - MDLParserLINK = 360 - MDLParserEXPORT = 361 - MDLParserGENERATE = 362 - MDLParserCONNECTOR = 363 - MDLParserEXEC = 364 - MDLParserTABLES = 365 - MDLParserVIEWS = 366 - MDLParserEXPOSED = 367 - MDLParserPARAMETER = 368 - MDLParserPARAMETERS = 369 - MDLParserHEADERS = 370 - MDLParserNAVIGATION = 371 - MDLParserMENU_KW = 372 - MDLParserHOMES = 373 - MDLParserHOME = 374 - MDLParserLOGIN = 375 - MDLParserFOUND = 376 - MDLParserMODULES = 377 - MDLParserENTITIES = 378 - MDLParserASSOCIATIONS = 379 - MDLParserMICROFLOWS = 380 - MDLParserNANOFLOWS = 381 - MDLParserWORKFLOWS = 382 - MDLParserENUMERATIONS = 383 - MDLParserCONSTANTS = 384 - MDLParserCONNECTIONS = 385 - MDLParserDEFINE = 386 - MDLParserFRAGMENT = 387 - MDLParserFRAGMENTS = 388 - MDLParserLANGUAGES = 389 - MDLParserINSERT = 390 - MDLParserBEFORE = 391 - MDLParserAFTER = 392 - MDLParserUPDATE = 393 - MDLParserREFRESH = 394 - MDLParserCHECK = 395 - MDLParserBUILD = 396 - MDLParserEXECUTE = 397 - MDLParserSCRIPT = 398 - MDLParserLINT = 399 - MDLParserRULES = 400 - MDLParserTEXT = 401 - MDLParserSARIF = 402 - MDLParserMESSAGE = 403 - MDLParserMESSAGES = 404 - MDLParserCHANNELS = 405 - MDLParserCOMMENT = 406 - MDLParserCUSTOM_NAME_MAP = 407 - MDLParserCATALOG = 408 - MDLParserFORCE = 409 - MDLParserBACKGROUND = 410 - MDLParserCALLERS = 411 - MDLParserCALLEES = 412 - MDLParserREFERENCES = 413 - MDLParserTRANSITIVE = 414 - MDLParserIMPACT = 415 - MDLParserDEPTH = 416 - MDLParserSTRUCTURE = 417 - MDLParserSTRUCTURES = 418 - MDLParserTYPE = 419 - MDLParserVALUE = 420 - MDLParserVALUES = 421 - MDLParserSINGLE = 422 - MDLParserMULTIPLE = 423 - MDLParserNONE = 424 - MDLParserBOTH = 425 - MDLParserTO = 426 - MDLParserOF = 427 - MDLParserOVER = 428 - MDLParserFOR = 429 - MDLParserREPLACE = 430 - MDLParserMEMBERS = 431 - MDLParserATTRIBUTE_NAME = 432 - MDLParserFORMAT = 433 - MDLParserSQL = 434 - MDLParserWITHOUT = 435 - MDLParserDRY = 436 - MDLParserRUN = 437 - MDLParserWIDGETTYPE = 438 - MDLParserV3 = 439 - MDLParserBUSINESS = 440 - MDLParserEVENT = 441 - MDLParserSUBSCRIBE = 442 - MDLParserSETTINGS = 443 - MDLParserCONFIGURATION = 444 - MDLParserFEATURES = 445 - MDLParserADDED = 446 - MDLParserSINCE = 447 - MDLParserSECURITY = 448 - MDLParserROLE = 449 - MDLParserROLES = 450 - MDLParserGRANT = 451 - MDLParserREVOKE = 452 - MDLParserPRODUCTION = 453 - MDLParserPROTOTYPE = 454 - MDLParserMANAGE = 455 - MDLParserDEMO = 456 - MDLParserMATRIX = 457 - MDLParserAPPLY = 458 - MDLParserACCESS = 459 - MDLParserLEVEL = 460 - MDLParserUSER = 461 - MDLParserTASK = 462 - MDLParserDECISION = 463 - MDLParserSPLIT = 464 - MDLParserOUTCOMES = 465 - MDLParserTARGETING = 466 - MDLParserNOTIFICATION = 467 - MDLParserTIMER = 468 - MDLParserJUMP = 469 - MDLParserDUE = 470 - MDLParserOVERVIEW = 471 - MDLParserDATE = 472 - MDLParserPARALLEL = 473 - MDLParserWAIT = 474 - MDLParserANNOTATION = 475 - MDLParserBOUNDARY = 476 - MDLParserINTERRUPTING = 477 - MDLParserNON = 478 - MDLParserMULTI = 479 - MDLParserBY = 480 - MDLParserREAD = 481 - MDLParserWRITE = 482 - MDLParserDESCRIPTION = 483 - MDLParserDISPLAY = 484 - MDLParserOFF = 485 - MDLParserUSERS = 486 - MDLParserNOT_EQUALS = 487 - MDLParserLESS_THAN_OR_EQUAL = 488 - MDLParserGREATER_THAN_OR_EQUAL = 489 - MDLParserEQUALS = 490 - MDLParserLESS_THAN = 491 - MDLParserGREATER_THAN = 492 - MDLParserPLUS = 493 - MDLParserMINUS = 494 - MDLParserSTAR = 495 - MDLParserSLASH = 496 - MDLParserPERCENT = 497 - MDLParserMOD = 498 - MDLParserDIV = 499 - MDLParserSEMICOLON = 500 - MDLParserCOMMA = 501 - MDLParserDOT = 502 - MDLParserLPAREN = 503 - MDLParserRPAREN = 504 - MDLParserLBRACE = 505 - MDLParserRBRACE = 506 - MDLParserLBRACKET = 507 - MDLParserRBRACKET = 508 - MDLParserCOLON = 509 - MDLParserAT = 510 - MDLParserPIPE = 511 - MDLParserDOUBLE_COLON = 512 - MDLParserARROW = 513 - MDLParserQUESTION = 514 - MDLParserHASH = 515 - MDLParserMENDIX_TOKEN = 516 - MDLParserSTRING_LITERAL = 517 - MDLParserDOLLAR_STRING = 518 - MDLParserNUMBER_LITERAL = 519 - MDLParserVARIABLE = 520 - MDLParserIDENTIFIER = 521 - MDLParserHYPHENATED_ID = 522 - MDLParserQUOTED_IDENTIFIER = 523 + MDLParserPLUGGABLEWIDGET = 181 + MDLParserTEXTFILTER = 182 + MDLParserNUMBERFILTER = 183 + MDLParserDROPDOWNFILTER = 184 + MDLParserDATEFILTER = 185 + MDLParserDROPDOWNSORT = 186 + MDLParserFILTER = 187 + MDLParserWIDGET = 188 + MDLParserWIDGETS = 189 + MDLParserCAPTION = 190 + MDLParserICON = 191 + MDLParserTOOLTIP = 192 + MDLParserDATASOURCE = 193 + MDLParserSOURCE_KW = 194 + MDLParserSELECTION = 195 + MDLParserFOOTER = 196 + MDLParserHEADER = 197 + MDLParserCONTENT = 198 + MDLParserRENDERMODE = 199 + MDLParserBINDS = 200 + MDLParserATTR = 201 + MDLParserCONTENTPARAMS = 202 + MDLParserCAPTIONPARAMS = 203 + MDLParserPARAMS = 204 + MDLParserVARIABLES_KW = 205 + MDLParserDESKTOPWIDTH = 206 + MDLParserTABLETWIDTH = 207 + MDLParserPHONEWIDTH = 208 + MDLParserCLASS = 209 + MDLParserSTYLE = 210 + MDLParserBUTTONSTYLE = 211 + MDLParserDESIGN = 212 + MDLParserPROPERTIES = 213 + MDLParserDESIGNPROPERTIES = 214 + MDLParserSTYLING = 215 + MDLParserCLEAR = 216 + MDLParserWIDTH = 217 + MDLParserHEIGHT = 218 + MDLParserAUTOFILL = 219 + MDLParserURL = 220 + MDLParserFOLDER = 221 + MDLParserPASSING = 222 + MDLParserCONTEXT = 223 + MDLParserEDITABLE = 224 + MDLParserREADONLY = 225 + MDLParserATTRIBUTES = 226 + MDLParserFILTERTYPE = 227 + MDLParserIMAGE = 228 + MDLParserCOLLECTION = 229 + MDLParserSTATICIMAGE = 230 + MDLParserDYNAMICIMAGE = 231 + MDLParserCUSTOMCONTAINER = 232 + MDLParserTABCONTAINER = 233 + MDLParserTABPAGE = 234 + MDLParserGROUPBOX = 235 + MDLParserVISIBLE = 236 + MDLParserSAVECHANGES = 237 + MDLParserSAVE_CHANGES = 238 + MDLParserCANCEL_CHANGES = 239 + MDLParserCLOSE_PAGE = 240 + MDLParserSHOW_PAGE = 241 + MDLParserDELETE_ACTION = 242 + MDLParserDELETE_OBJECT = 243 + MDLParserCREATE_OBJECT = 244 + MDLParserCALL_MICROFLOW = 245 + MDLParserCALL_NANOFLOW = 246 + MDLParserOPEN_LINK = 247 + MDLParserSIGN_OUT = 248 + MDLParserCANCEL = 249 + MDLParserPRIMARY = 250 + MDLParserSUCCESS = 251 + MDLParserDANGER = 252 + MDLParserWARNING_STYLE = 253 + MDLParserINFO_STYLE = 254 + MDLParserTEMPLATE = 255 + MDLParserONCLICK = 256 + MDLParserONCHANGE = 257 + MDLParserTABINDEX = 258 + MDLParserH1 = 259 + MDLParserH2 = 260 + MDLParserH3 = 261 + MDLParserH4 = 262 + MDLParserH5 = 263 + MDLParserH6 = 264 + MDLParserPARAGRAPH = 265 + MDLParserSTRING_TYPE = 266 + MDLParserINTEGER_TYPE = 267 + MDLParserLONG_TYPE = 268 + MDLParserDECIMAL_TYPE = 269 + MDLParserBOOLEAN_TYPE = 270 + MDLParserDATETIME_TYPE = 271 + MDLParserDATE_TYPE = 272 + MDLParserAUTONUMBER_TYPE = 273 + MDLParserBINARY_TYPE = 274 + MDLParserHASHEDSTRING_TYPE = 275 + MDLParserCURRENCY_TYPE = 276 + MDLParserFLOAT_TYPE = 277 + MDLParserSTRINGTEMPLATE_TYPE = 278 + MDLParserENUM_TYPE = 279 + MDLParserCOUNT = 280 + MDLParserSUM = 281 + MDLParserAVG = 282 + MDLParserMIN = 283 + MDLParserMAX = 284 + MDLParserLENGTH = 285 + MDLParserTRIM = 286 + MDLParserCOALESCE = 287 + MDLParserCAST = 288 + MDLParserAND = 289 + MDLParserOR = 290 + MDLParserNOT = 291 + MDLParserNULL = 292 + MDLParserIN = 293 + MDLParserBETWEEN = 294 + MDLParserLIKE = 295 + MDLParserMATCH = 296 + MDLParserEXISTS = 297 + MDLParserUNIQUE = 298 + MDLParserDEFAULT = 299 + MDLParserTRUE = 300 + MDLParserFALSE = 301 + MDLParserVALIDATION = 302 + MDLParserFEEDBACK = 303 + MDLParserRULE = 304 + MDLParserREQUIRED = 305 + MDLParserERROR = 306 + MDLParserRAISE = 307 + MDLParserRANGE = 308 + MDLParserREGEX = 309 + MDLParserPATTERN = 310 + MDLParserEXPRESSION = 311 + MDLParserXPATH = 312 + MDLParserCONSTRAINT = 313 + MDLParserCALCULATED = 314 + MDLParserREST = 315 + MDLParserSERVICE = 316 + MDLParserSERVICES = 317 + MDLParserODATA = 318 + MDLParserBASE = 319 + MDLParserAUTH = 320 + MDLParserAUTHENTICATION = 321 + MDLParserBASIC = 322 + MDLParserNOTHING = 323 + MDLParserOAUTH = 324 + MDLParserOPERATION = 325 + MDLParserMETHOD = 326 + MDLParserPATH = 327 + MDLParserTIMEOUT = 328 + MDLParserBODY = 329 + MDLParserRESPONSE = 330 + MDLParserREQUEST = 331 + MDLParserSEND = 332 + MDLParserJSON = 333 + MDLParserXML = 334 + MDLParserSTATUS = 335 + MDLParserFILE_KW = 336 + MDLParserVERSION = 337 + MDLParserGET = 338 + MDLParserPOST = 339 + MDLParserPUT = 340 + MDLParserPATCH = 341 + MDLParserAPI = 342 + MDLParserCLIENT = 343 + MDLParserCLIENTS = 344 + MDLParserPUBLISH = 345 + MDLParserPUBLISHED = 346 + MDLParserEXPOSE = 347 + MDLParserCONTRACT = 348 + MDLParserNAMESPACE_KW = 349 + MDLParserSESSION = 350 + MDLParserGUEST = 351 + MDLParserPAGING = 352 + MDLParserNOT_SUPPORTED = 353 + MDLParserUSERNAME = 354 + MDLParserPASSWORD = 355 + MDLParserCONNECTION = 356 + MDLParserDATABASE = 357 + MDLParserQUERY = 358 + MDLParserMAP = 359 + MDLParserMAPPING = 360 + MDLParserIMPORT = 361 + MDLParserINTO = 362 + MDLParserBATCH = 363 + MDLParserLINK = 364 + MDLParserEXPORT = 365 + MDLParserGENERATE = 366 + MDLParserCONNECTOR = 367 + MDLParserEXEC = 368 + MDLParserTABLES = 369 + MDLParserVIEWS = 370 + MDLParserEXPOSED = 371 + MDLParserPARAMETER = 372 + MDLParserPARAMETERS = 373 + MDLParserHEADERS = 374 + MDLParserNAVIGATION = 375 + MDLParserMENU_KW = 376 + MDLParserHOMES = 377 + MDLParserHOME = 378 + MDLParserLOGIN = 379 + MDLParserFOUND = 380 + MDLParserMODULES = 381 + MDLParserENTITIES = 382 + MDLParserASSOCIATIONS = 383 + MDLParserMICROFLOWS = 384 + MDLParserNANOFLOWS = 385 + MDLParserWORKFLOWS = 386 + MDLParserENUMERATIONS = 387 + MDLParserCONSTANTS = 388 + MDLParserCONNECTIONS = 389 + MDLParserDEFINE = 390 + MDLParserFRAGMENT = 391 + MDLParserFRAGMENTS = 392 + MDLParserLANGUAGES = 393 + MDLParserINSERT = 394 + MDLParserBEFORE = 395 + MDLParserAFTER = 396 + MDLParserUPDATE = 397 + MDLParserREFRESH = 398 + MDLParserCHECK = 399 + MDLParserBUILD = 400 + MDLParserEXECUTE = 401 + MDLParserSCRIPT = 402 + MDLParserLINT = 403 + MDLParserRULES = 404 + MDLParserTEXT = 405 + MDLParserSARIF = 406 + MDLParserMESSAGE = 407 + MDLParserMESSAGES = 408 + MDLParserCHANNELS = 409 + MDLParserCOMMENT = 410 + MDLParserCUSTOM_NAME_MAP = 411 + MDLParserCATALOG = 412 + MDLParserFORCE = 413 + MDLParserBACKGROUND = 414 + MDLParserCALLERS = 415 + MDLParserCALLEES = 416 + MDLParserREFERENCES = 417 + MDLParserTRANSITIVE = 418 + MDLParserIMPACT = 419 + MDLParserDEPTH = 420 + MDLParserSTRUCTURE = 421 + MDLParserSTRUCTURES = 422 + MDLParserTYPE = 423 + MDLParserVALUE = 424 + MDLParserVALUES = 425 + MDLParserSINGLE = 426 + MDLParserMULTIPLE = 427 + MDLParserNONE = 428 + MDLParserBOTH = 429 + MDLParserTO = 430 + MDLParserOF = 431 + MDLParserOVER = 432 + MDLParserFOR = 433 + MDLParserREPLACE = 434 + MDLParserMEMBERS = 435 + MDLParserATTRIBUTE_NAME = 436 + MDLParserFORMAT = 437 + MDLParserSQL = 438 + MDLParserWITHOUT = 439 + MDLParserDRY = 440 + MDLParserRUN = 441 + MDLParserWIDGETTYPE = 442 + MDLParserV3 = 443 + MDLParserBUSINESS = 444 + MDLParserEVENT = 445 + MDLParserSUBSCRIBE = 446 + MDLParserSETTINGS = 447 + MDLParserCONFIGURATION = 448 + MDLParserFEATURES = 449 + MDLParserADDED = 450 + MDLParserSINCE = 451 + MDLParserSECURITY = 452 + MDLParserROLE = 453 + MDLParserROLES = 454 + MDLParserGRANT = 455 + MDLParserREVOKE = 456 + MDLParserPRODUCTION = 457 + MDLParserPROTOTYPE = 458 + MDLParserMANAGE = 459 + MDLParserDEMO = 460 + MDLParserMATRIX = 461 + MDLParserAPPLY = 462 + MDLParserACCESS = 463 + MDLParserLEVEL = 464 + MDLParserUSER = 465 + MDLParserTASK = 466 + MDLParserDECISION = 467 + MDLParserSPLIT = 468 + MDLParserOUTCOMES = 469 + MDLParserTARGETING = 470 + MDLParserNOTIFICATION = 471 + MDLParserTIMER = 472 + MDLParserJUMP = 473 + MDLParserDUE = 474 + MDLParserOVERVIEW = 475 + MDLParserDATE = 476 + MDLParserPARALLEL = 477 + MDLParserWAIT = 478 + MDLParserANNOTATION = 479 + MDLParserBOUNDARY = 480 + MDLParserINTERRUPTING = 481 + MDLParserNON = 482 + MDLParserMULTI = 483 + MDLParserBY = 484 + MDLParserREAD = 485 + MDLParserWRITE = 486 + MDLParserDESCRIPTION = 487 + MDLParserDISPLAY = 488 + MDLParserOFF = 489 + MDLParserUSERS = 490 + MDLParserNOT_EQUALS = 491 + MDLParserLESS_THAN_OR_EQUAL = 492 + MDLParserGREATER_THAN_OR_EQUAL = 493 + MDLParserEQUALS = 494 + MDLParserLESS_THAN = 495 + MDLParserGREATER_THAN = 496 + MDLParserPLUS = 497 + MDLParserMINUS = 498 + MDLParserSTAR = 499 + MDLParserSLASH = 500 + MDLParserPERCENT = 501 + MDLParserMOD = 502 + MDLParserDIV = 503 + MDLParserSEMICOLON = 504 + MDLParserCOMMA = 505 + MDLParserDOT = 506 + MDLParserLPAREN = 507 + MDLParserRPAREN = 508 + MDLParserLBRACE = 509 + MDLParserRBRACE = 510 + MDLParserLBRACKET = 511 + MDLParserRBRACKET = 512 + MDLParserCOLON = 513 + MDLParserAT = 514 + MDLParserPIPE = 515 + MDLParserDOUBLE_COLON = 516 + MDLParserARROW = 517 + MDLParserQUESTION = 518 + MDLParserHASH = 519 + MDLParserMENDIX_TOKEN = 520 + MDLParserSTRING_LITERAL = 521 + MDLParserDOLLAR_STRING = 522 + MDLParserNUMBER_LITERAL = 523 + MDLParserVARIABLE = 524 + MDLParserIDENTIFIER = 525 + MDLParserHYPHENATED_ID = 526 + MDLParserQUOTED_IDENTIFIER = 527 ) // MDLParser rules. @@ -4542,7 +4577,7 @@ func (p *MDLParser) Program() (localctx IProgramContext) { } _la = p.GetTokenStream().LA(1) - for ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&216172782117847044) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&127) != 0) || _la == MDLParserSEARCH || ((int64((_la-357)) & ^0x3f) == 0 && ((int64(1)<<(_la-357))&6528887160833) != 0) || ((int64((_la-434)) & ^0x3f) == 0 && ((int64(1)<<(_la-434))&393217) != 0) || _la == MDLParserAT || _la == MDLParserIDENTIFIER { + for ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&216172782117847044) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&127) != 0) || _la == MDLParserSEARCH || ((int64((_la-361)) & ^0x3f) == 0 && ((int64(1)<<(_la-361))&6528887160833) != 0) || ((int64((_la-438)) & ^0x3f) == 0 && ((int64(1)<<(_la-438))&393217) != 0) || _la == MDLParserAT || _la == MDLParserIDENTIFIER { { p.SetState(738) p.Statement() @@ -8868,8 +8903,10 @@ type IAlterPageAssignmentContext interface { GetParser() antlr.Parser // Getter signatures - IdentifierOrKeyword() IIdentifierOrKeywordContext + DATASOURCE() antlr.TerminalNode EQUALS() antlr.TerminalNode + DataSourceExprV3() IDataSourceExprV3Context + IdentifierOrKeyword() IIdentifierOrKeywordContext PropertyValueV3() IPropertyValueV3Context STRING_LITERAL() antlr.TerminalNode @@ -8909,6 +8946,30 @@ func NewAlterPageAssignmentContext(parser antlr.Parser, parent antlr.ParserRuleC func (s *AlterPageAssignmentContext) GetParser() antlr.Parser { return s.parser } +func (s *AlterPageAssignmentContext) DATASOURCE() antlr.TerminalNode { + return s.GetToken(MDLParserDATASOURCE, 0) +} + +func (s *AlterPageAssignmentContext) EQUALS() antlr.TerminalNode { + return s.GetToken(MDLParserEQUALS, 0) +} + +func (s *AlterPageAssignmentContext) DataSourceExprV3() IDataSourceExprV3Context { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IDataSourceExprV3Context); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(IDataSourceExprV3Context) +} + func (s *AlterPageAssignmentContext) IdentifierOrKeyword() IIdentifierOrKeywordContext { var t antlr.RuleContext for _, ctx := range s.GetChildren() { @@ -8925,10 +8986,6 @@ func (s *AlterPageAssignmentContext) IdentifierOrKeyword() IIdentifierOrKeywordC return t.(IIdentifierOrKeywordContext) } -func (s *AlterPageAssignmentContext) EQUALS() antlr.TerminalNode { - return s.GetToken(MDLParserEQUALS, 0) -} - func (s *AlterPageAssignmentContext) PropertyValueV3() IPropertyValueV3Context { var t antlr.RuleContext for _, ctx := range s.GetChildren() { @@ -8972,18 +9029,22 @@ func (s *AlterPageAssignmentContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) AlterPageAssignment() (localctx IAlterPageAssignmentContext) { localctx = NewAlterPageAssignmentContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 22, MDLParserRULE_alterPageAssignment) - p.SetState(1047) + p.SetState(1050) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetTokenStream().LA(1) { - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 39, p.GetParserRuleContext()) { + case 1: p.EnterOuterAlt(localctx, 1) { p.SetState(1040) - p.IdentifierOrKeyword() + p.Match(MDLParserDATASOURCE) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } { p.SetState(1041) @@ -8995,14 +9056,18 @@ func (p *MDLParser) AlterPageAssignment() (localctx IAlterPageAssignmentContext) } { p.SetState(1042) - p.PropertyValueV3() + p.DataSourceExprV3() } - case MDLParserSTRING_LITERAL: + case 2: p.EnterOuterAlt(localctx, 2) + { + p.SetState(1043) + p.IdentifierOrKeyword() + } { p.SetState(1044) - p.Match(MDLParserSTRING_LITERAL) + p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule goto errorExit @@ -9010,6 +9075,21 @@ func (p *MDLParser) AlterPageAssignment() (localctx IAlterPageAssignmentContext) } { p.SetState(1045) + p.PropertyValueV3() + } + + case 3: + p.EnterOuterAlt(localctx, 3) + { + p.SetState(1047) + p.Match(MDLParserSTRING_LITERAL) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1048) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -9017,12 +9097,11 @@ func (p *MDLParser) AlterPageAssignment() (localctx IAlterPageAssignmentContext) } } { - p.SetState(1046) + p.SetState(1049) p.PropertyValueV3() } - default: - p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) + case antlr.ATNInvalidAltNumber: goto errorExit } @@ -9166,7 +9245,7 @@ func (s *AlterPageInsertContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { localctx = NewAlterPageInsertContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 24, MDLParserRULE_alterPageInsert) - p.SetState(1063) + p.SetState(1066) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9176,7 +9255,7 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1049) + p.SetState(1052) p.Match(MDLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -9184,7 +9263,7 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1050) + p.SetState(1053) p.Match(MDLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -9192,11 +9271,11 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1051) + p.SetState(1054) p.IdentifierOrKeyword() } { - p.SetState(1052) + p.SetState(1055) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -9204,11 +9283,11 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1053) + p.SetState(1056) p.PageBodyV3() } { - p.SetState(1054) + p.SetState(1057) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -9219,7 +9298,7 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1056) + p.SetState(1059) p.Match(MDLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -9227,7 +9306,7 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1057) + p.SetState(1060) p.Match(MDLParserBEFORE) if p.HasError() { // Recognition error - abort rule @@ -9235,11 +9314,11 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1058) + p.SetState(1061) p.IdentifierOrKeyword() } { - p.SetState(1059) + p.SetState(1062) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -9247,11 +9326,11 @@ func (p *MDLParser) AlterPageInsert() (localctx IAlterPageInsertContext) { } } { - p.SetState(1060) + p.SetState(1063) p.PageBodyV3() } { - p.SetState(1061) + p.SetState(1064) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -9411,7 +9490,7 @@ func (p *MDLParser) AlterPageDrop() (localctx IAlterPageDropContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1065) + p.SetState(1068) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -9419,7 +9498,7 @@ func (p *MDLParser) AlterPageDrop() (localctx IAlterPageDropContext) { } } { - p.SetState(1066) + p.SetState(1069) p.Match(MDLParserWIDGET) if p.HasError() { // Recognition error - abort rule @@ -9427,10 +9506,10 @@ func (p *MDLParser) AlterPageDrop() (localctx IAlterPageDropContext) { } } { - p.SetState(1067) + p.SetState(1070) p.IdentifierOrKeyword() } - p.SetState(1072) + p.SetState(1075) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9439,7 +9518,7 @@ func (p *MDLParser) AlterPageDrop() (localctx IAlterPageDropContext) { for _la == MDLParserCOMMA { { - p.SetState(1068) + p.SetState(1071) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -9447,11 +9526,11 @@ func (p *MDLParser) AlterPageDrop() (localctx IAlterPageDropContext) { } } { - p.SetState(1069) + p.SetState(1072) p.IdentifierOrKeyword() } - p.SetState(1074) + p.SetState(1077) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -9596,7 +9675,7 @@ func (p *MDLParser) AlterPageReplace() (localctx IAlterPageReplaceContext) { p.EnterRule(localctx, 28, MDLParserRULE_alterPageReplace) p.EnterOuterAlt(localctx, 1) { - p.SetState(1075) + p.SetState(1078) p.Match(MDLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -9604,11 +9683,11 @@ func (p *MDLParser) AlterPageReplace() (localctx IAlterPageReplaceContext) { } } { - p.SetState(1076) + p.SetState(1079) p.IdentifierOrKeyword() } { - p.SetState(1077) + p.SetState(1080) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -9616,7 +9695,7 @@ func (p *MDLParser) AlterPageReplace() (localctx IAlterPageReplaceContext) { } } { - p.SetState(1078) + p.SetState(1081) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -9624,11 +9703,11 @@ func (p *MDLParser) AlterPageReplace() (localctx IAlterPageReplaceContext) { } } { - p.SetState(1079) + p.SetState(1082) p.PageBodyV3() } { - p.SetState(1080) + p.SetState(1083) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -9746,7 +9825,7 @@ func (p *MDLParser) AlterPageAddVariable() (localctx IAlterPageAddVariableContex p.EnterRule(localctx, 30, MDLParserRULE_alterPageAddVariable) p.EnterOuterAlt(localctx, 1) { - p.SetState(1082) + p.SetState(1085) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -9754,7 +9833,7 @@ func (p *MDLParser) AlterPageAddVariable() (localctx IAlterPageAddVariableContex } } { - p.SetState(1083) + p.SetState(1086) p.Match(MDLParserVARIABLES_KW) if p.HasError() { // Recognition error - abort rule @@ -9762,7 +9841,7 @@ func (p *MDLParser) AlterPageAddVariable() (localctx IAlterPageAddVariableContex } } { - p.SetState(1084) + p.SetState(1087) p.VariableDeclaration() } @@ -9864,7 +9943,7 @@ func (p *MDLParser) AlterPageDropVariable() (localctx IAlterPageDropVariableCont p.EnterRule(localctx, 32, MDLParserRULE_alterPageDropVariable) p.EnterOuterAlt(localctx, 1) { - p.SetState(1086) + p.SetState(1089) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -9872,7 +9951,7 @@ func (p *MDLParser) AlterPageDropVariable() (localctx IAlterPageDropVariableCont } } { - p.SetState(1087) + p.SetState(1090) p.Match(MDLParserVARIABLES_KW) if p.HasError() { // Recognition error - abort rule @@ -9880,7 +9959,7 @@ func (p *MDLParser) AlterPageDropVariable() (localctx IAlterPageDropVariableCont } } { - p.SetState(1088) + p.SetState(1091) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -10107,7 +10186,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { p.EnterRule(localctx, 34, MDLParserRULE_navigationClause) var _la int - p.SetState(1113) + p.SetState(1116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10117,7 +10196,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { case MDLParserHOME: p.EnterOuterAlt(localctx, 1) { - p.SetState(1090) + p.SetState(1093) p.Match(MDLParserHOME) if p.HasError() { // Recognition error - abort rule @@ -10125,7 +10204,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1091) + p.SetState(1094) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserMICROFLOW || _la == MDLParserPAGE) { @@ -10136,10 +10215,10 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1092) + p.SetState(1095) p.QualifiedName() } - p.SetState(1095) + p.SetState(1098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10148,7 +10227,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { if _la == MDLParserFOR { { - p.SetState(1093) + p.SetState(1096) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -10156,7 +10235,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1094) + p.SetState(1097) p.QualifiedName() } @@ -10165,7 +10244,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { case MDLParserLOGIN: p.EnterOuterAlt(localctx, 2) { - p.SetState(1097) + p.SetState(1100) p.Match(MDLParserLOGIN) if p.HasError() { // Recognition error - abort rule @@ -10173,7 +10252,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1098) + p.SetState(1101) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -10181,14 +10260,14 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1099) + p.SetState(1102) p.QualifiedName() } case MDLParserNOT: p.EnterOuterAlt(localctx, 3) { - p.SetState(1100) + p.SetState(1103) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -10196,7 +10275,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1101) + p.SetState(1104) p.Match(MDLParserFOUND) if p.HasError() { // Recognition error - abort rule @@ -10204,7 +10283,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1102) + p.SetState(1105) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -10212,14 +10291,14 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1103) + p.SetState(1106) p.QualifiedName() } case MDLParserMENU_KW: p.EnterOuterAlt(localctx, 4) { - p.SetState(1104) + p.SetState(1107) p.Match(MDLParserMENU_KW) if p.HasError() { // Recognition error - abort rule @@ -10227,14 +10306,14 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { } } { - p.SetState(1105) + p.SetState(1108) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1109) + p.SetState(1112) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10243,11 +10322,11 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { for _la == MDLParserMENU_KW { { - p.SetState(1106) + p.SetState(1109) p.NavMenuItemDef() } - p.SetState(1111) + p.SetState(1114) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10255,7 +10334,7 @@ func (p *MDLParser) NavigationClause() (localctx INavigationClauseContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1112) + p.SetState(1115) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -10451,7 +10530,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { p.EnterRule(localctx, 36, MDLParserRULE_navMenuItemDef) var _la int - p.SetState(1140) + p.SetState(1143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10461,7 +10540,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1115) + p.SetState(1118) p.Match(MDLParserMENU_KW) if p.HasError() { // Recognition error - abort rule @@ -10469,7 +10548,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1116) + p.SetState(1119) p.Match(MDLParserITEM) if p.HasError() { // Recognition error - abort rule @@ -10477,14 +10556,14 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1117) + p.SetState(1120) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1122) + p.SetState(1125) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10492,7 +10571,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { switch p.GetTokenStream().LA(1) { case MDLParserPAGE: { - p.SetState(1118) + p.SetState(1121) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -10500,13 +10579,13 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1119) + p.SetState(1122) p.QualifiedName() } case MDLParserMICROFLOW: { - p.SetState(1120) + p.SetState(1123) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -10514,7 +10593,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1121) + p.SetState(1124) p.QualifiedName() } @@ -10522,7 +10601,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { default: } - p.SetState(1125) + p.SetState(1128) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10531,7 +10610,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { if _la == MDLParserSEMICOLON { { - p.SetState(1124) + p.SetState(1127) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -10544,7 +10623,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1127) + p.SetState(1130) p.Match(MDLParserMENU_KW) if p.HasError() { // Recognition error - abort rule @@ -10552,7 +10631,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1128) + p.SetState(1131) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -10560,14 +10639,14 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { } } { - p.SetState(1129) + p.SetState(1132) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1133) + p.SetState(1136) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10576,11 +10655,11 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { for _la == MDLParserMENU_KW { { - p.SetState(1130) + p.SetState(1133) p.NavMenuItemDef() } - p.SetState(1135) + p.SetState(1138) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10588,14 +10667,14 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1136) + p.SetState(1139) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1138) + p.SetState(1141) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10604,7 +10683,7 @@ func (p *MDLParser) NavMenuItemDef() (localctx INavMenuItemDefContext) { if _la == MDLParserSEMICOLON { { - p.SetState(1137) + p.SetState(1140) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -10897,7 +10976,7 @@ func (s *DropStatementContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { localctx = NewDropStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 38, MDLParserRULE_dropStatement) - p.SetState(1221) + p.SetState(1224) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10907,7 +10986,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1142) + p.SetState(1145) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -10915,7 +10994,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1143) + p.SetState(1146) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -10923,14 +11002,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1144) + p.SetState(1147) p.QualifiedName() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1145) + p.SetState(1148) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -10938,7 +11017,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1146) + p.SetState(1149) p.Match(MDLParserASSOCIATION) if p.HasError() { // Recognition error - abort rule @@ -10946,14 +11025,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1147) + p.SetState(1150) p.QualifiedName() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1148) + p.SetState(1151) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -10961,7 +11040,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1149) + p.SetState(1152) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -10969,14 +11048,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1150) + p.SetState(1153) p.QualifiedName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1151) + p.SetState(1154) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -10984,7 +11063,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1152) + p.SetState(1155) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -10992,14 +11071,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1153) + p.SetState(1156) p.QualifiedName() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1154) + p.SetState(1157) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11007,7 +11086,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1155) + p.SetState(1158) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -11015,14 +11094,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1156) + p.SetState(1159) p.QualifiedName() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1157) + p.SetState(1160) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11030,7 +11109,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1158) + p.SetState(1161) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -11038,14 +11117,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1159) + p.SetState(1162) p.QualifiedName() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1160) + p.SetState(1163) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11053,7 +11132,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1161) + p.SetState(1164) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -11061,14 +11140,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1162) + p.SetState(1165) p.QualifiedName() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1163) + p.SetState(1166) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11076,7 +11155,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1164) + p.SetState(1167) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -11084,14 +11163,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1165) + p.SetState(1168) p.QualifiedName() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1166) + p.SetState(1169) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11099,7 +11178,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1167) + p.SetState(1170) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -11107,14 +11186,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1168) + p.SetState(1171) p.QualifiedName() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1169) + p.SetState(1172) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11122,7 +11201,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1170) + p.SetState(1173) p.Match(MDLParserNOTEBOOK) if p.HasError() { // Recognition error - abort rule @@ -11130,14 +11209,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1171) + p.SetState(1174) p.QualifiedName() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1172) + p.SetState(1175) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11145,7 +11224,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1173) + p.SetState(1176) p.Match(MDLParserJAVA) if p.HasError() { // Recognition error - abort rule @@ -11153,7 +11232,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1174) + p.SetState(1177) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -11161,14 +11240,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1175) + p.SetState(1178) p.QualifiedName() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1176) + p.SetState(1179) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11176,7 +11255,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1177) + p.SetState(1180) p.Match(MDLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -11184,11 +11263,11 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1178) + p.SetState(1181) p.QualifiedName() } { - p.SetState(1179) + p.SetState(1182) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -11196,14 +11275,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1180) + p.SetState(1183) p.QualifiedName() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1182) + p.SetState(1185) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11211,7 +11290,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1183) + p.SetState(1186) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -11219,7 +11298,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1184) + p.SetState(1187) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -11227,14 +11306,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1185) + p.SetState(1188) p.QualifiedName() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1186) + p.SetState(1189) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11242,7 +11321,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1187) + p.SetState(1190) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -11250,7 +11329,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1188) + p.SetState(1191) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -11258,14 +11337,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1189) + p.SetState(1192) p.QualifiedName() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1190) + p.SetState(1193) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11273,7 +11352,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1191) + p.SetState(1194) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -11281,7 +11360,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1192) + p.SetState(1195) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -11289,7 +11368,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1193) + p.SetState(1196) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -11297,14 +11376,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1194) + p.SetState(1197) p.QualifiedName() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(1195) + p.SetState(1198) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11312,7 +11391,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1196) + p.SetState(1199) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -11320,14 +11399,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1197) + p.SetState(1200) p.QualifiedName() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(1198) + p.SetState(1201) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11335,7 +11414,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1199) + p.SetState(1202) p.Match(MDLParserIMAGE) if p.HasError() { // Recognition error - abort rule @@ -11343,7 +11422,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1200) + p.SetState(1203) p.Match(MDLParserCOLLECTION) if p.HasError() { // Recognition error - abort rule @@ -11351,14 +11430,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1201) + p.SetState(1204) p.QualifiedName() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(1202) + p.SetState(1205) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11366,7 +11445,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1203) + p.SetState(1206) p.Match(MDLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -11374,7 +11453,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1204) + p.SetState(1207) p.Match(MDLParserSTRUCTURE) if p.HasError() { // Recognition error - abort rule @@ -11382,14 +11461,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1205) + p.SetState(1208) p.QualifiedName() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(1206) + p.SetState(1209) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11397,7 +11476,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1207) + p.SetState(1210) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -11405,7 +11484,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1208) + p.SetState(1211) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -11413,14 +11492,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1209) + p.SetState(1212) p.QualifiedName() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(1210) + p.SetState(1213) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11428,7 +11507,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1211) + p.SetState(1214) p.Match(MDLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -11436,7 +11515,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1212) + p.SetState(1215) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -11447,7 +11526,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(1213) + p.SetState(1216) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -11455,7 +11534,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1214) + p.SetState(1217) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -11463,7 +11542,7 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1215) + p.SetState(1218) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -11471,14 +11550,14 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { } } { - p.SetState(1216) + p.SetState(1219) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1219) + p.SetState(1222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11487,13 +11566,13 @@ func (p *MDLParser) DropStatement() (localctx IDropStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 50, p.GetParserRuleContext()) { case 1: { - p.SetState(1217) + p.SetState(1220) p.QualifiedName() } case 2: { - p.SetState(1218) + p.SetState(1221) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11637,7 +11716,7 @@ func (s *RenameStatementContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { localctx = NewRenameStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 40, MDLParserRULE_renameStatement) - p.SetState(1234) + p.SetState(1237) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11647,7 +11726,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1223) + p.SetState(1226) p.Match(MDLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -11655,7 +11734,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1224) + p.SetState(1227) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -11663,11 +11742,11 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1225) + p.SetState(1228) p.QualifiedName() } { - p.SetState(1226) + p.SetState(1229) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -11675,7 +11754,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1227) + p.SetState(1230) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11686,7 +11765,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1229) + p.SetState(1232) p.Match(MDLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -11694,7 +11773,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1230) + p.SetState(1233) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -11702,7 +11781,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1231) + p.SetState(1234) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11710,7 +11789,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1232) + p.SetState(1235) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -11718,7 +11797,7 @@ func (p *MDLParser) RenameStatement() (localctx IRenameStatementContext) { } } { - p.SetState(1233) + p.SetState(1236) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -11936,7 +12015,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { p.EnterRule(localctx, 42, MDLParserRULE_moveStatement) var _la int - p.SetState(1304) + p.SetState(1307) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11946,14 +12025,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1236) + p.SetState(1239) p.Match(MDLParserMOVE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1245) + p.SetState(1248) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11962,7 +12041,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetTokenStream().LA(1) { case MDLParserPAGE: { - p.SetState(1237) + p.SetState(1240) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -11972,7 +12051,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserMICROFLOW: { - p.SetState(1238) + p.SetState(1241) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -11982,7 +12061,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserSNIPPET: { - p.SetState(1239) + p.SetState(1242) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -11992,7 +12071,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserNANOFLOW: { - p.SetState(1240) + p.SetState(1243) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -12002,7 +12081,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserENUMERATION: { - p.SetState(1241) + p.SetState(1244) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -12012,7 +12091,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserCONSTANT: { - p.SetState(1242) + p.SetState(1245) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -12022,7 +12101,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserDATABASE: { - p.SetState(1243) + p.SetState(1246) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -12030,7 +12109,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1244) + p.SetState(1247) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -12043,11 +12122,11 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { goto errorExit } { - p.SetState(1247) + p.SetState(1250) p.QualifiedName() } { - p.SetState(1248) + p.SetState(1251) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -12055,7 +12134,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1249) + p.SetState(1252) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -12063,14 +12142,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1250) + p.SetState(1253) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1256) + p.SetState(1259) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12079,14 +12158,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { if _la == MDLParserIN { { - p.SetState(1251) + p.SetState(1254) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1254) + p.SetState(1257) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12095,13 +12174,13 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 54, p.GetParserRuleContext()) { case 1: { - p.SetState(1252) + p.SetState(1255) p.QualifiedName() } case 2: { - p.SetState(1253) + p.SetState(1256) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12118,14 +12197,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1258) + p.SetState(1261) p.Match(MDLParserMOVE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1267) + p.SetState(1270) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12134,7 +12213,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetTokenStream().LA(1) { case MDLParserPAGE: { - p.SetState(1259) + p.SetState(1262) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -12144,7 +12223,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserMICROFLOW: { - p.SetState(1260) + p.SetState(1263) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -12154,7 +12233,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserSNIPPET: { - p.SetState(1261) + p.SetState(1264) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -12164,7 +12243,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserNANOFLOW: { - p.SetState(1262) + p.SetState(1265) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -12174,7 +12253,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserENUMERATION: { - p.SetState(1263) + p.SetState(1266) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -12184,7 +12263,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserCONSTANT: { - p.SetState(1264) + p.SetState(1267) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -12194,7 +12273,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case MDLParserDATABASE: { - p.SetState(1265) + p.SetState(1268) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -12202,7 +12281,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1266) + p.SetState(1269) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -12215,18 +12294,18 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { goto errorExit } { - p.SetState(1269) + p.SetState(1272) p.QualifiedName() } { - p.SetState(1270) + p.SetState(1273) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1273) + p.SetState(1276) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12235,13 +12314,13 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 57, p.GetParserRuleContext()) { case 1: { - p.SetState(1271) + p.SetState(1274) p.QualifiedName() } case 2: { - p.SetState(1272) + p.SetState(1275) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12256,7 +12335,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1275) + p.SetState(1278) p.Match(MDLParserMOVE) if p.HasError() { // Recognition error - abort rule @@ -12264,7 +12343,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1276) + p.SetState(1279) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -12272,18 +12351,18 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1277) + p.SetState(1280) p.QualifiedName() } { - p.SetState(1278) + p.SetState(1281) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1281) + p.SetState(1284) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12292,13 +12371,13 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 58, p.GetParserRuleContext()) { case 1: { - p.SetState(1279) + p.SetState(1282) p.QualifiedName() } case 2: { - p.SetState(1280) + p.SetState(1283) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12313,7 +12392,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1283) + p.SetState(1286) p.Match(MDLParserMOVE) if p.HasError() { // Recognition error - abort rule @@ -12321,7 +12400,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1284) + p.SetState(1287) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -12329,11 +12408,11 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1285) + p.SetState(1288) p.QualifiedName() } { - p.SetState(1286) + p.SetState(1289) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -12341,7 +12420,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1287) + p.SetState(1290) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -12349,14 +12428,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1288) + p.SetState(1291) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1294) + p.SetState(1297) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12365,14 +12444,14 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { if _la == MDLParserIN { { - p.SetState(1289) + p.SetState(1292) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1292) + p.SetState(1295) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12381,13 +12460,13 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 59, p.GetParserRuleContext()) { case 1: { - p.SetState(1290) + p.SetState(1293) p.QualifiedName() } case 2: { - p.SetState(1291) + p.SetState(1294) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12404,7 +12483,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1296) + p.SetState(1299) p.Match(MDLParserMOVE) if p.HasError() { // Recognition error - abort rule @@ -12412,7 +12491,7 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1297) + p.SetState(1300) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -12420,18 +12499,18 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { } } { - p.SetState(1298) + p.SetState(1301) p.QualifiedName() } { - p.SetState(1299) + p.SetState(1302) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1302) + p.SetState(1305) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12440,13 +12519,13 @@ func (p *MDLParser) MoveStatement() (localctx IMoveStatementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 61, p.GetParserRuleContext()) { case 1: { - p.SetState(1300) + p.SetState(1303) p.QualifiedName() } case 2: { - p.SetState(1301) + p.SetState(1304) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -12832,7 +12911,7 @@ func (s *SecurityStatementContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) SecurityStatement() (localctx ISecurityStatementContext) { localctx = NewSecurityStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 44, MDLParserRULE_securityStatement) - p.SetState(1323) + p.SetState(1326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12842,119 +12921,119 @@ func (p *MDLParser) SecurityStatement() (localctx ISecurityStatementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1306) + p.SetState(1309) p.CreateModuleRoleStatement() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1307) + p.SetState(1310) p.DropModuleRoleStatement() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1308) + p.SetState(1311) p.AlterUserRoleStatement() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1309) + p.SetState(1312) p.DropUserRoleStatement() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1310) + p.SetState(1313) p.GrantEntityAccessStatement() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1311) + p.SetState(1314) p.RevokeEntityAccessStatement() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1312) + p.SetState(1315) p.GrantMicroflowAccessStatement() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1313) + p.SetState(1316) p.RevokeMicroflowAccessStatement() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1314) + p.SetState(1317) p.GrantPageAccessStatement() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1315) + p.SetState(1318) p.RevokePageAccessStatement() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1316) + p.SetState(1319) p.GrantWorkflowAccessStatement() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1317) + p.SetState(1320) p.RevokeWorkflowAccessStatement() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1318) + p.SetState(1321) p.GrantODataServiceAccessStatement() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1319) + p.SetState(1322) p.RevokeODataServiceAccessStatement() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1320) + p.SetState(1323) p.AlterProjectSecurityStatement() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(1321) + p.SetState(1324) p.DropDemoUserStatement() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(1322) + p.SetState(1325) p.UpdateSecurityStatement() } @@ -13089,7 +13168,7 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState p.EnterOuterAlt(localctx, 1) { - p.SetState(1325) + p.SetState(1328) p.Match(MDLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -13097,7 +13176,7 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState } } { - p.SetState(1326) + p.SetState(1329) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -13105,7 +13184,7 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState } } { - p.SetState(1327) + p.SetState(1330) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13113,10 +13192,10 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState } } { - p.SetState(1328) + p.SetState(1331) p.QualifiedName() } - p.SetState(1331) + p.SetState(1334) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13125,7 +13204,7 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState if _la == MDLParserDESCRIPTION { { - p.SetState(1329) + p.SetState(1332) p.Match(MDLParserDESCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -13133,7 +13212,7 @@ func (p *MDLParser) CreateModuleRoleStatement() (localctx ICreateModuleRoleState } } { - p.SetState(1330) + p.SetState(1333) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -13258,7 +13337,7 @@ func (p *MDLParser) DropModuleRoleStatement() (localctx IDropModuleRoleStatement p.EnterRule(localctx, 48, MDLParserRULE_dropModuleRoleStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1333) + p.SetState(1336) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -13266,7 +13345,7 @@ func (p *MDLParser) DropModuleRoleStatement() (localctx IDropModuleRoleStatement } } { - p.SetState(1334) + p.SetState(1337) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -13274,7 +13353,7 @@ func (p *MDLParser) DropModuleRoleStatement() (localctx IDropModuleRoleStatement } } { - p.SetState(1335) + p.SetState(1338) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13282,7 +13361,7 @@ func (p *MDLParser) DropModuleRoleStatement() (localctx IDropModuleRoleStatement } } { - p.SetState(1336) + p.SetState(1339) p.QualifiedName() } @@ -13440,7 +13519,7 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(1338) + p.SetState(1341) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13448,7 +13527,7 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement } } { - p.SetState(1339) + p.SetState(1342) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13456,11 +13535,11 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement } } { - p.SetState(1340) + p.SetState(1343) p.IdentifierOrKeyword() } { - p.SetState(1341) + p.SetState(1344) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -13468,18 +13547,18 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement } } { - p.SetState(1342) + p.SetState(1345) p.ModuleRoleList() } { - p.SetState(1343) + p.SetState(1346) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1347) + p.SetState(1350) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13488,7 +13567,7 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement if _la == MDLParserMANAGE { { - p.SetState(1344) + p.SetState(1347) p.Match(MDLParserMANAGE) if p.HasError() { // Recognition error - abort rule @@ -13496,7 +13575,7 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement } } { - p.SetState(1345) + p.SetState(1348) p.Match(MDLParserALL) if p.HasError() { // Recognition error - abort rule @@ -13504,7 +13583,7 @@ func (p *MDLParser) CreateUserRoleStatement() (localctx ICreateUserRoleStatement } } { - p.SetState(1346) + p.SetState(1349) p.Match(MDLParserROLES) if p.HasError() { // Recognition error - abort rule @@ -13674,7 +13753,7 @@ func (s *AlterUserRoleStatementContext) ExitRule(listener antlr.ParseTreeListene func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementContext) { localctx = NewAlterUserRoleStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 52, MDLParserRULE_alterUserRoleStatement) - p.SetState(1371) + p.SetState(1374) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13684,7 +13763,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1349) + p.SetState(1352) p.Match(MDLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -13692,7 +13771,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1350) + p.SetState(1353) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13700,7 +13779,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1351) + p.SetState(1354) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13708,11 +13787,11 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1352) + p.SetState(1355) p.IdentifierOrKeyword() } { - p.SetState(1353) + p.SetState(1356) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -13720,7 +13799,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1354) + p.SetState(1357) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -13728,7 +13807,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1355) + p.SetState(1358) p.Match(MDLParserROLES) if p.HasError() { // Recognition error - abort rule @@ -13736,7 +13815,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1356) + p.SetState(1359) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -13744,11 +13823,11 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1357) + p.SetState(1360) p.ModuleRoleList() } { - p.SetState(1358) + p.SetState(1361) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -13759,7 +13838,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1360) + p.SetState(1363) p.Match(MDLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -13767,7 +13846,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1361) + p.SetState(1364) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13775,7 +13854,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1362) + p.SetState(1365) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13783,11 +13862,11 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1363) + p.SetState(1366) p.IdentifierOrKeyword() } { - p.SetState(1364) + p.SetState(1367) p.Match(MDLParserREMOVE) if p.HasError() { // Recognition error - abort rule @@ -13795,7 +13874,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1365) + p.SetState(1368) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -13803,7 +13882,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1366) + p.SetState(1369) p.Match(MDLParserROLES) if p.HasError() { // Recognition error - abort rule @@ -13811,7 +13890,7 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1367) + p.SetState(1370) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -13819,11 +13898,11 @@ func (p *MDLParser) AlterUserRoleStatement() (localctx IAlterUserRoleStatementCo } } { - p.SetState(1368) + p.SetState(1371) p.ModuleRoleList() } { - p.SetState(1369) + p.SetState(1372) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -13950,7 +14029,7 @@ func (p *MDLParser) DropUserRoleStatement() (localctx IDropUserRoleStatementCont p.EnterRule(localctx, 54, MDLParserRULE_dropUserRoleStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1373) + p.SetState(1376) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -13958,7 +14037,7 @@ func (p *MDLParser) DropUserRoleStatement() (localctx IDropUserRoleStatementCont } } { - p.SetState(1374) + p.SetState(1377) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13966,7 +14045,7 @@ func (p *MDLParser) DropUserRoleStatement() (localctx IDropUserRoleStatementCont } } { - p.SetState(1375) + p.SetState(1378) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13974,7 +14053,7 @@ func (p *MDLParser) DropUserRoleStatement() (localctx IDropUserRoleStatementCont } } { - p.SetState(1376) + p.SetState(1379) p.IdentifierOrKeyword() } @@ -14144,7 +14223,7 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta p.EnterOuterAlt(localctx, 1) { - p.SetState(1378) + p.SetState(1381) p.Match(MDLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -14152,11 +14231,11 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta } } { - p.SetState(1379) + p.SetState(1382) p.ModuleRoleList() } { - p.SetState(1380) + p.SetState(1383) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -14164,11 +14243,11 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta } } { - p.SetState(1381) + p.SetState(1384) p.QualifiedName() } { - p.SetState(1382) + p.SetState(1385) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -14176,18 +14255,18 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta } } { - p.SetState(1383) + p.SetState(1386) p.EntityAccessRightList() } { - p.SetState(1384) + p.SetState(1387) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1387) + p.SetState(1390) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14196,7 +14275,7 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta if _la == MDLParserWHERE { { - p.SetState(1385) + p.SetState(1388) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -14204,7 +14283,7 @@ func (p *MDLParser) GrantEntityAccessStatement() (localctx IGrantEntityAccessSta } } { - p.SetState(1386) + p.SetState(1389) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -14341,7 +14420,7 @@ func (p *MDLParser) RevokeEntityAccessStatement() (localctx IRevokeEntityAccessS p.EnterRule(localctx, 58, MDLParserRULE_revokeEntityAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1389) + p.SetState(1392) p.Match(MDLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -14349,11 +14428,11 @@ func (p *MDLParser) RevokeEntityAccessStatement() (localctx IRevokeEntityAccessS } } { - p.SetState(1390) + p.SetState(1393) p.ModuleRoleList() } { - p.SetState(1391) + p.SetState(1394) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -14361,7 +14440,7 @@ func (p *MDLParser) RevokeEntityAccessStatement() (localctx IRevokeEntityAccessS } } { - p.SetState(1392) + p.SetState(1395) p.QualifiedName() } @@ -14507,7 +14586,7 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc p.EnterRule(localctx, 60, MDLParserRULE_grantMicroflowAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1394) + p.SetState(1397) p.Match(MDLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -14515,7 +14594,7 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc } } { - p.SetState(1395) + p.SetState(1398) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -14523,7 +14602,7 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc } } { - p.SetState(1396) + p.SetState(1399) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -14531,7 +14610,7 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc } } { - p.SetState(1397) + p.SetState(1400) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -14539,11 +14618,11 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc } } { - p.SetState(1398) + p.SetState(1401) p.QualifiedName() } { - p.SetState(1399) + p.SetState(1402) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -14551,7 +14630,7 @@ func (p *MDLParser) GrantMicroflowAccessStatement() (localctx IGrantMicroflowAcc } } { - p.SetState(1400) + p.SetState(1403) p.ModuleRoleList() } @@ -14697,7 +14776,7 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA p.EnterRule(localctx, 62, MDLParserRULE_revokeMicroflowAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1402) + p.SetState(1405) p.Match(MDLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -14705,7 +14784,7 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA } } { - p.SetState(1403) + p.SetState(1406) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -14713,7 +14792,7 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA } } { - p.SetState(1404) + p.SetState(1407) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -14721,7 +14800,7 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA } } { - p.SetState(1405) + p.SetState(1408) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -14729,11 +14808,11 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA } } { - p.SetState(1406) + p.SetState(1409) p.QualifiedName() } { - p.SetState(1407) + p.SetState(1410) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -14741,7 +14820,7 @@ func (p *MDLParser) RevokeMicroflowAccessStatement() (localctx IRevokeMicroflowA } } { - p.SetState(1408) + p.SetState(1411) p.ModuleRoleList() } @@ -14887,7 +14966,7 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme p.EnterRule(localctx, 64, MDLParserRULE_grantPageAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1410) + p.SetState(1413) p.Match(MDLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -14895,7 +14974,7 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme } } { - p.SetState(1411) + p.SetState(1414) p.Match(MDLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -14903,7 +14982,7 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme } } { - p.SetState(1412) + p.SetState(1415) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -14911,7 +14990,7 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme } } { - p.SetState(1413) + p.SetState(1416) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -14919,11 +14998,11 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme } } { - p.SetState(1414) + p.SetState(1417) p.QualifiedName() } { - p.SetState(1415) + p.SetState(1418) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -14931,7 +15010,7 @@ func (p *MDLParser) GrantPageAccessStatement() (localctx IGrantPageAccessStateme } } { - p.SetState(1416) + p.SetState(1419) p.ModuleRoleList() } @@ -15077,7 +15156,7 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState p.EnterRule(localctx, 66, MDLParserRULE_revokePageAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1418) + p.SetState(1421) p.Match(MDLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -15085,7 +15164,7 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState } } { - p.SetState(1419) + p.SetState(1422) p.Match(MDLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -15093,7 +15172,7 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState } } { - p.SetState(1420) + p.SetState(1423) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -15101,7 +15180,7 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState } } { - p.SetState(1421) + p.SetState(1424) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -15109,11 +15188,11 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState } } { - p.SetState(1422) + p.SetState(1425) p.QualifiedName() } { - p.SetState(1423) + p.SetState(1426) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -15121,7 +15200,7 @@ func (p *MDLParser) RevokePageAccessStatement() (localctx IRevokePageAccessState } } { - p.SetState(1424) + p.SetState(1427) p.ModuleRoleList() } @@ -15267,7 +15346,7 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces p.EnterRule(localctx, 68, MDLParserRULE_grantWorkflowAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1426) + p.SetState(1429) p.Match(MDLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -15275,7 +15354,7 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces } } { - p.SetState(1427) + p.SetState(1430) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -15283,7 +15362,7 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces } } { - p.SetState(1428) + p.SetState(1431) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -15291,7 +15370,7 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces } } { - p.SetState(1429) + p.SetState(1432) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -15299,11 +15378,11 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces } } { - p.SetState(1430) + p.SetState(1433) p.QualifiedName() } { - p.SetState(1431) + p.SetState(1434) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -15311,7 +15390,7 @@ func (p *MDLParser) GrantWorkflowAccessStatement() (localctx IGrantWorkflowAcces } } { - p.SetState(1432) + p.SetState(1435) p.ModuleRoleList() } @@ -15457,7 +15536,7 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc p.EnterRule(localctx, 70, MDLParserRULE_revokeWorkflowAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1434) + p.SetState(1437) p.Match(MDLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -15465,7 +15544,7 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc } } { - p.SetState(1435) + p.SetState(1438) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -15473,7 +15552,7 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc } } { - p.SetState(1436) + p.SetState(1439) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -15481,7 +15560,7 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc } } { - p.SetState(1437) + p.SetState(1440) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -15489,11 +15568,11 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc } } { - p.SetState(1438) + p.SetState(1441) p.QualifiedName() } { - p.SetState(1439) + p.SetState(1442) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -15501,7 +15580,7 @@ func (p *MDLParser) RevokeWorkflowAccessStatement() (localctx IRevokeWorkflowAcc } } { - p.SetState(1440) + p.SetState(1443) p.ModuleRoleList() } @@ -15652,7 +15731,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ p.EnterRule(localctx, 72, MDLParserRULE_grantODataServiceAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1442) + p.SetState(1445) p.Match(MDLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -15660,7 +15739,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1443) + p.SetState(1446) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -15668,7 +15747,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1444) + p.SetState(1447) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -15676,7 +15755,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1445) + p.SetState(1448) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -15684,7 +15763,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1446) + p.SetState(1449) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -15692,11 +15771,11 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1447) + p.SetState(1450) p.QualifiedName() } { - p.SetState(1448) + p.SetState(1451) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -15704,7 +15783,7 @@ func (p *MDLParser) GrantODataServiceAccessStatement() (localctx IGrantODataServ } } { - p.SetState(1449) + p.SetState(1452) p.ModuleRoleList() } @@ -15855,7 +15934,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe p.EnterRule(localctx, 74, MDLParserRULE_revokeODataServiceAccessStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1451) + p.SetState(1454) p.Match(MDLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -15863,7 +15942,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1452) + p.SetState(1455) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -15871,7 +15950,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1453) + p.SetState(1456) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -15879,7 +15958,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1454) + p.SetState(1457) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -15887,7 +15966,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1455) + p.SetState(1458) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -15895,11 +15974,11 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1456) + p.SetState(1459) p.QualifiedName() } { - p.SetState(1457) + p.SetState(1460) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -15907,7 +15986,7 @@ func (p *MDLParser) RevokeODataServiceAccessStatement() (localctx IRevokeODataSe } } { - p.SetState(1458) + p.SetState(1461) p.ModuleRoleList() } @@ -16044,7 +16123,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur p.EnterRule(localctx, 76, MDLParserRULE_alterProjectSecurityStatement) var _la int - p.SetState(1471) + p.SetState(1474) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16054,7 +16133,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1460) + p.SetState(1463) p.Match(MDLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -16062,7 +16141,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1461) + p.SetState(1464) p.Match(MDLParserPROJECT) if p.HasError() { // Recognition error - abort rule @@ -16070,7 +16149,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1462) + p.SetState(1465) p.Match(MDLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -16078,7 +16157,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1463) + p.SetState(1466) p.Match(MDLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -16086,10 +16165,10 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1464) + p.SetState(1467) _la = p.GetTokenStream().LA(1) - if !((int64((_la-453)) & ^0x3f) == 0 && ((int64(1)<<(_la-453))&4294967299) != 0) { + if !((int64((_la-457)) & ^0x3f) == 0 && ((int64(1)<<(_la-457))&4294967299) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -16100,7 +16179,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1465) + p.SetState(1468) p.Match(MDLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -16108,7 +16187,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1466) + p.SetState(1469) p.Match(MDLParserPROJECT) if p.HasError() { // Recognition error - abort rule @@ -16116,7 +16195,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1467) + p.SetState(1470) p.Match(MDLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -16124,7 +16203,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1468) + p.SetState(1471) p.Match(MDLParserDEMO) if p.HasError() { // Recognition error - abort rule @@ -16132,7 +16211,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1469) + p.SetState(1472) p.Match(MDLParserUSERS) if p.HasError() { // Recognition error - abort rule @@ -16140,7 +16219,7 @@ func (p *MDLParser) AlterProjectSecurityStatement() (localctx IAlterProjectSecur } } { - p.SetState(1470) + p.SetState(1473) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserON || _la == MDLParserOFF) { @@ -16350,7 +16429,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(1473) + p.SetState(1476) p.Match(MDLParserDEMO) if p.HasError() { // Recognition error - abort rule @@ -16358,7 +16437,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1474) + p.SetState(1477) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -16366,7 +16445,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1475) + p.SetState(1478) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -16374,7 +16453,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1476) + p.SetState(1479) p.Match(MDLParserPASSWORD) if p.HasError() { // Recognition error - abort rule @@ -16382,14 +16461,14 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1477) + p.SetState(1480) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1480) + p.SetState(1483) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16398,7 +16477,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement if _la == MDLParserENTITY { { - p.SetState(1478) + p.SetState(1481) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -16406,13 +16485,13 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1479) + p.SetState(1482) p.QualifiedName() } } { - p.SetState(1482) + p.SetState(1485) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -16420,10 +16499,10 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1483) + p.SetState(1486) p.IdentifierOrKeyword() } - p.SetState(1488) + p.SetState(1491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16432,7 +16511,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement for _la == MDLParserCOMMA { { - p.SetState(1484) + p.SetState(1487) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -16440,11 +16519,11 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement } } { - p.SetState(1485) + p.SetState(1488) p.IdentifierOrKeyword() } - p.SetState(1490) + p.SetState(1493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16452,7 +16531,7 @@ func (p *MDLParser) CreateDemoUserStatement() (localctx ICreateDemoUserStatement _la = p.GetTokenStream().LA(1) } { - p.SetState(1491) + p.SetState(1494) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -16563,7 +16642,7 @@ func (p *MDLParser) DropDemoUserStatement() (localctx IDropDemoUserStatementCont p.EnterRule(localctx, 80, MDLParserRULE_dropDemoUserStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(1493) + p.SetState(1496) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -16571,7 +16650,7 @@ func (p *MDLParser) DropDemoUserStatement() (localctx IDropDemoUserStatementCont } } { - p.SetState(1494) + p.SetState(1497) p.Match(MDLParserDEMO) if p.HasError() { // Recognition error - abort rule @@ -16579,7 +16658,7 @@ func (p *MDLParser) DropDemoUserStatement() (localctx IDropDemoUserStatementCont } } { - p.SetState(1495) + p.SetState(1498) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -16587,7 +16666,7 @@ func (p *MDLParser) DropDemoUserStatement() (localctx IDropDemoUserStatementCont } } { - p.SetState(1496) + p.SetState(1499) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -16712,7 +16791,7 @@ func (p *MDLParser) UpdateSecurityStatement() (localctx IUpdateSecurityStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(1498) + p.SetState(1501) p.Match(MDLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -16720,14 +16799,14 @@ func (p *MDLParser) UpdateSecurityStatement() (localctx IUpdateSecurityStatement } } { - p.SetState(1499) + p.SetState(1502) p.Match(MDLParserSECURITY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1502) + p.SetState(1505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16736,7 +16815,7 @@ func (p *MDLParser) UpdateSecurityStatement() (localctx IUpdateSecurityStatement if _la == MDLParserIN { { - p.SetState(1500) + p.SetState(1503) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -16744,7 +16823,7 @@ func (p *MDLParser) UpdateSecurityStatement() (localctx IUpdateSecurityStatement } } { - p.SetState(1501) + p.SetState(1504) p.QualifiedName() } @@ -16888,10 +16967,10 @@ func (p *MDLParser) ModuleRoleList() (localctx IModuleRoleListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1504) + p.SetState(1507) p.QualifiedName() } - p.SetState(1509) + p.SetState(1512) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16900,7 +16979,7 @@ func (p *MDLParser) ModuleRoleList() (localctx IModuleRoleListContext) { for _la == MDLParserCOMMA { { - p.SetState(1505) + p.SetState(1508) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -16908,11 +16987,11 @@ func (p *MDLParser) ModuleRoleList() (localctx IModuleRoleListContext) { } } { - p.SetState(1506) + p.SetState(1509) p.QualifiedName() } - p.SetState(1511) + p.SetState(1514) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17058,10 +17137,10 @@ func (p *MDLParser) EntityAccessRightList() (localctx IEntityAccessRightListCont p.EnterOuterAlt(localctx, 1) { - p.SetState(1512) + p.SetState(1515) p.EntityAccessRight() } - p.SetState(1517) + p.SetState(1520) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17070,7 +17149,7 @@ func (p *MDLParser) EntityAccessRightList() (localctx IEntityAccessRightListCont for _la == MDLParserCOMMA { { - p.SetState(1513) + p.SetState(1516) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -17078,11 +17157,11 @@ func (p *MDLParser) EntityAccessRightList() (localctx IEntityAccessRightListCont } } { - p.SetState(1514) + p.SetState(1517) p.EntityAccessRight() } - p.SetState(1519) + p.SetState(1522) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17228,7 +17307,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { p.EnterRule(localctx, 88, MDLParserRULE_entityAccessRight) var _la int - p.SetState(1548) + p.SetState(1551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17238,7 +17317,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1520) + p.SetState(1523) p.Match(MDLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -17249,7 +17328,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1521) + p.SetState(1524) p.Match(MDLParserDELETE) if p.HasError() { // Recognition error - abort rule @@ -17260,7 +17339,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1522) + p.SetState(1525) p.Match(MDLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17268,7 +17347,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1523) + p.SetState(1526) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -17279,7 +17358,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1524) + p.SetState(1527) p.Match(MDLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17287,7 +17366,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1525) + p.SetState(1528) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -17295,14 +17374,14 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1526) + p.SetState(1529) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1531) + p.SetState(1534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17311,7 +17390,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { for _la == MDLParserCOMMA { { - p.SetState(1527) + p.SetState(1530) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -17319,7 +17398,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1528) + p.SetState(1531) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -17327,7 +17406,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } - p.SetState(1533) + p.SetState(1536) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17335,7 +17414,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1534) + p.SetState(1537) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -17346,7 +17425,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1535) + p.SetState(1538) p.Match(MDLParserWRITE) if p.HasError() { // Recognition error - abort rule @@ -17354,7 +17433,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1536) + p.SetState(1539) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -17365,7 +17444,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1537) + p.SetState(1540) p.Match(MDLParserWRITE) if p.HasError() { // Recognition error - abort rule @@ -17373,7 +17452,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1538) + p.SetState(1541) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -17381,14 +17460,14 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1539) + p.SetState(1542) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1544) + p.SetState(1547) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17397,7 +17476,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { for _la == MDLParserCOMMA { { - p.SetState(1540) + p.SetState(1543) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -17405,7 +17484,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } { - p.SetState(1541) + p.SetState(1544) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -17413,7 +17492,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { } } - p.SetState(1546) + p.SetState(1549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17421,7 +17500,7 @@ func (p *MDLParser) EntityAccessRight() (localctx IEntityAccessRightContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(1547) + p.SetState(1550) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -17624,7 +17703,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont p.EnterRule(localctx, 90, MDLParserRULE_createEntityStatement) var _la int - p.SetState(1596) + p.SetState(1599) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17634,7 +17713,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont case MDLParserPERSISTENT: p.EnterOuterAlt(localctx, 1) { - p.SetState(1550) + p.SetState(1553) p.Match(MDLParserPERSISTENT) if p.HasError() { // Recognition error - abort rule @@ -17642,7 +17721,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1551) + p.SetState(1554) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -17650,10 +17729,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1552) + p.SetState(1555) p.QualifiedName() } - p.SetState(1554) + p.SetState(1557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17662,12 +17741,12 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserGENERALIZATION || _la == MDLParserEXTENDS { { - p.SetState(1553) + p.SetState(1556) p.GeneralizationClause() } } - p.SetState(1557) + p.SetState(1560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17676,7 +17755,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserLPAREN { { - p.SetState(1556) + p.SetState(1559) p.EntityBody() } @@ -17685,7 +17764,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont case MDLParserNON_PERSISTENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(1559) + p.SetState(1562) p.Match(MDLParserNON_PERSISTENT) if p.HasError() { // Recognition error - abort rule @@ -17693,7 +17772,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1560) + p.SetState(1563) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -17701,10 +17780,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1561) + p.SetState(1564) p.QualifiedName() } - p.SetState(1563) + p.SetState(1566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17713,12 +17792,12 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserGENERALIZATION || _la == MDLParserEXTENDS { { - p.SetState(1562) + p.SetState(1565) p.GeneralizationClause() } } - p.SetState(1566) + p.SetState(1569) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17727,7 +17806,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserLPAREN { { - p.SetState(1565) + p.SetState(1568) p.EntityBody() } @@ -17736,7 +17815,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont case MDLParserVIEW: p.EnterOuterAlt(localctx, 3) { - p.SetState(1568) + p.SetState(1571) p.Match(MDLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -17744,7 +17823,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1569) + p.SetState(1572) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -17752,10 +17831,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1570) + p.SetState(1573) p.QualifiedName() } - p.SetState(1572) + p.SetState(1575) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17764,20 +17843,20 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserLPAREN { { - p.SetState(1571) + p.SetState(1574) p.EntityBody() } } { - p.SetState(1574) + p.SetState(1577) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1576) + p.SetState(1579) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17786,7 +17865,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserLPAREN { { - p.SetState(1575) + p.SetState(1578) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -17796,10 +17875,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } { - p.SetState(1578) + p.SetState(1581) p.OqlQuery() } - p.SetState(1580) + p.SetState(1583) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17808,7 +17887,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserRPAREN { { - p.SetState(1579) + p.SetState(1582) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -17821,7 +17900,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont case MDLParserEXTERNAL: p.EnterOuterAlt(localctx, 4) { - p.SetState(1582) + p.SetState(1585) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -17829,7 +17908,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1583) + p.SetState(1586) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -17837,10 +17916,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1584) + p.SetState(1587) p.QualifiedName() } - p.SetState(1586) + p.SetState(1589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17849,7 +17928,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserLPAREN { { - p.SetState(1585) + p.SetState(1588) p.EntityBody() } @@ -17858,7 +17937,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont case MDLParserENTITY: p.EnterOuterAlt(localctx, 5) { - p.SetState(1588) + p.SetState(1591) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -17866,10 +17945,10 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont } } { - p.SetState(1589) + p.SetState(1592) p.QualifiedName() } - p.SetState(1591) + p.SetState(1594) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17878,12 +17957,12 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserGENERALIZATION || _la == MDLParserEXTENDS { { - p.SetState(1590) + p.SetState(1593) p.GeneralizationClause() } } - p.SetState(1594) + p.SetState(1597) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17892,7 +17971,7 @@ func (p *MDLParser) CreateEntityStatement() (localctx ICreateEntityStatementCont if _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserLPAREN { { - p.SetState(1593) + p.SetState(1596) p.EntityBody() } @@ -18011,7 +18090,7 @@ func (s *GeneralizationClauseContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) GeneralizationClause() (localctx IGeneralizationClauseContext) { localctx = NewGeneralizationClauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 92, MDLParserRULE_generalizationClause) - p.SetState(1602) + p.SetState(1605) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18021,7 +18100,7 @@ func (p *MDLParser) GeneralizationClause() (localctx IGeneralizationClauseContex case MDLParserEXTENDS: p.EnterOuterAlt(localctx, 1) { - p.SetState(1598) + p.SetState(1601) p.Match(MDLParserEXTENDS) if p.HasError() { // Recognition error - abort rule @@ -18029,14 +18108,14 @@ func (p *MDLParser) GeneralizationClause() (localctx IGeneralizationClauseContex } } { - p.SetState(1599) + p.SetState(1602) p.QualifiedName() } case MDLParserGENERALIZATION: p.EnterOuterAlt(localctx, 2) { - p.SetState(1600) + p.SetState(1603) p.Match(MDLParserGENERALIZATION) if p.HasError() { // Recognition error - abort rule @@ -18044,7 +18123,7 @@ func (p *MDLParser) GeneralizationClause() (localctx IGeneralizationClauseContex } } { - p.SetState(1601) + p.SetState(1604) p.QualifiedName() } @@ -18180,7 +18259,7 @@ func (p *MDLParser) EntityBody() (localctx IEntityBodyContext) { p.EnterRule(localctx, 94, MDLParserRULE_entityBody) var _la int - p.SetState(1613) + p.SetState(1616) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18190,36 +18269,36 @@ func (p *MDLParser) EntityBody() (localctx IEntityBodyContext) { case MDLParserLPAREN: p.EnterOuterAlt(localctx, 1) { - p.SetState(1604) + p.SetState(1607) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1606) + p.SetState(1609) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&25356937159770116) != 0) || ((int64((_la-69)) & ^0x3f) == 0 && ((int64(1)<<(_la-69))&36169534507319297) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&2819253375860736011) != 0) || ((int64((_la-205)) & ^0x3f) == 0 && ((int64(1)<<(_la-205))&4398180887567) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1374523752453) != 0) { + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&25357212037677060) != 0) || ((int64((_la-69)) & ^0x3f) == 0 && ((int64(1)<<(_la-69))&36169534507319297) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&-7169730597647024117) != 0) || ((int64((_la-207)) & ^0x3f) == 0 && ((int64(1)<<(_la-207))&17592723074063) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1374523752453) != 0) { { - p.SetState(1605) + p.SetState(1608) p.AttributeDefinitionList() } } { - p.SetState(1608) + p.SetState(1611) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1610) + p.SetState(1613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18228,7 +18307,7 @@ func (p *MDLParser) EntityBody() (localctx IEntityBodyContext) { if _la == MDLParserINDEX || _la == MDLParserCOMMENT { { - p.SetState(1609) + p.SetState(1612) p.EntityOptions() } @@ -18237,7 +18316,7 @@ func (p *MDLParser) EntityBody() (localctx IEntityBodyContext) { case MDLParserINDEX, MDLParserCOMMENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(1612) + p.SetState(1615) p.EntityOptions() } @@ -18384,10 +18463,10 @@ func (p *MDLParser) EntityOptions() (localctx IEntityOptionsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1615) + p.SetState(1618) p.EntityOption() } - p.SetState(1622) + p.SetState(1625) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18395,7 +18474,7 @@ func (p *MDLParser) EntityOptions() (localctx IEntityOptionsContext) { _la = p.GetTokenStream().LA(1) for _la == MDLParserINDEX || _la == MDLParserCOMMENT || _la == MDLParserCOMMA { - p.SetState(1617) + p.SetState(1620) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18404,7 +18483,7 @@ func (p *MDLParser) EntityOptions() (localctx IEntityOptionsContext) { if _la == MDLParserCOMMA { { - p.SetState(1616) + p.SetState(1619) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -18414,11 +18493,11 @@ func (p *MDLParser) EntityOptions() (localctx IEntityOptionsContext) { } { - p.SetState(1619) + p.SetState(1622) p.EntityOption() } - p.SetState(1624) + p.SetState(1627) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18539,7 +18618,7 @@ func (s *EntityOptionContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) EntityOption() (localctx IEntityOptionContext) { localctx = NewEntityOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 98, MDLParserRULE_entityOption) - p.SetState(1629) + p.SetState(1632) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18549,7 +18628,7 @@ func (p *MDLParser) EntityOption() (localctx IEntityOptionContext) { case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 1) { - p.SetState(1625) + p.SetState(1628) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -18557,7 +18636,7 @@ func (p *MDLParser) EntityOption() (localctx IEntityOptionContext) { } } { - p.SetState(1626) + p.SetState(1629) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -18568,7 +18647,7 @@ func (p *MDLParser) EntityOption() (localctx IEntityOptionContext) { case MDLParserINDEX: p.EnterOuterAlt(localctx, 2) { - p.SetState(1627) + p.SetState(1630) p.Match(MDLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -18576,7 +18655,7 @@ func (p *MDLParser) EntityOption() (localctx IEntityOptionContext) { } } { - p.SetState(1628) + p.SetState(1631) p.IndexDefinition() } @@ -18723,10 +18802,10 @@ func (p *MDLParser) AttributeDefinitionList() (localctx IAttributeDefinitionList p.EnterOuterAlt(localctx, 1) { - p.SetState(1631) + p.SetState(1634) p.AttributeDefinition() } - p.SetState(1636) + p.SetState(1639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18735,7 +18814,7 @@ func (p *MDLParser) AttributeDefinitionList() (localctx IAttributeDefinitionList for _la == MDLParserCOMMA { { - p.SetState(1632) + p.SetState(1635) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -18743,11 +18822,11 @@ func (p *MDLParser) AttributeDefinitionList() (localctx IAttributeDefinitionList } } { - p.SetState(1633) + p.SetState(1636) p.AttributeDefinition() } - p.SetState(1638) + p.SetState(1641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18981,7 +19060,7 @@ func (p *MDLParser) AttributeDefinition() (localctx IAttributeDefinitionContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1640) + p.SetState(1643) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18990,12 +19069,12 @@ func (p *MDLParser) AttributeDefinition() (localctx IAttributeDefinitionContext) if _la == MDLParserDOC_COMMENT { { - p.SetState(1639) + p.SetState(1642) p.DocComment() } } - p.SetState(1645) + p.SetState(1648) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19004,11 +19083,11 @@ func (p *MDLParser) AttributeDefinition() (localctx IAttributeDefinitionContext) for _la == MDLParserAT { { - p.SetState(1642) + p.SetState(1645) p.Annotation() } - p.SetState(1647) + p.SetState(1650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19016,11 +19095,11 @@ func (p *MDLParser) AttributeDefinition() (localctx IAttributeDefinitionContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(1648) + p.SetState(1651) p.AttributeName() } { - p.SetState(1649) + p.SetState(1652) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -19028,23 +19107,23 @@ func (p *MDLParser) AttributeDefinition() (localctx IAttributeDefinitionContext) } } { - p.SetState(1650) + p.SetState(1653) p.DataType() } - p.SetState(1654) + p.SetState(1657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserNOT_NULL || ((int64((_la-287)) & ^0x3f) == 0 && ((int64(1)<<(_la-287))&8405377) != 0) { + for _la == MDLParserNOT_NULL || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&8405377) != 0) { { - p.SetState(1651) + p.SetState(1654) p.AttributeConstraint() } - p.SetState(1656) + p.SetState(1659) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19076,6 +19155,7 @@ type IAttributeNameContext interface { IDENTIFIER() antlr.TerminalNode QUOTED_IDENTIFIER() antlr.TerminalNode CommonNameKeyword() ICommonNameKeywordContext + ATTRIBUTE() antlr.TerminalNode // IsAttributeNameContext differentiates from other interfaces. IsAttributeNameContext() @@ -19137,6 +19217,10 @@ func (s *AttributeNameContext) CommonNameKeyword() ICommonNameKeywordContext { return t.(ICommonNameKeywordContext) } +func (s *AttributeNameContext) ATTRIBUTE() antlr.TerminalNode { + return s.GetToken(MDLParserATTRIBUTE, 0) +} + func (s *AttributeNameContext) GetRuleContext() antlr.RuleContext { return s } @@ -19160,7 +19244,7 @@ func (s *AttributeNameContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) AttributeName() (localctx IAttributeNameContext) { localctx = NewAttributeNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 104, MDLParserRULE_attributeName) - p.SetState(1660) + p.SetState(1664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19170,7 +19254,7 @@ func (p *MDLParser) AttributeName() (localctx IAttributeNameContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(1657) + p.SetState(1660) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -19181,7 +19265,7 @@ func (p *MDLParser) AttributeName() (localctx IAttributeNameContext) { case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(1658) + p.SetState(1661) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -19192,10 +19276,21 @@ func (p *MDLParser) AttributeName() (localctx IAttributeNameContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 3) { - p.SetState(1659) + p.SetState(1662) p.CommonNameKeyword() } + case MDLParserATTRIBUTE: + p.EnterOuterAlt(localctx, 4) + { + p.SetState(1663) + p.Match(MDLParserATTRIBUTE) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + default: p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit @@ -19385,7 +19480,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) p.EnterRule(localctx, 106, MDLParserRULE_attributeConstraint) var _la int - p.SetState(1695) + p.SetState(1699) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19395,14 +19490,14 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserNOT_NULL: p.EnterOuterAlt(localctx, 1) { - p.SetState(1662) + p.SetState(1666) p.Match(MDLParserNOT_NULL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1665) + p.SetState(1669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19411,7 +19506,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) if _la == MDLParserERROR { { - p.SetState(1663) + p.SetState(1667) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -19419,7 +19514,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) } } { - p.SetState(1664) + p.SetState(1668) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -19432,7 +19527,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserNOT: p.EnterOuterAlt(localctx, 2) { - p.SetState(1667) + p.SetState(1671) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -19440,14 +19535,14 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) } } { - p.SetState(1668) + p.SetState(1672) p.Match(MDLParserNULL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1671) + p.SetState(1675) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19456,7 +19551,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) if _la == MDLParserERROR { { - p.SetState(1669) + p.SetState(1673) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -19464,7 +19559,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) } } { - p.SetState(1670) + p.SetState(1674) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -19477,14 +19572,14 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserUNIQUE: p.EnterOuterAlt(localctx, 3) { - p.SetState(1673) + p.SetState(1677) p.Match(MDLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1676) + p.SetState(1680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19493,7 +19588,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) if _la == MDLParserERROR { { - p.SetState(1674) + p.SetState(1678) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -19501,7 +19596,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) } } { - p.SetState(1675) + p.SetState(1679) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -19514,14 +19609,14 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserDEFAULT: p.EnterOuterAlt(localctx, 4) { - p.SetState(1678) + p.SetState(1682) p.Match(MDLParserDEFAULT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1681) + p.SetState(1685) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19530,13 +19625,13 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 103, p.GetParserRuleContext()) { case 1: { - p.SetState(1679) + p.SetState(1683) p.Literal() } case 2: { - p.SetState(1680) + p.SetState(1684) p.Expression() } @@ -19547,14 +19642,14 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserREQUIRED: p.EnterOuterAlt(localctx, 5) { - p.SetState(1683) + p.SetState(1687) p.Match(MDLParserREQUIRED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1686) + p.SetState(1690) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19563,7 +19658,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) if _la == MDLParserERROR { { - p.SetState(1684) + p.SetState(1688) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -19571,7 +19666,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) } } { - p.SetState(1685) + p.SetState(1689) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -19584,23 +19679,23 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) case MDLParserCALCULATED: p.EnterOuterAlt(localctx, 6) { - p.SetState(1688) + p.SetState(1692) p.Match(MDLParserCALCULATED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1693) + p.SetState(1697) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 106, p.GetParserRuleContext()) == 1 { - p.SetState(1690) + p.SetState(1694) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 105, p.GetParserRuleContext()) == 1 { { - p.SetState(1689) + p.SetState(1693) p.Match(MDLParserBY) if p.HasError() { // Recognition error - abort rule @@ -19612,7 +19707,7 @@ func (p *MDLParser) AttributeConstraint() (localctx IAttributeConstraintContext) goto errorExit } { - p.SetState(1692) + p.SetState(1696) p.QualifiedName() } @@ -19648,8 +19743,9 @@ type IDataTypeContext interface { // Getter signatures STRING_TYPE() antlr.TerminalNode LPAREN() antlr.TerminalNode - NUMBER_LITERAL() antlr.TerminalNode RPAREN() antlr.TerminalNode + NUMBER_LITERAL() antlr.TerminalNode + IDENTIFIER() antlr.TerminalNode INTEGER_TYPE() antlr.TerminalNode LONG_TYPE() antlr.TerminalNode DECIMAL_TYPE() antlr.TerminalNode @@ -19665,7 +19761,6 @@ type IDataTypeContext interface { TemplateContext() ITemplateContextContext ENTITY() antlr.TerminalNode LESS_THAN() antlr.TerminalNode - IDENTIFIER() antlr.TerminalNode GREATER_THAN() antlr.TerminalNode ENUM_TYPE() antlr.TerminalNode QualifiedName() IQualifiedNameContext @@ -19716,12 +19811,16 @@ func (s *DataTypeContext) LPAREN() antlr.TerminalNode { return s.GetToken(MDLParserLPAREN, 0) } +func (s *DataTypeContext) RPAREN() antlr.TerminalNode { + return s.GetToken(MDLParserRPAREN, 0) +} + func (s *DataTypeContext) NUMBER_LITERAL() antlr.TerminalNode { return s.GetToken(MDLParserNUMBER_LITERAL, 0) } -func (s *DataTypeContext) RPAREN() antlr.TerminalNode { - return s.GetToken(MDLParserRPAREN, 0) +func (s *DataTypeContext) IDENTIFIER() antlr.TerminalNode { + return s.GetToken(MDLParserIDENTIFIER, 0) } func (s *DataTypeContext) INTEGER_TYPE() antlr.TerminalNode { @@ -19796,10 +19895,6 @@ func (s *DataTypeContext) LESS_THAN() antlr.TerminalNode { return s.GetToken(MDLParserLESS_THAN, 0) } -func (s *DataTypeContext) IDENTIFIER() antlr.TerminalNode { - return s.GetToken(MDLParserIDENTIFIER, 0) -} - func (s *DataTypeContext) GREATER_THAN() antlr.TerminalNode { return s.GetToken(MDLParserGREATER_THAN, 0) } @@ -19857,7 +19952,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { p.EnterRule(localctx, 108, MDLParserRULE_dataType) var _la int - p.SetState(1733) + p.SetState(1737) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19867,14 +19962,14 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1697) + p.SetState(1701) p.Match(MDLParserSTRING_TYPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1701) + p.SetState(1705) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19883,7 +19978,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { if _la == MDLParserLPAREN { { - p.SetState(1698) + p.SetState(1702) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -19891,15 +19986,18 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1699) - p.Match(MDLParserNUMBER_LITERAL) - if p.HasError() { - // Recognition error - abort rule - goto errorExit + p.SetState(1703) + _la = p.GetTokenStream().LA(1) + + if !(_la == MDLParserNUMBER_LITERAL || _la == MDLParserIDENTIFIER) { + p.GetErrorHandler().RecoverInline(p) + } else { + p.GetErrorHandler().ReportMatch(p) + p.Consume() } } { - p.SetState(1700) + p.SetState(1704) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -19912,7 +20010,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1703) + p.SetState(1707) p.Match(MDLParserINTEGER_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19923,7 +20021,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1704) + p.SetState(1708) p.Match(MDLParserLONG_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19934,7 +20032,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1705) + p.SetState(1709) p.Match(MDLParserDECIMAL_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19945,7 +20043,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1706) + p.SetState(1710) p.Match(MDLParserBOOLEAN_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19956,7 +20054,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1707) + p.SetState(1711) p.Match(MDLParserDATETIME_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19967,7 +20065,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1708) + p.SetState(1712) p.Match(MDLParserDATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19978,7 +20076,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1709) + p.SetState(1713) p.Match(MDLParserAUTONUMBER_TYPE) if p.HasError() { // Recognition error - abort rule @@ -19989,7 +20087,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1710) + p.SetState(1714) p.Match(MDLParserBINARY_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20000,7 +20098,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1711) + p.SetState(1715) p.Match(MDLParserHASHEDSTRING_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20011,7 +20109,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1712) + p.SetState(1716) p.Match(MDLParserCURRENCY_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20022,7 +20120,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1713) + p.SetState(1717) p.Match(MDLParserFLOAT_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20033,7 +20131,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1714) + p.SetState(1718) p.Match(MDLParserSTRINGTEMPLATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20041,7 +20139,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1715) + p.SetState(1719) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -20049,11 +20147,11 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1716) + p.SetState(1720) p.TemplateContext() } { - p.SetState(1717) + p.SetState(1721) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -20064,7 +20162,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1719) + p.SetState(1723) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -20072,7 +20170,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1720) + p.SetState(1724) p.Match(MDLParserLESS_THAN) if p.HasError() { // Recognition error - abort rule @@ -20080,7 +20178,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1721) + p.SetState(1725) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -20088,7 +20186,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1722) + p.SetState(1726) p.Match(MDLParserGREATER_THAN) if p.HasError() { // Recognition error - abort rule @@ -20099,7 +20197,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1723) + p.SetState(1727) p.Match(MDLParserENUM_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20107,14 +20205,14 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1724) + p.SetState(1728) p.QualifiedName() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(1725) + p.SetState(1729) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -20122,7 +20220,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1726) + p.SetState(1730) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -20130,11 +20228,11 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1727) + p.SetState(1731) p.QualifiedName() } { - p.SetState(1728) + p.SetState(1732) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -20145,7 +20243,7 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(1730) + p.SetState(1734) p.Match(MDLParserLIST_OF) if p.HasError() { // Recognition error - abort rule @@ -20153,14 +20251,14 @@ func (p *MDLParser) DataType() (localctx IDataTypeContext) { } } { - p.SetState(1731) + p.SetState(1735) p.QualifiedName() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(1732) + p.SetState(1736) p.QualifiedName() } @@ -20263,7 +20361,7 @@ func (p *MDLParser) TemplateContext() (localctx ITemplateContextContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1735) + p.SetState(1739) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserTEXT || _la == MDLParserSQL) { @@ -20297,8 +20395,9 @@ type INonListDataTypeContext interface { // Getter signatures STRING_TYPE() antlr.TerminalNode LPAREN() antlr.TerminalNode - NUMBER_LITERAL() antlr.TerminalNode RPAREN() antlr.TerminalNode + NUMBER_LITERAL() antlr.TerminalNode + IDENTIFIER() antlr.TerminalNode INTEGER_TYPE() antlr.TerminalNode LONG_TYPE() antlr.TerminalNode DECIMAL_TYPE() antlr.TerminalNode @@ -20358,12 +20457,16 @@ func (s *NonListDataTypeContext) LPAREN() antlr.TerminalNode { return s.GetToken(MDLParserLPAREN, 0) } +func (s *NonListDataTypeContext) RPAREN() antlr.TerminalNode { + return s.GetToken(MDLParserRPAREN, 0) +} + func (s *NonListDataTypeContext) NUMBER_LITERAL() antlr.TerminalNode { return s.GetToken(MDLParserNUMBER_LITERAL, 0) } -func (s *NonListDataTypeContext) RPAREN() antlr.TerminalNode { - return s.GetToken(MDLParserRPAREN, 0) +func (s *NonListDataTypeContext) IDENTIFIER() antlr.TerminalNode { + return s.GetToken(MDLParserIDENTIFIER, 0) } func (s *NonListDataTypeContext) INTEGER_TYPE() antlr.TerminalNode { @@ -20457,7 +20560,9 @@ func (s *NonListDataTypeContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { localctx = NewNonListDataTypeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 112, MDLParserRULE_nonListDataType) - p.SetState(1762) + var _la int + + p.SetState(1766) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20467,19 +20572,19 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1737) + p.SetState(1741) p.Match(MDLParserSTRING_TYPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1741) + p.SetState(1745) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 110, p.GetParserRuleContext()) == 1 { { - p.SetState(1738) + p.SetState(1742) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -20487,15 +20592,18 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { } } { - p.SetState(1739) - p.Match(MDLParserNUMBER_LITERAL) - if p.HasError() { - // Recognition error - abort rule - goto errorExit + p.SetState(1743) + _la = p.GetTokenStream().LA(1) + + if !(_la == MDLParserNUMBER_LITERAL || _la == MDLParserIDENTIFIER) { + p.GetErrorHandler().RecoverInline(p) + } else { + p.GetErrorHandler().ReportMatch(p) + p.Consume() } } { - p.SetState(1740) + p.SetState(1744) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -20510,7 +20618,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1743) + p.SetState(1747) p.Match(MDLParserINTEGER_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20521,7 +20629,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1744) + p.SetState(1748) p.Match(MDLParserLONG_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20532,7 +20640,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1745) + p.SetState(1749) p.Match(MDLParserDECIMAL_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20543,7 +20651,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1746) + p.SetState(1750) p.Match(MDLParserBOOLEAN_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20554,7 +20662,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1747) + p.SetState(1751) p.Match(MDLParserDATETIME_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20565,7 +20673,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1748) + p.SetState(1752) p.Match(MDLParserDATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20576,7 +20684,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1749) + p.SetState(1753) p.Match(MDLParserAUTONUMBER_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20587,7 +20695,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1750) + p.SetState(1754) p.Match(MDLParserBINARY_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20598,7 +20706,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1751) + p.SetState(1755) p.Match(MDLParserHASHEDSTRING_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20609,7 +20717,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1752) + p.SetState(1756) p.Match(MDLParserCURRENCY_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20620,7 +20728,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1753) + p.SetState(1757) p.Match(MDLParserFLOAT_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20631,7 +20739,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1754) + p.SetState(1758) p.Match(MDLParserENUM_TYPE) if p.HasError() { // Recognition error - abort rule @@ -20639,14 +20747,14 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { } } { - p.SetState(1755) + p.SetState(1759) p.QualifiedName() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1756) + p.SetState(1760) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -20654,7 +20762,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { } } { - p.SetState(1757) + p.SetState(1761) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -20662,11 +20770,11 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { } } { - p.SetState(1758) + p.SetState(1762) p.QualifiedName() } { - p.SetState(1759) + p.SetState(1763) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -20677,7 +20785,7 @@ func (p *MDLParser) NonListDataType() (localctx INonListDataTypeContext) { case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1761) + p.SetState(1765) p.QualifiedName() } @@ -20801,7 +20909,7 @@ func (p *MDLParser) IndexDefinition() (localctx IIndexDefinitionContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1765) + p.SetState(1769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20810,7 +20918,7 @@ func (p *MDLParser) IndexDefinition() (localctx IIndexDefinitionContext) { if _la == MDLParserIDENTIFIER { { - p.SetState(1764) + p.SetState(1768) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -20820,7 +20928,7 @@ func (p *MDLParser) IndexDefinition() (localctx IIndexDefinitionContext) { } { - p.SetState(1767) + p.SetState(1771) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -20828,11 +20936,11 @@ func (p *MDLParser) IndexDefinition() (localctx IIndexDefinitionContext) { } } { - p.SetState(1768) + p.SetState(1772) p.IndexAttributeList() } { - p.SetState(1769) + p.SetState(1773) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -20978,10 +21086,10 @@ func (p *MDLParser) IndexAttributeList() (localctx IIndexAttributeListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1771) + p.SetState(1775) p.IndexAttribute() } - p.SetState(1776) + p.SetState(1780) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20990,7 +21098,7 @@ func (p *MDLParser) IndexAttributeList() (localctx IIndexAttributeListContext) { for _la == MDLParserCOMMA { { - p.SetState(1772) + p.SetState(1776) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -20998,11 +21106,11 @@ func (p *MDLParser) IndexAttributeList() (localctx IIndexAttributeListContext) { } } { - p.SetState(1773) + p.SetState(1777) p.IndexAttribute() } - p.SetState(1778) + p.SetState(1782) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21122,10 +21230,10 @@ func (p *MDLParser) IndexAttribute() (localctx IIndexAttributeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1779) + p.SetState(1783) p.IndexColumnName() } - p.SetState(1781) + p.SetState(1785) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21134,7 +21242,7 @@ func (p *MDLParser) IndexAttribute() (localctx IIndexAttributeContext) { if _la == MDLParserASC || _la == MDLParserDESC { { - p.SetState(1780) + p.SetState(1784) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserASC || _la == MDLParserDESC) { @@ -21255,7 +21363,7 @@ func (s *IndexColumnNameContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) IndexColumnName() (localctx IIndexColumnNameContext) { localctx = NewIndexColumnNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 120, MDLParserRULE_indexColumnName) - p.SetState(1786) + p.SetState(1790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21265,7 +21373,7 @@ func (p *MDLParser) IndexColumnName() (localctx IIndexColumnNameContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(1783) + p.SetState(1787) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -21276,7 +21384,7 @@ func (p *MDLParser) IndexColumnName() (localctx IIndexColumnNameContext) { case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(1784) + p.SetState(1788) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -21287,7 +21395,7 @@ func (p *MDLParser) IndexColumnName() (localctx IIndexColumnNameContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 3) { - p.SetState(1785) + p.SetState(1789) p.CommonNameKeyword() } @@ -21323,6 +21431,12 @@ type ICreateAssociationStatementContext interface { FROM() antlr.TerminalNode TO() antlr.TerminalNode AssociationOptions() IAssociationOptionsContext + LPAREN() antlr.TerminalNode + RPAREN() antlr.TerminalNode + AllCOMMA() []antlr.TerminalNode + COMMA(i int) antlr.TerminalNode + AllAssociationOption() []IAssociationOptionContext + AssociationOption(i int) IAssociationOptionContext // IsCreateAssociationStatementContext differentiates from other interfaces. IsCreateAssociationStatementContext() @@ -21429,6 +21543,63 @@ func (s *CreateAssociationStatementContext) AssociationOptions() IAssociationOpt return t.(IAssociationOptionsContext) } +func (s *CreateAssociationStatementContext) LPAREN() antlr.TerminalNode { + return s.GetToken(MDLParserLPAREN, 0) +} + +func (s *CreateAssociationStatementContext) RPAREN() antlr.TerminalNode { + return s.GetToken(MDLParserRPAREN, 0) +} + +func (s *CreateAssociationStatementContext) AllCOMMA() []antlr.TerminalNode { + return s.GetTokens(MDLParserCOMMA) +} + +func (s *CreateAssociationStatementContext) COMMA(i int) antlr.TerminalNode { + return s.GetToken(MDLParserCOMMA, i) +} + +func (s *CreateAssociationStatementContext) AllAssociationOption() []IAssociationOptionContext { + children := s.GetChildren() + len := 0 + for _, ctx := range children { + if _, ok := ctx.(IAssociationOptionContext); ok { + len++ + } + } + + tst := make([]IAssociationOptionContext, len) + i := 0 + for _, ctx := range children { + if t, ok := ctx.(IAssociationOptionContext); ok { + tst[i] = t.(IAssociationOptionContext) + i++ + } + } + + return tst +} + +func (s *CreateAssociationStatementContext) AssociationOption(i int) IAssociationOptionContext { + var t antlr.RuleContext + j := 0 + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IAssociationOptionContext); ok { + if j == i { + t = ctx.(antlr.RuleContext) + break + } + j++ + } + } + + if t == nil { + return nil + } + + return t.(IAssociationOptionContext) +} + func (s *CreateAssociationStatementContext) GetRuleContext() antlr.RuleContext { return s } @@ -21454,56 +21625,151 @@ func (p *MDLParser) CreateAssociationStatement() (localctx ICreateAssociationSta p.EnterRule(localctx, 122, MDLParserRULE_createAssociationStatement) var _la int - p.EnterOuterAlt(localctx, 1) - { - p.SetState(1788) - p.Match(MDLParserASSOCIATION) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(1789) - p.QualifiedName() + p.SetState(1817) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit } - { - p.SetState(1790) - p.Match(MDLParserFROM) + + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 118, p.GetParserRuleContext()) { + case 1: + p.EnterOuterAlt(localctx, 1) + { + p.SetState(1792) + p.Match(MDLParserASSOCIATION) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1793) + p.QualifiedName() + } + { + p.SetState(1794) + p.Match(MDLParserFROM) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1795) + p.QualifiedName() + } + { + p.SetState(1796) + p.Match(MDLParserTO) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1797) + p.QualifiedName() + } + p.SetState(1799) + p.GetErrorHandler().Sync(p) if p.HasError() { - // Recognition error - abort rule goto errorExit } - } - { - p.SetState(1791) - p.QualifiedName() - } - { - p.SetState(1792) - p.Match(MDLParserTO) + _la = p.GetTokenStream().LA(1) + + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&11263397114937344) != 0) || _la == MDLParserCOMMENT || _la == MDLParserTYPE { + { + p.SetState(1798) + p.AssociationOptions() + } + + } + + case 2: + p.EnterOuterAlt(localctx, 2) + { + p.SetState(1801) + p.Match(MDLParserASSOCIATION) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1802) + p.QualifiedName() + } + { + p.SetState(1803) + p.Match(MDLParserLPAREN) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1804) + p.Match(MDLParserFROM) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1805) + p.QualifiedName() + } + { + p.SetState(1806) + p.Match(MDLParserTO) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1807) + p.QualifiedName() + } + p.SetState(1812) + p.GetErrorHandler().Sync(p) if p.HasError() { - // Recognition error - abort rule goto errorExit } - } - { - p.SetState(1793) - p.QualifiedName() - } - p.SetState(1795) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) + _la = p.GetTokenStream().LA(1) + + for _la == MDLParserCOMMA { + { + p.SetState(1808) + p.Match(MDLParserCOMMA) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(1809) + p.AssociationOption() + } - if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&11263397114937344) != 0) || _la == MDLParserCOMMENT || _la == MDLParserTYPE { + p.SetState(1814) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + } { - p.SetState(1794) - p.AssociationOptions() + p.SetState(1815) + p.Match(MDLParserRPAREN) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } + case antlr.ATNInvalidAltNumber: + goto errorExit } errorExit: @@ -21633,7 +21899,7 @@ func (p *MDLParser) AssociationOptions() (localctx IAssociationOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1798) + p.SetState(1820) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21642,11 +21908,11 @@ func (p *MDLParser) AssociationOptions() (localctx IAssociationOptionsContext) { for ok := true; ok; ok = ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&11263397114937344) != 0) || _la == MDLParserCOMMENT || _la == MDLParserTYPE { { - p.SetState(1797) + p.SetState(1819) p.AssociationOption() } - p.SetState(1800) + p.SetState(1822) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21678,6 +21944,7 @@ type IAssociationOptionContext interface { TYPE() antlr.TerminalNode REFERENCE() antlr.TerminalNode REFERENCE_SET() antlr.TerminalNode + COLON() antlr.TerminalNode OWNER() antlr.TerminalNode DEFAULT() antlr.TerminalNode BOTH() antlr.TerminalNode @@ -21737,6 +22004,10 @@ func (s *AssociationOptionContext) REFERENCE_SET() antlr.TerminalNode { return s.GetToken(MDLParserREFERENCE_SET, 0) } +func (s *AssociationOptionContext) COLON() antlr.TerminalNode { + return s.GetToken(MDLParserCOLON, 0) +} + func (s *AssociationOptionContext) OWNER() antlr.TerminalNode { return s.GetToken(MDLParserOWNER, 0) } @@ -21814,7 +22085,7 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { p.EnterRule(localctx, 126, MDLParserRULE_associationOption) var _la int - p.SetState(1812) + p.SetState(1843) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21824,15 +22095,33 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { case MDLParserTYPE: p.EnterOuterAlt(localctx, 1) { - p.SetState(1802) + p.SetState(1824) p.Match(MDLParserTYPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } + p.SetState(1826) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserCOLON { + { + p.SetState(1825) + p.Match(MDLParserCOLON) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + } { - p.SetState(1803) + p.SetState(1828) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserREFERENCE_SET || _la == MDLParserREFERENCE) { @@ -21846,15 +22135,33 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { case MDLParserOWNER: p.EnterOuterAlt(localctx, 2) { - p.SetState(1804) + p.SetState(1829) p.Match(MDLParserOWNER) if p.HasError() { // Recognition error - abort rule goto errorExit } } + p.SetState(1831) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserCOLON { + { + p.SetState(1830) + p.Match(MDLParserCOLON) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + } { - p.SetState(1805) + p.SetState(1833) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserDEFAULT || _la == MDLParserBOTH) { @@ -21868,15 +22175,33 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { case MDLParserSTORAGE: p.EnterOuterAlt(localctx, 3) { - p.SetState(1806) + p.SetState(1834) p.Match(MDLParserSTORAGE) if p.HasError() { // Recognition error - abort rule goto errorExit } } + p.SetState(1836) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserCOLON { + { + p.SetState(1835) + p.Match(MDLParserCOLON) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + } { - p.SetState(1807) + p.SetState(1838) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserCOLUMN || _la == MDLParserTABLE) { @@ -21890,7 +22215,7 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { case MDLParserDELETE_BEHAVIOR: p.EnterOuterAlt(localctx, 4) { - p.SetState(1808) + p.SetState(1839) p.Match(MDLParserDELETE_BEHAVIOR) if p.HasError() { // Recognition error - abort rule @@ -21898,14 +22223,14 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { } } { - p.SetState(1809) + p.SetState(1840) p.DeleteBehavior() } case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 5) { - p.SetState(1810) + p.SetState(1841) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -21913,7 +22238,7 @@ func (p *MDLParser) AssociationOption() (localctx IAssociationOptionContext) { } } { - p.SetState(1811) + p.SetState(1842) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -22036,7 +22361,7 @@ func (p *MDLParser) DeleteBehavior() (localctx IDeleteBehaviorContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1814) + p.SetState(1845) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&54043195528560640) != 0) { @@ -22377,17 +22702,17 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { p.EnterRule(localctx, 130, MDLParserRULE_alterEntityAction) var _la int - p.SetState(1888) + p.SetState(1919) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 123, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 128, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1816) + p.SetState(1847) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -22395,7 +22720,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1817) + p.SetState(1848) p.Match(MDLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -22403,14 +22728,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1818) + p.SetState(1849) p.AttributeDefinition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1819) + p.SetState(1850) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -22418,7 +22743,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1820) + p.SetState(1851) p.Match(MDLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22426,14 +22751,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1821) + p.SetState(1852) p.AttributeDefinition() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1822) + p.SetState(1853) p.Match(MDLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -22441,7 +22766,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1823) + p.SetState(1854) p.Match(MDLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -22449,11 +22774,11 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1824) + p.SetState(1855) p.AttributeName() } { - p.SetState(1825) + p.SetState(1856) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -22461,14 +22786,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1826) + p.SetState(1857) p.AttributeName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1828) + p.SetState(1859) p.Match(MDLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -22476,7 +22801,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1829) + p.SetState(1860) p.Match(MDLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22484,11 +22809,11 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1830) + p.SetState(1861) p.AttributeName() } { - p.SetState(1831) + p.SetState(1862) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -22496,14 +22821,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1832) + p.SetState(1863) p.AttributeName() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1834) + p.SetState(1865) p.Match(MDLParserMODIFY) if p.HasError() { // Recognition error - abort rule @@ -22511,7 +22836,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1835) + p.SetState(1866) p.Match(MDLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -22519,10 +22844,10 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1836) + p.SetState(1867) p.AttributeName() } - p.SetState(1838) + p.SetState(1869) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22531,7 +22856,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { if _la == MDLParserCOLON { { - p.SetState(1837) + p.SetState(1868) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -22541,23 +22866,23 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } { - p.SetState(1840) + p.SetState(1871) p.DataType() } - p.SetState(1844) + p.SetState(1875) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserNOT_NULL || ((int64((_la-287)) & ^0x3f) == 0 && ((int64(1)<<(_la-287))&8405377) != 0) { + for _la == MDLParserNOT_NULL || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&8405377) != 0) { { - p.SetState(1841) + p.SetState(1872) p.AttributeConstraint() } - p.SetState(1846) + p.SetState(1877) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22568,7 +22893,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1847) + p.SetState(1878) p.Match(MDLParserMODIFY) if p.HasError() { // Recognition error - abort rule @@ -22576,7 +22901,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1848) + p.SetState(1879) p.Match(MDLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22584,10 +22909,10 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1849) + p.SetState(1880) p.AttributeName() } - p.SetState(1851) + p.SetState(1882) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22596,7 +22921,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { if _la == MDLParserCOLON { { - p.SetState(1850) + p.SetState(1881) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -22606,23 +22931,23 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } { - p.SetState(1853) + p.SetState(1884) p.DataType() } - p.SetState(1857) + p.SetState(1888) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserNOT_NULL || ((int64((_la-287)) & ^0x3f) == 0 && ((int64(1)<<(_la-287))&8405377) != 0) { + for _la == MDLParserNOT_NULL || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&8405377) != 0) { { - p.SetState(1854) + p.SetState(1885) p.AttributeConstraint() } - p.SetState(1859) + p.SetState(1890) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22633,7 +22958,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1860) + p.SetState(1891) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22641,7 +22966,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1861) + p.SetState(1892) p.Match(MDLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -22649,14 +22974,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1862) + p.SetState(1893) p.AttributeName() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1863) + p.SetState(1894) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22664,7 +22989,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1864) + p.SetState(1895) p.Match(MDLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22672,14 +22997,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1865) + p.SetState(1896) p.AttributeName() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1866) + p.SetState(1897) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22687,7 +23012,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1867) + p.SetState(1898) p.Match(MDLParserDOCUMENTATION) if p.HasError() { // Recognition error - abort rule @@ -22695,7 +23020,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1868) + p.SetState(1899) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -22706,7 +23031,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1869) + p.SetState(1900) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22714,7 +23039,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1870) + p.SetState(1901) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -22722,7 +23047,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1871) + p.SetState(1902) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -22733,7 +23058,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1872) + p.SetState(1903) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22741,7 +23066,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1873) + p.SetState(1904) p.Match(MDLParserSTORE) if p.HasError() { // Recognition error - abort rule @@ -22749,7 +23074,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1874) + p.SetState(1905) p.Match(MDLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -22760,7 +23085,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1875) + p.SetState(1906) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22768,7 +23093,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1876) + p.SetState(1907) p.Match(MDLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -22776,7 +23101,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1877) + p.SetState(1908) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -22784,7 +23109,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1878) + p.SetState(1909) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -22792,7 +23117,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1879) + p.SetState(1910) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -22800,7 +23125,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1880) + p.SetState(1911) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -22808,7 +23133,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1881) + p.SetState(1912) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -22819,7 +23144,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1882) + p.SetState(1913) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -22827,7 +23152,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1883) + p.SetState(1914) p.Match(MDLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -22835,14 +23160,14 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1884) + p.SetState(1915) p.IndexDefinition() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1885) + p.SetState(1916) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22850,7 +23175,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1886) + p.SetState(1917) p.Match(MDLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -22858,7 +23183,7 @@ func (p *MDLParser) AlterEntityAction() (localctx IAlterEntityActionContext) { } } { - p.SetState(1887) + p.SetState(1918) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -23020,17 +23345,17 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo p.EnterRule(localctx, 132, MDLParserRULE_alterAssociationAction) var _la int - p.SetState(1902) + p.SetState(1933) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 124, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 129, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1890) + p.SetState(1921) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23038,7 +23363,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1891) + p.SetState(1922) p.Match(MDLParserDELETE_BEHAVIOR) if p.HasError() { // Recognition error - abort rule @@ -23046,14 +23371,14 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1892) + p.SetState(1923) p.DeleteBehavior() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1893) + p.SetState(1924) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23061,7 +23386,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1894) + p.SetState(1925) p.Match(MDLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -23069,7 +23394,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1895) + p.SetState(1926) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserDEFAULT || _la == MDLParserBOTH) { @@ -23083,7 +23408,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1896) + p.SetState(1927) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23091,7 +23416,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1897) + p.SetState(1928) p.Match(MDLParserSTORAGE) if p.HasError() { // Recognition error - abort rule @@ -23099,7 +23424,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1898) + p.SetState(1929) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserCOLUMN || _la == MDLParserTABLE) { @@ -23113,7 +23438,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1899) + p.SetState(1930) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23121,7 +23446,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1900) + p.SetState(1931) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -23129,7 +23454,7 @@ func (p *MDLParser) AlterAssociationAction() (localctx IAlterAssociationActionCo } } { - p.SetState(1901) + p.SetState(1932) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -23279,7 +23604,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo p.EnterRule(localctx, 134, MDLParserRULE_alterEnumerationAction) var _la int - p.SetState(1922) + p.SetState(1953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23289,7 +23614,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo case MDLParserADD: p.EnterOuterAlt(localctx, 1) { - p.SetState(1904) + p.SetState(1935) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -23297,7 +23622,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1905) + p.SetState(1936) p.Match(MDLParserVALUE) if p.HasError() { // Recognition error - abort rule @@ -23305,14 +23630,14 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1906) + p.SetState(1937) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1909) + p.SetState(1940) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23321,7 +23646,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo if _la == MDLParserCAPTION { { - p.SetState(1907) + p.SetState(1938) p.Match(MDLParserCAPTION) if p.HasError() { // Recognition error - abort rule @@ -23329,7 +23654,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1908) + p.SetState(1939) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -23342,7 +23667,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo case MDLParserRENAME: p.EnterOuterAlt(localctx, 2) { - p.SetState(1911) + p.SetState(1942) p.Match(MDLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -23350,7 +23675,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1912) + p.SetState(1943) p.Match(MDLParserVALUE) if p.HasError() { // Recognition error - abort rule @@ -23358,7 +23683,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1913) + p.SetState(1944) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -23366,7 +23691,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1914) + p.SetState(1945) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -23374,7 +23699,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1915) + p.SetState(1946) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -23385,7 +23710,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo case MDLParserDROP: p.EnterOuterAlt(localctx, 3) { - p.SetState(1916) + p.SetState(1947) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23393,7 +23718,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1917) + p.SetState(1948) p.Match(MDLParserVALUE) if p.HasError() { // Recognition error - abort rule @@ -23401,7 +23726,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1918) + p.SetState(1949) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -23412,7 +23737,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo case MDLParserSET: p.EnterOuterAlt(localctx, 4) { - p.SetState(1919) + p.SetState(1950) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23420,7 +23745,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1920) + p.SetState(1951) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -23428,7 +23753,7 @@ func (p *MDLParser) AlterEnumerationAction() (localctx IAlterEnumerationActionCo } } { - p.SetState(1921) + p.SetState(1952) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -23581,7 +23906,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) p.EnterRule(localctx, 136, MDLParserRULE_alterNotebookAction) var _la int - p.SetState(1937) + p.SetState(1968) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23591,7 +23916,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) case MDLParserADD: p.EnterOuterAlt(localctx, 1) { - p.SetState(1924) + p.SetState(1955) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -23599,7 +23924,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1925) + p.SetState(1956) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -23607,10 +23932,10 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1926) + p.SetState(1957) p.QualifiedName() } - p.SetState(1929) + p.SetState(1960) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23619,7 +23944,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) if _la == MDLParserPOSITION { { - p.SetState(1927) + p.SetState(1958) p.Match(MDLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -23627,7 +23952,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1928) + p.SetState(1959) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -23640,7 +23965,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) case MDLParserDROP: p.EnterOuterAlt(localctx, 2) { - p.SetState(1931) + p.SetState(1962) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23648,7 +23973,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1932) + p.SetState(1963) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -23656,14 +23981,14 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1933) + p.SetState(1964) p.QualifiedName() } case MDLParserSET: p.EnterOuterAlt(localctx, 3) { - p.SetState(1934) + p.SetState(1965) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23671,7 +23996,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1935) + p.SetState(1966) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -23679,7 +24004,7 @@ func (p *MDLParser) AlterNotebookAction() (localctx IAlterNotebookActionContext) } } { - p.SetState(1936) + p.SetState(1967) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -23804,7 +24129,7 @@ func (p *MDLParser) CreateModuleStatement() (localctx ICreateModuleStatementCont p.EnterOuterAlt(localctx, 1) { - p.SetState(1939) + p.SetState(1970) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -23812,14 +24137,14 @@ func (p *MDLParser) CreateModuleStatement() (localctx ICreateModuleStatementCont } } { - p.SetState(1940) + p.SetState(1971) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1942) + p.SetState(1973) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23828,7 +24153,7 @@ func (p *MDLParser) CreateModuleStatement() (localctx ICreateModuleStatementCont if _la == MDLParserFOLDER || _la == MDLParserCOMMENT { { - p.SetState(1941) + p.SetState(1972) p.ModuleOptions() } @@ -23961,7 +24286,7 @@ func (p *MDLParser) ModuleOptions() (localctx IModuleOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1945) + p.SetState(1976) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23970,11 +24295,11 @@ func (p *MDLParser) ModuleOptions() (localctx IModuleOptionsContext) { for ok := true; ok; ok = _la == MDLParserFOLDER || _la == MDLParserCOMMENT { { - p.SetState(1944) + p.SetState(1975) p.ModuleOption() } - p.SetState(1947) + p.SetState(1978) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24078,7 +24403,7 @@ func (s *ModuleOptionContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ModuleOption() (localctx IModuleOptionContext) { localctx = NewModuleOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 142, MDLParserRULE_moduleOption) - p.SetState(1953) + p.SetState(1984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24088,7 +24413,7 @@ func (p *MDLParser) ModuleOption() (localctx IModuleOptionContext) { case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 1) { - p.SetState(1949) + p.SetState(1980) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -24096,7 +24421,7 @@ func (p *MDLParser) ModuleOption() (localctx IModuleOptionContext) { } } { - p.SetState(1950) + p.SetState(1981) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -24107,7 +24432,7 @@ func (p *MDLParser) ModuleOption() (localctx IModuleOptionContext) { case MDLParserFOLDER: p.EnterOuterAlt(localctx, 2) { - p.SetState(1951) + p.SetState(1982) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -24115,7 +24440,7 @@ func (p *MDLParser) ModuleOption() (localctx IModuleOptionContext) { } } { - p.SetState(1952) + p.SetState(1983) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -24279,7 +24604,7 @@ func (p *MDLParser) CreateEnumerationStatement() (localctx ICreateEnumerationSta p.EnterOuterAlt(localctx, 1) { - p.SetState(1955) + p.SetState(1986) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -24287,11 +24612,11 @@ func (p *MDLParser) CreateEnumerationStatement() (localctx ICreateEnumerationSta } } { - p.SetState(1956) + p.SetState(1987) p.QualifiedName() } { - p.SetState(1957) + p.SetState(1988) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -24299,18 +24624,18 @@ func (p *MDLParser) CreateEnumerationStatement() (localctx ICreateEnumerationSta } } { - p.SetState(1958) + p.SetState(1989) p.EnumerationValueList() } { - p.SetState(1959) + p.SetState(1990) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1961) + p.SetState(1992) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24319,7 +24644,7 @@ func (p *MDLParser) CreateEnumerationStatement() (localctx ICreateEnumerationSta if _la == MDLParserCOMMENT { { - p.SetState(1960) + p.SetState(1991) p.EnumerationOptions() } @@ -24463,10 +24788,10 @@ func (p *MDLParser) EnumerationValueList() (localctx IEnumerationValueListContex p.EnterOuterAlt(localctx, 1) { - p.SetState(1963) + p.SetState(1994) p.EnumerationValue() } - p.SetState(1968) + p.SetState(1999) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24475,7 +24800,7 @@ func (p *MDLParser) EnumerationValueList() (localctx IEnumerationValueListContex for _la == MDLParserCOMMA { { - p.SetState(1964) + p.SetState(1995) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -24483,11 +24808,11 @@ func (p *MDLParser) EnumerationValueList() (localctx IEnumerationValueListContex } } { - p.SetState(1965) + p.SetState(1996) p.EnumerationValue() } - p.SetState(1970) + p.SetState(2001) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24623,7 +24948,7 @@ func (p *MDLParser) EnumerationValue() (localctx IEnumerationValueContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1972) + p.SetState(2003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24632,16 +24957,16 @@ func (p *MDLParser) EnumerationValue() (localctx IEnumerationValueContext) { if _la == MDLParserDOC_COMMENT { { - p.SetState(1971) + p.SetState(2002) p.DocComment() } } { - p.SetState(1974) + p.SetState(2005) p.EnumValueName() } - p.SetState(1979) + p.SetState(2010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24649,7 +24974,7 @@ func (p *MDLParser) EnumerationValue() (localctx IEnumerationValueContext) { _la = p.GetTokenStream().LA(1) if _la == MDLParserCAPTION || _la == MDLParserSTRING_LITERAL { - p.SetState(1976) + p.SetState(2007) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24658,7 +24983,7 @@ func (p *MDLParser) EnumerationValue() (localctx IEnumerationValueContext) { if _la == MDLParserCAPTION { { - p.SetState(1975) + p.SetState(2006) p.Match(MDLParserCAPTION) if p.HasError() { // Recognition error - abort rule @@ -24668,7 +24993,7 @@ func (p *MDLParser) EnumerationValue() (localctx IEnumerationValueContext) { } { - p.SetState(1978) + p.SetState(2009) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -24714,6 +25039,8 @@ type IEnumValueNameContext interface { EXTERNAL() antlr.TerminalNode PAGING() antlr.TerminalNode HEADERS() antlr.TerminalNode + DISPLAY() antlr.TerminalNode + STRUCTURE() antlr.TerminalNode // IsEnumValueNameContext differentiates from other interfaces. IsEnumValueNameContext() @@ -24823,6 +25150,14 @@ func (s *EnumValueNameContext) HEADERS() antlr.TerminalNode { return s.GetToken(MDLParserHEADERS, 0) } +func (s *EnumValueNameContext) DISPLAY() antlr.TerminalNode { + return s.GetToken(MDLParserDISPLAY, 0) +} + +func (s *EnumValueNameContext) STRUCTURE() antlr.TerminalNode { + return s.GetToken(MDLParserSTRUCTURE, 0) +} + func (s *EnumValueNameContext) GetRuleContext() antlr.RuleContext { return s } @@ -24846,7 +25181,7 @@ func (s *EnumValueNameContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { localctx = NewEnumValueNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 150, MDLParserRULE_enumValueName) - p.SetState(1996) + p.SetState(2029) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24856,7 +25191,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(1981) + p.SetState(2012) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -24867,7 +25202,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(1982) + p.SetState(2013) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -24878,14 +25213,14 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 3) { - p.SetState(1983) + p.SetState(2014) p.CommonNameKeyword() } case MDLParserSERVICE: p.EnterOuterAlt(localctx, 4) { - p.SetState(1984) + p.SetState(2015) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -24896,7 +25231,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserSERVICES: p.EnterOuterAlt(localctx, 5) { - p.SetState(1985) + p.SetState(2016) p.Match(MDLParserSERVICES) if p.HasError() { // Recognition error - abort rule @@ -24907,7 +25242,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserGUEST: p.EnterOuterAlt(localctx, 6) { - p.SetState(1986) + p.SetState(2017) p.Match(MDLParserGUEST) if p.HasError() { // Recognition error - abort rule @@ -24918,7 +25253,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserSESSION: p.EnterOuterAlt(localctx, 7) { - p.SetState(1987) + p.SetState(2018) p.Match(MDLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -24929,7 +25264,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserBASIC: p.EnterOuterAlt(localctx, 8) { - p.SetState(1988) + p.SetState(2019) p.Match(MDLParserBASIC) if p.HasError() { // Recognition error - abort rule @@ -24940,7 +25275,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserCLIENT: p.EnterOuterAlt(localctx, 9) { - p.SetState(1989) + p.SetState(2020) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -24951,7 +25286,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserCLIENTS: p.EnterOuterAlt(localctx, 10) { - p.SetState(1990) + p.SetState(2021) p.Match(MDLParserCLIENTS) if p.HasError() { // Recognition error - abort rule @@ -24962,7 +25297,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserPUBLISH: p.EnterOuterAlt(localctx, 11) { - p.SetState(1991) + p.SetState(2022) p.Match(MDLParserPUBLISH) if p.HasError() { // Recognition error - abort rule @@ -24973,7 +25308,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserEXPOSE: p.EnterOuterAlt(localctx, 12) { - p.SetState(1992) + p.SetState(2023) p.Match(MDLParserEXPOSE) if p.HasError() { // Recognition error - abort rule @@ -24984,7 +25319,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserEXTERNAL: p.EnterOuterAlt(localctx, 13) { - p.SetState(1993) + p.SetState(2024) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -24995,7 +25330,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserPAGING: p.EnterOuterAlt(localctx, 14) { - p.SetState(1994) + p.SetState(2025) p.Match(MDLParserPAGING) if p.HasError() { // Recognition error - abort rule @@ -25006,7 +25341,7 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { case MDLParserHEADERS: p.EnterOuterAlt(localctx, 15) { - p.SetState(1995) + p.SetState(2026) p.Match(MDLParserHEADERS) if p.HasError() { // Recognition error - abort rule @@ -25014,6 +25349,28 @@ func (p *MDLParser) EnumValueName() (localctx IEnumValueNameContext) { } } + case MDLParserDISPLAY: + p.EnterOuterAlt(localctx, 16) + { + p.SetState(2027) + p.Match(MDLParserDISPLAY) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + + case MDLParserSTRUCTURE: + p.EnterOuterAlt(localctx, 17) + { + p.SetState(2028) + p.Match(MDLParserSTRUCTURE) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + default: p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit @@ -25146,7 +25503,7 @@ func (p *MDLParser) EnumerationOptions() (localctx IEnumerationOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(1999) + p.SetState(2032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25155,11 +25512,11 @@ func (p *MDLParser) EnumerationOptions() (localctx IEnumerationOptionsContext) { for ok := true; ok; ok = _la == MDLParserCOMMENT { { - p.SetState(1998) + p.SetState(2031) p.EnumerationOption() } - p.SetState(2001) + p.SetState(2034) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25260,7 +25617,7 @@ func (p *MDLParser) EnumerationOption() (localctx IEnumerationOptionContext) { p.EnterRule(localctx, 154, MDLParserRULE_enumerationOption) p.EnterOuterAlt(localctx, 1) { - p.SetState(2003) + p.SetState(2036) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -25268,7 +25625,7 @@ func (p *MDLParser) EnumerationOption() (localctx IEnumerationOptionContext) { } } { - p.SetState(2004) + p.SetState(2037) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -25422,7 +25779,7 @@ func (p *MDLParser) CreateImageCollectionStatement() (localctx ICreateImageColle p.EnterOuterAlt(localctx, 1) { - p.SetState(2006) + p.SetState(2039) p.Match(MDLParserIMAGE) if p.HasError() { // Recognition error - abort rule @@ -25430,7 +25787,7 @@ func (p *MDLParser) CreateImageCollectionStatement() (localctx ICreateImageColle } } { - p.SetState(2007) + p.SetState(2040) p.Match(MDLParserCOLLECTION) if p.HasError() { // Recognition error - abort rule @@ -25438,10 +25795,10 @@ func (p *MDLParser) CreateImageCollectionStatement() (localctx ICreateImageColle } } { - p.SetState(2008) + p.SetState(2041) p.QualifiedName() } - p.SetState(2010) + p.SetState(2043) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25450,12 +25807,12 @@ func (p *MDLParser) CreateImageCollectionStatement() (localctx ICreateImageColle if _la == MDLParserEXPORT || _la == MDLParserCOMMENT { { - p.SetState(2009) + p.SetState(2042) p.ImageCollectionOptions() } } - p.SetState(2013) + p.SetState(2046) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25464,7 +25821,7 @@ func (p *MDLParser) CreateImageCollectionStatement() (localctx ICreateImageColle if _la == MDLParserLPAREN { { - p.SetState(2012) + p.SetState(2045) p.ImageCollectionBody() } @@ -25597,7 +25954,7 @@ func (p *MDLParser) ImageCollectionOptions() (localctx IImageCollectionOptionsCo var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2016) + p.SetState(2049) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25606,11 +25963,11 @@ func (p *MDLParser) ImageCollectionOptions() (localctx IImageCollectionOptionsCo for ok := true; ok; ok = _la == MDLParserEXPORT || _la == MDLParserCOMMENT { { - p.SetState(2015) + p.SetState(2048) p.ImageCollectionOption() } - p.SetState(2018) + p.SetState(2051) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25719,7 +26076,7 @@ func (s *ImageCollectionOptionContext) ExitRule(listener antlr.ParseTreeListener func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionContext) { localctx = NewImageCollectionOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 160, MDLParserRULE_imageCollectionOption) - p.SetState(2025) + p.SetState(2058) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25729,7 +26086,7 @@ func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionCont case MDLParserEXPORT: p.EnterOuterAlt(localctx, 1) { - p.SetState(2020) + p.SetState(2053) p.Match(MDLParserEXPORT) if p.HasError() { // Recognition error - abort rule @@ -25737,7 +26094,7 @@ func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionCont } } { - p.SetState(2021) + p.SetState(2054) p.Match(MDLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -25745,7 +26102,7 @@ func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionCont } } { - p.SetState(2022) + p.SetState(2055) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -25756,7 +26113,7 @@ func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionCont case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(2023) + p.SetState(2056) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -25764,7 +26121,7 @@ func (p *MDLParser) ImageCollectionOption() (localctx IImageCollectionOptionCont } } { - p.SetState(2024) + p.SetState(2057) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -25925,7 +26282,7 @@ func (p *MDLParser) ImageCollectionBody() (localctx IImageCollectionBodyContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2027) + p.SetState(2060) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -25933,10 +26290,10 @@ func (p *MDLParser) ImageCollectionBody() (localctx IImageCollectionBodyContext) } } { - p.SetState(2028) + p.SetState(2061) p.ImageCollectionItem() } - p.SetState(2033) + p.SetState(2066) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25945,7 +26302,7 @@ func (p *MDLParser) ImageCollectionBody() (localctx IImageCollectionBodyContext) for _la == MDLParserCOMMA { { - p.SetState(2029) + p.SetState(2062) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -25953,11 +26310,11 @@ func (p *MDLParser) ImageCollectionBody() (localctx IImageCollectionBodyContext) } } { - p.SetState(2030) + p.SetState(2063) p.ImageCollectionItem() } - p.SetState(2035) + p.SetState(2068) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25965,7 +26322,7 @@ func (p *MDLParser) ImageCollectionBody() (localctx IImageCollectionBodyContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(2036) + p.SetState(2069) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -26104,7 +26461,7 @@ func (p *MDLParser) ImageCollectionItem() (localctx IImageCollectionItemContext) p.EnterRule(localctx, 164, MDLParserRULE_imageCollectionItem) p.EnterOuterAlt(localctx, 1) { - p.SetState(2038) + p.SetState(2071) p.Match(MDLParserIMAGE) if p.HasError() { // Recognition error - abort rule @@ -26112,11 +26469,11 @@ func (p *MDLParser) ImageCollectionItem() (localctx IImageCollectionItemContext) } } { - p.SetState(2039) + p.SetState(2072) p.ImageName() } { - p.SetState(2040) + p.SetState(2073) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -26124,7 +26481,7 @@ func (p *MDLParser) ImageCollectionItem() (localctx IImageCollectionItemContext) } } { - p.SetState(2041) + p.SetState(2074) p.Match(MDLParserFILE_KW) if p.HasError() { // Recognition error - abort rule @@ -26132,7 +26489,7 @@ func (p *MDLParser) ImageCollectionItem() (localctx IImageCollectionItemContext) } } { - p.SetState(2042) + p.SetState(2075) var _m = p.Match(MDLParserSTRING_LITERAL) @@ -26251,7 +26608,7 @@ func (s *ImageNameContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ImageName() (localctx IImageNameContext) { localctx = NewImageNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 166, MDLParserRULE_imageName) - p.SetState(2047) + p.SetState(2080) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26261,7 +26618,7 @@ func (p *MDLParser) ImageName() (localctx IImageNameContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2044) + p.SetState(2077) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -26272,7 +26629,7 @@ func (p *MDLParser) ImageName() (localctx IImageNameContext) { case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(2045) + p.SetState(2078) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -26283,7 +26640,7 @@ func (p *MDLParser) ImageName() (localctx IImageNameContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 3) { - p.SetState(2046) + p.SetState(2079) p.CommonNameKeyword() } @@ -26497,7 +26854,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur p.EnterOuterAlt(localctx, 1) { - p.SetState(2049) + p.SetState(2082) p.Match(MDLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -26505,7 +26862,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2050) + p.SetState(2083) p.Match(MDLParserSTRUCTURE) if p.HasError() { // Recognition error - abort rule @@ -26513,10 +26870,10 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2051) + p.SetState(2084) p.QualifiedName() } - p.SetState(2054) + p.SetState(2087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26525,7 +26882,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur if _la == MDLParserCOMMENT { { - p.SetState(2052) + p.SetState(2085) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -26533,7 +26890,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2053) + p.SetState(2086) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -26543,7 +26900,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } { - p.SetState(2056) + p.SetState(2089) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -26551,7 +26908,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2057) + p.SetState(2090) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSTRING_LITERAL || _la == MDLParserDOLLAR_STRING) { @@ -26561,7 +26918,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur p.Consume() } } - p.SetState(2070) + p.SetState(2103) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26570,7 +26927,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur if _la == MDLParserCUSTOM_NAME_MAP { { - p.SetState(2058) + p.SetState(2091) p.Match(MDLParserCUSTOM_NAME_MAP) if p.HasError() { // Recognition error - abort rule @@ -26578,7 +26935,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2059) + p.SetState(2092) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -26586,10 +26943,10 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2060) + p.SetState(2093) p.CustomNameMapping() } - p.SetState(2065) + p.SetState(2098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26598,7 +26955,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur for _la == MDLParserCOMMA { { - p.SetState(2061) + p.SetState(2094) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -26606,11 +26963,11 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur } } { - p.SetState(2062) + p.SetState(2095) p.CustomNameMapping() } - p.SetState(2067) + p.SetState(2100) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26618,7 +26975,7 @@ func (p *MDLParser) CreateJsonStructureStatement() (localctx ICreateJsonStructur _la = p.GetTokenStream().LA(1) } { - p.SetState(2068) + p.SetState(2101) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -26726,7 +27083,7 @@ func (p *MDLParser) CustomNameMapping() (localctx ICustomNameMappingContext) { p.EnterRule(localctx, 170, MDLParserRULE_customNameMapping) p.EnterOuterAlt(localctx, 1) { - p.SetState(2072) + p.SetState(2105) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -26734,7 +27091,7 @@ func (p *MDLParser) CustomNameMapping() (localctx ICustomNameMappingContext) { } } { - p.SetState(2073) + p.SetState(2106) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -26742,7 +27099,7 @@ func (p *MDLParser) CustomNameMapping() (localctx ICustomNameMappingContext) { } } { - p.SetState(2074) + p.SetState(2107) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -26908,7 +27265,7 @@ func (p *MDLParser) CreateValidationRuleStatement() (localctx ICreateValidationR p.EnterRule(localctx, 172, MDLParserRULE_createValidationRuleStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2076) + p.SetState(2109) p.Match(MDLParserVALIDATION) if p.HasError() { // Recognition error - abort rule @@ -26916,7 +27273,7 @@ func (p *MDLParser) CreateValidationRuleStatement() (localctx ICreateValidationR } } { - p.SetState(2077) + p.SetState(2110) p.Match(MDLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -26924,11 +27281,11 @@ func (p *MDLParser) CreateValidationRuleStatement() (localctx ICreateValidationR } } { - p.SetState(2078) + p.SetState(2111) p.QualifiedName() } { - p.SetState(2079) + p.SetState(2112) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26936,11 +27293,11 @@ func (p *MDLParser) CreateValidationRuleStatement() (localctx ICreateValidationR } } { - p.SetState(2080) + p.SetState(2113) p.QualifiedName() } { - p.SetState(2081) + p.SetState(2114) p.ValidationRuleBody() } @@ -27133,7 +27490,7 @@ func (s *ValidationRuleBodyContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { localctx = NewValidationRuleBodyContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 174, MDLParserRULE_validationRuleBody) - p.SetState(2110) + p.SetState(2143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27143,7 +27500,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { case MDLParserEXPRESSION: p.EnterOuterAlt(localctx, 1) { - p.SetState(2083) + p.SetState(2116) p.Match(MDLParserEXPRESSION) if p.HasError() { // Recognition error - abort rule @@ -27151,11 +27508,11 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2084) + p.SetState(2117) p.Expression() } { - p.SetState(2085) + p.SetState(2118) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -27163,7 +27520,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2086) + p.SetState(2119) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27174,7 +27531,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { case MDLParserREQUIRED: p.EnterOuterAlt(localctx, 2) { - p.SetState(2088) + p.SetState(2121) p.Match(MDLParserREQUIRED) if p.HasError() { // Recognition error - abort rule @@ -27182,11 +27539,11 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2089) + p.SetState(2122) p.AttributeReference() } { - p.SetState(2090) + p.SetState(2123) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -27194,7 +27551,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2091) + p.SetState(2124) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27205,7 +27562,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { case MDLParserUNIQUE: p.EnterOuterAlt(localctx, 3) { - p.SetState(2093) + p.SetState(2126) p.Match(MDLParserUNIQUE) if p.HasError() { // Recognition error - abort rule @@ -27213,11 +27570,11 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2094) + p.SetState(2127) p.AttributeReferenceList() } { - p.SetState(2095) + p.SetState(2128) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -27225,7 +27582,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2096) + p.SetState(2129) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27236,7 +27593,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { case MDLParserRANGE: p.EnterOuterAlt(localctx, 4) { - p.SetState(2098) + p.SetState(2131) p.Match(MDLParserRANGE) if p.HasError() { // Recognition error - abort rule @@ -27244,15 +27601,15 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2099) + p.SetState(2132) p.AttributeReference() } { - p.SetState(2100) + p.SetState(2133) p.RangeConstraint() } { - p.SetState(2101) + p.SetState(2134) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -27260,7 +27617,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2102) + p.SetState(2135) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27271,7 +27628,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { case MDLParserREGEX: p.EnterOuterAlt(localctx, 5) { - p.SetState(2104) + p.SetState(2137) p.Match(MDLParserREGEX) if p.HasError() { // Recognition error - abort rule @@ -27279,11 +27636,11 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2105) + p.SetState(2138) p.AttributeReference() } { - p.SetState(2106) + p.SetState(2139) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27291,7 +27648,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2107) + p.SetState(2140) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -27299,7 +27656,7 @@ func (p *MDLParser) ValidationRuleBody() (localctx IValidationRuleBodyContext) { } } { - p.SetState(2108) + p.SetState(2141) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -27466,7 +27823,7 @@ func (s *RangeConstraintContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { localctx = NewRangeConstraintContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 176, MDLParserRULE_rangeConstraint) - p.SetState(2125) + p.SetState(2158) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27476,7 +27833,7 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { case MDLParserBETWEEN: p.EnterOuterAlt(localctx, 1) { - p.SetState(2112) + p.SetState(2145) p.Match(MDLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -27484,11 +27841,11 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2113) + p.SetState(2146) p.Literal() } { - p.SetState(2114) + p.SetState(2147) p.Match(MDLParserAND) if p.HasError() { // Recognition error - abort rule @@ -27496,14 +27853,14 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2115) + p.SetState(2148) p.Literal() } case MDLParserLESS_THAN: p.EnterOuterAlt(localctx, 2) { - p.SetState(2117) + p.SetState(2150) p.Match(MDLParserLESS_THAN) if p.HasError() { // Recognition error - abort rule @@ -27511,14 +27868,14 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2118) + p.SetState(2151) p.Literal() } case MDLParserLESS_THAN_OR_EQUAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(2119) + p.SetState(2152) p.Match(MDLParserLESS_THAN_OR_EQUAL) if p.HasError() { // Recognition error - abort rule @@ -27526,14 +27883,14 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2120) + p.SetState(2153) p.Literal() } case MDLParserGREATER_THAN: p.EnterOuterAlt(localctx, 4) { - p.SetState(2121) + p.SetState(2154) p.Match(MDLParserGREATER_THAN) if p.HasError() { // Recognition error - abort rule @@ -27541,14 +27898,14 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2122) + p.SetState(2155) p.Literal() } case MDLParserGREATER_THAN_OR_EQUAL: p.EnterOuterAlt(localctx, 5) { - p.SetState(2123) + p.SetState(2156) p.Match(MDLParserGREATER_THAN_OR_EQUAL) if p.HasError() { // Recognition error - abort rule @@ -27556,7 +27913,7 @@ func (p *MDLParser) RangeConstraint() (localctx IRangeConstraintContext) { } } { - p.SetState(2124) + p.SetState(2157) p.Literal() } @@ -27670,14 +28027,14 @@ func (p *MDLParser) AttributeReference() (localctx IAttributeReferenceContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2127) + p.SetState(2160) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2132) + p.SetState(2165) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27686,7 +28043,7 @@ func (p *MDLParser) AttributeReference() (localctx IAttributeReferenceContext) { for _la == MDLParserSLASH { { - p.SetState(2128) + p.SetState(2161) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -27694,7 +28051,7 @@ func (p *MDLParser) AttributeReference() (localctx IAttributeReferenceContext) { } } { - p.SetState(2129) + p.SetState(2162) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -27702,7 +28059,7 @@ func (p *MDLParser) AttributeReference() (localctx IAttributeReferenceContext) { } } - p.SetState(2134) + p.SetState(2167) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27848,10 +28205,10 @@ func (p *MDLParser) AttributeReferenceList() (localctx IAttributeReferenceListCo p.EnterOuterAlt(localctx, 1) { - p.SetState(2135) + p.SetState(2168) p.AttributeReference() } - p.SetState(2140) + p.SetState(2173) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27860,7 +28217,7 @@ func (p *MDLParser) AttributeReferenceList() (localctx IAttributeReferenceListCo for _la == MDLParserCOMMA { { - p.SetState(2136) + p.SetState(2169) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -27868,11 +28225,11 @@ func (p *MDLParser) AttributeReferenceList() (localctx IAttributeReferenceListCo } } { - p.SetState(2137) + p.SetState(2170) p.AttributeReference() } - p.SetState(2142) + p.SetState(2175) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28085,7 +28442,7 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme p.EnterOuterAlt(localctx, 1) { - p.SetState(2143) + p.SetState(2176) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -28093,40 +28450,40 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme } } { - p.SetState(2144) + p.SetState(2177) p.QualifiedName() } { - p.SetState(2145) + p.SetState(2178) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2147) + p.SetState(2180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2146) + p.SetState(2179) p.MicroflowParameterList() } } { - p.SetState(2149) + p.SetState(2182) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2151) + p.SetState(2184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28135,12 +28492,12 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme if _la == MDLParserRETURNS { { - p.SetState(2150) + p.SetState(2183) p.MicroflowReturnType() } } - p.SetState(2154) + p.SetState(2187) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28149,13 +28506,13 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme if _la == MDLParserFOLDER || _la == MDLParserCOMMENT { { - p.SetState(2153) + p.SetState(2186) p.MicroflowOptions() } } { - p.SetState(2156) + p.SetState(2189) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule @@ -28163,23 +28520,23 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme } } { - p.SetState(2157) + p.SetState(2190) p.MicroflowBody() } { - p.SetState(2158) + p.SetState(2191) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2160) + p.SetState(2193) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 155, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 160, p.GetParserRuleContext()) == 1 { { - p.SetState(2159) + p.SetState(2192) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -28190,12 +28547,12 @@ func (p *MDLParser) CreateMicroflowStatement() (localctx ICreateMicroflowStateme } else if p.HasError() { // JIM goto errorExit } - p.SetState(2163) + p.SetState(2196) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 156, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 161, p.GetParserRuleContext()) == 1 { { - p.SetState(2162) + p.SetState(2195) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -28395,7 +28752,7 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState p.EnterOuterAlt(localctx, 1) { - p.SetState(2165) + p.SetState(2198) p.Match(MDLParserJAVA) if p.HasError() { // Recognition error - abort rule @@ -28403,7 +28760,7 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState } } { - p.SetState(2166) + p.SetState(2199) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -28411,40 +28768,40 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState } } { - p.SetState(2167) + p.SetState(2200) p.QualifiedName() } { - p.SetState(2168) + p.SetState(2201) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2170) + p.SetState(2203) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1374389534725) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1374389534725) != 0) { { - p.SetState(2169) + p.SetState(2202) p.JavaActionParameterList() } } { - p.SetState(2172) + p.SetState(2205) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2174) + p.SetState(2207) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28453,12 +28810,12 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState if _la == MDLParserRETURNS { { - p.SetState(2173) + p.SetState(2206) p.JavaActionReturnType() } } - p.SetState(2177) + p.SetState(2210) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28467,13 +28824,13 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState if _la == MDLParserEXPOSED { { - p.SetState(2176) + p.SetState(2209) p.JavaActionExposedClause() } } { - p.SetState(2179) + p.SetState(2212) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -28481,19 +28838,19 @@ func (p *MDLParser) CreateJavaActionStatement() (localctx ICreateJavaActionState } } { - p.SetState(2180) + p.SetState(2213) p.Match(MDLParserDOLLAR_STRING) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2182) + p.SetState(2215) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 160, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 165, p.GetParserRuleContext()) == 1 { { - p.SetState(2181) + p.SetState(2214) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -28643,10 +29000,10 @@ func (p *MDLParser) JavaActionParameterList() (localctx IJavaActionParameterList p.EnterOuterAlt(localctx, 1) { - p.SetState(2184) + p.SetState(2217) p.JavaActionParameter() } - p.SetState(2189) + p.SetState(2222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28655,7 +29012,7 @@ func (p *MDLParser) JavaActionParameterList() (localctx IJavaActionParameterList for _la == MDLParserCOMMA { { - p.SetState(2185) + p.SetState(2218) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -28663,11 +29020,11 @@ func (p *MDLParser) JavaActionParameterList() (localctx IJavaActionParameterList } } { - p.SetState(2186) + p.SetState(2219) p.JavaActionParameter() } - p.SetState(2191) + p.SetState(2224) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28804,11 +29161,11 @@ func (p *MDLParser) JavaActionParameter() (localctx IJavaActionParameterContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2192) + p.SetState(2225) p.ParameterName() } { - p.SetState(2193) + p.SetState(2226) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -28816,10 +29173,10 @@ func (p *MDLParser) JavaActionParameter() (localctx IJavaActionParameterContext) } } { - p.SetState(2194) + p.SetState(2227) p.DataType() } - p.SetState(2196) + p.SetState(2229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28828,7 +29185,7 @@ func (p *MDLParser) JavaActionParameter() (localctx IJavaActionParameterContext) if _la == MDLParserNOT_NULL { { - p.SetState(2195) + p.SetState(2228) p.Match(MDLParserNOT_NULL) if p.HasError() { // Recognition error - abort rule @@ -28943,7 +29300,7 @@ func (p *MDLParser) JavaActionReturnType() (localctx IJavaActionReturnTypeContex p.EnterRule(localctx, 190, MDLParserRULE_javaActionReturnType) p.EnterOuterAlt(localctx, 1) { - p.SetState(2198) + p.SetState(2231) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -28951,7 +29308,7 @@ func (p *MDLParser) JavaActionReturnType() (localctx IJavaActionReturnTypeContex } } { - p.SetState(2199) + p.SetState(2232) p.DataType() } @@ -29063,7 +29420,7 @@ func (p *MDLParser) JavaActionExposedClause() (localctx IJavaActionExposedClause p.EnterRule(localctx, 192, MDLParserRULE_javaActionExposedClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(2201) + p.SetState(2234) p.Match(MDLParserEXPOSED) if p.HasError() { // Recognition error - abort rule @@ -29071,7 +29428,7 @@ func (p *MDLParser) JavaActionExposedClause() (localctx IJavaActionExposedClause } } { - p.SetState(2202) + p.SetState(2235) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -29079,7 +29436,7 @@ func (p *MDLParser) JavaActionExposedClause() (localctx IJavaActionExposedClause } } { - p.SetState(2203) + p.SetState(2236) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -29087,7 +29444,7 @@ func (p *MDLParser) JavaActionExposedClause() (localctx IJavaActionExposedClause } } { - p.SetState(2204) + p.SetState(2237) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -29095,7 +29452,7 @@ func (p *MDLParser) JavaActionExposedClause() (localctx IJavaActionExposedClause } } { - p.SetState(2205) + p.SetState(2238) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -29241,10 +29598,10 @@ func (p *MDLParser) MicroflowParameterList() (localctx IMicroflowParameterListCo p.EnterOuterAlt(localctx, 1) { - p.SetState(2207) + p.SetState(2240) p.MicroflowParameter() } - p.SetState(2212) + p.SetState(2245) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29253,7 +29610,7 @@ func (p *MDLParser) MicroflowParameterList() (localctx IMicroflowParameterListCo for _la == MDLParserCOMMA { { - p.SetState(2208) + p.SetState(2241) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -29261,11 +29618,11 @@ func (p *MDLParser) MicroflowParameterList() (localctx IMicroflowParameterListCo } } { - p.SetState(2209) + p.SetState(2242) p.MicroflowParameter() } - p.SetState(2214) + p.SetState(2247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29399,7 +29756,7 @@ func (p *MDLParser) MicroflowParameter() (localctx IMicroflowParameterContext) { localctx = NewMicroflowParameterContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 196, MDLParserRULE_microflowParameter) p.EnterOuterAlt(localctx, 1) - p.SetState(2217) + p.SetState(2250) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29408,13 +29765,13 @@ func (p *MDLParser) MicroflowParameter() (localctx IMicroflowParameterContext) { switch p.GetTokenStream().LA(1) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: { - p.SetState(2215) + p.SetState(2248) p.ParameterName() } case MDLParserVARIABLE: { - p.SetState(2216) + p.SetState(2249) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -29427,7 +29784,7 @@ func (p *MDLParser) MicroflowParameter() (localctx IMicroflowParameterContext) { goto errorExit } { - p.SetState(2219) + p.SetState(2252) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -29435,7 +29792,7 @@ func (p *MDLParser) MicroflowParameter() (localctx IMicroflowParameterContext) { } } { - p.SetState(2220) + p.SetState(2253) p.DataType() } @@ -29547,7 +29904,7 @@ func (s *ParameterNameContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ParameterName() (localctx IParameterNameContext) { localctx = NewParameterNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 198, MDLParserRULE_parameterName) - p.SetState(2225) + p.SetState(2258) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29557,7 +29914,7 @@ func (p *MDLParser) ParameterName() (localctx IParameterNameContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2222) + p.SetState(2255) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -29568,7 +29925,7 @@ func (p *MDLParser) ParameterName() (localctx IParameterNameContext) { case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(2223) + p.SetState(2256) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -29579,7 +29936,7 @@ func (p *MDLParser) ParameterName() (localctx IParameterNameContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 3) { - p.SetState(2224) + p.SetState(2257) p.CommonNameKeyword() } @@ -29705,7 +30062,7 @@ func (p *MDLParser) MicroflowReturnType() (localctx IMicroflowReturnTypeContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2227) + p.SetState(2260) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -29713,10 +30070,10 @@ func (p *MDLParser) MicroflowReturnType() (localctx IMicroflowReturnTypeContext) } } { - p.SetState(2228) + p.SetState(2261) p.DataType() } - p.SetState(2231) + p.SetState(2264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29725,7 +30082,7 @@ func (p *MDLParser) MicroflowReturnType() (localctx IMicroflowReturnTypeContext) if _la == MDLParserAS { { - p.SetState(2229) + p.SetState(2262) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -29733,7 +30090,7 @@ func (p *MDLParser) MicroflowReturnType() (localctx IMicroflowReturnTypeContext) } } { - p.SetState(2230) + p.SetState(2263) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -29870,7 +30227,7 @@ func (p *MDLParser) MicroflowOptions() (localctx IMicroflowOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2234) + p.SetState(2267) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29879,11 +30236,11 @@ func (p *MDLParser) MicroflowOptions() (localctx IMicroflowOptionsContext) { for ok := true; ok; ok = _la == MDLParserFOLDER || _la == MDLParserCOMMENT { { - p.SetState(2233) + p.SetState(2266) p.MicroflowOption() } - p.SetState(2236) + p.SetState(2269) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29987,7 +30344,7 @@ func (s *MicroflowOptionContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) MicroflowOption() (localctx IMicroflowOptionContext) { localctx = NewMicroflowOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 204, MDLParserRULE_microflowOption) - p.SetState(2242) + p.SetState(2275) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29997,7 +30354,7 @@ func (p *MDLParser) MicroflowOption() (localctx IMicroflowOptionContext) { case MDLParserFOLDER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2238) + p.SetState(2271) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -30005,7 +30362,7 @@ func (p *MDLParser) MicroflowOption() (localctx IMicroflowOptionContext) { } } { - p.SetState(2239) + p.SetState(2272) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -30016,7 +30373,7 @@ func (p *MDLParser) MicroflowOption() (localctx IMicroflowOptionContext) { case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(2240) + p.SetState(2273) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -30024,7 +30381,7 @@ func (p *MDLParser) MicroflowOption() (localctx IMicroflowOptionContext) { } } { - p.SetState(2241) + p.SetState(2274) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -30164,20 +30521,20 @@ func (p *MDLParser) MicroflowBody() (localctx IMicroflowBodyContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2247) + p.SetState(2280) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ((int64((_la-17)) & ^0x3f) == 0 && ((int64(1)<<(_la-17))&281478197936129) != 0) || ((int64((_la-97)) & ^0x3f) == 0 && ((int64(1)<<(_la-97))&68721703423) != 0) || ((int64((_la-298)) & ^0x3f) == 0 && ((int64(1)<<(_la-298))&1073750049) != 0) || _la == MDLParserEXECUTE || _la == MDLParserAT || _la == MDLParserVARIABLE { + for ((int64((_la-17)) & ^0x3f) == 0 && ((int64(1)<<(_la-17))&281478197936129) != 0) || ((int64((_la-97)) & ^0x3f) == 0 && ((int64(1)<<(_la-97))&68721703423) != 0) || ((int64((_la-302)) & ^0x3f) == 0 && ((int64(1)<<(_la-302))&1073750049) != 0) || _la == MDLParserEXECUTE || _la == MDLParserAT || _la == MDLParserVARIABLE { { - p.SetState(2244) + p.SetState(2277) p.MicroflowStatement() } - p.SetState(2249) + p.SetState(2282) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30877,16 +31234,16 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { p.EnterRule(localctx, 208, MDLParserRULE_microflowStatement) var _la int - p.SetState(2580) + p.SetState(2613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 236, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 241, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(2253) + p.SetState(2286) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30895,11 +31252,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2250) + p.SetState(2283) p.Annotation() } - p.SetState(2255) + p.SetState(2288) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30907,10 +31264,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2256) + p.SetState(2289) p.DeclareStatement() } - p.SetState(2258) + p.SetState(2291) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30919,7 +31276,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2257) + p.SetState(2290) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -30931,7 +31288,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(2263) + p.SetState(2296) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30940,11 +31297,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2260) + p.SetState(2293) p.Annotation() } - p.SetState(2265) + p.SetState(2298) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30952,10 +31309,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2266) + p.SetState(2299) p.SetStatement() } - p.SetState(2268) + p.SetState(2301) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30964,7 +31321,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2267) + p.SetState(2300) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -30976,7 +31333,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 3: p.EnterOuterAlt(localctx, 3) - p.SetState(2273) + p.SetState(2306) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30985,11 +31342,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2270) + p.SetState(2303) p.Annotation() } - p.SetState(2275) + p.SetState(2308) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30997,10 +31354,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2276) + p.SetState(2309) p.CreateListStatement() } - p.SetState(2278) + p.SetState(2311) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31009,7 +31366,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2277) + p.SetState(2310) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31021,7 +31378,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 4: p.EnterOuterAlt(localctx, 4) - p.SetState(2283) + p.SetState(2316) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31030,11 +31387,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2280) + p.SetState(2313) p.Annotation() } - p.SetState(2285) + p.SetState(2318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31042,10 +31399,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2286) + p.SetState(2319) p.CreateObjectStatement() } - p.SetState(2288) + p.SetState(2321) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31054,7 +31411,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2287) + p.SetState(2320) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31066,7 +31423,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 5: p.EnterOuterAlt(localctx, 5) - p.SetState(2293) + p.SetState(2326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31075,11 +31432,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2290) + p.SetState(2323) p.Annotation() } - p.SetState(2295) + p.SetState(2328) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31087,10 +31444,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2296) + p.SetState(2329) p.ChangeObjectStatement() } - p.SetState(2298) + p.SetState(2331) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31099,7 +31456,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2297) + p.SetState(2330) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31111,7 +31468,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 6: p.EnterOuterAlt(localctx, 6) - p.SetState(2303) + p.SetState(2336) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31120,11 +31477,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2300) + p.SetState(2333) p.Annotation() } - p.SetState(2305) + p.SetState(2338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31132,10 +31489,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2306) + p.SetState(2339) p.CommitStatement() } - p.SetState(2308) + p.SetState(2341) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31144,7 +31501,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2307) + p.SetState(2340) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31156,7 +31513,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 7: p.EnterOuterAlt(localctx, 7) - p.SetState(2313) + p.SetState(2346) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31165,11 +31522,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2310) + p.SetState(2343) p.Annotation() } - p.SetState(2315) + p.SetState(2348) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31177,10 +31534,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2316) + p.SetState(2349) p.DeleteObjectStatement() } - p.SetState(2318) + p.SetState(2351) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31189,7 +31546,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2317) + p.SetState(2350) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31201,7 +31558,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 8: p.EnterOuterAlt(localctx, 8) - p.SetState(2323) + p.SetState(2356) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31210,11 +31567,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2320) + p.SetState(2353) p.Annotation() } - p.SetState(2325) + p.SetState(2358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31222,10 +31579,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2326) + p.SetState(2359) p.RollbackStatement() } - p.SetState(2328) + p.SetState(2361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31234,7 +31591,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2327) + p.SetState(2360) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31246,7 +31603,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 9: p.EnterOuterAlt(localctx, 9) - p.SetState(2333) + p.SetState(2366) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31255,11 +31612,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2330) + p.SetState(2363) p.Annotation() } - p.SetState(2335) + p.SetState(2368) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31267,10 +31624,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2336) + p.SetState(2369) p.RetrieveStatement() } - p.SetState(2338) + p.SetState(2371) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31279,7 +31636,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2337) + p.SetState(2370) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31291,7 +31648,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 10: p.EnterOuterAlt(localctx, 10) - p.SetState(2343) + p.SetState(2376) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31300,11 +31657,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2340) + p.SetState(2373) p.Annotation() } - p.SetState(2345) + p.SetState(2378) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31312,10 +31669,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2346) + p.SetState(2379) p.IfStatement() } - p.SetState(2348) + p.SetState(2381) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31324,7 +31681,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2347) + p.SetState(2380) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31336,7 +31693,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 11: p.EnterOuterAlt(localctx, 11) - p.SetState(2353) + p.SetState(2386) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31345,11 +31702,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2350) + p.SetState(2383) p.Annotation() } - p.SetState(2355) + p.SetState(2388) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31357,10 +31714,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2356) + p.SetState(2389) p.LoopStatement() } - p.SetState(2358) + p.SetState(2391) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31369,7 +31726,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2357) + p.SetState(2390) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31381,7 +31738,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 12: p.EnterOuterAlt(localctx, 12) - p.SetState(2363) + p.SetState(2396) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31390,11 +31747,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2360) + p.SetState(2393) p.Annotation() } - p.SetState(2365) + p.SetState(2398) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31402,10 +31759,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2366) + p.SetState(2399) p.WhileStatement() } - p.SetState(2368) + p.SetState(2401) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31414,7 +31771,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2367) + p.SetState(2400) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31426,7 +31783,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 13: p.EnterOuterAlt(localctx, 13) - p.SetState(2373) + p.SetState(2406) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31435,11 +31792,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2370) + p.SetState(2403) p.Annotation() } - p.SetState(2375) + p.SetState(2408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31447,10 +31804,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2376) + p.SetState(2409) p.ContinueStatement() } - p.SetState(2378) + p.SetState(2411) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31459,7 +31816,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2377) + p.SetState(2410) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31471,7 +31828,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 14: p.EnterOuterAlt(localctx, 14) - p.SetState(2383) + p.SetState(2416) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31480,11 +31837,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2380) + p.SetState(2413) p.Annotation() } - p.SetState(2385) + p.SetState(2418) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31492,10 +31849,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2386) + p.SetState(2419) p.BreakStatement() } - p.SetState(2388) + p.SetState(2421) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31504,7 +31861,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2387) + p.SetState(2420) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31516,7 +31873,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 15: p.EnterOuterAlt(localctx, 15) - p.SetState(2393) + p.SetState(2426) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31525,11 +31882,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2390) + p.SetState(2423) p.Annotation() } - p.SetState(2395) + p.SetState(2428) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31537,10 +31894,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2396) + p.SetState(2429) p.ReturnStatement() } - p.SetState(2398) + p.SetState(2431) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31549,7 +31906,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2397) + p.SetState(2430) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31561,7 +31918,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 16: p.EnterOuterAlt(localctx, 16) - p.SetState(2403) + p.SetState(2436) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31570,11 +31927,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2400) + p.SetState(2433) p.Annotation() } - p.SetState(2405) + p.SetState(2438) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31582,10 +31939,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2406) + p.SetState(2439) p.RaiseErrorStatement() } - p.SetState(2408) + p.SetState(2441) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31594,7 +31951,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2407) + p.SetState(2440) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31606,7 +31963,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 17: p.EnterOuterAlt(localctx, 17) - p.SetState(2413) + p.SetState(2446) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31615,11 +31972,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2410) + p.SetState(2443) p.Annotation() } - p.SetState(2415) + p.SetState(2448) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31627,10 +31984,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2416) + p.SetState(2449) p.LogStatement() } - p.SetState(2418) + p.SetState(2451) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31639,7 +31996,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2417) + p.SetState(2450) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31651,7 +32008,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 18: p.EnterOuterAlt(localctx, 18) - p.SetState(2423) + p.SetState(2456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31660,11 +32017,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2420) + p.SetState(2453) p.Annotation() } - p.SetState(2425) + p.SetState(2458) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31672,10 +32029,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2426) + p.SetState(2459) p.CallMicroflowStatement() } - p.SetState(2428) + p.SetState(2461) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31684,7 +32041,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2427) + p.SetState(2460) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31696,7 +32053,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 19: p.EnterOuterAlt(localctx, 19) - p.SetState(2433) + p.SetState(2466) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31705,11 +32062,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2430) + p.SetState(2463) p.Annotation() } - p.SetState(2435) + p.SetState(2468) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31717,10 +32074,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2436) + p.SetState(2469) p.CallJavaActionStatement() } - p.SetState(2438) + p.SetState(2471) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31729,7 +32086,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2437) + p.SetState(2470) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31741,7 +32098,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 20: p.EnterOuterAlt(localctx, 20) - p.SetState(2443) + p.SetState(2476) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31750,11 +32107,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2440) + p.SetState(2473) p.Annotation() } - p.SetState(2445) + p.SetState(2478) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31762,10 +32119,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2446) + p.SetState(2479) p.ExecuteDatabaseQueryStatement() } - p.SetState(2448) + p.SetState(2481) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31774,7 +32131,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2447) + p.SetState(2480) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31786,7 +32143,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 21: p.EnterOuterAlt(localctx, 21) - p.SetState(2453) + p.SetState(2486) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31795,11 +32152,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2450) + p.SetState(2483) p.Annotation() } - p.SetState(2455) + p.SetState(2488) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31807,10 +32164,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2456) + p.SetState(2489) p.CallExternalActionStatement() } - p.SetState(2458) + p.SetState(2491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31819,7 +32176,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2457) + p.SetState(2490) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31831,7 +32188,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 22: p.EnterOuterAlt(localctx, 22) - p.SetState(2463) + p.SetState(2496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31840,11 +32197,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2460) + p.SetState(2493) p.Annotation() } - p.SetState(2465) + p.SetState(2498) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31852,10 +32209,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2466) + p.SetState(2499) p.ShowPageStatement() } - p.SetState(2468) + p.SetState(2501) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31864,7 +32221,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2467) + p.SetState(2500) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31876,7 +32233,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 23: p.EnterOuterAlt(localctx, 23) - p.SetState(2473) + p.SetState(2506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31885,11 +32242,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2470) + p.SetState(2503) p.Annotation() } - p.SetState(2475) + p.SetState(2508) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31897,10 +32254,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2476) + p.SetState(2509) p.ClosePageStatement() } - p.SetState(2478) + p.SetState(2511) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31909,7 +32266,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2477) + p.SetState(2510) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31921,7 +32278,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 24: p.EnterOuterAlt(localctx, 24) - p.SetState(2483) + p.SetState(2516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31930,11 +32287,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2480) + p.SetState(2513) p.Annotation() } - p.SetState(2485) + p.SetState(2518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31942,10 +32299,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2486) + p.SetState(2519) p.ShowHomePageStatement() } - p.SetState(2488) + p.SetState(2521) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31954,7 +32311,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2487) + p.SetState(2520) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -31966,7 +32323,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 25: p.EnterOuterAlt(localctx, 25) - p.SetState(2493) + p.SetState(2526) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31975,11 +32332,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2490) + p.SetState(2523) p.Annotation() } - p.SetState(2495) + p.SetState(2528) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31987,10 +32344,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2496) + p.SetState(2529) p.ShowMessageStatement() } - p.SetState(2498) + p.SetState(2531) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31999,7 +32356,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2497) + p.SetState(2530) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32011,7 +32368,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 26: p.EnterOuterAlt(localctx, 26) - p.SetState(2503) + p.SetState(2536) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32020,11 +32377,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2500) + p.SetState(2533) p.Annotation() } - p.SetState(2505) + p.SetState(2538) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32032,10 +32389,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2506) + p.SetState(2539) p.ThrowStatement() } - p.SetState(2508) + p.SetState(2541) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32044,7 +32401,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2507) + p.SetState(2540) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32056,7 +32413,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 27: p.EnterOuterAlt(localctx, 27) - p.SetState(2513) + p.SetState(2546) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32065,11 +32422,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2510) + p.SetState(2543) p.Annotation() } - p.SetState(2515) + p.SetState(2548) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32077,10 +32434,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2516) + p.SetState(2549) p.ListOperationStatement() } - p.SetState(2518) + p.SetState(2551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32089,7 +32446,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2517) + p.SetState(2550) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32101,7 +32458,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 28: p.EnterOuterAlt(localctx, 28) - p.SetState(2523) + p.SetState(2556) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32110,11 +32467,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2520) + p.SetState(2553) p.Annotation() } - p.SetState(2525) + p.SetState(2558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32122,10 +32479,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2526) + p.SetState(2559) p.AggregateListStatement() } - p.SetState(2528) + p.SetState(2561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32134,7 +32491,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2527) + p.SetState(2560) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32146,7 +32503,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 29: p.EnterOuterAlt(localctx, 29) - p.SetState(2533) + p.SetState(2566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32155,11 +32512,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2530) + p.SetState(2563) p.Annotation() } - p.SetState(2535) + p.SetState(2568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32167,10 +32524,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2536) + p.SetState(2569) p.AddToListStatement() } - p.SetState(2538) + p.SetState(2571) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32179,7 +32536,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2537) + p.SetState(2570) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32191,7 +32548,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 30: p.EnterOuterAlt(localctx, 30) - p.SetState(2543) + p.SetState(2576) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32200,11 +32557,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2540) + p.SetState(2573) p.Annotation() } - p.SetState(2545) + p.SetState(2578) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32212,10 +32569,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2546) + p.SetState(2579) p.RemoveFromListStatement() } - p.SetState(2548) + p.SetState(2581) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32224,7 +32581,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2547) + p.SetState(2580) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32236,7 +32593,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 31: p.EnterOuterAlt(localctx, 31) - p.SetState(2553) + p.SetState(2586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32245,11 +32602,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2550) + p.SetState(2583) p.Annotation() } - p.SetState(2555) + p.SetState(2588) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32257,10 +32614,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2556) + p.SetState(2589) p.ValidationFeedbackStatement() } - p.SetState(2558) + p.SetState(2591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32269,7 +32626,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2557) + p.SetState(2590) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32281,7 +32638,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 32: p.EnterOuterAlt(localctx, 32) - p.SetState(2563) + p.SetState(2596) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32290,11 +32647,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2560) + p.SetState(2593) p.Annotation() } - p.SetState(2565) + p.SetState(2598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32302,10 +32659,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2566) + p.SetState(2599) p.RestCallStatement() } - p.SetState(2568) + p.SetState(2601) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32314,7 +32671,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2567) + p.SetState(2600) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32326,7 +32683,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { case 33: p.EnterOuterAlt(localctx, 33) - p.SetState(2573) + p.SetState(2606) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32335,11 +32692,11 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { for _la == MDLParserAT { { - p.SetState(2570) + p.SetState(2603) p.Annotation() } - p.SetState(2575) + p.SetState(2608) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32347,10 +32704,10 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2576) + p.SetState(2609) p.SendRestRequestStatement() } - p.SetState(2578) + p.SetState(2611) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32359,7 +32716,7 @@ func (p *MDLParser) MicroflowStatement() (localctx IMicroflowStatementContext) { if _la == MDLParserSEMICOLON { { - p.SetState(2577) + p.SetState(2610) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -32507,7 +32864,7 @@ func (p *MDLParser) DeclareStatement() (localctx IDeclareStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2582) + p.SetState(2615) p.Match(MDLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -32515,7 +32872,7 @@ func (p *MDLParser) DeclareStatement() (localctx IDeclareStatementContext) { } } { - p.SetState(2583) + p.SetState(2616) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -32523,10 +32880,10 @@ func (p *MDLParser) DeclareStatement() (localctx IDeclareStatementContext) { } } { - p.SetState(2584) + p.SetState(2617) p.DataType() } - p.SetState(2587) + p.SetState(2620) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32535,7 +32892,7 @@ func (p *MDLParser) DeclareStatement() (localctx IDeclareStatementContext) { if _la == MDLParserEQUALS { { - p.SetState(2585) + p.SetState(2618) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -32543,7 +32900,7 @@ func (p *MDLParser) DeclareStatement() (localctx IDeclareStatementContext) { } } { - p.SetState(2586) + p.SetState(2619) p.Expression() } @@ -32681,23 +33038,23 @@ func (p *MDLParser) SetStatement() (localctx ISetStatementContext) { p.EnterRule(localctx, 212, MDLParserRULE_setStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2589) + p.SetState(2622) p.Match(MDLParserSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2592) + p.SetState(2625) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 238, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 243, p.GetParserRuleContext()) { case 1: { - p.SetState(2590) + p.SetState(2623) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -32707,7 +33064,7 @@ func (p *MDLParser) SetStatement() (localctx ISetStatementContext) { case 2: { - p.SetState(2591) + p.SetState(2624) p.AttributePath() } @@ -32715,7 +33072,7 @@ func (p *MDLParser) SetStatement() (localctx ISetStatementContext) { goto errorExit } { - p.SetState(2594) + p.SetState(2627) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -32723,7 +33080,7 @@ func (p *MDLParser) SetStatement() (localctx ISetStatementContext) { } } { - p.SetState(2595) + p.SetState(2628) p.Expression() } @@ -32887,7 +33244,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2599) + p.SetState(2632) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32896,7 +33253,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont if _la == MDLParserVARIABLE { { - p.SetState(2597) + p.SetState(2630) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -32904,7 +33261,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont } } { - p.SetState(2598) + p.SetState(2631) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -32914,7 +33271,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont } { - p.SetState(2601) + p.SetState(2634) p.Match(MDLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -32922,10 +33279,10 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont } } { - p.SetState(2602) + p.SetState(2635) p.NonListDataType() } - p.SetState(2608) + p.SetState(2641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32934,29 +33291,29 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont if _la == MDLParserLPAREN { { - p.SetState(2603) + p.SetState(2636) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2605) + p.SetState(2638) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-8065534307610395105) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&2276579367653210093) != 0) || ((int64((_la-205)) & ^0x3f) == 0 && ((int64(1)<<(_la-205))&-144028326390697985) != 0) || ((int64((_la-269)) & ^0x3f) == 0 && ((int64(1)<<(_la-269))&-3865495793789) != 0) || ((int64((_la-333)) & ^0x3f) == 0 && ((int64(1)<<(_la-333))&-76561210845167647) != 0) || ((int64((_la-397)) & ^0x3f) == 0 && ((int64(1)<<(_la-397))&-1976543966406185) != 0) || ((int64((_la-461)) & ^0x3f) == 0 && ((int64(1)<<(_la-461))&5764607935409307647) != 0) { + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1106513109511439104) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&629276753604317175) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-1873341348707336487) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&711570936314198023) != 0) || ((int64((_la-266)) & ^0x3f) == 0 && ((int64(1)<<(_la-266))&-494783461604865) != 0) || ((int64((_la-330)) & ^0x3f) == 0 && ((int64(1)<<(_la-330))&8646909085528092927) != 0) || ((int64((_la-394)) & ^0x3f) == 0 && ((int64(1)<<(_la-394))&-252997627699991553) != 0) || ((int64((_la-458)) & ^0x3f) == 0 && ((int64(1)<<(_la-458))&52784009314303) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserQUOTED_IDENTIFIER { { - p.SetState(2604) + p.SetState(2637) p.MemberAssignmentList() } } { - p.SetState(2607) + p.SetState(2640) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -32965,7 +33322,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont } } - p.SetState(2611) + p.SetState(2644) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32974,7 +33331,7 @@ func (p *MDLParser) CreateObjectStatement() (localctx ICreateObjectStatementCont if _la == MDLParserON { { - p.SetState(2610) + p.SetState(2643) p.OnErrorClause() } @@ -33102,7 +33459,7 @@ func (p *MDLParser) ChangeObjectStatement() (localctx IChangeObjectStatementCont p.EnterOuterAlt(localctx, 1) { - p.SetState(2613) + p.SetState(2646) p.Match(MDLParserCHANGE) if p.HasError() { // Recognition error - abort rule @@ -33110,14 +33467,14 @@ func (p *MDLParser) ChangeObjectStatement() (localctx IChangeObjectStatementCont } } { - p.SetState(2614) + p.SetState(2647) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2620) + p.SetState(2653) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33126,29 +33483,29 @@ func (p *MDLParser) ChangeObjectStatement() (localctx IChangeObjectStatementCont if _la == MDLParserLPAREN { { - p.SetState(2615) + p.SetState(2648) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2617) + p.SetState(2650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-8065534307610395105) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&2276579367653210093) != 0) || ((int64((_la-205)) & ^0x3f) == 0 && ((int64(1)<<(_la-205))&-144028326390697985) != 0) || ((int64((_la-269)) & ^0x3f) == 0 && ((int64(1)<<(_la-269))&-3865495793789) != 0) || ((int64((_la-333)) & ^0x3f) == 0 && ((int64(1)<<(_la-333))&-76561210845167647) != 0) || ((int64((_la-397)) & ^0x3f) == 0 && ((int64(1)<<(_la-397))&-1976543966406185) != 0) || ((int64((_la-461)) & ^0x3f) == 0 && ((int64(1)<<(_la-461))&5764607935409307647) != 0) { + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1106513109511439104) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&629276753604317175) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-1873341348707336487) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&711570936314198023) != 0) || ((int64((_la-266)) & ^0x3f) == 0 && ((int64(1)<<(_la-266))&-494783461604865) != 0) || ((int64((_la-330)) & ^0x3f) == 0 && ((int64(1)<<(_la-330))&8646909085528092927) != 0) || ((int64((_la-394)) & ^0x3f) == 0 && ((int64(1)<<(_la-394))&-252997627699991553) != 0) || ((int64((_la-458)) & ^0x3f) == 0 && ((int64(1)<<(_la-458))&52784009314303) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserQUOTED_IDENTIFIER { { - p.SetState(2616) + p.SetState(2649) p.MemberAssignmentList() } } { - p.SetState(2619) + p.SetState(2652) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -33321,14 +33678,14 @@ func (p *MDLParser) AttributePath() (localctx IAttributePathContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2622) + p.SetState(2655) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2628) + p.SetState(2661) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33337,7 +33694,7 @@ func (p *MDLParser) AttributePath() (localctx IAttributePathContext) { for ok := true; ok; ok = _la == MDLParserSLASH || _la == MDLParserDOT { { - p.SetState(2623) + p.SetState(2656) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSLASH || _la == MDLParserDOT) { @@ -33347,16 +33704,16 @@ func (p *MDLParser) AttributePath() (localctx IAttributePathContext) { p.Consume() } } - p.SetState(2626) + p.SetState(2659) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 245, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 250, p.GetParserRuleContext()) { case 1: { - p.SetState(2624) + p.SetState(2657) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -33366,7 +33723,7 @@ func (p *MDLParser) AttributePath() (localctx IAttributePathContext) { case 2: { - p.SetState(2625) + p.SetState(2658) p.QualifiedName() } @@ -33374,7 +33731,7 @@ func (p *MDLParser) AttributePath() (localctx IAttributePathContext) { goto errorExit } - p.SetState(2630) + p.SetState(2663) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33509,7 +33866,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2632) + p.SetState(2665) p.Match(MDLParserCOMMIT) if p.HasError() { // Recognition error - abort rule @@ -33517,14 +33874,14 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { } } { - p.SetState(2633) + p.SetState(2666) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2636) + p.SetState(2669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33533,7 +33890,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { if _la == MDLParserWITH { { - p.SetState(2634) + p.SetState(2667) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -33541,7 +33898,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { } } { - p.SetState(2635) + p.SetState(2668) p.Match(MDLParserEVENTS) if p.HasError() { // Recognition error - abort rule @@ -33550,7 +33907,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { } } - p.SetState(2639) + p.SetState(2672) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33559,7 +33916,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { if _la == MDLParserREFRESH { { - p.SetState(2638) + p.SetState(2671) p.Match(MDLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -33568,7 +33925,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { } } - p.SetState(2642) + p.SetState(2675) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33577,7 +33934,7 @@ func (p *MDLParser) CommitStatement() (localctx ICommitStatementContext) { if _la == MDLParserON { { - p.SetState(2641) + p.SetState(2674) p.OnErrorClause() } @@ -33695,7 +34052,7 @@ func (p *MDLParser) DeleteObjectStatement() (localctx IDeleteObjectStatementCont p.EnterOuterAlt(localctx, 1) { - p.SetState(2644) + p.SetState(2677) p.Match(MDLParserDELETE) if p.HasError() { // Recognition error - abort rule @@ -33703,14 +34060,14 @@ func (p *MDLParser) DeleteObjectStatement() (localctx IDeleteObjectStatementCont } } { - p.SetState(2645) + p.SetState(2678) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2647) + p.SetState(2680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33719,7 +34076,7 @@ func (p *MDLParser) DeleteObjectStatement() (localctx IDeleteObjectStatementCont if _la == MDLParserON { { - p.SetState(2646) + p.SetState(2679) p.OnErrorClause() } @@ -33825,7 +34182,7 @@ func (p *MDLParser) RollbackStatement() (localctx IRollbackStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2649) + p.SetState(2682) p.Match(MDLParserROLLBACK) if p.HasError() { // Recognition error - abort rule @@ -33833,14 +34190,14 @@ func (p *MDLParser) RollbackStatement() (localctx IRollbackStatementContext) { } } { - p.SetState(2650) + p.SetState(2683) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2652) + p.SetState(2685) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33849,7 +34206,7 @@ func (p *MDLParser) RollbackStatement() (localctx IRollbackStatementContext) { if _la == MDLParserREFRESH { { - p.SetState(2651) + p.SetState(2684) p.Match(MDLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -34148,7 +34505,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2654) + p.SetState(2687) p.Match(MDLParserRETRIEVE) if p.HasError() { // Recognition error - abort rule @@ -34156,7 +34513,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2655) + p.SetState(2688) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -34164,7 +34521,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2656) + p.SetState(2689) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -34172,10 +34529,10 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2657) + p.SetState(2690) p.RetrieveSource() } - p.SetState(2663) + p.SetState(2696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34184,14 +34541,14 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { if _la == MDLParserWHERE { { - p.SetState(2658) + p.SetState(2691) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2661) + p.SetState(2694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34200,13 +34557,13 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { switch p.GetTokenStream().LA(1) { case MDLParserLBRACKET: { - p.SetState(2659) + p.SetState(2692) p.XpathConstraint() } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: { - p.SetState(2660) + p.SetState(2693) p.Expression() } @@ -34216,7 +34573,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } - p.SetState(2674) + p.SetState(2707) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34225,7 +34582,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { if _la == MDLParserSORT_BY { { - p.SetState(2665) + p.SetState(2698) p.Match(MDLParserSORT_BY) if p.HasError() { // Recognition error - abort rule @@ -34233,10 +34590,10 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2666) + p.SetState(2699) p.SortColumn() } - p.SetState(2671) + p.SetState(2704) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34245,7 +34602,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { for _la == MDLParserCOMMA { { - p.SetState(2667) + p.SetState(2700) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -34253,11 +34610,11 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2668) + p.SetState(2701) p.SortColumn() } - p.SetState(2673) + p.SetState(2706) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34266,7 +34623,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } - p.SetState(2678) + p.SetState(2711) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34275,7 +34632,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { if _la == MDLParserLIMIT { { - p.SetState(2676) + p.SetState(2709) p.Match(MDLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -34283,7 +34640,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2677) + p.SetState(2710) var _x = p.Expression() @@ -34291,7 +34648,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } - p.SetState(2682) + p.SetState(2715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34300,7 +34657,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { if _la == MDLParserOFFSET { { - p.SetState(2680) + p.SetState(2713) p.Match(MDLParserOFFSET) if p.HasError() { // Recognition error - abort rule @@ -34308,7 +34665,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } { - p.SetState(2681) + p.SetState(2714) var _x = p.Expression() @@ -34316,7 +34673,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { } } - p.SetState(2685) + p.SetState(2718) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34325,7 +34682,7 @@ func (p *MDLParser) RetrieveStatement() (localctx IRetrieveStatementContext) { if _la == MDLParserON { { - p.SetState(2684) + p.SetState(2717) p.OnErrorClause() } @@ -34476,24 +34833,24 @@ func (s *RetrieveSourceContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { localctx = NewRetrieveSourceContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 228, MDLParserRULE_retrieveSource) - p.SetState(2697) + p.SetState(2730) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 259, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 264, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2687) + p.SetState(2720) p.QualifiedName() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2688) + p.SetState(2721) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -34501,7 +34858,7 @@ func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { } } { - p.SetState(2689) + p.SetState(2722) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -34509,14 +34866,14 @@ func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { } } { - p.SetState(2690) + p.SetState(2723) p.QualifiedName() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2691) + p.SetState(2724) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -34524,11 +34881,11 @@ func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { } } { - p.SetState(2692) + p.SetState(2725) p.OqlQuery() } { - p.SetState(2693) + p.SetState(2726) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -34539,7 +34896,7 @@ func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2695) + p.SetState(2728) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -34547,7 +34904,7 @@ func (p *MDLParser) RetrieveSource() (localctx IRetrieveSourceContext) { } } { - p.SetState(2696) + p.SetState(2729) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -34692,17 +35049,17 @@ func (s *OnErrorClauseContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { localctx = NewOnErrorClauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 230, MDLParserRULE_onErrorClause) - p.SetState(2719) + p.SetState(2752) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 260, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 265, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2699) + p.SetState(2732) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -34710,7 +35067,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2700) + p.SetState(2733) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -34718,7 +35075,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2701) + p.SetState(2734) p.Match(MDLParserCONTINUE) if p.HasError() { // Recognition error - abort rule @@ -34729,7 +35086,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2702) + p.SetState(2735) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -34737,7 +35094,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2703) + p.SetState(2736) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -34745,7 +35102,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2704) + p.SetState(2737) p.Match(MDLParserROLLBACK) if p.HasError() { // Recognition error - abort rule @@ -34756,7 +35113,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2705) + p.SetState(2738) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -34764,7 +35121,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2706) + p.SetState(2739) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -34772,7 +35129,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2707) + p.SetState(2740) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -34780,11 +35137,11 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2708) + p.SetState(2741) p.MicroflowBody() } { - p.SetState(2709) + p.SetState(2742) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -34795,7 +35152,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2711) + p.SetState(2744) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -34803,7 +35160,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2712) + p.SetState(2745) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -34811,7 +35168,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2713) + p.SetState(2746) p.Match(MDLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -34819,7 +35176,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2714) + p.SetState(2747) p.Match(MDLParserROLLBACK) if p.HasError() { // Recognition error - abort rule @@ -34827,7 +35184,7 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2715) + p.SetState(2748) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -34835,11 +35192,11 @@ func (p *MDLParser) OnErrorClause() (localctx IOnErrorClauseContext) { } } { - p.SetState(2716) + p.SetState(2749) p.MicroflowBody() } { - p.SetState(2717) + p.SetState(2750) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -35062,7 +35419,7 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2721) + p.SetState(2754) p.Match(MDLParserIF) if p.HasError() { // Recognition error - abort rule @@ -35070,11 +35427,11 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2722) + p.SetState(2755) p.Expression() } { - p.SetState(2723) + p.SetState(2756) p.Match(MDLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -35082,10 +35439,10 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2724) + p.SetState(2757) p.MicroflowBody() } - p.SetState(2732) + p.SetState(2765) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35094,7 +35451,7 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { for _la == MDLParserELSIF { { - p.SetState(2725) + p.SetState(2758) p.Match(MDLParserELSIF) if p.HasError() { // Recognition error - abort rule @@ -35102,11 +35459,11 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2726) + p.SetState(2759) p.Expression() } { - p.SetState(2727) + p.SetState(2760) p.Match(MDLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -35114,18 +35471,18 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2728) + p.SetState(2761) p.MicroflowBody() } - p.SetState(2734) + p.SetState(2767) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(2737) + p.SetState(2770) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35134,7 +35491,7 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { if _la == MDLParserELSE { { - p.SetState(2735) + p.SetState(2768) p.Match(MDLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -35142,13 +35499,13 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2736) + p.SetState(2769) p.MicroflowBody() } } { - p.SetState(2739) + p.SetState(2772) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -35156,7 +35513,7 @@ func (p *MDLParser) IfStatement() (localctx IIfStatementContext) { } } { - p.SetState(2740) + p.SetState(2773) p.Match(MDLParserIF) if p.HasError() { // Recognition error - abort rule @@ -35316,7 +35673,7 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { p.EnterRule(localctx, 234, MDLParserRULE_loopStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2742) + p.SetState(2775) p.Match(MDLParserLOOP) if p.HasError() { // Recognition error - abort rule @@ -35324,7 +35681,7 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { } } { - p.SetState(2743) + p.SetState(2776) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -35332,23 +35689,23 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { } } { - p.SetState(2744) + p.SetState(2777) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2747) + p.SetState(2780) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 263, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 268, p.GetParserRuleContext()) { case 1: { - p.SetState(2745) + p.SetState(2778) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -35358,7 +35715,7 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { case 2: { - p.SetState(2746) + p.SetState(2779) p.AttributePath() } @@ -35366,7 +35723,7 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { goto errorExit } { - p.SetState(2749) + p.SetState(2782) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule @@ -35374,11 +35731,11 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { } } { - p.SetState(2750) + p.SetState(2783) p.MicroflowBody() } { - p.SetState(2751) + p.SetState(2784) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -35386,7 +35743,7 @@ func (p *MDLParser) LoopStatement() (localctx ILoopStatementContext) { } } { - p.SetState(2752) + p.SetState(2785) p.Match(MDLParserLOOP) if p.HasError() { // Recognition error - abort rule @@ -35533,7 +35890,7 @@ func (p *MDLParser) WhileStatement() (localctx IWhileStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2754) + p.SetState(2787) p.Match(MDLParserWHILE) if p.HasError() { // Recognition error - abort rule @@ -35541,10 +35898,10 @@ func (p *MDLParser) WhileStatement() (localctx IWhileStatementContext) { } } { - p.SetState(2755) + p.SetState(2788) p.Expression() } - p.SetState(2757) + p.SetState(2790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35553,7 +35910,7 @@ func (p *MDLParser) WhileStatement() (localctx IWhileStatementContext) { if _la == MDLParserBEGIN { { - p.SetState(2756) + p.SetState(2789) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule @@ -35563,23 +35920,23 @@ func (p *MDLParser) WhileStatement() (localctx IWhileStatementContext) { } { - p.SetState(2759) + p.SetState(2792) p.MicroflowBody() } { - p.SetState(2760) + p.SetState(2793) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2762) + p.SetState(2795) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 265, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 270, p.GetParserRuleContext()) == 1 { { - p.SetState(2761) + p.SetState(2794) p.Match(MDLParserWHILE) if p.HasError() { // Recognition error - abort rule @@ -35679,7 +36036,7 @@ func (p *MDLParser) ContinueStatement() (localctx IContinueStatementContext) { p.EnterRule(localctx, 238, MDLParserRULE_continueStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2764) + p.SetState(2797) p.Match(MDLParserCONTINUE) if p.HasError() { // Recognition error - abort rule @@ -35775,7 +36132,7 @@ func (p *MDLParser) BreakStatement() (localctx IBreakStatementContext) { p.EnterRule(localctx, 240, MDLParserRULE_breakStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2766) + p.SetState(2799) p.Match(MDLParserBREAK) if p.HasError() { // Recognition error - abort rule @@ -35888,19 +36245,19 @@ func (p *MDLParser) ReturnStatement() (localctx IReturnStatementContext) { p.EnterRule(localctx, 242, MDLParserRULE_returnStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2768) + p.SetState(2801) p.Match(MDLParserRETURN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2770) + p.SetState(2803) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 266, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 271, p.GetParserRuleContext()) == 1 { { - p.SetState(2769) + p.SetState(2802) p.Expression() } @@ -36001,7 +36358,7 @@ func (p *MDLParser) RaiseErrorStatement() (localctx IRaiseErrorStatementContext) p.EnterRule(localctx, 244, MDLParserRULE_raiseErrorStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2772) + p.SetState(2805) p.Match(MDLParserRAISE) if p.HasError() { // Recognition error - abort rule @@ -36009,7 +36366,7 @@ func (p *MDLParser) RaiseErrorStatement() (localctx IRaiseErrorStatementContext) } } { - p.SetState(2773) + p.SetState(2806) p.Match(MDLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -36168,26 +36525,26 @@ func (p *MDLParser) LogStatement() (localctx ILogStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2775) + p.SetState(2808) p.Match(MDLParserLOG) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2777) + p.SetState(2810) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 267, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 272, p.GetParserRuleContext()) == 1 { { - p.SetState(2776) + p.SetState(2809) p.LogLevel() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2781) + p.SetState(2814) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36196,7 +36553,7 @@ func (p *MDLParser) LogStatement() (localctx ILogStatementContext) { if _la == MDLParserNODE { { - p.SetState(2779) + p.SetState(2812) p.Match(MDLParserNODE) if p.HasError() { // Recognition error - abort rule @@ -36204,7 +36561,7 @@ func (p *MDLParser) LogStatement() (localctx ILogStatementContext) { } } { - p.SetState(2780) + p.SetState(2813) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -36214,10 +36571,10 @@ func (p *MDLParser) LogStatement() (localctx ILogStatementContext) { } { - p.SetState(2783) + p.SetState(2816) p.Expression() } - p.SetState(2785) + p.SetState(2818) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36226,7 +36583,7 @@ func (p *MDLParser) LogStatement() (localctx ILogStatementContext) { if _la == MDLParserWITH || _la == MDLParserPARAMETERS { { - p.SetState(2784) + p.SetState(2817) p.LogTemplateParams() } @@ -36347,7 +36704,7 @@ func (p *MDLParser) LogLevel() (localctx ILogLevelContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2787) + p.SetState(2820) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserDEBUG || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&15) != 0) || _la == MDLParserERROR) { @@ -36531,7 +36888,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { p.EnterRule(localctx, 250, MDLParserRULE_templateParams) var _la int - p.SetState(2803) + p.SetState(2836) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36541,7 +36898,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { case MDLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(2789) + p.SetState(2822) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -36549,7 +36906,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { } } { - p.SetState(2790) + p.SetState(2823) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -36557,10 +36914,10 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { } } { - p.SetState(2791) + p.SetState(2824) p.TemplateParam() } - p.SetState(2796) + p.SetState(2829) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36569,7 +36926,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { for _la == MDLParserCOMMA { { - p.SetState(2792) + p.SetState(2825) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -36577,11 +36934,11 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { } } { - p.SetState(2793) + p.SetState(2826) p.TemplateParam() } - p.SetState(2798) + p.SetState(2831) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36589,7 +36946,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(2799) + p.SetState(2832) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -36600,7 +36957,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { case MDLParserPARAMETERS: p.EnterOuterAlt(localctx, 2) { - p.SetState(2801) + p.SetState(2834) p.Match(MDLParserPARAMETERS) if p.HasError() { // Recognition error - abort rule @@ -36608,7 +36965,7 @@ func (p *MDLParser) TemplateParams() (localctx ITemplateParamsContext) { } } { - p.SetState(2802) + p.SetState(2835) p.ArrayLiteral() } @@ -36737,7 +37094,7 @@ func (p *MDLParser) TemplateParam() (localctx ITemplateParamContext) { p.EnterRule(localctx, 252, MDLParserRULE_templateParam) p.EnterOuterAlt(localctx, 1) { - p.SetState(2805) + p.SetState(2838) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -36745,7 +37102,7 @@ func (p *MDLParser) TemplateParam() (localctx ITemplateParamContext) { } } { - p.SetState(2806) + p.SetState(2839) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -36753,7 +37110,7 @@ func (p *MDLParser) TemplateParam() (localctx ITemplateParamContext) { } } { - p.SetState(2807) + p.SetState(2840) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -36761,7 +37118,7 @@ func (p *MDLParser) TemplateParam() (localctx ITemplateParamContext) { } } { - p.SetState(2808) + p.SetState(2841) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -36769,7 +37126,7 @@ func (p *MDLParser) TemplateParam() (localctx ITemplateParamContext) { } } { - p.SetState(2809) + p.SetState(2842) p.Expression() } @@ -36873,7 +37230,7 @@ func (p *MDLParser) LogTemplateParams() (localctx ILogTemplateParamsContext) { p.EnterRule(localctx, 254, MDLParserRULE_logTemplateParams) p.EnterOuterAlt(localctx, 1) { - p.SetState(2811) + p.SetState(2844) p.TemplateParams() } @@ -36977,7 +37334,7 @@ func (p *MDLParser) LogTemplateParam() (localctx ILogTemplateParamContext) { p.EnterRule(localctx, 256, MDLParserRULE_logTemplateParam) p.EnterOuterAlt(localctx, 1) { - p.SetState(2813) + p.SetState(2846) p.TemplateParam() } @@ -37146,7 +37503,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2817) + p.SetState(2850) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37155,7 +37512,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo if _la == MDLParserVARIABLE { { - p.SetState(2815) + p.SetState(2848) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -37163,7 +37520,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo } } { - p.SetState(2816) + p.SetState(2849) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -37173,7 +37530,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo } { - p.SetState(2819) + p.SetState(2852) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -37181,7 +37538,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo } } { - p.SetState(2820) + p.SetState(2853) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -37189,40 +37546,40 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo } } { - p.SetState(2821) + p.SetState(2854) p.QualifiedName() } { - p.SetState(2822) + p.SetState(2855) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2824) + p.SetState(2857) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2823) + p.SetState(2856) p.CallArgumentList() } } { - p.SetState(2826) + p.SetState(2859) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2828) + p.SetState(2861) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37231,7 +37588,7 @@ func (p *MDLParser) CallMicroflowStatement() (localctx ICallMicroflowStatementCo if _la == MDLParserON { { - p.SetState(2827) + p.SetState(2860) p.OnErrorClause() } @@ -37407,7 +37764,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2832) + p.SetState(2865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37416,7 +37773,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement if _la == MDLParserVARIABLE { { - p.SetState(2830) + p.SetState(2863) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -37424,7 +37781,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement } } { - p.SetState(2831) + p.SetState(2864) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -37434,7 +37791,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement } { - p.SetState(2834) + p.SetState(2867) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -37442,7 +37799,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement } } { - p.SetState(2835) + p.SetState(2868) p.Match(MDLParserJAVA) if p.HasError() { // Recognition error - abort rule @@ -37450,7 +37807,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement } } { - p.SetState(2836) + p.SetState(2869) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -37458,40 +37815,40 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement } } { - p.SetState(2837) + p.SetState(2870) p.QualifiedName() } { - p.SetState(2838) + p.SetState(2871) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2840) + p.SetState(2873) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2839) + p.SetState(2872) p.CallArgumentList() } } { - p.SetState(2842) + p.SetState(2875) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2844) + p.SetState(2877) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37500,7 +37857,7 @@ func (p *MDLParser) CallJavaActionStatement() (localctx ICallJavaActionStatement if _la == MDLParserON { { - p.SetState(2843) + p.SetState(2876) p.OnErrorClause() } @@ -37749,7 +38106,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2848) + p.SetState(2881) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37758,7 +38115,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu if _la == MDLParserVARIABLE { { - p.SetState(2846) + p.SetState(2879) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -37766,7 +38123,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } { - p.SetState(2847) + p.SetState(2880) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -37776,7 +38133,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } { - p.SetState(2850) + p.SetState(2883) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -37784,7 +38141,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } { - p.SetState(2851) + p.SetState(2884) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -37792,7 +38149,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } { - p.SetState(2852) + p.SetState(2885) p.Match(MDLParserQUERY) if p.HasError() { // Recognition error - abort rule @@ -37800,10 +38157,10 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } { - p.SetState(2853) + p.SetState(2886) p.QualifiedName() } - p.SetState(2860) + p.SetState(2893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37812,23 +38169,23 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu if _la == MDLParserDYNAMIC { { - p.SetState(2854) + p.SetState(2887) p.Match(MDLParserDYNAMIC) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2858) + p.SetState(2891) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 279, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 284, p.GetParserRuleContext()) { case 1: { - p.SetState(2855) + p.SetState(2888) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -37838,7 +38195,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu case 2: { - p.SetState(2856) + p.SetState(2889) p.Match(MDLParserDOLLAR_STRING) if p.HasError() { // Recognition error - abort rule @@ -37848,7 +38205,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu case 3: { - p.SetState(2857) + p.SetState(2890) p.Expression() } @@ -37857,7 +38214,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } - p.SetState(2867) + p.SetState(2900) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37866,29 +38223,29 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu if _la == MDLParserLPAREN { { - p.SetState(2862) + p.SetState(2895) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2864) + p.SetState(2897) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2863) + p.SetState(2896) p.CallArgumentList() } } { - p.SetState(2866) + p.SetState(2899) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -37897,7 +38254,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } - p.SetState(2875) + p.SetState(2908) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37906,7 +38263,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu if _la == MDLParserCONNECTION { { - p.SetState(2869) + p.SetState(2902) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -37914,29 +38271,29 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } { - p.SetState(2870) + p.SetState(2903) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2872) + p.SetState(2905) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2871) + p.SetState(2904) p.CallArgumentList() } } { - p.SetState(2874) + p.SetState(2907) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -37945,7 +38302,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu } } - p.SetState(2878) + p.SetState(2911) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37954,7 +38311,7 @@ func (p *MDLParser) ExecuteDatabaseQueryStatement() (localctx IExecuteDatabaseQu if _la == MDLParserON { { - p.SetState(2877) + p.SetState(2910) p.OnErrorClause() } @@ -38130,7 +38487,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2882) + p.SetState(2915) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38139,7 +38496,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS if _la == MDLParserVARIABLE { { - p.SetState(2880) + p.SetState(2913) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -38147,7 +38504,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS } } { - p.SetState(2881) + p.SetState(2914) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -38157,7 +38514,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS } { - p.SetState(2884) + p.SetState(2917) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -38165,7 +38522,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS } } { - p.SetState(2885) + p.SetState(2918) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -38173,7 +38530,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS } } { - p.SetState(2886) + p.SetState(2919) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -38181,40 +38538,40 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS } } { - p.SetState(2887) + p.SetState(2920) p.QualifiedName() } { - p.SetState(2888) + p.SetState(2921) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2890) + p.SetState(2923) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1511828488197) != 0) { + if ((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1511828488197) != 0) { { - p.SetState(2889) + p.SetState(2922) p.CallArgumentList() } } { - p.SetState(2892) + p.SetState(2925) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2894) + p.SetState(2927) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38223,7 +38580,7 @@ func (p *MDLParser) CallExternalActionStatement() (localctx ICallExternalActionS if _la == MDLParserON { { - p.SetState(2893) + p.SetState(2926) p.OnErrorClause() } @@ -38367,10 +38724,10 @@ func (p *MDLParser) CallArgumentList() (localctx ICallArgumentListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2896) + p.SetState(2929) p.CallArgument() } - p.SetState(2901) + p.SetState(2934) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38379,7 +38736,7 @@ func (p *MDLParser) CallArgumentList() (localctx ICallArgumentListContext) { for _la == MDLParserCOMMA { { - p.SetState(2897) + p.SetState(2930) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -38387,11 +38744,11 @@ func (p *MDLParser) CallArgumentList() (localctx ICallArgumentListContext) { } } { - p.SetState(2898) + p.SetState(2931) p.CallArgument() } - p.SetState(2903) + p.SetState(2936) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38525,7 +38882,7 @@ func (p *MDLParser) CallArgument() (localctx ICallArgumentContext) { localctx = NewCallArgumentContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 268, MDLParserRULE_callArgument) p.EnterOuterAlt(localctx, 1) - p.SetState(2906) + p.SetState(2939) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38534,7 +38891,7 @@ func (p *MDLParser) CallArgument() (localctx ICallArgumentContext) { switch p.GetTokenStream().LA(1) { case MDLParserVARIABLE: { - p.SetState(2904) + p.SetState(2937) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -38544,7 +38901,7 @@ func (p *MDLParser) CallArgument() (localctx ICallArgumentContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: { - p.SetState(2905) + p.SetState(2938) p.ParameterName() } @@ -38553,7 +38910,7 @@ func (p *MDLParser) CallArgument() (localctx ICallArgumentContext) { goto errorExit } { - p.SetState(2908) + p.SetState(2941) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -38561,7 +38918,7 @@ func (p *MDLParser) CallArgument() (localctx ICallArgumentContext) { } } { - p.SetState(2909) + p.SetState(2942) p.Expression() } @@ -38736,7 +39093,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2911) + p.SetState(2944) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -38744,7 +39101,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } { - p.SetState(2912) + p.SetState(2945) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -38752,10 +39109,10 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } { - p.SetState(2913) + p.SetState(2946) p.QualifiedName() } - p.SetState(2919) + p.SetState(2952) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38764,29 +39121,29 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { if _la == MDLParserLPAREN { { - p.SetState(2914) + p.SetState(2947) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2916) + p.SetState(2949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-8065534307610395105) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&2276579367653210093) != 0) || ((int64((_la-207)) & ^0x3f) == 0 && ((int64(1)<<(_la-207))&-36007081597674497) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&-4323455672474862049) != 0) || ((int64((_la-340)) & ^0x3f) == 0 && ((int64(1)<<(_la-340))&-5765205657493962753) != 0) || ((int64((_la-404)) & ^0x3f) == 0 && ((int64(1)<<(_la-404))&-15441749737549) != 0) || ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&49539599122755711) != 0) { + if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-8065534307610395105) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&9106288202560567277) != 0) || ((int64((_la-209)) & ^0x3f) == 0 && ((int64(1)<<(_la-209))&-144028326389294081) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-3865495793789) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-76561210845167647) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1976543966406185) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&6341068687712731135) != 0) { { - p.SetState(2915) + p.SetState(2948) p.ShowPageArgList() } } { - p.SetState(2918) + p.SetState(2951) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -38795,7 +39152,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } - p.SetState(2923) + p.SetState(2956) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38804,7 +39161,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { if _la == MDLParserFOR { { - p.SetState(2921) + p.SetState(2954) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -38812,7 +39169,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } { - p.SetState(2922) + p.SetState(2955) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -38821,7 +39178,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } - p.SetState(2927) + p.SetState(2960) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38830,7 +39187,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { if _la == MDLParserWITH { { - p.SetState(2925) + p.SetState(2958) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -38838,7 +39195,7 @@ func (p *MDLParser) ShowPageStatement() (localctx IShowPageStatementContext) { } } { - p.SetState(2926) + p.SetState(2959) p.MemberAssignmentList() } @@ -38982,10 +39339,10 @@ func (p *MDLParser) ShowPageArgList() (localctx IShowPageArgListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2929) + p.SetState(2962) p.ShowPageArg() } - p.SetState(2934) + p.SetState(2967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38994,7 +39351,7 @@ func (p *MDLParser) ShowPageArgList() (localctx IShowPageArgListContext) { for _la == MDLParserCOMMA { { - p.SetState(2930) + p.SetState(2963) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -39002,11 +39359,11 @@ func (p *MDLParser) ShowPageArgList() (localctx IShowPageArgListContext) { } } { - p.SetState(2931) + p.SetState(2964) p.ShowPageArg() } - p.SetState(2936) + p.SetState(2969) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39149,7 +39506,7 @@ func (s *ShowPageArgContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { localctx = NewShowPageArgContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 274, MDLParserRULE_showPageArg) - p.SetState(2947) + p.SetState(2980) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39159,7 +39516,7 @@ func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { case MDLParserVARIABLE: p.EnterOuterAlt(localctx, 1) { - p.SetState(2937) + p.SetState(2970) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -39167,23 +39524,23 @@ func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { } } { - p.SetState(2938) + p.SetState(2971) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2941) + p.SetState(2974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 296, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 301, p.GetParserRuleContext()) { case 1: { - p.SetState(2939) + p.SetState(2972) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -39193,7 +39550,7 @@ func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { case 2: { - p.SetState(2940) + p.SetState(2973) p.Expression() } @@ -39201,14 +39558,14 @@ func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { goto errorExit } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(2943) + p.SetState(2976) p.IdentifierOrKeyword() } { - p.SetState(2944) + p.SetState(2977) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -39216,7 +39573,7 @@ func (p *MDLParser) ShowPageArg() (localctx IShowPageArgContext) { } } { - p.SetState(2945) + p.SetState(2978) p.Expression() } @@ -39318,7 +39675,7 @@ func (p *MDLParser) ClosePageStatement() (localctx IClosePageStatementContext) { p.EnterRule(localctx, 276, MDLParserRULE_closePageStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2949) + p.SetState(2982) p.Match(MDLParserCLOSE) if p.HasError() { // Recognition error - abort rule @@ -39326,7 +39683,7 @@ func (p *MDLParser) ClosePageStatement() (localctx IClosePageStatementContext) { } } { - p.SetState(2950) + p.SetState(2983) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -39432,7 +39789,7 @@ func (p *MDLParser) ShowHomePageStatement() (localctx IShowHomePageStatementCont p.EnterRule(localctx, 278, MDLParserRULE_showHomePageStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2952) + p.SetState(2985) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -39440,7 +39797,7 @@ func (p *MDLParser) ShowHomePageStatement() (localctx IShowHomePageStatementCont } } { - p.SetState(2953) + p.SetState(2986) p.Match(MDLParserHOME) if p.HasError() { // Recognition error - abort rule @@ -39448,7 +39805,7 @@ func (p *MDLParser) ShowHomePageStatement() (localctx IShowHomePageStatementCont } } { - p.SetState(2954) + p.SetState(2987) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -39622,7 +39979,7 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex p.EnterOuterAlt(localctx, 1) { - p.SetState(2956) + p.SetState(2989) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -39630,7 +39987,7 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex } } { - p.SetState(2957) + p.SetState(2990) p.Match(MDLParserMESSAGE) if p.HasError() { // Recognition error - abort rule @@ -39638,10 +39995,10 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex } } { - p.SetState(2958) + p.SetState(2991) p.Expression() } - p.SetState(2961) + p.SetState(2994) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39650,7 +40007,7 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex if _la == MDLParserTYPE { { - p.SetState(2959) + p.SetState(2992) p.Match(MDLParserTYPE) if p.HasError() { // Recognition error - abort rule @@ -39658,12 +40015,12 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex } } { - p.SetState(2960) + p.SetState(2993) p.IdentifierOrKeyword() } } - p.SetState(2968) + p.SetState(3001) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39672,7 +40029,7 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex if _la == MDLParserOBJECTS { { - p.SetState(2963) + p.SetState(2996) p.Match(MDLParserOBJECTS) if p.HasError() { // Recognition error - abort rule @@ -39680,7 +40037,7 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex } } { - p.SetState(2964) + p.SetState(2997) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -39688,11 +40045,11 @@ func (p *MDLParser) ShowMessageStatement() (localctx IShowMessageStatementContex } } { - p.SetState(2965) + p.SetState(2998) p.ExpressionList() } { - p.SetState(2966) + p.SetState(2999) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -39807,7 +40164,7 @@ func (p *MDLParser) ThrowStatement() (localctx IThrowStatementContext) { p.EnterRule(localctx, 282, MDLParserRULE_throwStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(2970) + p.SetState(3003) p.Match(MDLParserTHROW) if p.HasError() { // Recognition error - abort rule @@ -39815,7 +40172,7 @@ func (p *MDLParser) ThrowStatement() (localctx IThrowStatementContext) { } } { - p.SetState(2971) + p.SetState(3004) p.Expression() } @@ -39985,7 +40342,7 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS p.EnterOuterAlt(localctx, 1) { - p.SetState(2973) + p.SetState(3006) p.Match(MDLParserVALIDATION) if p.HasError() { // Recognition error - abort rule @@ -39993,7 +40350,7 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS } } { - p.SetState(2974) + p.SetState(3007) p.Match(MDLParserFEEDBACK) if p.HasError() { // Recognition error - abort rule @@ -40001,11 +40358,11 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS } } { - p.SetState(2975) + p.SetState(3008) p.AttributePath() } { - p.SetState(2976) + p.SetState(3009) p.Match(MDLParserMESSAGE) if p.HasError() { // Recognition error - abort rule @@ -40013,10 +40370,10 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS } } { - p.SetState(2977) + p.SetState(3010) p.Expression() } - p.SetState(2983) + p.SetState(3016) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40025,7 +40382,7 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS if _la == MDLParserOBJECTS { { - p.SetState(2978) + p.SetState(3011) p.Match(MDLParserOBJECTS) if p.HasError() { // Recognition error - abort rule @@ -40033,7 +40390,7 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS } } { - p.SetState(2979) + p.SetState(3012) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -40041,11 +40398,11 @@ func (p *MDLParser) ValidationFeedbackStatement() (localctx IValidationFeedbackS } } { - p.SetState(2980) + p.SetState(3013) p.ExpressionList() } { - p.SetState(2981) + p.SetState(3014) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -40338,7 +40695,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2987) + p.SetState(3020) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40347,7 +40704,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserVARIABLE { { - p.SetState(2985) + p.SetState(3018) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -40355,7 +40712,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { } } { - p.SetState(2986) + p.SetState(3019) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -40365,7 +40722,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { } { - p.SetState(2989) + p.SetState(3022) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -40373,7 +40730,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { } } { - p.SetState(2990) + p.SetState(3023) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -40381,14 +40738,14 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { } } { - p.SetState(2991) + p.SetState(3024) p.HttpMethod() } { - p.SetState(2992) + p.SetState(3025) p.RestCallUrl() } - p.SetState(2994) + p.SetState(3027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40397,12 +40754,12 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserWITH || _la == MDLParserPARAMETERS { { - p.SetState(2993) + p.SetState(3026) p.RestCallUrlParams() } } - p.SetState(2999) + p.SetState(3032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40411,18 +40768,18 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { for _la == MDLParserHEADER { { - p.SetState(2996) + p.SetState(3029) p.RestCallHeaderClause() } - p.SetState(3001) + p.SetState(3034) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(3003) + p.SetState(3036) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40431,12 +40788,12 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserAUTH { { - p.SetState(3002) + p.SetState(3035) p.RestCallAuthClause() } } - p.SetState(3006) + p.SetState(3039) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40445,12 +40802,12 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserBODY { { - p.SetState(3005) + p.SetState(3038) p.RestCallBodyClause() } } - p.SetState(3009) + p.SetState(3042) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40459,16 +40816,16 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserTIMEOUT { { - p.SetState(3008) + p.SetState(3041) p.RestCallTimeoutClause() } } { - p.SetState(3011) + p.SetState(3044) p.RestCallReturnsClause() } - p.SetState(3013) + p.SetState(3046) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40477,7 +40834,7 @@ func (p *MDLParser) RestCallStatement() (localctx IRestCallStatementContext) { if _la == MDLParserON { { - p.SetState(3012) + p.SetState(3045) p.OnErrorClause() } @@ -40593,10 +40950,10 @@ func (p *MDLParser) HttpMethod() (localctx IHttpMethodContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3015) + p.SetState(3048) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserDELETE || ((int64((_la-334)) & ^0x3f) == 0 && ((int64(1)<<(_la-334))&15) != 0)) { + if !(_la == MDLParserDELETE || ((int64((_la-338)) & ^0x3f) == 0 && ((int64(1)<<(_la-338))&15) != 0)) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -40707,17 +41064,17 @@ func (s *RestCallUrlContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RestCallUrl() (localctx IRestCallUrlContext) { localctx = NewRestCallUrlContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 290, MDLParserRULE_restCallUrl) - p.SetState(3019) + p.SetState(3052) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 308, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 313, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3017) + p.SetState(3050) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -40728,7 +41085,7 @@ func (p *MDLParser) RestCallUrl() (localctx IRestCallUrlContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3018) + p.SetState(3051) p.Expression() } @@ -40836,7 +41193,7 @@ func (p *MDLParser) RestCallUrlParams() (localctx IRestCallUrlParamsContext) { p.EnterRule(localctx, 292, MDLParserRULE_restCallUrlParams) p.EnterOuterAlt(localctx, 1) { - p.SetState(3021) + p.SetState(3054) p.TemplateParams() } @@ -40962,7 +41319,7 @@ func (p *MDLParser) RestCallHeaderClause() (localctx IRestCallHeaderClauseContex p.EnterOuterAlt(localctx, 1) { - p.SetState(3023) + p.SetState(3056) p.Match(MDLParserHEADER) if p.HasError() { // Recognition error - abort rule @@ -40970,7 +41327,7 @@ func (p *MDLParser) RestCallHeaderClause() (localctx IRestCallHeaderClauseContex } } { - p.SetState(3024) + p.SetState(3057) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSTRING_LITERAL || _la == MDLParserIDENTIFIER) { @@ -40981,7 +41338,7 @@ func (p *MDLParser) RestCallHeaderClause() (localctx IRestCallHeaderClauseContex } } { - p.SetState(3025) + p.SetState(3058) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -40989,7 +41346,7 @@ func (p *MDLParser) RestCallHeaderClause() (localctx IRestCallHeaderClauseContex } } { - p.SetState(3026) + p.SetState(3059) p.Expression() } @@ -41134,7 +41491,7 @@ func (p *MDLParser) RestCallAuthClause() (localctx IRestCallAuthClauseContext) { p.EnterRule(localctx, 296, MDLParserRULE_restCallAuthClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3028) + p.SetState(3061) p.Match(MDLParserAUTH) if p.HasError() { // Recognition error - abort rule @@ -41142,7 +41499,7 @@ func (p *MDLParser) RestCallAuthClause() (localctx IRestCallAuthClauseContext) { } } { - p.SetState(3029) + p.SetState(3062) p.Match(MDLParserBASIC) if p.HasError() { // Recognition error - abort rule @@ -41150,11 +41507,11 @@ func (p *MDLParser) RestCallAuthClause() (localctx IRestCallAuthClauseContext) { } } { - p.SetState(3030) + p.SetState(3063) p.Expression() } { - p.SetState(3031) + p.SetState(3064) p.Match(MDLParserPASSWORD) if p.HasError() { // Recognition error - abort rule @@ -41162,7 +41519,7 @@ func (p *MDLParser) RestCallAuthClause() (localctx IRestCallAuthClauseContext) { } } { - p.SetState(3032) + p.SetState(3065) p.Expression() } @@ -41325,17 +41682,17 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { p.EnterRule(localctx, 298, MDLParserRULE_restCallBodyClause) var _la int - p.SetState(3050) + p.SetState(3083) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 311, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 316, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3034) + p.SetState(3067) p.Match(MDLParserBODY) if p.HasError() { // Recognition error - abort rule @@ -41343,14 +41700,14 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { } } { - p.SetState(3035) + p.SetState(3068) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3037) + p.SetState(3070) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41359,7 +41716,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { if _la == MDLParserWITH || _la == MDLParserPARAMETERS { { - p.SetState(3036) + p.SetState(3069) p.TemplateParams() } @@ -41368,7 +41725,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3039) + p.SetState(3072) p.Match(MDLParserBODY) if p.HasError() { // Recognition error - abort rule @@ -41376,10 +41733,10 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { } } { - p.SetState(3040) + p.SetState(3073) p.Expression() } - p.SetState(3042) + p.SetState(3075) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41388,7 +41745,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { if _la == MDLParserWITH || _la == MDLParserPARAMETERS { { - p.SetState(3041) + p.SetState(3074) p.TemplateParams() } @@ -41397,7 +41754,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3044) + p.SetState(3077) p.Match(MDLParserBODY) if p.HasError() { // Recognition error - abort rule @@ -41405,7 +41762,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { } } { - p.SetState(3045) + p.SetState(3078) p.Match(MDLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -41413,11 +41770,11 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { } } { - p.SetState(3046) + p.SetState(3079) p.QualifiedName() } { - p.SetState(3047) + p.SetState(3080) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -41425,7 +41782,7 @@ func (p *MDLParser) RestCallBodyClause() (localctx IRestCallBodyClauseContext) { } } { - p.SetState(3048) + p.SetState(3081) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -41542,7 +41899,7 @@ func (p *MDLParser) RestCallTimeoutClause() (localctx IRestCallTimeoutClauseCont p.EnterRule(localctx, 300, MDLParserRULE_restCallTimeoutClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3052) + p.SetState(3085) p.Match(MDLParserTIMEOUT) if p.HasError() { // Recognition error - abort rule @@ -41550,7 +41907,7 @@ func (p *MDLParser) RestCallTimeoutClause() (localctx IRestCallTimeoutClauseCont } } { - p.SetState(3053) + p.SetState(3086) p.Expression() } @@ -41713,17 +42070,17 @@ func (s *RestCallReturnsClauseContext) ExitRule(listener antlr.ParseTreeListener func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseContext) { localctx = NewRestCallReturnsClauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 302, MDLParserRULE_restCallReturnsClause) - p.SetState(3069) + p.SetState(3102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 312, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 317, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3055) + p.SetState(3088) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -41731,7 +42088,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3056) + p.SetState(3089) p.Match(MDLParserSTRING_TYPE) if p.HasError() { // Recognition error - abort rule @@ -41742,7 +42099,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3057) + p.SetState(3090) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -41750,7 +42107,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3058) + p.SetState(3091) p.Match(MDLParserRESPONSE) if p.HasError() { // Recognition error - abort rule @@ -41761,7 +42118,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3059) + p.SetState(3092) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -41769,7 +42126,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3060) + p.SetState(3093) p.Match(MDLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -41777,11 +42134,11 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3061) + p.SetState(3094) p.QualifiedName() } { - p.SetState(3062) + p.SetState(3095) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -41789,14 +42146,14 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3063) + p.SetState(3096) p.QualifiedName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3065) + p.SetState(3098) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -41804,7 +42161,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3066) + p.SetState(3099) p.Match(MDLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -41815,7 +42172,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(3067) + p.SetState(3100) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -41823,7 +42180,7 @@ func (p *MDLParser) RestCallReturnsClause() (localctx IRestCallReturnsClauseCont } } { - p.SetState(3068) + p.SetState(3101) p.Match(MDLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -41995,7 +42352,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3073) + p.SetState(3106) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42004,7 +42361,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme if _la == MDLParserVARIABLE { { - p.SetState(3071) + p.SetState(3104) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42012,7 +42369,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme } } { - p.SetState(3072) + p.SetState(3105) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -42022,7 +42379,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme } { - p.SetState(3075) + p.SetState(3108) p.Match(MDLParserSEND) if p.HasError() { // Recognition error - abort rule @@ -42030,7 +42387,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme } } { - p.SetState(3076) + p.SetState(3109) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -42038,7 +42395,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme } } { - p.SetState(3077) + p.SetState(3110) p.Match(MDLParserREQUEST) if p.HasError() { // Recognition error - abort rule @@ -42046,10 +42403,10 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme } } { - p.SetState(3078) + p.SetState(3111) p.QualifiedName() } - p.SetState(3080) + p.SetState(3113) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42058,12 +42415,12 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme if _la == MDLParserBODY { { - p.SetState(3079) + p.SetState(3112) p.SendRestRequestBodyClause() } } - p.SetState(3083) + p.SetState(3116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42072,7 +42429,7 @@ func (p *MDLParser) SendRestRequestStatement() (localctx ISendRestRequestStateme if _la == MDLParserON { { - p.SetState(3082) + p.SetState(3115) p.OnErrorClause() } @@ -42171,7 +42528,7 @@ func (p *MDLParser) SendRestRequestBodyClause() (localctx ISendRestRequestBodyCl p.EnterRule(localctx, 306, MDLParserRULE_sendRestRequestBodyClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3085) + p.SetState(3118) p.Match(MDLParserBODY) if p.HasError() { // Recognition error - abort rule @@ -42179,7 +42536,7 @@ func (p *MDLParser) SendRestRequestBodyClause() (localctx ISendRestRequestBodyCl } } { - p.SetState(3086) + p.SetState(3119) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42297,7 +42654,7 @@ func (p *MDLParser) ListOperationStatement() (localctx IListOperationStatementCo p.EnterRule(localctx, 308, MDLParserRULE_listOperationStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3088) + p.SetState(3121) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42305,7 +42662,7 @@ func (p *MDLParser) ListOperationStatement() (localctx IListOperationStatementCo } } { - p.SetState(3089) + p.SetState(3122) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -42313,7 +42670,7 @@ func (p *MDLParser) ListOperationStatement() (localctx IListOperationStatementCo } } { - p.SetState(3090) + p.SetState(3123) p.ListOperation() } @@ -42507,7 +42864,7 @@ func (s *ListOperationContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ListOperation() (localctx IListOperationContext) { localctx = NewListOperationContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 310, MDLParserRULE_listOperation) - p.SetState(3151) + p.SetState(3184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42517,7 +42874,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserHEAD: p.EnterOuterAlt(localctx, 1) { - p.SetState(3092) + p.SetState(3125) p.Match(MDLParserHEAD) if p.HasError() { // Recognition error - abort rule @@ -42525,7 +42882,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3093) + p.SetState(3126) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42533,7 +42890,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3094) + p.SetState(3127) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42541,7 +42898,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3095) + p.SetState(3128) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42552,7 +42909,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserTAIL: p.EnterOuterAlt(localctx, 2) { - p.SetState(3096) + p.SetState(3129) p.Match(MDLParserTAIL) if p.HasError() { // Recognition error - abort rule @@ -42560,7 +42917,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3097) + p.SetState(3130) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42568,7 +42925,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3098) + p.SetState(3131) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42576,7 +42933,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3099) + p.SetState(3132) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42587,7 +42944,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserFIND: p.EnterOuterAlt(localctx, 3) { - p.SetState(3100) + p.SetState(3133) p.Match(MDLParserFIND) if p.HasError() { // Recognition error - abort rule @@ -42595,7 +42952,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3101) + p.SetState(3134) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42603,7 +42960,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3102) + p.SetState(3135) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42611,7 +42968,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3103) + p.SetState(3136) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42619,11 +42976,11 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3104) + p.SetState(3137) p.Expression() } { - p.SetState(3105) + p.SetState(3138) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42634,7 +42991,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserFILTER: p.EnterOuterAlt(localctx, 4) { - p.SetState(3107) + p.SetState(3140) p.Match(MDLParserFILTER) if p.HasError() { // Recognition error - abort rule @@ -42642,7 +42999,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3108) + p.SetState(3141) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42650,7 +43007,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3109) + p.SetState(3142) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42658,7 +43015,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3110) + p.SetState(3143) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42666,11 +43023,11 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3111) + p.SetState(3144) p.Expression() } { - p.SetState(3112) + p.SetState(3145) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42681,7 +43038,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserSORT: p.EnterOuterAlt(localctx, 5) { - p.SetState(3114) + p.SetState(3147) p.Match(MDLParserSORT) if p.HasError() { // Recognition error - abort rule @@ -42689,7 +43046,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3115) + p.SetState(3148) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42697,7 +43054,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3116) + p.SetState(3149) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42705,7 +43062,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3117) + p.SetState(3150) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42713,11 +43070,11 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3118) + p.SetState(3151) p.SortSpecList() } { - p.SetState(3119) + p.SetState(3152) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42728,7 +43085,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserUNION: p.EnterOuterAlt(localctx, 6) { - p.SetState(3121) + p.SetState(3154) p.Match(MDLParserUNION) if p.HasError() { // Recognition error - abort rule @@ -42736,7 +43093,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3122) + p.SetState(3155) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42744,7 +43101,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3123) + p.SetState(3156) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42752,7 +43109,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3124) + p.SetState(3157) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42760,7 +43117,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3125) + p.SetState(3158) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42768,7 +43125,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3126) + p.SetState(3159) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42779,7 +43136,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserINTERSECT: p.EnterOuterAlt(localctx, 7) { - p.SetState(3127) + p.SetState(3160) p.Match(MDLParserINTERSECT) if p.HasError() { // Recognition error - abort rule @@ -42787,7 +43144,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3128) + p.SetState(3161) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42795,7 +43152,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3129) + p.SetState(3162) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42803,7 +43160,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3130) + p.SetState(3163) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42811,7 +43168,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3131) + p.SetState(3164) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42819,7 +43176,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3132) + p.SetState(3165) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42830,7 +43187,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserSUBTRACT: p.EnterOuterAlt(localctx, 8) { - p.SetState(3133) + p.SetState(3166) p.Match(MDLParserSUBTRACT) if p.HasError() { // Recognition error - abort rule @@ -42838,7 +43195,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3134) + p.SetState(3167) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42846,7 +43203,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3135) + p.SetState(3168) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42854,7 +43211,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3136) + p.SetState(3169) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42862,7 +43219,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3137) + p.SetState(3170) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42870,7 +43227,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3138) + p.SetState(3171) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42881,7 +43238,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserCONTAINS: p.EnterOuterAlt(localctx, 9) { - p.SetState(3139) + p.SetState(3172) p.Match(MDLParserCONTAINS) if p.HasError() { // Recognition error - abort rule @@ -42889,7 +43246,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3140) + p.SetState(3173) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42897,7 +43254,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3141) + p.SetState(3174) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42905,7 +43262,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3142) + p.SetState(3175) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42913,7 +43270,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3143) + p.SetState(3176) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42921,7 +43278,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3144) + p.SetState(3177) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -42932,7 +43289,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { case MDLParserEQUALS_OP: p.EnterOuterAlt(localctx, 10) { - p.SetState(3145) + p.SetState(3178) p.Match(MDLParserEQUALS_OP) if p.HasError() { // Recognition error - abort rule @@ -42940,7 +43297,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3146) + p.SetState(3179) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -42948,7 +43305,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3147) + p.SetState(3180) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42956,7 +43313,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3148) + p.SetState(3181) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -42964,7 +43321,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3149) + p.SetState(3182) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -42972,7 +43329,7 @@ func (p *MDLParser) ListOperation() (localctx IListOperationContext) { } } { - p.SetState(3150) + p.SetState(3183) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43123,10 +43480,10 @@ func (p *MDLParser) SortSpecList() (localctx ISortSpecListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3153) + p.SetState(3186) p.SortSpec() } - p.SetState(3158) + p.SetState(3191) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43135,7 +43492,7 @@ func (p *MDLParser) SortSpecList() (localctx ISortSpecListContext) { for _la == MDLParserCOMMA { { - p.SetState(3154) + p.SetState(3187) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -43143,11 +43500,11 @@ func (p *MDLParser) SortSpecList() (localctx ISortSpecListContext) { } } { - p.SetState(3155) + p.SetState(3188) p.SortSpec() } - p.SetState(3160) + p.SetState(3193) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43255,14 +43612,14 @@ func (p *MDLParser) SortSpec() (localctx ISortSpecContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3161) + p.SetState(3194) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3163) + p.SetState(3196) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43271,7 +43628,7 @@ func (p *MDLParser) SortSpec() (localctx ISortSpecContext) { if _la == MDLParserASC || _la == MDLParserDESC { { - p.SetState(3162) + p.SetState(3195) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserASC || _la == MDLParserDESC) { @@ -43394,7 +43751,7 @@ func (p *MDLParser) AggregateListStatement() (localctx IAggregateListStatementCo p.EnterRule(localctx, 316, MDLParserRULE_aggregateListStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3165) + p.SetState(3198) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -43402,7 +43759,7 @@ func (p *MDLParser) AggregateListStatement() (localctx IAggregateListStatementCo } } { - p.SetState(3166) + p.SetState(3199) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -43410,7 +43767,7 @@ func (p *MDLParser) AggregateListStatement() (localctx IAggregateListStatementCo } } { - p.SetState(3167) + p.SetState(3200) p.ListAggregateOperation() } @@ -43552,7 +43909,7 @@ func (s *ListAggregateOperationContext) ExitRule(listener antlr.ParseTreeListene func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationContext) { localctx = NewListAggregateOperationContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 318, MDLParserRULE_listAggregateOperation) - p.SetState(3193) + p.SetState(3226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43562,7 +43919,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo case MDLParserCOUNT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3169) + p.SetState(3202) p.Match(MDLParserCOUNT) if p.HasError() { // Recognition error - abort rule @@ -43570,7 +43927,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3170) + p.SetState(3203) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -43578,7 +43935,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3171) + p.SetState(3204) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -43586,7 +43943,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3172) + p.SetState(3205) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43597,7 +43954,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo case MDLParserSUM: p.EnterOuterAlt(localctx, 2) { - p.SetState(3173) + p.SetState(3206) p.Match(MDLParserSUM) if p.HasError() { // Recognition error - abort rule @@ -43605,7 +43962,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3174) + p.SetState(3207) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -43613,11 +43970,11 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3175) + p.SetState(3208) p.AttributePath() } { - p.SetState(3176) + p.SetState(3209) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43628,7 +43985,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo case MDLParserAVERAGE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3178) + p.SetState(3211) p.Match(MDLParserAVERAGE) if p.HasError() { // Recognition error - abort rule @@ -43636,7 +43993,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3179) + p.SetState(3212) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -43644,11 +44001,11 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3180) + p.SetState(3213) p.AttributePath() } { - p.SetState(3181) + p.SetState(3214) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43659,7 +44016,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo case MDLParserMINIMUM: p.EnterOuterAlt(localctx, 4) { - p.SetState(3183) + p.SetState(3216) p.Match(MDLParserMINIMUM) if p.HasError() { // Recognition error - abort rule @@ -43667,7 +44024,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3184) + p.SetState(3217) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -43675,11 +44032,11 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3185) + p.SetState(3218) p.AttributePath() } { - p.SetState(3186) + p.SetState(3219) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43690,7 +44047,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo case MDLParserMAXIMUM: p.EnterOuterAlt(localctx, 5) { - p.SetState(3188) + p.SetState(3221) p.Match(MDLParserMAXIMUM) if p.HasError() { // Recognition error - abort rule @@ -43698,7 +44055,7 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3189) + p.SetState(3222) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -43706,11 +44063,11 @@ func (p *MDLParser) ListAggregateOperation() (localctx IListAggregateOperationCo } } { - p.SetState(3190) + p.SetState(3223) p.AttributePath() } { - p.SetState(3191) + p.SetState(3224) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -43843,7 +44200,7 @@ func (p *MDLParser) CreateListStatement() (localctx ICreateListStatementContext) p.EnterRule(localctx, 320, MDLParserRULE_createListStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3195) + p.SetState(3228) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -43851,7 +44208,7 @@ func (p *MDLParser) CreateListStatement() (localctx ICreateListStatementContext) } } { - p.SetState(3196) + p.SetState(3229) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -43859,7 +44216,7 @@ func (p *MDLParser) CreateListStatement() (localctx ICreateListStatementContext) } } { - p.SetState(3197) + p.SetState(3230) p.Match(MDLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -43867,7 +44224,7 @@ func (p *MDLParser) CreateListStatement() (localctx ICreateListStatementContext) } } { - p.SetState(3198) + p.SetState(3231) p.Match(MDLParserLIST_OF) if p.HasError() { // Recognition error - abort rule @@ -43875,7 +44232,7 @@ func (p *MDLParser) CreateListStatement() (localctx ICreateListStatementContext) } } { - p.SetState(3199) + p.SetState(3232) p.QualifiedName() } @@ -43982,7 +44339,7 @@ func (p *MDLParser) AddToListStatement() (localctx IAddToListStatementContext) { p.EnterRule(localctx, 322, MDLParserRULE_addToListStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3201) + p.SetState(3234) p.Match(MDLParserADD) if p.HasError() { // Recognition error - abort rule @@ -43990,7 +44347,7 @@ func (p *MDLParser) AddToListStatement() (localctx IAddToListStatementContext) { } } { - p.SetState(3202) + p.SetState(3235) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -43998,7 +44355,7 @@ func (p *MDLParser) AddToListStatement() (localctx IAddToListStatementContext) { } } { - p.SetState(3203) + p.SetState(3236) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -44006,7 +44363,7 @@ func (p *MDLParser) AddToListStatement() (localctx IAddToListStatementContext) { } } { - p.SetState(3204) + p.SetState(3237) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -44117,7 +44474,7 @@ func (p *MDLParser) RemoveFromListStatement() (localctx IRemoveFromListStatement p.EnterRule(localctx, 324, MDLParserRULE_removeFromListStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3206) + p.SetState(3239) p.Match(MDLParserREMOVE) if p.HasError() { // Recognition error - abort rule @@ -44125,7 +44482,7 @@ func (p *MDLParser) RemoveFromListStatement() (localctx IRemoveFromListStatement } } { - p.SetState(3207) + p.SetState(3240) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -44133,7 +44490,7 @@ func (p *MDLParser) RemoveFromListStatement() (localctx IRemoveFromListStatement } } { - p.SetState(3208) + p.SetState(3241) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -44141,7 +44498,7 @@ func (p *MDLParser) RemoveFromListStatement() (localctx IRemoveFromListStatement } } { - p.SetState(3209) + p.SetState(3242) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -44287,10 +44644,10 @@ func (p *MDLParser) MemberAssignmentList() (localctx IMemberAssignmentListContex p.EnterOuterAlt(localctx, 1) { - p.SetState(3211) + p.SetState(3244) p.MemberAssignment() } - p.SetState(3216) + p.SetState(3249) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44299,7 +44656,7 @@ func (p *MDLParser) MemberAssignmentList() (localctx IMemberAssignmentListContex for _la == MDLParserCOMMA { { - p.SetState(3212) + p.SetState(3245) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -44307,11 +44664,11 @@ func (p *MDLParser) MemberAssignmentList() (localctx IMemberAssignmentListContex } } { - p.SetState(3213) + p.SetState(3246) p.MemberAssignment() } - p.SetState(3218) + p.SetState(3251) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44441,11 +44798,11 @@ func (p *MDLParser) MemberAssignment() (localctx IMemberAssignmentContext) { p.EnterRule(localctx, 328, MDLParserRULE_memberAssignment) p.EnterOuterAlt(localctx, 1) { - p.SetState(3219) + p.SetState(3252) p.MemberAttributeName() } { - p.SetState(3220) + p.SetState(3253) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -44453,7 +44810,7 @@ func (p *MDLParser) MemberAssignment() (localctx IMemberAssignmentContext) { } } { - p.SetState(3221) + p.SetState(3254) p.Expression() } @@ -44582,24 +44939,24 @@ func (s *MemberAttributeNameContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) MemberAttributeName() (localctx IMemberAttributeNameContext) { localctx = NewMemberAttributeNameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 330, MDLParserRULE_memberAttributeName) - p.SetState(3227) + p.SetState(3260) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 321, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 326, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3223) + p.SetState(3256) p.QualifiedName() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3224) + p.SetState(3257) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -44610,7 +44967,7 @@ func (p *MDLParser) MemberAttributeName() (localctx IMemberAttributeNameContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3225) + p.SetState(3258) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -44621,7 +44978,7 @@ func (p *MDLParser) MemberAttributeName() (localctx IMemberAttributeNameContext) case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3226) + p.SetState(3259) p.CommonNameKeyword() } @@ -44767,10 +45124,10 @@ func (p *MDLParser) ChangeList() (localctx IChangeListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3229) + p.SetState(3262) p.ChangeItem() } - p.SetState(3234) + p.SetState(3267) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44779,7 +45136,7 @@ func (p *MDLParser) ChangeList() (localctx IChangeListContext) { for _la == MDLParserCOMMA { { - p.SetState(3230) + p.SetState(3263) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -44787,11 +45144,11 @@ func (p *MDLParser) ChangeList() (localctx IChangeListContext) { } } { - p.SetState(3231) + p.SetState(3264) p.ChangeItem() } - p.SetState(3236) + p.SetState(3269) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44909,7 +45266,7 @@ func (p *MDLParser) ChangeItem() (localctx IChangeItemContext) { p.EnterRule(localctx, 334, MDLParserRULE_changeItem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3237) + p.SetState(3270) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -44917,7 +45274,7 @@ func (p *MDLParser) ChangeItem() (localctx IChangeItemContext) { } } { - p.SetState(3238) + p.SetState(3271) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -44925,7 +45282,7 @@ func (p *MDLParser) ChangeItem() (localctx IChangeItemContext) { } } { - p.SetState(3239) + p.SetState(3272) p.Expression() } @@ -45078,7 +45435,7 @@ func (p *MDLParser) CreatePageStatement() (localctx ICreatePageStatementContext) p.EnterRule(localctx, 336, MDLParserRULE_createPageStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(3241) + p.SetState(3274) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -45086,15 +45443,15 @@ func (p *MDLParser) CreatePageStatement() (localctx ICreatePageStatementContext) } } { - p.SetState(3242) + p.SetState(3275) p.QualifiedName() } { - p.SetState(3243) + p.SetState(3276) p.PageHeaderV3() } { - p.SetState(3244) + p.SetState(3277) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -45102,11 +45459,11 @@ func (p *MDLParser) CreatePageStatement() (localctx ICreatePageStatementContext) } } { - p.SetState(3245) + p.SetState(3278) p.PageBodyV3() } { - p.SetState(3246) + p.SetState(3279) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -45282,7 +45639,7 @@ func (p *MDLParser) CreateSnippetStatement() (localctx ICreateSnippetStatementCo p.EnterOuterAlt(localctx, 1) { - p.SetState(3248) + p.SetState(3281) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -45290,10 +45647,10 @@ func (p *MDLParser) CreateSnippetStatement() (localctx ICreateSnippetStatementCo } } { - p.SetState(3249) + p.SetState(3282) p.QualifiedName() } - p.SetState(3251) + p.SetState(3284) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45302,12 +45659,12 @@ func (p *MDLParser) CreateSnippetStatement() (localctx ICreateSnippetStatementCo if _la == MDLParserLPAREN { { - p.SetState(3250) + p.SetState(3283) p.SnippetHeaderV3() } } - p.SetState(3254) + p.SetState(3287) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45316,13 +45673,13 @@ func (p *MDLParser) CreateSnippetStatement() (localctx ICreateSnippetStatementCo if _la == MDLParserFOLDER { { - p.SetState(3253) + p.SetState(3286) p.SnippetOptions() } } { - p.SetState(3256) + p.SetState(3289) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -45330,11 +45687,11 @@ func (p *MDLParser) CreateSnippetStatement() (localctx ICreateSnippetStatementCo } } { - p.SetState(3257) + p.SetState(3290) p.PageBodyV3() } { - p.SetState(3258) + p.SetState(3291) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -45469,7 +45826,7 @@ func (p *MDLParser) SnippetOptions() (localctx ISnippetOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3261) + p.SetState(3294) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45478,11 +45835,11 @@ func (p *MDLParser) SnippetOptions() (localctx ISnippetOptionsContext) { for ok := true; ok; ok = _la == MDLParserFOLDER { { - p.SetState(3260) + p.SetState(3293) p.SnippetOption() } - p.SetState(3263) + p.SetState(3296) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45583,7 +45940,7 @@ func (p *MDLParser) SnippetOption() (localctx ISnippetOptionContext) { p.EnterRule(localctx, 342, MDLParserRULE_snippetOption) p.EnterOuterAlt(localctx, 1) { - p.SetState(3265) + p.SetState(3298) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -45591,7 +45948,7 @@ func (p *MDLParser) SnippetOption() (localctx ISnippetOptionContext) { } } { - p.SetState(3266) + p.SetState(3299) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -45737,10 +46094,10 @@ func (p *MDLParser) PageParameterList() (localctx IPageParameterListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3268) + p.SetState(3301) p.PageParameter() } - p.SetState(3273) + p.SetState(3306) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45749,7 +46106,7 @@ func (p *MDLParser) PageParameterList() (localctx IPageParameterListContext) { for _la == MDLParserCOMMA { { - p.SetState(3269) + p.SetState(3302) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -45757,11 +46114,11 @@ func (p *MDLParser) PageParameterList() (localctx IPageParameterListContext) { } } { - p.SetState(3270) + p.SetState(3303) p.PageParameter() } - p.SetState(3275) + p.SetState(3308) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45886,7 +46243,7 @@ func (p *MDLParser) PageParameter() (localctx IPageParameterContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3276) + p.SetState(3309) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserVARIABLE || _la == MDLParserIDENTIFIER) { @@ -45897,7 +46254,7 @@ func (p *MDLParser) PageParameter() (localctx IPageParameterContext) { } } { - p.SetState(3277) + p.SetState(3310) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -45905,7 +46262,7 @@ func (p *MDLParser) PageParameter() (localctx IPageParameterContext) { } } { - p.SetState(3278) + p.SetState(3311) p.DataType() } @@ -46047,10 +46404,10 @@ func (p *MDLParser) SnippetParameterList() (localctx ISnippetParameterListContex p.EnterOuterAlt(localctx, 1) { - p.SetState(3280) + p.SetState(3313) p.SnippetParameter() } - p.SetState(3285) + p.SetState(3318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46059,7 +46416,7 @@ func (p *MDLParser) SnippetParameterList() (localctx ISnippetParameterListContex for _la == MDLParserCOMMA { { - p.SetState(3281) + p.SetState(3314) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -46067,11 +46424,11 @@ func (p *MDLParser) SnippetParameterList() (localctx ISnippetParameterListContex } } { - p.SetState(3282) + p.SetState(3315) p.SnippetParameter() } - p.SetState(3287) + p.SetState(3320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46196,7 +46553,7 @@ func (p *MDLParser) SnippetParameter() (localctx ISnippetParameterContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3288) + p.SetState(3321) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserVARIABLE || _la == MDLParserIDENTIFIER) { @@ -46207,7 +46564,7 @@ func (p *MDLParser) SnippetParameter() (localctx ISnippetParameterContext) { } } { - p.SetState(3289) + p.SetState(3322) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -46215,7 +46572,7 @@ func (p *MDLParser) SnippetParameter() (localctx ISnippetParameterContext) { } } { - p.SetState(3290) + p.SetState(3323) p.DataType() } @@ -46357,10 +46714,10 @@ func (p *MDLParser) VariableDeclarationList() (localctx IVariableDeclarationList p.EnterOuterAlt(localctx, 1) { - p.SetState(3292) + p.SetState(3325) p.VariableDeclaration() } - p.SetState(3297) + p.SetState(3330) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46369,7 +46726,7 @@ func (p *MDLParser) VariableDeclarationList() (localctx IVariableDeclarationList for _la == MDLParserCOMMA { { - p.SetState(3293) + p.SetState(3326) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -46377,11 +46734,11 @@ func (p *MDLParser) VariableDeclarationList() (localctx IVariableDeclarationList } } { - p.SetState(3294) + p.SetState(3327) p.VariableDeclaration() } - p.SetState(3299) + p.SetState(3332) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46509,7 +46866,7 @@ func (p *MDLParser) VariableDeclaration() (localctx IVariableDeclarationContext) p.EnterRule(localctx, 354, MDLParserRULE_variableDeclaration) p.EnterOuterAlt(localctx, 1) { - p.SetState(3300) + p.SetState(3333) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -46517,7 +46874,7 @@ func (p *MDLParser) VariableDeclaration() (localctx IVariableDeclarationContext) } } { - p.SetState(3301) + p.SetState(3334) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -46525,11 +46882,11 @@ func (p *MDLParser) VariableDeclaration() (localctx IVariableDeclarationContext) } } { - p.SetState(3302) + p.SetState(3335) p.DataType() } { - p.SetState(3303) + p.SetState(3336) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -46537,7 +46894,7 @@ func (p *MDLParser) VariableDeclaration() (localctx IVariableDeclarationContext) } } { - p.SetState(3304) + p.SetState(3337) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -46661,22 +47018,22 @@ func (p *MDLParser) SortColumn() (localctx ISortColumnContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3308) + p.SetState(3341) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 329, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 334, p.GetParserRuleContext()) { case 1: { - p.SetState(3306) + p.SetState(3339) p.QualifiedName() } case 2: { - p.SetState(3307) + p.SetState(3340) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -46687,7 +47044,7 @@ func (p *MDLParser) SortColumn() (localctx ISortColumnContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(3311) + p.SetState(3344) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46696,7 +47053,7 @@ func (p *MDLParser) SortColumn() (localctx ISortColumnContext) { if _la == MDLParserASC || _la == MDLParserDESC { { - p.SetState(3310) + p.SetState(3343) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserASC || _la == MDLParserDESC) { @@ -46819,7 +47176,7 @@ func (p *MDLParser) XpathConstraint() (localctx IXpathConstraintContext) { p.EnterRule(localctx, 358, MDLParserRULE_xpathConstraint) p.EnterOuterAlt(localctx, 1) { - p.SetState(3313) + p.SetState(3346) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -46827,11 +47184,11 @@ func (p *MDLParser) XpathConstraint() (localctx IXpathConstraintContext) { } } { - p.SetState(3314) + p.SetState(3347) p.XpathExpr() } { - p.SetState(3315) + p.SetState(3348) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -46934,7 +47291,7 @@ func (p *MDLParser) AndOrXpath() (localctx IAndOrXpathContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3317) + p.SetState(3350) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserAND || _la == MDLParserOR) { @@ -47083,10 +47440,10 @@ func (p *MDLParser) XpathExpr() (localctx IXpathExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3319) + p.SetState(3352) p.XpathAndExpr() } - p.SetState(3324) + p.SetState(3357) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47095,7 +47452,7 @@ func (p *MDLParser) XpathExpr() (localctx IXpathExprContext) { for _la == MDLParserOR { { - p.SetState(3320) + p.SetState(3353) p.Match(MDLParserOR) if p.HasError() { // Recognition error - abort rule @@ -47103,11 +47460,11 @@ func (p *MDLParser) XpathExpr() (localctx IXpathExprContext) { } } { - p.SetState(3321) + p.SetState(3354) p.XpathAndExpr() } - p.SetState(3326) + p.SetState(3359) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47253,10 +47610,10 @@ func (p *MDLParser) XpathAndExpr() (localctx IXpathAndExprContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3327) + p.SetState(3360) p.XpathNotExpr() } - p.SetState(3332) + p.SetState(3365) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47265,7 +47622,7 @@ func (p *MDLParser) XpathAndExpr() (localctx IXpathAndExprContext) { for _la == MDLParserAND { { - p.SetState(3328) + p.SetState(3361) p.Match(MDLParserAND) if p.HasError() { // Recognition error - abort rule @@ -47273,11 +47630,11 @@ func (p *MDLParser) XpathAndExpr() (localctx IXpathAndExprContext) { } } { - p.SetState(3329) + p.SetState(3362) p.XpathNotExpr() } - p.SetState(3334) + p.SetState(3367) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47405,17 +47762,17 @@ func (s *XpathNotExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) XpathNotExpr() (localctx IXpathNotExprContext) { localctx = NewXpathNotExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 366, MDLParserRULE_xpathNotExpr) - p.SetState(3338) + p.SetState(3371) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 333, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 338, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3335) + p.SetState(3368) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -47423,14 +47780,14 @@ func (p *MDLParser) XpathNotExpr() (localctx IXpathNotExprContext) { } } { - p.SetState(3336) + p.SetState(3369) p.XpathNotExpr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3337) + p.SetState(3370) p.XpathComparisonExpr() } @@ -47583,23 +47940,23 @@ func (p *MDLParser) XpathComparisonExpr() (localctx IXpathComparisonExprContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3340) + p.SetState(3373) p.XpathValueExpr() } - p.SetState(3344) + p.SetState(3377) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if (int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&63) != 0 { + if (int64((_la-491)) & ^0x3f) == 0 && ((int64(1)<<(_la-491))&63) != 0 { { - p.SetState(3341) + p.SetState(3374) p.ComparisonOperator() } { - p.SetState(3342) + p.SetState(3375) p.XpathValueExpr() } @@ -47747,31 +48104,31 @@ func (s *XpathValueExprContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) XpathValueExpr() (localctx IXpathValueExprContext) { localctx = NewXpathValueExprContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 370, MDLParserRULE_xpathValueExpr) - p.SetState(3352) + p.SetState(3385) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 335, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 340, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3346) + p.SetState(3379) p.XpathFunctionCall() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3347) + p.SetState(3380) p.XpathPath() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3348) + p.SetState(3381) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -47779,11 +48136,11 @@ func (p *MDLParser) XpathValueExpr() (localctx IXpathValueExprContext) { } } { - p.SetState(3349) + p.SetState(3382) p.XpathExpr() } { - p.SetState(3350) + p.SetState(3383) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -47933,10 +48290,10 @@ func (p *MDLParser) XpathPath() (localctx IXpathPathContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3354) + p.SetState(3387) p.XpathStep() } - p.SetState(3359) + p.SetState(3392) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47945,7 +48302,7 @@ func (p *MDLParser) XpathPath() (localctx IXpathPathContext) { for _la == MDLParserSLASH { { - p.SetState(3355) + p.SetState(3388) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -47953,11 +48310,11 @@ func (p *MDLParser) XpathPath() (localctx IXpathPathContext) { } } { - p.SetState(3356) + p.SetState(3389) p.XpathStep() } - p.SetState(3361) + p.SetState(3394) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48094,10 +48451,10 @@ func (p *MDLParser) XpathStep() (localctx IXpathStepContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3362) + p.SetState(3395) p.XpathStepValue() } - p.SetState(3367) + p.SetState(3400) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48106,7 +48463,7 @@ func (p *MDLParser) XpathStep() (localctx IXpathStepContext) { if _la == MDLParserLBRACKET { { - p.SetState(3363) + p.SetState(3396) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -48114,11 +48471,11 @@ func (p *MDLParser) XpathStep() (localctx IXpathStepContext) { } } { - p.SetState(3364) + p.SetState(3397) p.XpathExpr() } { - p.SetState(3365) + p.SetState(3398) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -48246,24 +48603,24 @@ func (s *XpathStepValueContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) XpathStepValue() (localctx IXpathStepValueContext) { localctx = NewXpathStepValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 376, MDLParserRULE_xpathStepValue) - p.SetState(3374) + p.SetState(3407) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserWS, MDLParserDOC_COMMENT, MDLParserBLOCK_COMMENT, MDLParserLINE_COMMENT, MDLParserIS_NOT_NULL, MDLParserIS_NULL, MDLParserNOT_NULL, MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserSORT_BY, MDLParserNON_PERSISTENT, MDLParserREFERENCE_SET, MDLParserLIST_OF, MDLParserDELETE_AND_REFERENCES, MDLParserDELETE_BUT_KEEP_REFERENCES, MDLParserDELETE_IF_NO_REFERENCES, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserMODIFY, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserNANOFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserNOTEBOOK, MDLParserCONSTANT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserGENERALIZATION, MDLParserEXTENDS, MDLParserADD, MDLParserSET, MDLParserPOSITION, MDLParserDOCUMENTATION, MDLParserSTORAGE, MDLParserTABLE, MDLParserDELETE_BEHAVIOR, MDLParserCASCADE, MDLParserPREVENT, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserRUNTIME, MDLParserBRANCH, MDLParserTOKEN, MDLParserHOST, MDLParserPORT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserINTROSPECT, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserRETURNS, MDLParserRETURNING, MDLParserCASE, MDLParserWHEN, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserFULL, MDLParserCROSS, MDLParserON, MDLParserASC, MDLParserDESC, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserROLLBACK, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserELSEIF, MDLParserCONTINUE, MDLParserBREAK, MDLParserRETURN, MDLParserTHROW, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserJAVASCRIPT, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserNODE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserREMOVE, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserTRACE, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserPLACEHOLDER, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserCONTAINER, MDLParserROW, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserSTATICTEXT, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserDROPDOWN, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserREFERENCESELECTOR, MDLParserINPUTREFERENCESETSELECTOR, MDLParserFILEINPUT, MDLParserIMAGEINPUT, MDLParserCUSTOMWIDGET, MDLParserTEXTFILTER, MDLParserNUMBERFILTER, MDLParserDROPDOWNFILTER, MDLParserDATEFILTER, MDLParserFILTER, MDLParserWIDGET, MDLParserWIDGETS, MDLParserCAPTION, MDLParserICON, MDLParserTOOLTIP, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserRENDERMODE, MDLParserBINDS, MDLParserATTR, MDLParserCONTENTPARAMS, MDLParserCAPTIONPARAMS, MDLParserPARAMS, MDLParserVARIABLES_KW, MDLParserDESKTOPWIDTH, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserAUTOFILL, MDLParserURL, MDLParserFOLDER, MDLParserPASSING, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserREADONLY, MDLParserATTRIBUTES, MDLParserFILTERTYPE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserSAVECHANGES, MDLParserSAVE_CHANGES, MDLParserCANCEL_CHANGES, MDLParserCLOSE_PAGE, MDLParserSHOW_PAGE, MDLParserDELETE_ACTION, MDLParserDELETE_OBJECT, MDLParserCREATE_OBJECT, MDLParserCALL_MICROFLOW, MDLParserCALL_NANOFLOW, MDLParserOPEN_LINK, MDLParserSIGN_OUT, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserWARNING_STYLE, MDLParserINFO_STYLE, MDLParserTEMPLATE, MDLParserONCLICK, MDLParserONCHANGE, MDLParserTABINDEX, MDLParserH1, MDLParserH2, MDLParserH3, MDLParserH4, MDLParserH5, MDLParserH6, MDLParserPARAGRAPH, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserHASHEDSTRING_TYPE, MDLParserCURRENCY_TYPE, MDLParserFLOAT_TYPE, MDLParserSTRINGTEMPLATE_TYPE, MDLParserENUM_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCOALESCE, MDLParserCAST, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserMATCH, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRAISE, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserXPATH, MDLParserCONSTRAINT, MDLParserCALCULATED, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserGET, MDLParserPOST, MDLParserPUT, MDLParserPATCH, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserEXPOSED, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserCONNECTIONS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserLANGUAGES, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserRULES, MDLParserTEXT, MDLParserSARIF, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCOMMENT, MDLParserCUSTOM_NAME_MAP, MDLParserCATALOG, MDLParserFORCE, MDLParserBACKGROUND, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserVALUES, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserATTRIBUTE_NAME, MDLParserFORMAT, MDLParserSQL, MDLParserWITHOUT, MDLParserDRY, MDLParserRUN, MDLParserWIDGETTYPE, MDLParserV3, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserFEATURES, MDLParserADDED, MDLParserSINCE, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserANNOTATION, MDLParserBOUNDARY, MDLParserINTERRUPTING, MDLParserNON, MDLParserMULTI, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserDISPLAY, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserSTAR, MDLParserPERCENT, MDLParserMOD, MDLParserDIV, MDLParserLBRACE, MDLParserRBRACE, MDLParserCOLON, MDLParserAT, MDLParserPIPE, MDLParserDOUBLE_COLON, MDLParserARROW, MDLParserQUESTION, MDLParserHASH, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: + case MDLParserWS, MDLParserDOC_COMMENT, MDLParserBLOCK_COMMENT, MDLParserLINE_COMMENT, MDLParserIS_NOT_NULL, MDLParserIS_NULL, MDLParserNOT_NULL, MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserSORT_BY, MDLParserNON_PERSISTENT, MDLParserREFERENCE_SET, MDLParserLIST_OF, MDLParserDELETE_AND_REFERENCES, MDLParserDELETE_BUT_KEEP_REFERENCES, MDLParserDELETE_IF_NO_REFERENCES, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserMODIFY, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserNANOFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserNOTEBOOK, MDLParserCONSTANT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserGENERALIZATION, MDLParserEXTENDS, MDLParserADD, MDLParserSET, MDLParserPOSITION, MDLParserDOCUMENTATION, MDLParserSTORAGE, MDLParserTABLE, MDLParserDELETE_BEHAVIOR, MDLParserCASCADE, MDLParserPREVENT, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserRUNTIME, MDLParserBRANCH, MDLParserTOKEN, MDLParserHOST, MDLParserPORT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserINTROSPECT, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserRETURNS, MDLParserRETURNING, MDLParserCASE, MDLParserWHEN, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserFULL, MDLParserCROSS, MDLParserON, MDLParserASC, MDLParserDESC, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserROLLBACK, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserELSEIF, MDLParserCONTINUE, MDLParserBREAK, MDLParserRETURN, MDLParserTHROW, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserJAVASCRIPT, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserNODE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserREMOVE, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserTRACE, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserPLACEHOLDER, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserCONTAINER, MDLParserROW, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserSTATICTEXT, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserDROPDOWN, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserREFERENCESELECTOR, MDLParserINPUTREFERENCESETSELECTOR, MDLParserFILEINPUT, MDLParserIMAGEINPUT, MDLParserCUSTOMWIDGET, MDLParserPLUGGABLEWIDGET, MDLParserTEXTFILTER, MDLParserNUMBERFILTER, MDLParserDROPDOWNFILTER, MDLParserDATEFILTER, MDLParserDROPDOWNSORT, MDLParserFILTER, MDLParserWIDGET, MDLParserWIDGETS, MDLParserCAPTION, MDLParserICON, MDLParserTOOLTIP, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserRENDERMODE, MDLParserBINDS, MDLParserATTR, MDLParserCONTENTPARAMS, MDLParserCAPTIONPARAMS, MDLParserPARAMS, MDLParserVARIABLES_KW, MDLParserDESKTOPWIDTH, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserAUTOFILL, MDLParserURL, MDLParserFOLDER, MDLParserPASSING, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserREADONLY, MDLParserATTRIBUTES, MDLParserFILTERTYPE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserSAVECHANGES, MDLParserSAVE_CHANGES, MDLParserCANCEL_CHANGES, MDLParserCLOSE_PAGE, MDLParserSHOW_PAGE, MDLParserDELETE_ACTION, MDLParserDELETE_OBJECT, MDLParserCREATE_OBJECT, MDLParserCALL_MICROFLOW, MDLParserCALL_NANOFLOW, MDLParserOPEN_LINK, MDLParserSIGN_OUT, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserWARNING_STYLE, MDLParserINFO_STYLE, MDLParserTEMPLATE, MDLParserONCLICK, MDLParserONCHANGE, MDLParserTABINDEX, MDLParserH1, MDLParserH2, MDLParserH3, MDLParserH4, MDLParserH5, MDLParserH6, MDLParserPARAGRAPH, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserHASHEDSTRING_TYPE, MDLParserCURRENCY_TYPE, MDLParserFLOAT_TYPE, MDLParserSTRINGTEMPLATE_TYPE, MDLParserENUM_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCOALESCE, MDLParserCAST, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserMATCH, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRAISE, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserXPATH, MDLParserCONSTRAINT, MDLParserCALCULATED, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserGET, MDLParserPOST, MDLParserPUT, MDLParserPATCH, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserEXPOSED, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserCONNECTIONS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserLANGUAGES, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserRULES, MDLParserTEXT, MDLParserSARIF, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCOMMENT, MDLParserCUSTOM_NAME_MAP, MDLParserCATALOG, MDLParserFORCE, MDLParserBACKGROUND, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserVALUES, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserATTRIBUTE_NAME, MDLParserFORMAT, MDLParserSQL, MDLParserWITHOUT, MDLParserDRY, MDLParserRUN, MDLParserWIDGETTYPE, MDLParserV3, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserFEATURES, MDLParserADDED, MDLParserSINCE, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserANNOTATION, MDLParserBOUNDARY, MDLParserINTERRUPTING, MDLParserNON, MDLParserMULTI, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserDISPLAY, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserSTAR, MDLParserPERCENT, MDLParserMOD, MDLParserDIV, MDLParserLBRACE, MDLParserRBRACE, MDLParserCOLON, MDLParserAT, MDLParserPIPE, MDLParserDOUBLE_COLON, MDLParserARROW, MDLParserQUESTION, MDLParserHASH, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(3369) + p.SetState(3402) p.XpathQualifiedName() } case MDLParserVARIABLE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3370) + p.SetState(3403) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -48274,7 +48631,7 @@ func (p *MDLParser) XpathStepValue() (localctx IXpathStepValueContext) { case MDLParserSTRING_LITERAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(3371) + p.SetState(3404) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -48285,7 +48642,7 @@ func (p *MDLParser) XpathStepValue() (localctx IXpathStepValueContext) { case MDLParserNUMBER_LITERAL: p.EnterOuterAlt(localctx, 4) { - p.SetState(3372) + p.SetState(3405) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -48296,7 +48653,7 @@ func (p *MDLParser) XpathStepValue() (localctx IXpathStepValueContext) { case MDLParserMENDIX_TOKEN: p.EnterOuterAlt(localctx, 5) { - p.SetState(3373) + p.SetState(3406) p.Match(MDLParserMENDIX_TOKEN) if p.HasError() { // Recognition error - abort rule @@ -48447,10 +48804,10 @@ func (p *MDLParser) XpathQualifiedName() (localctx IXpathQualifiedNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3376) + p.SetState(3409) p.XpathWord() } - p.SetState(3381) + p.SetState(3414) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48459,7 +48816,7 @@ func (p *MDLParser) XpathQualifiedName() (localctx IXpathQualifiedNameContext) { for _la == MDLParserDOT { { - p.SetState(3377) + p.SetState(3410) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -48467,11 +48824,11 @@ func (p *MDLParser) XpathQualifiedName() (localctx IXpathQualifiedNameContext) { } } { - p.SetState(3378) + p.SetState(3411) p.XpathWord() } - p.SetState(3383) + p.SetState(3416) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48674,10 +49031,10 @@ func (p *MDLParser) XpathWord() (localctx IXpathWordContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3384) + p.SetState(3417) _la = p.GetTokenStream().LA(1) - if _la <= 0 || ((int64((_la-285)) & ^0x3f) == 0 && ((int64(1)<<(_la-285))&7) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&16646398527) != 0) { + if _la <= 0 || ((int64((_la-289)) & ^0x3f) == 0 && ((int64(1)<<(_la-289))&7) != 0) || ((int64((_la-491)) & ^0x3f) == 0 && ((int64(1)<<(_la-491))&16646398527) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -48850,30 +49207,30 @@ func (p *MDLParser) XpathFunctionCall() (localctx IXpathFunctionCallContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3386) + p.SetState(3419) p.XpathFunctionName() } { - p.SetState(3387) + p.SetState(3420) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3396) + p.SetState(3429) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-2) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&-1) != 0) || ((int64((_la-192)) & ^0x3f) == 0 && ((int64(1)<<(_la-192))&-1) != 0) || ((int64((_la-256)) & ^0x3f) == 0 && ((int64(1)<<(_la-256))&-1610612737) != 0) || ((int64((_la-320)) & ^0x3f) == 0 && ((int64(1)<<(_la-320))&-1) != 0) || ((int64((_la-384)) & ^0x3f) == 0 && ((int64(1)<<(_la-384))&-1) != 0) || ((int64((_la-448)) & ^0x3f) == 0 && ((int64(1)<<(_la-448))&-1833281157932777473) != 0) || ((int64((_la-512)) & ^0x3f) == 0 && ((int64(1)<<(_la-512))&4031) != 0) { + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-2) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&-1) != 0) || ((int64((_la-192)) & ^0x3f) == 0 && ((int64(1)<<(_la-192))&-1) != 0) || ((int64((_la-256)) & ^0x3f) == 0 && ((int64(1)<<(_la-256))&-25769803777) != 0) || ((int64((_la-320)) & ^0x3f) == 0 && ((int64(1)<<(_la-320))&-1) != 0) || ((int64((_la-384)) & ^0x3f) == 0 && ((int64(1)<<(_la-384))&-1) != 0) || ((int64((_la-448)) & ^0x3f) == 0 && ((int64(1)<<(_la-448))&7560989620494663679) != 0) || ((int64((_la-513)) & ^0x3f) == 0 && ((int64(1)<<(_la-513))&32255) != 0) { { - p.SetState(3388) + p.SetState(3421) p.XpathExpr() } - p.SetState(3393) + p.SetState(3426) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48882,7 +49239,7 @@ func (p *MDLParser) XpathFunctionCall() (localctx IXpathFunctionCallContext) { for _la == MDLParserCOMMA { { - p.SetState(3389) + p.SetState(3422) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -48890,11 +49247,11 @@ func (p *MDLParser) XpathFunctionCall() (localctx IXpathFunctionCallContext) { } } { - p.SetState(3390) + p.SetState(3423) p.XpathExpr() } - p.SetState(3395) + p.SetState(3428) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48904,7 +49261,7 @@ func (p *MDLParser) XpathFunctionCall() (localctx IXpathFunctionCallContext) { } { - p.SetState(3398) + p.SetState(3431) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -49027,10 +49384,10 @@ func (p *MDLParser) XpathFunctionName() (localctx IXpathFunctionNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3400) + p.SetState(3433) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserCONTAINS || ((int64((_la-287)) & ^0x3f) == 0 && ((int64(1)<<(_la-287))&1537) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserHYPHENATED_ID) { + if !(_la == MDLParserCONTAINS || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&1537) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserHYPHENATED_ID) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -49186,7 +49543,7 @@ func (p *MDLParser) PageHeaderV3() (localctx IPageHeaderV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3402) + p.SetState(3435) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -49194,10 +49551,10 @@ func (p *MDLParser) PageHeaderV3() (localctx IPageHeaderV3Context) { } } { - p.SetState(3403) + p.SetState(3436) p.PageHeaderPropertyV3() } - p.SetState(3408) + p.SetState(3441) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49206,7 +49563,7 @@ func (p *MDLParser) PageHeaderV3() (localctx IPageHeaderV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3404) + p.SetState(3437) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -49214,11 +49571,11 @@ func (p *MDLParser) PageHeaderV3() (localctx IPageHeaderV3Context) { } } { - p.SetState(3405) + p.SetState(3438) p.PageHeaderPropertyV3() } - p.SetState(3410) + p.SetState(3443) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49226,7 +49583,7 @@ func (p *MDLParser) PageHeaderV3() (localctx IPageHeaderV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3411) + p.SetState(3444) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -49416,7 +49773,7 @@ func (s *PageHeaderPropertyV3Context) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Context) { localctx = NewPageHeaderPropertyV3Context(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 388, MDLParserRULE_pageHeaderPropertyV3) - p.SetState(3440) + p.SetState(3473) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49426,7 +49783,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserPARAMS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3413) + p.SetState(3446) p.Match(MDLParserPARAMS) if p.HasError() { // Recognition error - abort rule @@ -49434,7 +49791,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3414) + p.SetState(3447) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -49442,7 +49799,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3415) + p.SetState(3448) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -49450,11 +49807,11 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3416) + p.SetState(3449) p.PageParameterList() } { - p.SetState(3417) + p.SetState(3450) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -49465,7 +49822,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserVARIABLES_KW: p.EnterOuterAlt(localctx, 2) { - p.SetState(3419) + p.SetState(3452) p.Match(MDLParserVARIABLES_KW) if p.HasError() { // Recognition error - abort rule @@ -49473,7 +49830,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3420) + p.SetState(3453) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -49481,7 +49838,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3421) + p.SetState(3454) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -49489,11 +49846,11 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3422) + p.SetState(3455) p.VariableDeclarationList() } { - p.SetState(3423) + p.SetState(3456) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -49504,7 +49861,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserTITLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3425) + p.SetState(3458) p.Match(MDLParserTITLE) if p.HasError() { // Recognition error - abort rule @@ -49512,7 +49869,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3426) + p.SetState(3459) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -49520,7 +49877,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3427) + p.SetState(3460) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -49531,7 +49888,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserLAYOUT: p.EnterOuterAlt(localctx, 4) { - p.SetState(3428) + p.SetState(3461) p.Match(MDLParserLAYOUT) if p.HasError() { // Recognition error - abort rule @@ -49539,29 +49896,29 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3429) + p.SetState(3462) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3432) + p.SetState(3465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: { - p.SetState(3430) + p.SetState(3463) p.QualifiedName() } case MDLParserSTRING_LITERAL: { - p.SetState(3431) + p.SetState(3464) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -49577,7 +49934,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserURL: p.EnterOuterAlt(localctx, 5) { - p.SetState(3434) + p.SetState(3467) p.Match(MDLParserURL) if p.HasError() { // Recognition error - abort rule @@ -49585,7 +49942,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3435) + p.SetState(3468) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -49593,7 +49950,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3436) + p.SetState(3469) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -49604,7 +49961,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex case MDLParserFOLDER: p.EnterOuterAlt(localctx, 6) { - p.SetState(3437) + p.SetState(3470) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -49612,7 +49969,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3438) + p.SetState(3471) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -49620,7 +49977,7 @@ func (p *MDLParser) PageHeaderPropertyV3() (localctx IPageHeaderPropertyV3Contex } } { - p.SetState(3439) + p.SetState(3472) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -49781,7 +50138,7 @@ func (p *MDLParser) SnippetHeaderV3() (localctx ISnippetHeaderV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3442) + p.SetState(3475) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -49789,10 +50146,10 @@ func (p *MDLParser) SnippetHeaderV3() (localctx ISnippetHeaderV3Context) { } } { - p.SetState(3443) + p.SetState(3476) p.SnippetHeaderPropertyV3() } - p.SetState(3448) + p.SetState(3481) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49801,7 +50158,7 @@ func (p *MDLParser) SnippetHeaderV3() (localctx ISnippetHeaderV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3444) + p.SetState(3477) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -49809,11 +50166,11 @@ func (p *MDLParser) SnippetHeaderV3() (localctx ISnippetHeaderV3Context) { } } { - p.SetState(3445) + p.SetState(3478) p.SnippetHeaderPropertyV3() } - p.SetState(3450) + p.SetState(3483) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49821,7 +50178,7 @@ func (p *MDLParser) SnippetHeaderV3() (localctx ISnippetHeaderV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3451) + p.SetState(3484) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -49979,7 +50336,7 @@ func (s *SnippetHeaderPropertyV3Context) ExitRule(listener antlr.ParseTreeListen func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3Context) { localctx = NewSnippetHeaderPropertyV3Context(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 392, MDLParserRULE_snippetHeaderPropertyV3) - p.SetState(3468) + p.SetState(3501) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49989,7 +50346,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 case MDLParserPARAMS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3453) + p.SetState(3486) p.Match(MDLParserPARAMS) if p.HasError() { // Recognition error - abort rule @@ -49997,7 +50354,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3454) + p.SetState(3487) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -50005,7 +50362,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3455) + p.SetState(3488) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -50013,11 +50370,11 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3456) + p.SetState(3489) p.SnippetParameterList() } { - p.SetState(3457) + p.SetState(3490) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -50028,7 +50385,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 case MDLParserVARIABLES_KW: p.EnterOuterAlt(localctx, 2) { - p.SetState(3459) + p.SetState(3492) p.Match(MDLParserVARIABLES_KW) if p.HasError() { // Recognition error - abort rule @@ -50036,7 +50393,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3460) + p.SetState(3493) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -50044,7 +50401,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3461) + p.SetState(3494) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -50052,11 +50409,11 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3462) + p.SetState(3495) p.VariableDeclarationList() } { - p.SetState(3463) + p.SetState(3496) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -50067,7 +50424,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 case MDLParserFOLDER: p.EnterOuterAlt(localctx, 3) { - p.SetState(3465) + p.SetState(3498) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -50075,7 +50432,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3466) + p.SetState(3499) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -50083,7 +50440,7 @@ func (p *MDLParser) SnippetHeaderPropertyV3() (localctx ISnippetHeaderPropertyV3 } } { - p.SetState(3467) + p.SetState(3500) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -50266,30 +50623,30 @@ func (p *MDLParser) PageBodyV3() (localctx IPageBodyV3Context) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3474) + p.SetState(3507) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserCOLUMN || _la == MDLParserUSE || ((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&211377350996991) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&33554493) != 0) { - p.SetState(3472) + for _la == MDLParserCOLUMN || _la == MDLParserUSE || ((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&845520682316799) != 0) || ((int64((_la-228)) & ^0x3f) == 0 && ((int64(1)<<(_la-228))&134217981) != 0) { + p.SetState(3505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserCOLUMN, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserCONTAINER, MDLParserROW, MDLParserITEM, MDLParserCONTROLBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserSTATICTEXT, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserDROPDOWN, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserREFERENCESELECTOR, MDLParserCUSTOMWIDGET, MDLParserTEXTFILTER, MDLParserNUMBERFILTER, MDLParserDROPDOWNFILTER, MDLParserDATEFILTER, MDLParserFILTER, MDLParserFOOTER, MDLParserHEADER, MDLParserIMAGE, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserTEMPLATE: + case MDLParserCOLUMN, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserCONTAINER, MDLParserROW, MDLParserITEM, MDLParserCONTROLBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserSTATICTEXT, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserDROPDOWN, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserREFERENCESELECTOR, MDLParserCUSTOMWIDGET, MDLParserPLUGGABLEWIDGET, MDLParserTEXTFILTER, MDLParserNUMBERFILTER, MDLParserDROPDOWNFILTER, MDLParserDATEFILTER, MDLParserDROPDOWNSORT, MDLParserFILTER, MDLParserFOOTER, MDLParserHEADER, MDLParserIMAGE, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserTEMPLATE: { - p.SetState(3470) + p.SetState(3503) p.WidgetV3() } case MDLParserUSE: { - p.SetState(3471) + p.SetState(3504) p.UseFragmentRef() } @@ -50298,7 +50655,7 @@ func (p *MDLParser) PageBodyV3() (localctx IPageBodyV3Context) { goto errorExit } - p.SetState(3476) + p.SetState(3509) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50449,7 +50806,7 @@ func (p *MDLParser) UseFragmentRef() (localctx IUseFragmentRefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3477) + p.SetState(3510) p.Match(MDLParserUSE) if p.HasError() { // Recognition error - abort rule @@ -50457,7 +50814,7 @@ func (p *MDLParser) UseFragmentRef() (localctx IUseFragmentRefContext) { } } { - p.SetState(3478) + p.SetState(3511) p.Match(MDLParserFRAGMENT) if p.HasError() { // Recognition error - abort rule @@ -50465,10 +50822,10 @@ func (p *MDLParser) UseFragmentRef() (localctx IUseFragmentRefContext) { } } { - p.SetState(3479) + p.SetState(3512) p.IdentifierOrKeyword() } - p.SetState(3482) + p.SetState(3515) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50477,7 +50834,7 @@ func (p *MDLParser) UseFragmentRef() (localctx IUseFragmentRefContext) { if _la == MDLParserAS { { - p.SetState(3480) + p.SetState(3513) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -50485,7 +50842,7 @@ func (p *MDLParser) UseFragmentRef() (localctx IUseFragmentRefContext) { } } { - p.SetState(3481) + p.SetState(3514) p.IdentifierOrKeyword() } @@ -50516,6 +50873,9 @@ type IWidgetV3Context interface { IDENTIFIER() antlr.TerminalNode WidgetPropertiesV3() IWidgetPropertiesV3Context WidgetBodyV3() IWidgetBodyV3Context + PLUGGABLEWIDGET() antlr.TerminalNode + STRING_LITERAL() antlr.TerminalNode + CUSTOMWIDGET() antlr.TerminalNode // IsWidgetV3Context differentiates from other interfaces. IsWidgetV3Context() @@ -50605,6 +50965,18 @@ func (s *WidgetV3Context) WidgetBodyV3() IWidgetBodyV3Context { return t.(IWidgetBodyV3Context) } +func (s *WidgetV3Context) PLUGGABLEWIDGET() antlr.TerminalNode { + return s.GetToken(MDLParserPLUGGABLEWIDGET, 0) +} + +func (s *WidgetV3Context) STRING_LITERAL() antlr.TerminalNode { + return s.GetToken(MDLParserSTRING_LITERAL, 0) +} + +func (s *WidgetV3Context) CUSTOMWIDGET() antlr.TerminalNode { + return s.GetToken(MDLParserCUSTOMWIDGET, 0) +} + func (s *WidgetV3Context) GetRuleContext() antlr.RuleContext { return s } @@ -50630,46 +51002,168 @@ func (p *MDLParser) WidgetV3() (localctx IWidgetV3Context) { p.EnterRule(localctx, 398, MDLParserRULE_widgetV3) var _la int - p.EnterOuterAlt(localctx, 1) - { - p.SetState(3484) - p.WidgetTypeV3() - } - { - p.SetState(3485) - p.Match(MDLParserIDENTIFIER) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - p.SetState(3487) + p.SetState(3543) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _la = p.GetTokenStream().LA(1) - if _la == MDLParserLPAREN { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 361, p.GetParserRuleContext()) { + case 1: + p.EnterOuterAlt(localctx, 1) { - p.SetState(3486) - p.WidgetPropertiesV3() + p.SetState(3517) + p.WidgetTypeV3() } + { + p.SetState(3518) + p.Match(MDLParserIDENTIFIER) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + p.SetState(3520) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) - } - p.SetState(3490) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) + if _la == MDLParserLPAREN { + { + p.SetState(3519) + p.WidgetPropertiesV3() + } - if _la == MDLParserLBRACE { + } + p.SetState(3523) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserLBRACE { + { + p.SetState(3522) + p.WidgetBodyV3() + } + + } + + case 2: + p.EnterOuterAlt(localctx, 2) { - p.SetState(3489) - p.WidgetBodyV3() + p.SetState(3525) + p.Match(MDLParserPLUGGABLEWIDGET) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(3526) + p.Match(MDLParserSTRING_LITERAL) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(3527) + p.Match(MDLParserIDENTIFIER) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } + p.SetState(3529) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserLPAREN { + { + p.SetState(3528) + p.WidgetPropertiesV3() + } + + } + p.SetState(3532) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserLBRACE { + { + p.SetState(3531) + p.WidgetBodyV3() + } + + } + + case 3: + p.EnterOuterAlt(localctx, 3) + { + p.SetState(3534) + p.Match(MDLParserCUSTOMWIDGET) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(3535) + p.Match(MDLParserSTRING_LITERAL) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(3536) + p.Match(MDLParserIDENTIFIER) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + p.SetState(3538) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserLPAREN { + { + p.SetState(3537) + p.WidgetPropertiesV3() + } + } + p.SetState(3541) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _la = p.GetTokenStream().LA(1) + + if _la == MDLParserLBRACE { + { + p.SetState(3540) + p.WidgetBodyV3() + } + + } + + case antlr.ATNInvalidAltNumber: + goto errorExit } errorExit: @@ -50722,6 +51216,7 @@ type IWidgetTypeV3Context interface { NUMBERFILTER() antlr.TerminalNode DROPDOWNFILTER() antlr.TerminalNode DATEFILTER() antlr.TerminalNode + DROPDOWNSORT() antlr.TerminalNode FOOTER() antlr.TerminalNode HEADER() antlr.TerminalNode CONTROLBAR() antlr.TerminalNode @@ -50731,6 +51226,8 @@ type IWidgetTypeV3Context interface { STATICIMAGE() antlr.TerminalNode DYNAMICIMAGE() antlr.TerminalNode CUSTOMCONTAINER() antlr.TerminalNode + TABCONTAINER() antlr.TerminalNode + TABPAGE() antlr.TerminalNode GROUPBOX() antlr.TerminalNode // IsWidgetTypeV3Context differentiates from other interfaces. @@ -50885,6 +51382,10 @@ func (s *WidgetTypeV3Context) DATEFILTER() antlr.TerminalNode { return s.GetToken(MDLParserDATEFILTER, 0) } +func (s *WidgetTypeV3Context) DROPDOWNSORT() antlr.TerminalNode { + return s.GetToken(MDLParserDROPDOWNSORT, 0) +} + func (s *WidgetTypeV3Context) FOOTER() antlr.TerminalNode { return s.GetToken(MDLParserFOOTER, 0) } @@ -50921,6 +51422,14 @@ func (s *WidgetTypeV3Context) CUSTOMCONTAINER() antlr.TerminalNode { return s.GetToken(MDLParserCUSTOMCONTAINER, 0) } +func (s *WidgetTypeV3Context) TABCONTAINER() antlr.TerminalNode { + return s.GetToken(MDLParserTABCONTAINER, 0) +} + +func (s *WidgetTypeV3Context) TABPAGE() antlr.TerminalNode { + return s.GetToken(MDLParserTABPAGE, 0) +} + func (s *WidgetTypeV3Context) GROUPBOX() antlr.TerminalNode { return s.GetToken(MDLParserGROUPBOX, 0) } @@ -50952,10 +51461,10 @@ func (p *MDLParser) WidgetTypeV3() (localctx IWidgetTypeV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3492) + p.SetState(3545) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserCOLUMN || ((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&211377350996991) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&33554493) != 0)) { + if !(_la == MDLParserCOLUMN || ((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&845512092382207) != 0) || ((int64((_la-228)) & ^0x3f) == 0 && ((int64(1)<<(_la-228))&134217981) != 0)) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -51111,7 +51620,7 @@ func (p *MDLParser) WidgetPropertiesV3() (localctx IWidgetPropertiesV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3494) + p.SetState(3547) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -51119,10 +51628,10 @@ func (p *MDLParser) WidgetPropertiesV3() (localctx IWidgetPropertiesV3Context) { } } { - p.SetState(3495) + p.SetState(3548) p.WidgetPropertyV3() } - p.SetState(3500) + p.SetState(3553) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51131,7 +51640,7 @@ func (p *MDLParser) WidgetPropertiesV3() (localctx IWidgetPropertiesV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3496) + p.SetState(3549) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -51139,11 +51648,11 @@ func (p *MDLParser) WidgetPropertiesV3() (localctx IWidgetPropertiesV3Context) { } } { - p.SetState(3497) + p.SetState(3550) p.WidgetPropertyV3() } - p.SetState(3502) + p.SetState(3555) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51151,7 +51660,7 @@ func (p *MDLParser) WidgetPropertiesV3() (localctx IWidgetPropertiesV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3503) + p.SetState(3556) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -51226,6 +51735,7 @@ type IWidgetPropertyV3Context interface { EDITABLE() antlr.TerminalNode TOOLTIP() antlr.TerminalNode IDENTIFIER() antlr.TerminalNode + Keyword() IKeywordContext // IsWidgetPropertyV3Context differentiates from other interfaces. IsWidgetPropertyV3Context() @@ -51627,6 +52137,22 @@ func (s *WidgetPropertyV3Context) IDENTIFIER() antlr.TerminalNode { return s.GetToken(MDLParserIDENTIFIER, 0) } +func (s *WidgetPropertyV3Context) Keyword() IKeywordContext { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IKeywordContext); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(IKeywordContext) +} + func (s *WidgetPropertyV3Context) GetRuleContext() antlr.RuleContext { return s } @@ -51650,17 +52176,17 @@ func (s *WidgetPropertyV3Context) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { localctx = NewWidgetPropertyV3Context(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 404, MDLParserRULE_widgetPropertyV3) - p.SetState(3595) + p.SetState(3652) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 353, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 363, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3505) + p.SetState(3558) p.Match(MDLParserDATASOURCE) if p.HasError() { // Recognition error - abort rule @@ -51668,7 +52194,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3506) + p.SetState(3559) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51676,14 +52202,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3507) + p.SetState(3560) p.DataSourceExprV3() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3508) + p.SetState(3561) p.Match(MDLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -51691,7 +52217,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3509) + p.SetState(3562) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51699,14 +52225,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3510) + p.SetState(3563) p.AttributePathV3() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3511) + p.SetState(3564) p.Match(MDLParserBINDS) if p.HasError() { // Recognition error - abort rule @@ -51714,7 +52240,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3512) + p.SetState(3565) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51722,14 +52248,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3513) + p.SetState(3566) p.AttributePathV3() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3514) + p.SetState(3567) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -51737,7 +52263,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3515) + p.SetState(3568) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51745,14 +52271,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3516) + p.SetState(3569) p.ActionExprV3() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(3517) + p.SetState(3570) p.Match(MDLParserCAPTION) if p.HasError() { // Recognition error - abort rule @@ -51760,7 +52286,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3518) + p.SetState(3571) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51768,14 +52294,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3519) + p.SetState(3572) p.StringExprV3() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(3520) + p.SetState(3573) p.Match(MDLParserLABEL) if p.HasError() { // Recognition error - abort rule @@ -51783,7 +52309,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3521) + p.SetState(3574) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51791,7 +52317,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3522) + p.SetState(3575) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -51802,7 +52328,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(3523) + p.SetState(3576) p.Match(MDLParserATTR) if p.HasError() { // Recognition error - abort rule @@ -51810,7 +52336,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3524) + p.SetState(3577) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51818,14 +52344,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3525) + p.SetState(3578) p.AttributePathV3() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(3526) + p.SetState(3579) p.Match(MDLParserCONTENT) if p.HasError() { // Recognition error - abort rule @@ -51833,7 +52359,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3527) + p.SetState(3580) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51841,14 +52367,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3528) + p.SetState(3581) p.StringExprV3() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(3529) + p.SetState(3582) p.Match(MDLParserRENDERMODE) if p.HasError() { // Recognition error - abort rule @@ -51856,7 +52382,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3530) + p.SetState(3583) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51864,14 +52390,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3531) + p.SetState(3584) p.RenderModeV3() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(3532) + p.SetState(3585) p.Match(MDLParserCONTENTPARAMS) if p.HasError() { // Recognition error - abort rule @@ -51879,7 +52405,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3533) + p.SetState(3586) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51887,14 +52413,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3534) + p.SetState(3587) p.ParamListV3() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(3535) + p.SetState(3588) p.Match(MDLParserCAPTIONPARAMS) if p.HasError() { // Recognition error - abort rule @@ -51902,7 +52428,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3536) + p.SetState(3589) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51910,14 +52436,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3537) + p.SetState(3590) p.ParamListV3() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(3538) + p.SetState(3591) p.Match(MDLParserBUTTONSTYLE) if p.HasError() { // Recognition error - abort rule @@ -51925,7 +52451,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3539) + p.SetState(3592) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51933,14 +52459,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3540) + p.SetState(3593) p.ButtonStyleV3() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(3541) + p.SetState(3594) p.Match(MDLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -51948,7 +52474,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3542) + p.SetState(3595) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51956,7 +52482,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3543) + p.SetState(3596) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -51967,7 +52493,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(3544) + p.SetState(3597) p.Match(MDLParserSTYLE) if p.HasError() { // Recognition error - abort rule @@ -51975,7 +52501,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3545) + p.SetState(3598) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -51983,7 +52509,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3546) + p.SetState(3599) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -51994,7 +52520,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(3547) + p.SetState(3600) p.Match(MDLParserDESKTOPWIDTH) if p.HasError() { // Recognition error - abort rule @@ -52002,7 +52528,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3548) + p.SetState(3601) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52010,14 +52536,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3549) + p.SetState(3602) p.DesktopWidthV3() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(3550) + p.SetState(3603) p.Match(MDLParserTABLETWIDTH) if p.HasError() { // Recognition error - abort rule @@ -52025,7 +52551,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3551) + p.SetState(3604) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52033,14 +52559,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3552) + p.SetState(3605) p.DesktopWidthV3() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(3553) + p.SetState(3606) p.Match(MDLParserPHONEWIDTH) if p.HasError() { // Recognition error - abort rule @@ -52048,7 +52574,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3554) + p.SetState(3607) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52056,14 +52582,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3555) + p.SetState(3608) p.DesktopWidthV3() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(3556) + p.SetState(3609) p.Match(MDLParserSELECTION) if p.HasError() { // Recognition error - abort rule @@ -52071,7 +52597,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3557) + p.SetState(3610) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52079,14 +52605,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3558) + p.SetState(3611) p.SelectionModeV3() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(3559) + p.SetState(3612) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -52094,7 +52620,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3560) + p.SetState(3613) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52102,14 +52628,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3561) + p.SetState(3614) p.QualifiedName() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(3562) + p.SetState(3615) p.Match(MDLParserATTRIBUTES) if p.HasError() { // Recognition error - abort rule @@ -52117,7 +52643,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3563) + p.SetState(3616) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52125,14 +52651,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3564) + p.SetState(3617) p.AttributeListV3() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(3565) + p.SetState(3618) p.Match(MDLParserFILTERTYPE) if p.HasError() { // Recognition error - abort rule @@ -52140,7 +52666,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3566) + p.SetState(3619) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52148,14 +52674,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3567) + p.SetState(3620) p.FilterTypeValue() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(3568) + p.SetState(3621) p.Match(MDLParserDESIGNPROPERTIES) if p.HasError() { // Recognition error - abort rule @@ -52163,7 +52689,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3569) + p.SetState(3622) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52171,14 +52697,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3570) + p.SetState(3623) p.DesignPropertyListV3() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(3571) + p.SetState(3624) p.Match(MDLParserWIDTH) if p.HasError() { // Recognition error - abort rule @@ -52186,7 +52712,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3572) + p.SetState(3625) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52194,7 +52720,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3573) + p.SetState(3626) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -52205,7 +52731,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(3574) + p.SetState(3627) p.Match(MDLParserHEIGHT) if p.HasError() { // Recognition error - abort rule @@ -52213,7 +52739,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3575) + p.SetState(3628) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52221,7 +52747,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3576) + p.SetState(3629) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -52232,7 +52758,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(3577) + p.SetState(3630) p.Match(MDLParserVISIBLE) if p.HasError() { // Recognition error - abort rule @@ -52240,7 +52766,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3578) + p.SetState(3631) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52248,14 +52774,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3579) + p.SetState(3632) p.XpathConstraint() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(3580) + p.SetState(3633) p.Match(MDLParserVISIBLE) if p.HasError() { // Recognition error - abort rule @@ -52263,7 +52789,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3581) + p.SetState(3634) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52271,14 +52797,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3582) + p.SetState(3635) p.PropertyValueV3() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(3583) + p.SetState(3636) p.Match(MDLParserEDITABLE) if p.HasError() { // Recognition error - abort rule @@ -52286,7 +52812,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3584) + p.SetState(3637) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52294,14 +52820,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3585) + p.SetState(3638) p.XpathConstraint() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(3586) + p.SetState(3639) p.Match(MDLParserEDITABLE) if p.HasError() { // Recognition error - abort rule @@ -52309,7 +52835,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3587) + p.SetState(3640) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52317,14 +52843,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3588) + p.SetState(3641) p.PropertyValueV3() } case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(3589) + p.SetState(3642) p.Match(MDLParserTOOLTIP) if p.HasError() { // Recognition error - abort rule @@ -52332,7 +52858,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3590) + p.SetState(3643) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52340,14 +52866,14 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3591) + p.SetState(3644) p.PropertyValueV3() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(3592) + p.SetState(3645) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -52355,7 +52881,7 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3593) + p.SetState(3646) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -52363,7 +52889,26 @@ func (p *MDLParser) WidgetPropertyV3() (localctx IWidgetPropertyV3Context) { } } { - p.SetState(3594) + p.SetState(3647) + p.PropertyValueV3() + } + + case 31: + p.EnterOuterAlt(localctx, 31) + { + p.SetState(3648) + p.Keyword() + } + { + p.SetState(3649) + p.Match(MDLParserCOLON) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(3650) p.PropertyValueV3() } @@ -52471,7 +53016,7 @@ func (p *MDLParser) FilterTypeValue() (localctx IFilterTypeValueContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3597) + p.SetState(3654) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserCONTAINS || _la == MDLParserEMPTY || _la == MDLParserIDENTIFIER) { @@ -52630,7 +53175,7 @@ func (p *MDLParser) AttributeListV3() (localctx IAttributeListV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3599) + p.SetState(3656) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -52638,10 +53183,10 @@ func (p *MDLParser) AttributeListV3() (localctx IAttributeListV3Context) { } } { - p.SetState(3600) + p.SetState(3657) p.QualifiedName() } - p.SetState(3605) + p.SetState(3662) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52650,7 +53195,7 @@ func (p *MDLParser) AttributeListV3() (localctx IAttributeListV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3601) + p.SetState(3658) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -52658,11 +53203,11 @@ func (p *MDLParser) AttributeListV3() (localctx IAttributeListV3Context) { } } { - p.SetState(3602) + p.SetState(3659) p.QualifiedName() } - p.SetState(3607) + p.SetState(3664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52670,7 +53215,7 @@ func (p *MDLParser) AttributeListV3() (localctx IAttributeListV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3608) + p.SetState(3665) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -53020,7 +53565,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { var _alt int - p.SetState(3656) + p.SetState(3713) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53030,7 +53575,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { case MDLParserVARIABLE: p.EnterOuterAlt(localctx, 1) { - p.SetState(3610) + p.SetState(3667) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -53041,19 +53586,19 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { case MDLParserDATABASE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3611) + p.SetState(3668) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3613) + p.SetState(3670) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 355, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 365, p.GetParserRuleContext()) == 1 { { - p.SetState(3612) + p.SetState(3669) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -53065,10 +53610,10 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { goto errorExit } { - p.SetState(3615) + p.SetState(3672) p.QualifiedName() } - p.SetState(3629) + p.SetState(3686) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53077,14 +53622,14 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { if _la == MDLParserWHERE { { - p.SetState(3616) + p.SetState(3673) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3627) + p.SetState(3684) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53093,10 +53638,10 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { switch p.GetTokenStream().LA(1) { case MDLParserLBRACKET: { - p.SetState(3617) + p.SetState(3674) p.XpathConstraint() } - p.SetState(3623) + p.SetState(3680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53105,15 +53650,15 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { for _la == MDLParserAND || _la == MDLParserOR { { - p.SetState(3618) + p.SetState(3675) p.AndOrXpath() } { - p.SetState(3619) + p.SetState(3676) p.XpathConstraint() } - p.SetState(3625) + p.SetState(3682) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53121,9 +53666,9 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { _la = p.GetTokenStream().LA(1) } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: { - p.SetState(3626) + p.SetState(3683) p.Expression() } @@ -53133,7 +53678,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } - p.SetState(3640) + p.SetState(3697) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53142,7 +53687,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { if _la == MDLParserSORT_BY { { - p.SetState(3631) + p.SetState(3688) p.Match(MDLParserSORT_BY) if p.HasError() { // Recognition error - abort rule @@ -53150,22 +53695,22 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3632) + p.SetState(3689) p.SortColumn() } - p.SetState(3637) + p.SetState(3694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 359, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 369, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(3633) + p.SetState(3690) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -53173,17 +53718,17 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3634) + p.SetState(3691) p.SortColumn() } } - p.SetState(3639) + p.SetState(3696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 359, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 369, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -53194,7 +53739,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { case MDLParserMICROFLOW: p.EnterOuterAlt(localctx, 3) { - p.SetState(3642) + p.SetState(3699) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -53202,10 +53747,10 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3643) + p.SetState(3700) p.QualifiedName() } - p.SetState(3645) + p.SetState(3702) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53214,7 +53759,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { if _la == MDLParserLPAREN { { - p.SetState(3644) + p.SetState(3701) p.MicroflowArgsV3() } @@ -53223,7 +53768,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { case MDLParserNANOFLOW: p.EnterOuterAlt(localctx, 4) { - p.SetState(3647) + p.SetState(3704) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -53231,10 +53776,10 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3648) + p.SetState(3705) p.QualifiedName() } - p.SetState(3650) + p.SetState(3707) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53243,7 +53788,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { if _la == MDLParserLPAREN { { - p.SetState(3649) + p.SetState(3706) p.MicroflowArgsV3() } @@ -53252,7 +53797,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { case MDLParserASSOCIATION: p.EnterOuterAlt(localctx, 5) { - p.SetState(3652) + p.SetState(3709) p.Match(MDLParserASSOCIATION) if p.HasError() { // Recognition error - abort rule @@ -53260,14 +53805,14 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3653) + p.SetState(3710) p.AttributePathV3() } case MDLParserSELECTION: p.EnterOuterAlt(localctx, 6) { - p.SetState(3654) + p.SetState(3711) p.Match(MDLParserSELECTION) if p.HasError() { // Recognition error - abort rule @@ -53275,7 +53820,7 @@ func (p *MDLParser) DataSourceExprV3() (localctx IDataSourceExprV3Context) { } } { - p.SetState(3655) + p.SetState(3712) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -53487,7 +54032,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { p.EnterRule(localctx, 412, MDLParserRULE_actionExprV3) var _la int - p.SetState(3696) + p.SetState(3753) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53497,14 +54042,14 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserSAVE_CHANGES: p.EnterOuterAlt(localctx, 1) { - p.SetState(3658) + p.SetState(3715) p.Match(MDLParserSAVE_CHANGES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3660) + p.SetState(3717) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53513,7 +54058,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserCLOSE_PAGE { { - p.SetState(3659) + p.SetState(3716) p.Match(MDLParserCLOSE_PAGE) if p.HasError() { // Recognition error - abort rule @@ -53526,14 +54071,14 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserCANCEL_CHANGES: p.EnterOuterAlt(localctx, 2) { - p.SetState(3662) + p.SetState(3719) p.Match(MDLParserCANCEL_CHANGES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3664) + p.SetState(3721) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53542,7 +54087,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserCLOSE_PAGE { { - p.SetState(3663) + p.SetState(3720) p.Match(MDLParserCLOSE_PAGE) if p.HasError() { // Recognition error - abort rule @@ -53555,7 +54100,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserCLOSE_PAGE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3666) + p.SetState(3723) p.Match(MDLParserCLOSE_PAGE) if p.HasError() { // Recognition error - abort rule @@ -53566,7 +54111,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserDELETE_OBJECT: p.EnterOuterAlt(localctx, 4) { - p.SetState(3667) + p.SetState(3724) p.Match(MDLParserDELETE_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -53577,14 +54122,14 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserDELETE: p.EnterOuterAlt(localctx, 5) { - p.SetState(3668) + p.SetState(3725) p.Match(MDLParserDELETE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3670) + p.SetState(3727) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53593,7 +54138,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserCLOSE_PAGE { { - p.SetState(3669) + p.SetState(3726) p.Match(MDLParserCLOSE_PAGE) if p.HasError() { // Recognition error - abort rule @@ -53606,7 +54151,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserCREATE_OBJECT: p.EnterOuterAlt(localctx, 6) { - p.SetState(3672) + p.SetState(3729) p.Match(MDLParserCREATE_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -53614,10 +54159,10 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3673) + p.SetState(3730) p.QualifiedName() } - p.SetState(3676) + p.SetState(3733) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53626,7 +54171,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserTHEN { { - p.SetState(3674) + p.SetState(3731) p.Match(MDLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -53634,7 +54179,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3675) + p.SetState(3732) p.ActionExprV3() } @@ -53643,7 +54188,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserSHOW_PAGE: p.EnterOuterAlt(localctx, 7) { - p.SetState(3678) + p.SetState(3735) p.Match(MDLParserSHOW_PAGE) if p.HasError() { // Recognition error - abort rule @@ -53651,10 +54196,10 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3679) + p.SetState(3736) p.QualifiedName() } - p.SetState(3681) + p.SetState(3738) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53663,7 +54208,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserLPAREN { { - p.SetState(3680) + p.SetState(3737) p.MicroflowArgsV3() } @@ -53672,7 +54217,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserMICROFLOW: p.EnterOuterAlt(localctx, 8) { - p.SetState(3683) + p.SetState(3740) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -53680,10 +54225,10 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3684) + p.SetState(3741) p.QualifiedName() } - p.SetState(3686) + p.SetState(3743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53692,7 +54237,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserLPAREN { { - p.SetState(3685) + p.SetState(3742) p.MicroflowArgsV3() } @@ -53701,7 +54246,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserNANOFLOW: p.EnterOuterAlt(localctx, 9) { - p.SetState(3688) + p.SetState(3745) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -53709,10 +54254,10 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3689) + p.SetState(3746) p.QualifiedName() } - p.SetState(3691) + p.SetState(3748) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53721,7 +54266,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { if _la == MDLParserLPAREN { { - p.SetState(3690) + p.SetState(3747) p.MicroflowArgsV3() } @@ -53730,7 +54275,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserOPEN_LINK: p.EnterOuterAlt(localctx, 10) { - p.SetState(3693) + p.SetState(3750) p.Match(MDLParserOPEN_LINK) if p.HasError() { // Recognition error - abort rule @@ -53738,7 +54283,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { } } { - p.SetState(3694) + p.SetState(3751) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -53749,7 +54294,7 @@ func (p *MDLParser) ActionExprV3() (localctx IActionExprV3Context) { case MDLParserSIGN_OUT: p.EnterOuterAlt(localctx, 11) { - p.SetState(3695) + p.SetState(3752) p.Match(MDLParserSIGN_OUT) if p.HasError() { // Recognition error - abort rule @@ -53910,7 +54455,7 @@ func (p *MDLParser) MicroflowArgsV3() (localctx IMicroflowArgsV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3698) + p.SetState(3755) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -53918,10 +54463,10 @@ func (p *MDLParser) MicroflowArgsV3() (localctx IMicroflowArgsV3Context) { } } { - p.SetState(3699) + p.SetState(3756) p.MicroflowArgV3() } - p.SetState(3704) + p.SetState(3761) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53930,7 +54475,7 @@ func (p *MDLParser) MicroflowArgsV3() (localctx IMicroflowArgsV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3700) + p.SetState(3757) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -53938,11 +54483,11 @@ func (p *MDLParser) MicroflowArgsV3() (localctx IMicroflowArgsV3Context) { } } { - p.SetState(3701) + p.SetState(3758) p.MicroflowArgV3() } - p.SetState(3706) + p.SetState(3763) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53950,7 +54495,7 @@ func (p *MDLParser) MicroflowArgsV3() (localctx IMicroflowArgsV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3707) + p.SetState(3764) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -54076,7 +54621,7 @@ func (s *MicroflowArgV3Context) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { localctx = NewMicroflowArgV3Context(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 416, MDLParserRULE_microflowArgV3) - p.SetState(3715) + p.SetState(3772) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54086,7 +54631,7 @@ func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(3709) + p.SetState(3766) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54094,7 +54639,7 @@ func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { } } { - p.SetState(3710) + p.SetState(3767) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -54102,14 +54647,14 @@ func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { } } { - p.SetState(3711) + p.SetState(3768) p.Expression() } case MDLParserVARIABLE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3712) + p.SetState(3769) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -54117,7 +54662,7 @@ func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { } } { - p.SetState(3713) + p.SetState(3770) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -54125,7 +54670,7 @@ func (p *MDLParser) MicroflowArgV3() (localctx IMicroflowArgV3Context) { } } { - p.SetState(3714) + p.SetState(3771) p.Expression() } @@ -54291,7 +54836,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3720) + p.SetState(3777) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54300,7 +54845,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { switch p.GetTokenStream().LA(1) { case MDLParserIDENTIFIER: { - p.SetState(3717) + p.SetState(3774) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54310,7 +54855,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { case MDLParserQUOTED_IDENTIFIER: { - p.SetState(3718) + p.SetState(3775) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54318,9 +54863,9 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: { - p.SetState(3719) + p.SetState(3776) p.Keyword() } @@ -54328,7 +54873,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(3730) + p.SetState(3787) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54337,14 +54882,14 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { for _la == MDLParserSLASH { { - p.SetState(3722) + p.SetState(3779) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3726) + p.SetState(3783) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54353,7 +54898,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { switch p.GetTokenStream().LA(1) { case MDLParserIDENTIFIER: { - p.SetState(3723) + p.SetState(3780) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54363,7 +54908,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { case MDLParserQUOTED_IDENTIFIER: { - p.SetState(3724) + p.SetState(3781) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54371,9 +54916,9 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: { - p.SetState(3725) + p.SetState(3782) p.Keyword() } @@ -54382,7 +54927,7 @@ func (p *MDLParser) AttributePathV3() (localctx IAttributePathV3Context) { goto errorExit } - p.SetState(3732) + p.SetState(3789) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54527,7 +55072,7 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { p.EnterRule(localctx, 420, MDLParserRULE_stringExprV3) var _la int - p.SetState(3743) + p.SetState(3800) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54537,7 +55082,7 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { case MDLParserSTRING_LITERAL: p.EnterOuterAlt(localctx, 1) { - p.SetState(3733) + p.SetState(3790) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -54545,24 +55090,24 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(3734) + p.SetState(3791) p.AttributePathV3() } case MDLParserVARIABLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3735) + p.SetState(3792) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3741) + p.SetState(3798) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54571,14 +55116,14 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { if _la == MDLParserDOT { { - p.SetState(3736) + p.SetState(3793) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3739) + p.SetState(3796) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54587,7 +55132,7 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { switch p.GetTokenStream().LA(1) { case MDLParserIDENTIFIER: { - p.SetState(3737) + p.SetState(3794) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -54595,9 +55140,9 @@ func (p *MDLParser) StringExprV3() (localctx IStringExprV3Context) { } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: { - p.SetState(3738) + p.SetState(3795) p.Keyword() } @@ -54761,7 +55306,7 @@ func (p *MDLParser) ParamListV3() (localctx IParamListV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3745) + p.SetState(3802) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -54769,10 +55314,10 @@ func (p *MDLParser) ParamListV3() (localctx IParamListV3Context) { } } { - p.SetState(3746) + p.SetState(3803) p.ParamAssignmentV3() } - p.SetState(3751) + p.SetState(3808) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54781,7 +55326,7 @@ func (p *MDLParser) ParamListV3() (localctx IParamListV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3747) + p.SetState(3804) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -54789,11 +55334,11 @@ func (p *MDLParser) ParamListV3() (localctx IParamListV3Context) { } } { - p.SetState(3748) + p.SetState(3805) p.ParamAssignmentV3() } - p.SetState(3753) + p.SetState(3810) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -54801,7 +55346,7 @@ func (p *MDLParser) ParamListV3() (localctx IParamListV3Context) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3754) + p.SetState(3811) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -54929,7 +55474,7 @@ func (p *MDLParser) ParamAssignmentV3() (localctx IParamAssignmentV3Context) { p.EnterRule(localctx, 424, MDLParserRULE_paramAssignmentV3) p.EnterOuterAlt(localctx, 1) { - p.SetState(3756) + p.SetState(3813) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -54937,7 +55482,7 @@ func (p *MDLParser) ParamAssignmentV3() (localctx IParamAssignmentV3Context) { } } { - p.SetState(3757) + p.SetState(3814) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -54945,7 +55490,7 @@ func (p *MDLParser) ParamAssignmentV3() (localctx IParamAssignmentV3Context) { } } { - p.SetState(3758) + p.SetState(3815) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -54953,7 +55498,7 @@ func (p *MDLParser) ParamAssignmentV3() (localctx IParamAssignmentV3Context) { } } { - p.SetState(3759) + p.SetState(3816) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -54961,7 +55506,7 @@ func (p *MDLParser) ParamAssignmentV3() (localctx IParamAssignmentV3Context) { } } { - p.SetState(3760) + p.SetState(3817) p.Expression() } @@ -55095,10 +55640,10 @@ func (p *MDLParser) RenderModeV3() (localctx IRenderModeV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3762) + p.SetState(3819) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-255)) & ^0x3f) == 0 && ((int64(1)<<(_la-255))&127) != 0) || _la == MDLParserTEXT || _la == MDLParserIDENTIFIER) { + if !(((int64((_la-259)) & ^0x3f) == 0 && ((int64(1)<<(_la-259))&127) != 0) || _la == MDLParserTEXT || _la == MDLParserIDENTIFIER) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -55236,10 +55781,10 @@ func (p *MDLParser) ButtonStyleV3() (localctx IButtonStyleV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3764) + p.SetState(3821) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserINFO || _la == MDLParserWARNING || ((int64((_la-246)) & ^0x3f) == 0 && ((int64(1)<<(_la-246))&562949953421343) != 0) || _la == MDLParserIDENTIFIER) { + if !(_la == MDLParserINFO || _la == MDLParserWARNING || ((int64((_la-250)) & ^0x3f) == 0 && ((int64(1)<<(_la-250))&562949953421343) != 0) || _la == MDLParserIDENTIFIER) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -55342,7 +55887,7 @@ func (p *MDLParser) DesktopWidthV3() (localctx IDesktopWidthV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3766) + p.SetState(3823) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserAUTOFILL || _la == MDLParserNUMBER_LITERAL) { @@ -55453,10 +55998,10 @@ func (p *MDLParser) SelectionModeV3() (localctx ISelectionModeV3Context) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3768) + p.SetState(3825) _la = p.GetTokenStream().LA(1) - if !((int64((_la-422)) & ^0x3f) == 0 && ((int64(1)<<(_la-422))&7) != 0) { + if !((int64((_la-426)) & ^0x3f) == 0 && ((int64(1)<<(_la-426))&7) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -55689,17 +56234,17 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { p.EnterRule(localctx, 434, MDLParserRULE_propertyValueV3) var _la int - p.SetState(3793) + p.SetState(3850) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 383, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 393, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3770) + p.SetState(3827) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -55710,7 +56255,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3771) + p.SetState(3828) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -55721,21 +56266,21 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3772) + p.SetState(3829) p.BooleanLiteral() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3773) + p.SetState(3830) p.QualifiedName() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(3774) + p.SetState(3831) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -55746,7 +56291,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(3775) + p.SetState(3832) p.Match(MDLParserH1) if p.HasError() { // Recognition error - abort rule @@ -55757,7 +56302,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(3776) + p.SetState(3833) p.Match(MDLParserH2) if p.HasError() { // Recognition error - abort rule @@ -55768,7 +56313,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(3777) + p.SetState(3834) p.Match(MDLParserH3) if p.HasError() { // Recognition error - abort rule @@ -55779,7 +56324,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(3778) + p.SetState(3835) p.Match(MDLParserH4) if p.HasError() { // Recognition error - abort rule @@ -55790,7 +56335,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(3779) + p.SetState(3836) p.Match(MDLParserH5) if p.HasError() { // Recognition error - abort rule @@ -55801,7 +56346,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(3780) + p.SetState(3837) p.Match(MDLParserH6) if p.HasError() { // Recognition error - abort rule @@ -55812,26 +56357,26 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(3781) + p.SetState(3838) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3790) + p.SetState(3847) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-2305993334156951905) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&2277142317606631421) != 0) || ((int64((_la-207)) & ^0x3f) == 0 && ((int64(1)<<(_la-207))&-36007081597674497) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&-4323455672474730625) != 0) || ((int64((_la-340)) & ^0x3f) == 0 && ((int64(1)<<(_la-340))&-5765205657493962753) != 0) || ((int64((_la-404)) & ^0x3f) == 0 && ((int64(1)<<(_la-404))&-15441749737549) != 0) || ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&70650256836456575) != 0) { + if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-2305993334156951905) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&9108540002374252541) != 0) || ((int64((_la-209)) & ^0x3f) == 0 && ((int64(1)<<(_la-209))&-144028326389294081) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-3865478971517) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-76561210845167647) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1976543966406185) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&9043232875066441727) != 0) { { - p.SetState(3782) + p.SetState(3839) p.Expression() } - p.SetState(3787) + p.SetState(3844) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55840,7 +56385,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { for _la == MDLParserCOMMA { { - p.SetState(3783) + p.SetState(3840) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -55848,11 +56393,11 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { } } { - p.SetState(3784) + p.SetState(3841) p.Expression() } - p.SetState(3789) + p.SetState(3846) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55862,7 +56407,7 @@ func (p *MDLParser) PropertyValueV3() (localctx IPropertyValueV3Context) { } { - p.SetState(3792) + p.SetState(3849) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -56020,17 +56565,17 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex p.EnterRule(localctx, 436, MDLParserRULE_designPropertyListV3) var _la int - p.SetState(3808) + p.SetState(3865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 385, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 395, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3795) + p.SetState(3852) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -56038,10 +56583,10 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex } } { - p.SetState(3796) + p.SetState(3853) p.DesignPropertyEntryV3() } - p.SetState(3801) + p.SetState(3858) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56050,7 +56595,7 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex for _la == MDLParserCOMMA { { - p.SetState(3797) + p.SetState(3854) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -56058,11 +56603,11 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex } } { - p.SetState(3798) + p.SetState(3855) p.DesignPropertyEntryV3() } - p.SetState(3803) + p.SetState(3860) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56070,7 +56615,7 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex _la = p.GetTokenStream().LA(1) } { - p.SetState(3804) + p.SetState(3861) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -56081,7 +56626,7 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3806) + p.SetState(3863) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule @@ -56089,7 +56634,7 @@ func (p *MDLParser) DesignPropertyListV3() (localctx IDesignPropertyListV3Contex } } { - p.SetState(3807) + p.SetState(3864) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -56207,17 +56752,17 @@ func (s *DesignPropertyEntryV3Context) ExitRule(listener antlr.ParseTreeListener func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Context) { localctx = NewDesignPropertyEntryV3Context(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 438, MDLParserRULE_designPropertyEntryV3) - p.SetState(3819) + p.SetState(3876) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 386, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 396, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3810) + p.SetState(3867) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -56225,7 +56770,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3811) + p.SetState(3868) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -56233,7 +56778,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3812) + p.SetState(3869) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -56244,7 +56789,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3813) + p.SetState(3870) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -56252,7 +56797,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3814) + p.SetState(3871) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -56260,7 +56805,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3815) + p.SetState(3872) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -56271,7 +56816,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3816) + p.SetState(3873) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -56279,7 +56824,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3817) + p.SetState(3874) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -56287,7 +56832,7 @@ func (p *MDLParser) DesignPropertyEntryV3() (localctx IDesignPropertyEntryV3Cont } } { - p.SetState(3818) + p.SetState(3875) p.Match(MDLParserOFF) if p.HasError() { // Recognition error - abort rule @@ -56409,7 +56954,7 @@ func (p *MDLParser) WidgetBodyV3() (localctx IWidgetBodyV3Context) { p.EnterRule(localctx, 440, MDLParserRULE_widgetBodyV3) p.EnterOuterAlt(localctx, 1) { - p.SetState(3821) + p.SetState(3878) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -56417,11 +56962,11 @@ func (p *MDLParser) WidgetBodyV3() (localctx IWidgetBodyV3Context) { } } { - p.SetState(3822) + p.SetState(3879) p.PageBodyV3() } { - p.SetState(3823) + p.SetState(3880) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -56606,7 +57151,7 @@ func (p *MDLParser) CreateNotebookStatement() (localctx ICreateNotebookStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(3825) + p.SetState(3882) p.Match(MDLParserNOTEBOOK) if p.HasError() { // Recognition error - abort rule @@ -56614,10 +57159,10 @@ func (p *MDLParser) CreateNotebookStatement() (localctx ICreateNotebookStatement } } { - p.SetState(3826) + p.SetState(3883) p.QualifiedName() } - p.SetState(3828) + p.SetState(3885) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56626,20 +57171,20 @@ func (p *MDLParser) CreateNotebookStatement() (localctx ICreateNotebookStatement if _la == MDLParserCOMMENT { { - p.SetState(3827) + p.SetState(3884) p.NotebookOptions() } } { - p.SetState(3830) + p.SetState(3887) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3834) + p.SetState(3891) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56648,11 +57193,11 @@ func (p *MDLParser) CreateNotebookStatement() (localctx ICreateNotebookStatement for _la == MDLParserPAGE { { - p.SetState(3831) + p.SetState(3888) p.NotebookPage() } - p.SetState(3836) + p.SetState(3893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56660,7 +57205,7 @@ func (p *MDLParser) CreateNotebookStatement() (localctx ICreateNotebookStatement _la = p.GetTokenStream().LA(1) } { - p.SetState(3837) + p.SetState(3894) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -56795,7 +57340,7 @@ func (p *MDLParser) NotebookOptions() (localctx INotebookOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3840) + p.SetState(3897) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56804,11 +57349,11 @@ func (p *MDLParser) NotebookOptions() (localctx INotebookOptionsContext) { for ok := true; ok; ok = _la == MDLParserCOMMENT { { - p.SetState(3839) + p.SetState(3896) p.NotebookOption() } - p.SetState(3842) + p.SetState(3899) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56909,7 +57454,7 @@ func (p *MDLParser) NotebookOption() (localctx INotebookOptionContext) { p.EnterRule(localctx, 446, MDLParserRULE_notebookOption) p.EnterOuterAlt(localctx, 1) { - p.SetState(3844) + p.SetState(3901) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -56917,7 +57462,7 @@ func (p *MDLParser) NotebookOption() (localctx INotebookOptionContext) { } } { - p.SetState(3845) + p.SetState(3902) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57042,7 +57587,7 @@ func (p *MDLParser) NotebookPage() (localctx INotebookPageContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3847) + p.SetState(3904) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -57050,10 +57595,10 @@ func (p *MDLParser) NotebookPage() (localctx INotebookPageContext) { } } { - p.SetState(3848) + p.SetState(3905) p.QualifiedName() } - p.SetState(3851) + p.SetState(3908) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57062,7 +57607,7 @@ func (p *MDLParser) NotebookPage() (localctx INotebookPageContext) { if _la == MDLParserCAPTION { { - p.SetState(3849) + p.SetState(3906) p.Match(MDLParserCAPTION) if p.HasError() { // Recognition error - abort rule @@ -57070,7 +57615,7 @@ func (p *MDLParser) NotebookPage() (localctx INotebookPageContext) { } } { - p.SetState(3850) + p.SetState(3907) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57288,7 +57833,7 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas p.EnterOuterAlt(localctx, 1) { - p.SetState(3853) + p.SetState(3910) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -57296,7 +57841,7 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas } } { - p.SetState(3854) + p.SetState(3911) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -57304,30 +57849,30 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas } } { - p.SetState(3855) + p.SetState(3912) p.QualifiedName() } - p.SetState(3857) + p.SetState(3914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = _la == MDLParserHOST || _la == MDLParserPORT || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&15) != 0) || _la == MDLParserTYPE { + for ok := true; ok; ok = _la == MDLParserHOST || _la == MDLParserPORT || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&15) != 0) || _la == MDLParserTYPE { { - p.SetState(3856) + p.SetState(3913) p.DatabaseConnectionOption() } - p.SetState(3859) + p.SetState(3916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(3869) + p.SetState(3926) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57336,14 +57881,14 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas if _la == MDLParserBEGIN { { - p.SetState(3861) + p.SetState(3918) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3865) + p.SetState(3922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57352,11 +57897,11 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas for _la == MDLParserQUERY { { - p.SetState(3862) + p.SetState(3919) p.DatabaseQuery() } - p.SetState(3867) + p.SetState(3924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57364,7 +57909,7 @@ func (p *MDLParser) CreateDatabaseConnectionStatement() (localctx ICreateDatabas _la = p.GetTokenStream().LA(1) } { - p.SetState(3868) + p.SetState(3925) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -57527,7 +58072,7 @@ func (s *DatabaseConnectionOptionContext) ExitRule(listener antlr.ParseTreeListe func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOptionContext) { localctx = NewDatabaseConnectionOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 452, MDLParserRULE_databaseConnectionOption) - p.SetState(3898) + p.SetState(3955) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57537,7 +58082,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserTYPE: p.EnterOuterAlt(localctx, 1) { - p.SetState(3871) + p.SetState(3928) p.Match(MDLParserTYPE) if p.HasError() { // Recognition error - abort rule @@ -57545,7 +58090,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3872) + p.SetState(3929) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57556,7 +58101,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserCONNECTION: p.EnterOuterAlt(localctx, 2) { - p.SetState(3873) + p.SetState(3930) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -57564,14 +58109,14 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3874) + p.SetState(3931) p.Match(MDLParserSTRING_TYPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3878) + p.SetState(3935) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57580,7 +58125,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti switch p.GetTokenStream().LA(1) { case MDLParserSTRING_LITERAL: { - p.SetState(3875) + p.SetState(3932) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57590,7 +58135,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserAT: { - p.SetState(3876) + p.SetState(3933) p.Match(MDLParserAT) if p.HasError() { // Recognition error - abort rule @@ -57598,7 +58143,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3877) + p.SetState(3934) p.QualifiedName() } @@ -57610,7 +58155,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserHOST: p.EnterOuterAlt(localctx, 3) { - p.SetState(3880) + p.SetState(3937) p.Match(MDLParserHOST) if p.HasError() { // Recognition error - abort rule @@ -57618,7 +58163,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3881) + p.SetState(3938) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57629,7 +58174,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserPORT: p.EnterOuterAlt(localctx, 4) { - p.SetState(3882) + p.SetState(3939) p.Match(MDLParserPORT) if p.HasError() { // Recognition error - abort rule @@ -57637,7 +58182,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3883) + p.SetState(3940) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57648,7 +58193,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserDATABASE: p.EnterOuterAlt(localctx, 5) { - p.SetState(3884) + p.SetState(3941) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -57656,7 +58201,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3885) + p.SetState(3942) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57667,14 +58212,14 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserUSERNAME: p.EnterOuterAlt(localctx, 6) { - p.SetState(3886) + p.SetState(3943) p.Match(MDLParserUSERNAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3890) + p.SetState(3947) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57683,7 +58228,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti switch p.GetTokenStream().LA(1) { case MDLParserSTRING_LITERAL: { - p.SetState(3887) + p.SetState(3944) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57693,7 +58238,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserAT: { - p.SetState(3888) + p.SetState(3945) p.Match(MDLParserAT) if p.HasError() { // Recognition error - abort rule @@ -57701,7 +58246,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3889) + p.SetState(3946) p.QualifiedName() } @@ -57713,14 +58258,14 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserPASSWORD: p.EnterOuterAlt(localctx, 7) { - p.SetState(3892) + p.SetState(3949) p.Match(MDLParserPASSWORD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3896) + p.SetState(3953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57729,7 +58274,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti switch p.GetTokenStream().LA(1) { case MDLParserSTRING_LITERAL: { - p.SetState(3893) + p.SetState(3950) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -57739,7 +58284,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti case MDLParserAT: { - p.SetState(3894) + p.SetState(3951) p.Match(MDLParserAT) if p.HasError() { // Recognition error - abort rule @@ -57747,7 +58292,7 @@ func (p *MDLParser) DatabaseConnectionOption() (localctx IDatabaseConnectionOpti } } { - p.SetState(3895) + p.SetState(3952) p.QualifiedName() } @@ -58092,7 +58637,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3900) + p.SetState(3957) p.Match(MDLParserQUERY) if p.HasError() { // Recognition error - abort rule @@ -58100,11 +58645,11 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3901) + p.SetState(3958) p.IdentifierOrKeyword() } { - p.SetState(3902) + p.SetState(3959) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -58112,7 +58657,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3903) + p.SetState(3960) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSTRING_LITERAL || _la == MDLParserDOLLAR_STRING) { @@ -58122,7 +58667,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { p.Consume() } } - p.SetState(3915) + p.SetState(3972) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58131,7 +58676,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { for _la == MDLParserPARAMETER { { - p.SetState(3904) + p.SetState(3961) p.Match(MDLParserPARAMETER) if p.HasError() { // Recognition error - abort rule @@ -58139,11 +58684,11 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3905) + p.SetState(3962) p.IdentifierOrKeyword() } { - p.SetState(3906) + p.SetState(3963) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -58151,10 +58696,10 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3907) + p.SetState(3964) p.DataType() } - p.SetState(3911) + p.SetState(3968) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58162,7 +58707,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { switch p.GetTokenStream().LA(1) { case MDLParserDEFAULT: { - p.SetState(3908) + p.SetState(3965) p.Match(MDLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -58170,7 +58715,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3909) + p.SetState(3966) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -58180,7 +58725,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { case MDLParserNULL: { - p.SetState(3910) + p.SetState(3967) p.Match(MDLParserNULL) if p.HasError() { // Recognition error - abort rule @@ -58193,14 +58738,14 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { default: } - p.SetState(3917) + p.SetState(3974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(3934) + p.SetState(3991) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58209,7 +58754,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { if _la == MDLParserRETURNS { { - p.SetState(3918) + p.SetState(3975) p.Match(MDLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -58217,10 +58762,10 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3919) + p.SetState(3976) p.QualifiedName() } - p.SetState(3932) + p.SetState(3989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58229,7 +58774,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { if _la == MDLParserMAP { { - p.SetState(3920) + p.SetState(3977) p.Match(MDLParserMAP) if p.HasError() { // Recognition error - abort rule @@ -58237,7 +58782,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3921) + p.SetState(3978) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -58245,10 +58790,10 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3922) + p.SetState(3979) p.DatabaseQueryMapping() } - p.SetState(3927) + p.SetState(3984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58257,7 +58802,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { for _la == MDLParserCOMMA { { - p.SetState(3923) + p.SetState(3980) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -58265,11 +58810,11 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } } { - p.SetState(3924) + p.SetState(3981) p.DatabaseQueryMapping() } - p.SetState(3929) + p.SetState(3986) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58277,7 +58822,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(3930) + p.SetState(3987) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -58289,7 +58834,7 @@ func (p *MDLParser) DatabaseQuery() (localctx IDatabaseQueryContext) { } { - p.SetState(3936) + p.SetState(3993) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -58428,11 +58973,11 @@ func (p *MDLParser) DatabaseQueryMapping() (localctx IDatabaseQueryMappingContex p.EnterRule(localctx, 456, MDLParserRULE_databaseQueryMapping) p.EnterOuterAlt(localctx, 1) { - p.SetState(3938) + p.SetState(3995) p.IdentifierOrKeyword() } { - p.SetState(3939) + p.SetState(3996) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -58440,7 +58985,7 @@ func (p *MDLParser) DatabaseQueryMapping() (localctx IDatabaseQueryMappingContex } } { - p.SetState(3940) + p.SetState(3997) p.IdentifierOrKeyword() } @@ -58612,7 +59157,7 @@ func (p *MDLParser) CreateConstantStatement() (localctx ICreateConstantStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(3942) + p.SetState(3999) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -58620,11 +59165,11 @@ func (p *MDLParser) CreateConstantStatement() (localctx ICreateConstantStatement } } { - p.SetState(3943) + p.SetState(4000) p.QualifiedName() } { - p.SetState(3944) + p.SetState(4001) p.Match(MDLParserTYPE) if p.HasError() { // Recognition error - abort rule @@ -58632,11 +59177,11 @@ func (p *MDLParser) CreateConstantStatement() (localctx ICreateConstantStatement } } { - p.SetState(3945) + p.SetState(4002) p.DataType() } { - p.SetState(3946) + p.SetState(4003) p.Match(MDLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -58644,10 +59189,10 @@ func (p *MDLParser) CreateConstantStatement() (localctx ICreateConstantStatement } } { - p.SetState(3947) + p.SetState(4004) p.Literal() } - p.SetState(3949) + p.SetState(4006) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58656,7 +59201,7 @@ func (p *MDLParser) CreateConstantStatement() (localctx ICreateConstantStatement if _la == MDLParserFOLDER || _la == MDLParserEXPOSED || _la == MDLParserCOMMENT { { - p.SetState(3948) + p.SetState(4005) p.ConstantOptions() } @@ -58789,7 +59334,7 @@ func (p *MDLParser) ConstantOptions() (localctx IConstantOptionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3952) + p.SetState(4009) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58798,11 +59343,11 @@ func (p *MDLParser) ConstantOptions() (localctx IConstantOptionsContext) { for ok := true; ok; ok = _la == MDLParserFOLDER || _la == MDLParserEXPOSED || _la == MDLParserCOMMENT { { - p.SetState(3951) + p.SetState(4008) p.ConstantOption() } - p.SetState(3954) + p.SetState(4011) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58921,7 +59466,7 @@ func (s *ConstantOptionContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { localctx = NewConstantOptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 462, MDLParserRULE_constantOption) - p.SetState(3963) + p.SetState(4020) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58931,7 +59476,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { case MDLParserCOMMENT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3956) + p.SetState(4013) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -58939,7 +59484,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { } } { - p.SetState(3957) + p.SetState(4014) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -58950,7 +59495,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { case MDLParserFOLDER: p.EnterOuterAlt(localctx, 2) { - p.SetState(3958) + p.SetState(4015) p.Match(MDLParserFOLDER) if p.HasError() { // Recognition error - abort rule @@ -58958,7 +59503,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { } } { - p.SetState(3959) + p.SetState(4016) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -58969,7 +59514,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { case MDLParserEXPOSED: p.EnterOuterAlt(localctx, 3) { - p.SetState(3960) + p.SetState(4017) p.Match(MDLParserEXPOSED) if p.HasError() { // Recognition error - abort rule @@ -58977,7 +59522,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { } } { - p.SetState(3961) + p.SetState(4018) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -58985,7 +59530,7 @@ func (p *MDLParser) ConstantOption() (localctx IConstantOptionContext) { } } { - p.SetState(3962) + p.SetState(4019) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -59146,7 +59691,7 @@ func (p *MDLParser) CreateConfigurationStatement() (localctx ICreateConfiguratio p.EnterOuterAlt(localctx, 1) { - p.SetState(3965) + p.SetState(4022) p.Match(MDLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -59154,22 +59699,22 @@ func (p *MDLParser) CreateConfigurationStatement() (localctx ICreateConfiguratio } } { - p.SetState(3966) + p.SetState(4023) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3975) + p.SetState(4032) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 407, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 417, p.GetParserRuleContext()) == 1 { { - p.SetState(3967) + p.SetState(4024) p.SettingsAssignment() } - p.SetState(3972) + p.SetState(4029) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59178,7 +59723,7 @@ func (p *MDLParser) CreateConfigurationStatement() (localctx ICreateConfiguratio for _la == MDLParserCOMMA { { - p.SetState(3968) + p.SetState(4025) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -59186,11 +59731,11 @@ func (p *MDLParser) CreateConfigurationStatement() (localctx ICreateConfiguratio } } { - p.SetState(3969) + p.SetState(4026) p.SettingsAssignment() } - p.SetState(3974) + p.SetState(4031) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59401,7 +59946,7 @@ func (p *MDLParser) CreateRestClientStatement() (localctx ICreateRestClientState p.EnterOuterAlt(localctx, 1) { - p.SetState(3977) + p.SetState(4034) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -59409,7 +59954,7 @@ func (p *MDLParser) CreateRestClientStatement() (localctx ICreateRestClientState } } { - p.SetState(3978) + p.SetState(4035) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -59417,26 +59962,26 @@ func (p *MDLParser) CreateRestClientStatement() (localctx ICreateRestClientState } } { - p.SetState(3979) + p.SetState(4036) p.QualifiedName() } { - p.SetState(3980) + p.SetState(4037) p.RestClientBaseUrl() } { - p.SetState(3981) + p.SetState(4038) p.RestClientAuthentication() } { - p.SetState(3982) + p.SetState(4039) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3986) + p.SetState(4043) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59445,11 +59990,11 @@ func (p *MDLParser) CreateRestClientStatement() (localctx ICreateRestClientState for _la == MDLParserDOC_COMMENT || _la == MDLParserOPERATION { { - p.SetState(3983) + p.SetState(4040) p.RestOperationDef() } - p.SetState(3988) + p.SetState(4045) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59457,7 +60002,7 @@ func (p *MDLParser) CreateRestClientStatement() (localctx ICreateRestClientState _la = p.GetTokenStream().LA(1) } { - p.SetState(3989) + p.SetState(4046) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -59563,7 +60108,7 @@ func (p *MDLParser) RestClientBaseUrl() (localctx IRestClientBaseUrlContext) { p.EnterRule(localctx, 468, MDLParserRULE_restClientBaseUrl) p.EnterOuterAlt(localctx, 1) { - p.SetState(3991) + p.SetState(4048) p.Match(MDLParserBASE) if p.HasError() { // Recognition error - abort rule @@ -59571,7 +60116,7 @@ func (p *MDLParser) RestClientBaseUrl() (localctx IRestClientBaseUrlContext) { } } { - p.SetState(3992) + p.SetState(4049) p.Match(MDLParserURL) if p.HasError() { // Recognition error - abort rule @@ -59579,7 +60124,7 @@ func (p *MDLParser) RestClientBaseUrl() (localctx IRestClientBaseUrlContext) { } } { - p.SetState(3993) + p.SetState(4050) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -59761,17 +60306,17 @@ func (s *RestClientAuthenticationContext) ExitRule(listener antlr.ParseTreeListe func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticationContext) { localctx = NewRestClientAuthenticationContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 470, MDLParserRULE_restClientAuthentication) - p.SetState(4009) + p.SetState(4066) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 409, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 419, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3995) + p.SetState(4052) p.Match(MDLParserAUTHENTICATION) if p.HasError() { // Recognition error - abort rule @@ -59779,7 +60324,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(3996) + p.SetState(4053) p.Match(MDLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -59790,7 +60335,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3997) + p.SetState(4054) p.Match(MDLParserAUTHENTICATION) if p.HasError() { // Recognition error - abort rule @@ -59798,7 +60343,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(3998) + p.SetState(4055) p.Match(MDLParserBASIC) if p.HasError() { // Recognition error - abort rule @@ -59806,7 +60351,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(3999) + p.SetState(4056) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -59814,7 +60359,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4000) + p.SetState(4057) p.Match(MDLParserUSERNAME) if p.HasError() { // Recognition error - abort rule @@ -59822,7 +60367,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4001) + p.SetState(4058) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -59830,11 +60375,11 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4002) + p.SetState(4059) p.RestAuthValue() } { - p.SetState(4003) + p.SetState(4060) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -59842,7 +60387,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4004) + p.SetState(4061) p.Match(MDLParserPASSWORD) if p.HasError() { // Recognition error - abort rule @@ -59850,7 +60395,7 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4005) + p.SetState(4062) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -59858,11 +60403,11 @@ func (p *MDLParser) RestClientAuthentication() (localctx IRestClientAuthenticati } } { - p.SetState(4006) + p.SetState(4063) p.RestAuthValue() } { - p.SetState(4007) + p.SetState(4064) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -59969,7 +60514,7 @@ func (p *MDLParser) RestAuthValue() (localctx IRestAuthValueContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4011) + p.SetState(4068) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSTRING_LITERAL || _la == MDLParserVARIABLE) { @@ -60210,7 +60755,7 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4014) + p.SetState(4071) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60219,35 +60764,35 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { if _la == MDLParserDOC_COMMENT { { - p.SetState(4013) + p.SetState(4070) p.DocComment() } } { - p.SetState(4016) + p.SetState(4073) p.Match(MDLParserOPERATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4019) + p.SetState(4076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: { - p.SetState(4017) + p.SetState(4074) p.IdentifierOrKeyword() } case MDLParserSTRING_LITERAL: { - p.SetState(4018) + p.SetState(4075) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -60260,7 +60805,7 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { goto errorExit } { - p.SetState(4021) + p.SetState(4078) p.Match(MDLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -60268,11 +60813,11 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { } } { - p.SetState(4022) + p.SetState(4079) p.RestHttpMethod() } { - p.SetState(4023) + p.SetState(4080) p.Match(MDLParserPATH) if p.HasError() { // Recognition error - abort rule @@ -60280,27 +60825,27 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { } } { - p.SetState(4024) + p.SetState(4081) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4028) + p.SetState(4085) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserHEADER || ((int64((_la-324)) & ^0x3f) == 0 && ((int64(1)<<(_la-324))&17593259786243) != 0) { + for _la == MDLParserHEADER || ((int64((_la-328)) & ^0x3f) == 0 && ((int64(1)<<(_la-328))&17593259786243) != 0) { { - p.SetState(4025) + p.SetState(4082) p.RestOperationClause() } - p.SetState(4030) + p.SetState(4087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60308,7 +60853,7 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(4031) + p.SetState(4088) p.Match(MDLParserRESPONSE) if p.HasError() { // Recognition error - abort rule @@ -60316,11 +60861,11 @@ func (p *MDLParser) RestOperationDef() (localctx IRestOperationDefContext) { } } { - p.SetState(4032) + p.SetState(4089) p.RestResponseSpec() } { - p.SetState(4033) + p.SetState(4090) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -60438,10 +60983,10 @@ func (p *MDLParser) RestHttpMethod() (localctx IRestHttpMethodContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4035) + p.SetState(4092) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserDELETE || ((int64((_la-334)) & ^0x3f) == 0 && ((int64(1)<<(_la-334))&15) != 0)) { + if !(_la == MDLParserDELETE || ((int64((_la-338)) & ^0x3f) == 0 && ((int64(1)<<(_la-338))&15) != 0)) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -60631,7 +61176,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) p.EnterRule(localctx, 478, MDLParserRULE_restOperationClause) var _la int - p.SetState(4055) + p.SetState(4112) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60641,7 +61186,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) case MDLParserPARAMETER: p.EnterOuterAlt(localctx, 1) { - p.SetState(4037) + p.SetState(4094) p.Match(MDLParserPARAMETER) if p.HasError() { // Recognition error - abort rule @@ -60649,7 +61194,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4038) + p.SetState(4095) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -60657,7 +61202,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4039) + p.SetState(4096) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -60665,14 +61210,14 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4040) + p.SetState(4097) p.DataType() } case MDLParserQUERY: p.EnterOuterAlt(localctx, 2) { - p.SetState(4041) + p.SetState(4098) p.Match(MDLParserQUERY) if p.HasError() { // Recognition error - abort rule @@ -60680,7 +61225,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4042) + p.SetState(4099) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -60688,7 +61233,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4043) + p.SetState(4100) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -60696,14 +61241,14 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4044) + p.SetState(4101) p.DataType() } case MDLParserHEADER: p.EnterOuterAlt(localctx, 3) { - p.SetState(4045) + p.SetState(4102) p.Match(MDLParserHEADER) if p.HasError() { // Recognition error - abort rule @@ -60711,7 +61256,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4046) + p.SetState(4103) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -60719,7 +61264,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4047) + p.SetState(4104) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -60727,14 +61272,14 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4048) + p.SetState(4105) p.RestHeaderValue() } case MDLParserBODY: p.EnterOuterAlt(localctx, 4) { - p.SetState(4049) + p.SetState(4106) p.Match(MDLParserBODY) if p.HasError() { // Recognition error - abort rule @@ -60742,7 +61287,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4050) + p.SetState(4107) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserJSON || _la == MDLParserFILE_KW) { @@ -60753,7 +61298,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4051) + p.SetState(4108) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -60761,7 +61306,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4052) + p.SetState(4109) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -60772,7 +61317,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) case MDLParserTIMEOUT: p.EnterOuterAlt(localctx, 5) { - p.SetState(4053) + p.SetState(4110) p.Match(MDLParserTIMEOUT) if p.HasError() { // Recognition error - abort rule @@ -60780,7 +61325,7 @@ func (p *MDLParser) RestOperationClause() (localctx IRestOperationClauseContext) } } { - p.SetState(4054) + p.SetState(4111) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -60889,17 +61434,17 @@ func (s *RestHeaderValueContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RestHeaderValue() (localctx IRestHeaderValueContext) { localctx = NewRestHeaderValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 480, MDLParserRULE_restHeaderValue) - p.SetState(4062) + p.SetState(4119) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 414, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 424, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4057) + p.SetState(4114) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -60910,7 +61455,7 @@ func (p *MDLParser) RestHeaderValue() (localctx IRestHeaderValueContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4058) + p.SetState(4115) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -60921,7 +61466,7 @@ func (p *MDLParser) RestHeaderValue() (localctx IRestHeaderValueContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4059) + p.SetState(4116) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -60929,7 +61474,7 @@ func (p *MDLParser) RestHeaderValue() (localctx IRestHeaderValueContext) { } } { - p.SetState(4060) + p.SetState(4117) p.Match(MDLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -60937,7 +61482,7 @@ func (p *MDLParser) RestHeaderValue() (localctx IRestHeaderValueContext) { } } { - p.SetState(4061) + p.SetState(4118) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -61065,7 +61610,7 @@ func (s *RestResponseSpecContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { localctx = NewRestResponseSpecContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 482, MDLParserRULE_restResponseSpec) - p.SetState(4077) + p.SetState(4134) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61075,7 +61620,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { case MDLParserJSON: p.EnterOuterAlt(localctx, 1) { - p.SetState(4064) + p.SetState(4121) p.Match(MDLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -61083,7 +61628,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4065) + p.SetState(4122) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -61091,7 +61636,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4066) + p.SetState(4123) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -61102,7 +61647,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { case MDLParserSTRING_TYPE: p.EnterOuterAlt(localctx, 2) { - p.SetState(4067) + p.SetState(4124) p.Match(MDLParserSTRING_TYPE) if p.HasError() { // Recognition error - abort rule @@ -61110,7 +61655,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4068) + p.SetState(4125) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -61118,7 +61663,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4069) + p.SetState(4126) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -61129,7 +61674,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { case MDLParserFILE_KW: p.EnterOuterAlt(localctx, 3) { - p.SetState(4070) + p.SetState(4127) p.Match(MDLParserFILE_KW) if p.HasError() { // Recognition error - abort rule @@ -61137,7 +61682,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4071) + p.SetState(4128) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -61145,7 +61690,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4072) + p.SetState(4129) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -61156,7 +61701,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { case MDLParserSTATUS: p.EnterOuterAlt(localctx, 4) { - p.SetState(4073) + p.SetState(4130) p.Match(MDLParserSTATUS) if p.HasError() { // Recognition error - abort rule @@ -61164,7 +61709,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4074) + p.SetState(4131) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -61172,7 +61717,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { } } { - p.SetState(4075) + p.SetState(4132) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -61183,7 +61728,7 @@ func (p *MDLParser) RestResponseSpec() (localctx IRestResponseSpecContext) { case MDLParserNONE: p.EnterOuterAlt(localctx, 5) { - p.SetState(4076) + p.SetState(4133) p.Match(MDLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -61338,7 +61883,7 @@ func (p *MDLParser) CreateIndexStatement() (localctx ICreateIndexStatementContex p.EnterRule(localctx, 484, MDLParserRULE_createIndexStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(4079) + p.SetState(4136) p.Match(MDLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -61346,7 +61891,7 @@ func (p *MDLParser) CreateIndexStatement() (localctx ICreateIndexStatementContex } } { - p.SetState(4080) + p.SetState(4137) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -61354,7 +61899,7 @@ func (p *MDLParser) CreateIndexStatement() (localctx ICreateIndexStatementContex } } { - p.SetState(4081) + p.SetState(4138) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -61362,11 +61907,11 @@ func (p *MDLParser) CreateIndexStatement() (localctx ICreateIndexStatementContex } } { - p.SetState(4082) + p.SetState(4139) p.QualifiedName() } { - p.SetState(4083) + p.SetState(4140) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -61374,11 +61919,11 @@ func (p *MDLParser) CreateIndexStatement() (localctx ICreateIndexStatementContex } } { - p.SetState(4084) + p.SetState(4141) p.IndexAttributeList() } { - p.SetState(4085) + p.SetState(4142) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -61578,7 +62123,7 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta p.EnterOuterAlt(localctx, 1) { - p.SetState(4087) + p.SetState(4144) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -61586,7 +62131,7 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta } } { - p.SetState(4088) + p.SetState(4145) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -61594,11 +62139,11 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta } } { - p.SetState(4089) + p.SetState(4146) p.QualifiedName() } { - p.SetState(4090) + p.SetState(4147) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -61606,10 +62151,10 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta } } { - p.SetState(4091) + p.SetState(4148) p.OdataPropertyAssignment() } - p.SetState(4096) + p.SetState(4153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61618,7 +62163,7 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta for _la == MDLParserCOMMA { { - p.SetState(4092) + p.SetState(4149) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -61626,11 +62171,11 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta } } { - p.SetState(4093) + p.SetState(4150) p.OdataPropertyAssignment() } - p.SetState(4098) + p.SetState(4155) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61638,14 +62183,14 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta _la = p.GetTokenStream().LA(1) } { - p.SetState(4099) + p.SetState(4156) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4101) + p.SetState(4158) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61654,7 +62199,7 @@ func (p *MDLParser) CreateODataClientStatement() (localctx ICreateODataClientSta if _la == MDLParserHEADERS { { - p.SetState(4100) + p.SetState(4157) p.OdataHeadersClause() } @@ -61905,7 +62450,7 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS p.EnterOuterAlt(localctx, 1) { - p.SetState(4103) + p.SetState(4160) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -61913,7 +62458,7 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS } } { - p.SetState(4104) + p.SetState(4161) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -61921,11 +62466,11 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS } } { - p.SetState(4105) + p.SetState(4162) p.QualifiedName() } { - p.SetState(4106) + p.SetState(4163) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -61933,10 +62478,10 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS } } { - p.SetState(4107) + p.SetState(4164) p.OdataPropertyAssignment() } - p.SetState(4112) + p.SetState(4169) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61945,7 +62490,7 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS for _la == MDLParserCOMMA { { - p.SetState(4108) + p.SetState(4165) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -61953,11 +62498,11 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS } } { - p.SetState(4109) + p.SetState(4166) p.OdataPropertyAssignment() } - p.SetState(4114) + p.SetState(4171) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61965,14 +62510,14 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS _la = p.GetTokenStream().LA(1) } { - p.SetState(4115) + p.SetState(4172) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4117) + p.SetState(4174) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61981,12 +62526,12 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS if _la == MDLParserAUTHENTICATION { { - p.SetState(4116) + p.SetState(4173) p.OdataAuthenticationClause() } } - p.SetState(4127) + p.SetState(4184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61995,14 +62540,14 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS if _la == MDLParserLBRACE { { - p.SetState(4119) + p.SetState(4176) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4123) + p.SetState(4180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62011,11 +62556,11 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS for _la == MDLParserPUBLISH { { - p.SetState(4120) + p.SetState(4177) p.PublishEntityBlock() } - p.SetState(4125) + p.SetState(4182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62023,7 +62568,7 @@ func (p *MDLParser) CreateODataServiceStatement() (localctx ICreateODataServiceS _la = p.GetTokenStream().LA(1) } { - p.SetState(4126) + p.SetState(4183) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -62156,17 +62701,17 @@ func (s *OdataPropertyValueContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { localctx = NewOdataPropertyValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 490, MDLParserRULE_odataPropertyValue) - p.SetState(4138) + p.SetState(4195) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 423, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 433, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4129) + p.SetState(4186) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -62177,7 +62722,7 @@ func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4130) + p.SetState(4187) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -62188,7 +62733,7 @@ func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4131) + p.SetState(4188) p.Match(MDLParserTRUE) if p.HasError() { // Recognition error - abort rule @@ -62199,7 +62744,7 @@ func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4132) + p.SetState(4189) p.Match(MDLParserFALSE) if p.HasError() { // Recognition error - abort rule @@ -62210,19 +62755,19 @@ func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4133) + p.SetState(4190) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4135) + p.SetState(4192) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 422, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 432, p.GetParserRuleContext()) == 1 { { - p.SetState(4134) + p.SetState(4191) p.QualifiedName() } @@ -62233,7 +62778,7 @@ func (p *MDLParser) OdataPropertyValue() (localctx IOdataPropertyValueContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4137) + p.SetState(4194) p.QualifiedName() } @@ -62363,11 +62908,11 @@ func (p *MDLParser) OdataPropertyAssignment() (localctx IOdataPropertyAssignment p.EnterRule(localctx, 492, MDLParserRULE_odataPropertyAssignment) p.EnterOuterAlt(localctx, 1) { - p.SetState(4140) + p.SetState(4197) p.IdentifierOrKeyword() } { - p.SetState(4141) + p.SetState(4198) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -62375,7 +62920,7 @@ func (p *MDLParser) OdataPropertyAssignment() (localctx IOdataPropertyAssignment } } { - p.SetState(4142) + p.SetState(4199) p.OdataPropertyValue() } @@ -62501,11 +63046,11 @@ func (p *MDLParser) OdataAlterAssignment() (localctx IOdataAlterAssignmentContex p.EnterRule(localctx, 494, MDLParserRULE_odataAlterAssignment) p.EnterOuterAlt(localctx, 1) { - p.SetState(4144) + p.SetState(4201) p.IdentifierOrKeyword() } { - p.SetState(4145) + p.SetState(4202) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -62513,7 +63058,7 @@ func (p *MDLParser) OdataAlterAssignment() (localctx IOdataAlterAssignmentContex } } { - p.SetState(4146) + p.SetState(4203) p.OdataPropertyValue() } @@ -62660,7 +63205,7 @@ func (p *MDLParser) OdataAuthenticationClause() (localctx IOdataAuthenticationCl p.EnterOuterAlt(localctx, 1) { - p.SetState(4148) + p.SetState(4205) p.Match(MDLParserAUTHENTICATION) if p.HasError() { // Recognition error - abort rule @@ -62668,10 +63213,10 @@ func (p *MDLParser) OdataAuthenticationClause() (localctx IOdataAuthenticationCl } } { - p.SetState(4149) + p.SetState(4206) p.OdataAuthType() } - p.SetState(4154) + p.SetState(4211) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62680,7 +63225,7 @@ func (p *MDLParser) OdataAuthenticationClause() (localctx IOdataAuthenticationCl for _la == MDLParserCOMMA { { - p.SetState(4150) + p.SetState(4207) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -62688,11 +63233,11 @@ func (p *MDLParser) OdataAuthenticationClause() (localctx IOdataAuthenticationCl } } { - p.SetState(4151) + p.SetState(4208) p.OdataAuthType() } - p.SetState(4156) + p.SetState(4213) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62823,7 +63368,7 @@ func (s *OdataAuthTypeContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { localctx = NewOdataAuthTypeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 498, MDLParserRULE_odataAuthType) - p.SetState(4165) + p.SetState(4222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62833,7 +63378,7 @@ func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { case MDLParserBASIC: p.EnterOuterAlt(localctx, 1) { - p.SetState(4157) + p.SetState(4214) p.Match(MDLParserBASIC) if p.HasError() { // Recognition error - abort rule @@ -62844,7 +63389,7 @@ func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { case MDLParserSESSION: p.EnterOuterAlt(localctx, 2) { - p.SetState(4158) + p.SetState(4215) p.Match(MDLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -62855,7 +63400,7 @@ func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { case MDLParserGUEST: p.EnterOuterAlt(localctx, 3) { - p.SetState(4159) + p.SetState(4216) p.Match(MDLParserGUEST) if p.HasError() { // Recognition error - abort rule @@ -62866,19 +63411,19 @@ func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { case MDLParserMICROFLOW: p.EnterOuterAlt(localctx, 4) { - p.SetState(4160) + p.SetState(4217) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4162) + p.SetState(4219) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 425, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 435, p.GetParserRuleContext()) == 1 { { - p.SetState(4161) + p.SetState(4218) p.QualifiedName() } @@ -62889,7 +63434,7 @@ func (p *MDLParser) OdataAuthType() (localctx IOdataAuthTypeContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 5) { - p.SetState(4164) + p.SetState(4221) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -63109,7 +63654,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4167) + p.SetState(4224) p.Match(MDLParserPUBLISH) if p.HasError() { // Recognition error - abort rule @@ -63117,7 +63662,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } { - p.SetState(4168) + p.SetState(4225) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -63125,10 +63670,10 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } { - p.SetState(4169) + p.SetState(4226) p.QualifiedName() } - p.SetState(4172) + p.SetState(4229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63137,7 +63682,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { if _la == MDLParserAS { { - p.SetState(4170) + p.SetState(4227) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -63145,7 +63690,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } { - p.SetState(4171) + p.SetState(4228) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -63154,7 +63699,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } - p.SetState(4185) + p.SetState(4242) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63163,7 +63708,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { if _la == MDLParserLPAREN { { - p.SetState(4174) + p.SetState(4231) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -63171,10 +63716,10 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } { - p.SetState(4175) + p.SetState(4232) p.OdataPropertyAssignment() } - p.SetState(4180) + p.SetState(4237) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63183,7 +63728,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { for _la == MDLParserCOMMA { { - p.SetState(4176) + p.SetState(4233) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -63191,11 +63736,11 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } { - p.SetState(4177) + p.SetState(4234) p.OdataPropertyAssignment() } - p.SetState(4182) + p.SetState(4239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63203,7 +63748,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(4183) + p.SetState(4240) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -63212,7 +63757,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { } } - p.SetState(4188) + p.SetState(4245) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63221,12 +63766,12 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { if _la == MDLParserEXPOSE { { - p.SetState(4187) + p.SetState(4244) p.ExposeClause() } } - p.SetState(4191) + p.SetState(4248) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63235,7 +63780,7 @@ func (p *MDLParser) PublishEntityBlock() (localctx IPublishEntityBlockContext) { if _la == MDLParserSEMICOLON { { - p.SetState(4190) + p.SetState(4247) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -63403,7 +63948,7 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4193) + p.SetState(4250) p.Match(MDLParserEXPOSE) if p.HasError() { // Recognition error - abort rule @@ -63411,14 +63956,14 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { } } { - p.SetState(4194) + p.SetState(4251) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4204) + p.SetState(4261) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63427,7 +63972,7 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { switch p.GetTokenStream().LA(1) { case MDLParserSTAR: { - p.SetState(4195) + p.SetState(4252) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -63437,10 +63982,10 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { case MDLParserIDENTIFIER: { - p.SetState(4196) + p.SetState(4253) p.ExposeMember() } - p.SetState(4201) + p.SetState(4258) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63449,7 +63994,7 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { for _la == MDLParserCOMMA { { - p.SetState(4197) + p.SetState(4254) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -63457,11 +64002,11 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { } } { - p.SetState(4198) + p.SetState(4255) p.ExposeMember() } - p.SetState(4203) + p.SetState(4260) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63474,7 +64019,7 @@ func (p *MDLParser) ExposeClause() (localctx IExposeClauseContext) { goto errorExit } { - p.SetState(4206) + p.SetState(4263) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -63599,14 +64144,14 @@ func (p *MDLParser) ExposeMember() (localctx IExposeMemberContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4208) + p.SetState(4265) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4211) + p.SetState(4268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63615,7 +64160,7 @@ func (p *MDLParser) ExposeMember() (localctx IExposeMemberContext) { if _la == MDLParserAS { { - p.SetState(4209) + p.SetState(4266) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -63623,7 +64168,7 @@ func (p *MDLParser) ExposeMember() (localctx IExposeMemberContext) { } } { - p.SetState(4210) + p.SetState(4267) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -63632,7 +64177,7 @@ func (p *MDLParser) ExposeMember() (localctx IExposeMemberContext) { } } - p.SetState(4214) + p.SetState(4271) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63641,7 +64186,7 @@ func (p *MDLParser) ExposeMember() (localctx IExposeMemberContext) { if _la == MDLParserLPAREN { { - p.SetState(4213) + p.SetState(4270) p.ExposeMemberOptions() } @@ -63762,7 +64307,7 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(4216) + p.SetState(4273) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -63770,14 +64315,14 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) } } { - p.SetState(4217) + p.SetState(4274) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4222) + p.SetState(4279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63786,7 +64331,7 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) for _la == MDLParserCOMMA { { - p.SetState(4218) + p.SetState(4275) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -63794,7 +64339,7 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) } } { - p.SetState(4219) + p.SetState(4276) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -63802,7 +64347,7 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) } } - p.SetState(4224) + p.SetState(4281) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63810,7 +64355,7 @@ func (p *MDLParser) ExposeMemberOptions() (localctx IExposeMemberOptionsContext) _la = p.GetTokenStream().LA(1) } { - p.SetState(4225) + p.SetState(4282) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -64061,7 +64606,7 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt p.EnterOuterAlt(localctx, 1) { - p.SetState(4227) + p.SetState(4284) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -64069,7 +64614,7 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4228) + p.SetState(4285) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -64077,11 +64622,11 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4229) + p.SetState(4286) p.QualifiedName() } { - p.SetState(4230) + p.SetState(4287) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -64089,7 +64634,7 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4231) + p.SetState(4288) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -64097,7 +64642,7 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4232) + p.SetState(4289) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -64105,11 +64650,11 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4233) + p.SetState(4290) p.QualifiedName() } { - p.SetState(4234) + p.SetState(4291) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -64117,10 +64662,10 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4235) + p.SetState(4292) p.OdataPropertyAssignment() } - p.SetState(4240) + p.SetState(4297) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64129,7 +64674,7 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt for _la == MDLParserCOMMA { { - p.SetState(4236) + p.SetState(4293) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -64137,11 +64682,11 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt } } { - p.SetState(4237) + p.SetState(4294) p.OdataPropertyAssignment() } - p.SetState(4242) + p.SetState(4299) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64149,14 +64694,14 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt _la = p.GetTokenStream().LA(1) } { - p.SetState(4243) + p.SetState(4300) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4249) + p.SetState(4306) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64165,29 +64710,29 @@ func (p *MDLParser) CreateExternalEntityStatement() (localctx ICreateExternalEnt if _la == MDLParserLPAREN { { - p.SetState(4244) + p.SetState(4301) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4246) + p.SetState(4303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&25356937159770116) != 0) || ((int64((_la-69)) & ^0x3f) == 0 && ((int64(1)<<(_la-69))&36169534507319297) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&2819253375860736011) != 0) || ((int64((_la-205)) & ^0x3f) == 0 && ((int64(1)<<(_la-205))&4398180887567) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || ((int64((_la-483)) & ^0x3f) == 0 && ((int64(1)<<(_la-483))&1374523752453) != 0) { + if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&25357212037677060) != 0) || ((int64((_la-69)) & ^0x3f) == 0 && ((int64(1)<<(_la-69))&36169534507319297) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&-7169730597647024117) != 0) || ((int64((_la-207)) & ^0x3f) == 0 && ((int64(1)<<(_la-207))&17592723074063) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || ((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&1374523752453) != 0) { { - p.SetState(4245) + p.SetState(4302) p.AttributeDefinitionList() } } { - p.SetState(4248) + p.SetState(4305) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -64352,29 +64897,29 @@ func (p *MDLParser) CreateNavigationStatement() (localctx ICreateNavigationState p.EnterOuterAlt(localctx, 1) { - p.SetState(4251) + p.SetState(4308) p.Match(MDLParserNAVIGATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4254) + p.SetState(4311) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 440, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 450, p.GetParserRuleContext()) { case 1: { - p.SetState(4252) + p.SetState(4309) p.QualifiedName() } case 2: { - p.SetState(4253) + p.SetState(4310) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -64385,20 +64930,20 @@ func (p *MDLParser) CreateNavigationStatement() (localctx ICreateNavigationState case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(4259) + p.SetState(4316) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserNOT || ((int64((_la-372)) & ^0x3f) == 0 && ((int64(1)<<(_la-372))&13) != 0) { + for _la == MDLParserNOT || ((int64((_la-376)) & ^0x3f) == 0 && ((int64(1)<<(_la-376))&13) != 0) { { - p.SetState(4256) + p.SetState(4313) p.NavigationClause() } - p.SetState(4261) + p.SetState(4318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64559,7 +65104,7 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4262) + p.SetState(4319) p.Match(MDLParserHEADERS) if p.HasError() { // Recognition error - abort rule @@ -64567,7 +65112,7 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { } } { - p.SetState(4263) + p.SetState(4320) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -64575,10 +65120,10 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { } } { - p.SetState(4264) + p.SetState(4321) p.OdataHeaderEntry() } - p.SetState(4269) + p.SetState(4326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64587,7 +65132,7 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { for _la == MDLParserCOMMA { { - p.SetState(4265) + p.SetState(4322) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -64595,11 +65140,11 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { } } { - p.SetState(4266) + p.SetState(4323) p.OdataHeaderEntry() } - p.SetState(4271) + p.SetState(4328) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64607,7 +65152,7 @@ func (p *MDLParser) OdataHeadersClause() (localctx IOdataHeadersClauseContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(4272) + p.SetState(4329) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -64725,7 +65270,7 @@ func (p *MDLParser) OdataHeaderEntry() (localctx IOdataHeaderEntryContext) { p.EnterRule(localctx, 514, MDLParserRULE_odataHeaderEntry) p.EnterOuterAlt(localctx, 1) { - p.SetState(4274) + p.SetState(4331) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -64733,7 +65278,7 @@ func (p *MDLParser) OdataHeaderEntry() (localctx IOdataHeaderEntryContext) { } } { - p.SetState(4275) + p.SetState(4332) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -64741,7 +65286,7 @@ func (p *MDLParser) OdataHeaderEntry() (localctx IOdataHeaderEntryContext) { } } { - p.SetState(4276) + p.SetState(4333) p.OdataPropertyValue() } @@ -64978,7 +65523,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin p.EnterOuterAlt(localctx, 1) { - p.SetState(4278) + p.SetState(4335) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -64986,7 +65531,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4279) + p.SetState(4336) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -64994,7 +65539,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4280) + p.SetState(4337) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -65002,11 +65547,11 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4281) + p.SetState(4338) p.QualifiedName() } { - p.SetState(4282) + p.SetState(4339) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -65014,10 +65559,10 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4283) + p.SetState(4340) p.OdataPropertyAssignment() } - p.SetState(4288) + p.SetState(4345) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65026,7 +65571,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin for _la == MDLParserCOMMA { { - p.SetState(4284) + p.SetState(4341) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -65034,11 +65579,11 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4285) + p.SetState(4342) p.OdataPropertyAssignment() } - p.SetState(4290) + p.SetState(4347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65046,7 +65591,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin _la = p.GetTokenStream().LA(1) } { - p.SetState(4291) + p.SetState(4348) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -65054,14 +65599,14 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin } } { - p.SetState(4292) + p.SetState(4349) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4294) + p.SetState(4351) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65070,11 +65615,11 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin for ok := true; ok; ok = _la == MDLParserMESSAGE { { - p.SetState(4293) + p.SetState(4350) p.BusinessEventMessageDef() } - p.SetState(4296) + p.SetState(4353) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65082,7 +65627,7 @@ func (p *MDLParser) CreateBusinessEventServiceStatement() (localctx ICreateBusin _la = p.GetTokenStream().LA(1) } { - p.SetState(4298) + p.SetState(4355) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -65316,7 +65861,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef p.EnterOuterAlt(localctx, 1) { - p.SetState(4300) + p.SetState(4357) p.Match(MDLParserMESSAGE) if p.HasError() { // Recognition error - abort rule @@ -65324,7 +65869,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4301) + p.SetState(4358) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -65332,7 +65877,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4302) + p.SetState(4359) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -65340,10 +65885,10 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4303) + p.SetState(4360) p.BusinessEventAttrDef() } - p.SetState(4308) + p.SetState(4365) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65352,7 +65897,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef for _la == MDLParserCOMMA { { - p.SetState(4304) + p.SetState(4361) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -65360,11 +65905,11 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4305) + p.SetState(4362) p.BusinessEventAttrDef() } - p.SetState(4310) + p.SetState(4367) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65372,7 +65917,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef _la = p.GetTokenStream().LA(1) } { - p.SetState(4311) + p.SetState(4368) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -65380,7 +65925,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4312) + p.SetState(4369) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserPUBLISH || _la == MDLParserSUBSCRIBE) { @@ -65390,7 +65935,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef p.Consume() } } - p.SetState(4315) + p.SetState(4372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65399,7 +65944,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef if _la == MDLParserENTITY { { - p.SetState(4313) + p.SetState(4370) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -65407,12 +65952,12 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4314) + p.SetState(4371) p.QualifiedName() } } - p.SetState(4319) + p.SetState(4376) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65421,7 +65966,7 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef if _la == MDLParserMICROFLOW { { - p.SetState(4317) + p.SetState(4374) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -65429,13 +65974,13 @@ func (p *MDLParser) BusinessEventMessageDef() (localctx IBusinessEventMessageDef } } { - p.SetState(4318) + p.SetState(4375) p.QualifiedName() } } { - p.SetState(4321) + p.SetState(4378) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -65553,7 +66098,7 @@ func (p *MDLParser) BusinessEventAttrDef() (localctx IBusinessEventAttrDefContex p.EnterRule(localctx, 520, MDLParserRULE_businessEventAttrDef) p.EnterOuterAlt(localctx, 1) { - p.SetState(4323) + p.SetState(4380) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -65561,7 +66106,7 @@ func (p *MDLParser) BusinessEventAttrDef() (localctx IBusinessEventAttrDefContex } } { - p.SetState(4324) + p.SetState(4381) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -65569,7 +66114,7 @@ func (p *MDLParser) BusinessEventAttrDef() (localctx IBusinessEventAttrDefContex } } { - p.SetState(4325) + p.SetState(4382) p.DataType() } @@ -65823,7 +66368,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement p.EnterOuterAlt(localctx, 1) { - p.SetState(4327) + p.SetState(4384) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -65831,10 +66376,10 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4328) + p.SetState(4385) p.QualifiedName() } - p.SetState(4333) + p.SetState(4390) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65843,7 +66388,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserPARAMETER { { - p.SetState(4329) + p.SetState(4386) p.Match(MDLParserPARAMETER) if p.HasError() { // Recognition error - abort rule @@ -65851,7 +66396,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4330) + p.SetState(4387) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule @@ -65859,7 +66404,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4331) + p.SetState(4388) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -65867,12 +66412,12 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4332) + p.SetState(4389) p.QualifiedName() } } - p.SetState(4337) + p.SetState(4394) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65881,7 +66426,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserDISPLAY { { - p.SetState(4335) + p.SetState(4392) p.Match(MDLParserDISPLAY) if p.HasError() { // Recognition error - abort rule @@ -65889,7 +66434,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4336) + p.SetState(4393) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -65898,7 +66443,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } - p.SetState(4341) + p.SetState(4398) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65907,7 +66452,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserDESCRIPTION { { - p.SetState(4339) + p.SetState(4396) p.Match(MDLParserDESCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -65915,7 +66460,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4340) + p.SetState(4397) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -65924,7 +66469,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } - p.SetState(4346) + p.SetState(4403) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65933,7 +66478,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserEXPORT { { - p.SetState(4343) + p.SetState(4400) p.Match(MDLParserEXPORT) if p.HasError() { // Recognition error - abort rule @@ -65941,7 +66486,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4344) + p.SetState(4401) p.Match(MDLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -65949,7 +66494,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4345) + p.SetState(4402) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserAPI || _la == MDLParserIDENTIFIER) { @@ -65961,7 +66506,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } - p.SetState(4351) + p.SetState(4408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65970,7 +66515,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserOVERVIEW { { - p.SetState(4348) + p.SetState(4405) p.Match(MDLParserOVERVIEW) if p.HasError() { // Recognition error - abort rule @@ -65978,7 +66523,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4349) + p.SetState(4406) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -65986,12 +66531,12 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4350) + p.SetState(4407) p.QualifiedName() } } - p.SetState(4356) + p.SetState(4413) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66000,7 +66545,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement if _la == MDLParserDUE { { - p.SetState(4353) + p.SetState(4410) p.Match(MDLParserDUE) if p.HasError() { // Recognition error - abort rule @@ -66008,7 +66553,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4354) + p.SetState(4411) p.Match(MDLParserDATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -66016,7 +66561,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4355) + p.SetState(4412) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -66026,7 +66571,7 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } { - p.SetState(4358) + p.SetState(4415) p.Match(MDLParserBEGIN) if p.HasError() { // Recognition error - abort rule @@ -66034,11 +66579,11 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4359) + p.SetState(4416) p.WorkflowBody() } { - p.SetState(4360) + p.SetState(4417) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -66046,19 +66591,19 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } } { - p.SetState(4361) + p.SetState(4418) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4363) + p.SetState(4420) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 454, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 464, p.GetParserRuleContext()) == 1 { { - p.SetState(4362) + p.SetState(4419) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66069,12 +66614,12 @@ func (p *MDLParser) CreateWorkflowStatement() (localctx ICreateWorkflowStatement } else if p.HasError() { // JIM goto errorExit } - p.SetState(4366) + p.SetState(4423) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 455, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 465, p.GetParserRuleContext()) == 1 { { - p.SetState(4365) + p.SetState(4422) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -66213,20 +66758,20 @@ func (p *MDLParser) WorkflowBody() (localctx IWorkflowBodyContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4371) + p.SetState(4428) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for _la == MDLParserCALL || ((int64((_la-461)) & ^0x3f) == 0 && ((int64(1)<<(_la-461))&291077) != 0) { + for _la == MDLParserCALL || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&291077) != 0) { { - p.SetState(4368) + p.SetState(4425) p.WorkflowActivityStmt() } - p.SetState(4373) + p.SetState(4430) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66473,21 +67018,21 @@ func (s *WorkflowActivityStmtContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContext) { localctx = NewWorkflowActivityStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 526, MDLParserRULE_workflowActivityStmt) - p.SetState(4401) + p.SetState(4458) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 457, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 467, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4374) + p.SetState(4431) p.WorkflowUserTaskStmt() } { - p.SetState(4375) + p.SetState(4432) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66498,11 +67043,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4377) + p.SetState(4434) p.WorkflowCallMicroflowStmt() } { - p.SetState(4378) + p.SetState(4435) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66513,11 +67058,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4380) + p.SetState(4437) p.WorkflowCallWorkflowStmt() } { - p.SetState(4381) + p.SetState(4438) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66528,11 +67073,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4383) + p.SetState(4440) p.WorkflowDecisionStmt() } { - p.SetState(4384) + p.SetState(4441) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66543,11 +67088,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4386) + p.SetState(4443) p.WorkflowParallelSplitStmt() } { - p.SetState(4387) + p.SetState(4444) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66558,11 +67103,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4389) + p.SetState(4446) p.WorkflowJumpToStmt() } { - p.SetState(4390) + p.SetState(4447) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66573,11 +67118,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4392) + p.SetState(4449) p.WorkflowWaitForTimerStmt() } { - p.SetState(4393) + p.SetState(4450) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66588,11 +67133,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4395) + p.SetState(4452) p.WorkflowWaitForNotificationStmt() } { - p.SetState(4396) + p.SetState(4453) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66603,11 +67148,11 @@ func (p *MDLParser) WorkflowActivityStmt() (localctx IWorkflowActivityStmtContex case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4398) + p.SetState(4455) p.WorkflowAnnotationStmt() } { - p.SetState(4399) + p.SetState(4456) p.Match(MDLParserSEMICOLON) if p.HasError() { // Recognition error - abort rule @@ -66921,7 +67466,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex p.EnterRule(localctx, 528, MDLParserRULE_workflowUserTaskStmt) var _la int - p.SetState(4500) + p.SetState(4557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66931,7 +67476,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex case MDLParserUSER: p.EnterOuterAlt(localctx, 1) { - p.SetState(4403) + p.SetState(4460) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -66939,7 +67484,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4404) + p.SetState(4461) p.Match(MDLParserTASK) if p.HasError() { // Recognition error - abort rule @@ -66947,7 +67492,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4405) + p.SetState(4462) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -66955,14 +67500,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4406) + p.SetState(4463) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4409) + p.SetState(4466) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66971,7 +67516,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserPAGE { { - p.SetState(4407) + p.SetState(4464) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -66979,17 +67524,17 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4408) + p.SetState(4465) p.QualifiedName() } } - p.SetState(4414) + p.SetState(4471) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 459, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 469, p.GetParserRuleContext()) == 1 { { - p.SetState(4411) + p.SetState(4468) p.Match(MDLParserTARGETING) if p.HasError() { // Recognition error - abort rule @@ -66997,7 +67542,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4412) + p.SetState(4469) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -67005,14 +67550,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4413) + p.SetState(4470) p.QualifiedName() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(4419) + p.SetState(4476) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67021,7 +67566,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserTARGETING { { - p.SetState(4416) + p.SetState(4473) p.Match(MDLParserTARGETING) if p.HasError() { // Recognition error - abort rule @@ -67029,7 +67574,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4417) + p.SetState(4474) p.Match(MDLParserXPATH) if p.HasError() { // Recognition error - abort rule @@ -67037,7 +67582,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4418) + p.SetState(4475) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67046,7 +67591,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4423) + p.SetState(4480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67055,7 +67600,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserENTITY { { - p.SetState(4421) + p.SetState(4478) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -67063,12 +67608,12 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4422) + p.SetState(4479) p.QualifiedName() } } - p.SetState(4428) + p.SetState(4485) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67077,7 +67622,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserDUE { { - p.SetState(4425) + p.SetState(4482) p.Match(MDLParserDUE) if p.HasError() { // Recognition error - abort rule @@ -67085,7 +67630,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4426) + p.SetState(4483) p.Match(MDLParserDATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -67093,7 +67638,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4427) + p.SetState(4484) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67102,7 +67647,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4432) + p.SetState(4489) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67111,7 +67656,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserDESCRIPTION { { - p.SetState(4430) + p.SetState(4487) p.Match(MDLParserDESCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -67119,7 +67664,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4431) + p.SetState(4488) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67128,7 +67673,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4440) + p.SetState(4497) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67137,14 +67682,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserOUTCOMES { { - p.SetState(4434) + p.SetState(4491) p.Match(MDLParserOUTCOMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4436) + p.SetState(4493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67153,11 +67698,11 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex for ok := true; ok; ok = _la == MDLParserSTRING_LITERAL { { - p.SetState(4435) + p.SetState(4492) p.WorkflowUserTaskOutcome() } - p.SetState(4438) + p.SetState(4495) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67166,7 +67711,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4449) + p.SetState(4506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67175,7 +67720,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserBOUNDARY { { - p.SetState(4442) + p.SetState(4499) p.Match(MDLParserBOUNDARY) if p.HasError() { // Recognition error - abort rule @@ -67183,27 +67728,27 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4443) + p.SetState(4500) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4445) + p.SetState(4502) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&1537) != 0) { + for ok := true; ok; ok = ((int64((_la-472)) & ^0x3f) == 0 && ((int64(1)<<(_la-472))&1537) != 0) { { - p.SetState(4444) + p.SetState(4501) p.WorkflowBoundaryEventClause() } - p.SetState(4447) + p.SetState(4504) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67216,7 +67761,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex case MDLParserMULTI: p.EnterOuterAlt(localctx, 2) { - p.SetState(4451) + p.SetState(4508) p.Match(MDLParserMULTI) if p.HasError() { // Recognition error - abort rule @@ -67224,7 +67769,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4452) + p.SetState(4509) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -67232,7 +67777,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4453) + p.SetState(4510) p.Match(MDLParserTASK) if p.HasError() { // Recognition error - abort rule @@ -67240,7 +67785,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4454) + p.SetState(4511) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -67248,14 +67793,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4455) + p.SetState(4512) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4458) + p.SetState(4515) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67264,7 +67809,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserPAGE { { - p.SetState(4456) + p.SetState(4513) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -67272,17 +67817,17 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4457) + p.SetState(4514) p.QualifiedName() } } - p.SetState(4463) + p.SetState(4520) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 469, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 479, p.GetParserRuleContext()) == 1 { { - p.SetState(4460) + p.SetState(4517) p.Match(MDLParserTARGETING) if p.HasError() { // Recognition error - abort rule @@ -67290,7 +67835,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4461) + p.SetState(4518) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -67298,14 +67843,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4462) + p.SetState(4519) p.QualifiedName() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(4468) + p.SetState(4525) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67314,7 +67859,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserTARGETING { { - p.SetState(4465) + p.SetState(4522) p.Match(MDLParserTARGETING) if p.HasError() { // Recognition error - abort rule @@ -67322,7 +67867,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4466) + p.SetState(4523) p.Match(MDLParserXPATH) if p.HasError() { // Recognition error - abort rule @@ -67330,7 +67875,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4467) + p.SetState(4524) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67339,7 +67884,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4472) + p.SetState(4529) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67348,7 +67893,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserENTITY { { - p.SetState(4470) + p.SetState(4527) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -67356,12 +67901,12 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4471) + p.SetState(4528) p.QualifiedName() } } - p.SetState(4477) + p.SetState(4534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67370,7 +67915,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserDUE { { - p.SetState(4474) + p.SetState(4531) p.Match(MDLParserDUE) if p.HasError() { // Recognition error - abort rule @@ -67378,7 +67923,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4475) + p.SetState(4532) p.Match(MDLParserDATE_TYPE) if p.HasError() { // Recognition error - abort rule @@ -67386,7 +67931,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4476) + p.SetState(4533) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67395,7 +67940,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4481) + p.SetState(4538) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67404,7 +67949,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserDESCRIPTION { { - p.SetState(4479) + p.SetState(4536) p.Match(MDLParserDESCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -67412,7 +67957,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4480) + p.SetState(4537) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67421,7 +67966,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4489) + p.SetState(4546) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67430,14 +67975,14 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserOUTCOMES { { - p.SetState(4483) + p.SetState(4540) p.Match(MDLParserOUTCOMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4485) + p.SetState(4542) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67446,11 +67991,11 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex for ok := true; ok; ok = _la == MDLParserSTRING_LITERAL { { - p.SetState(4484) + p.SetState(4541) p.WorkflowUserTaskOutcome() } - p.SetState(4487) + p.SetState(4544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67459,7 +68004,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } - p.SetState(4498) + p.SetState(4555) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67468,7 +68013,7 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex if _la == MDLParserBOUNDARY { { - p.SetState(4491) + p.SetState(4548) p.Match(MDLParserBOUNDARY) if p.HasError() { // Recognition error - abort rule @@ -67476,27 +68021,27 @@ func (p *MDLParser) WorkflowUserTaskStmt() (localctx IWorkflowUserTaskStmtContex } } { - p.SetState(4492) + p.SetState(4549) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4494) + p.SetState(4551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&1537) != 0) { + for ok := true; ok; ok = ((int64((_la-472)) & ^0x3f) == 0 && ((int64(1)<<(_la-472))&1537) != 0) { { - p.SetState(4493) + p.SetState(4550) p.WorkflowBoundaryEventClause() } - p.SetState(4496) + p.SetState(4553) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67641,7 +68186,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve p.EnterRule(localctx, 530, MDLParserRULE_workflowBoundaryEventClause) var _la int - p.SetState(4535) + p.SetState(4592) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67651,7 +68196,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve case MDLParserINTERRUPTING: p.EnterOuterAlt(localctx, 1) { - p.SetState(4502) + p.SetState(4559) p.Match(MDLParserINTERRUPTING) if p.HasError() { // Recognition error - abort rule @@ -67659,14 +68204,14 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4503) + p.SetState(4560) p.Match(MDLParserTIMER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4505) + p.SetState(4562) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67675,7 +68220,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserSTRING_LITERAL { { - p.SetState(4504) + p.SetState(4561) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67684,7 +68229,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } - p.SetState(4511) + p.SetState(4568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67693,7 +68238,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserLBRACE { { - p.SetState(4507) + p.SetState(4564) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -67701,11 +68246,11 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4508) + p.SetState(4565) p.WorkflowBody() } { - p.SetState(4509) + p.SetState(4566) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -67718,7 +68263,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve case MDLParserNON: p.EnterOuterAlt(localctx, 2) { - p.SetState(4513) + p.SetState(4570) p.Match(MDLParserNON) if p.HasError() { // Recognition error - abort rule @@ -67726,7 +68271,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4514) + p.SetState(4571) p.Match(MDLParserINTERRUPTING) if p.HasError() { // Recognition error - abort rule @@ -67734,14 +68279,14 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4515) + p.SetState(4572) p.Match(MDLParserTIMER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4517) + p.SetState(4574) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67750,7 +68295,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserSTRING_LITERAL { { - p.SetState(4516) + p.SetState(4573) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67759,7 +68304,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } - p.SetState(4523) + p.SetState(4580) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67768,7 +68313,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserLBRACE { { - p.SetState(4519) + p.SetState(4576) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -67776,11 +68321,11 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4520) + p.SetState(4577) p.WorkflowBody() } { - p.SetState(4521) + p.SetState(4578) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -67793,14 +68338,14 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve case MDLParserTIMER: p.EnterOuterAlt(localctx, 3) { - p.SetState(4525) + p.SetState(4582) p.Match(MDLParserTIMER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4527) + p.SetState(4584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67809,7 +68354,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserSTRING_LITERAL { { - p.SetState(4526) + p.SetState(4583) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67818,7 +68363,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } - p.SetState(4533) + p.SetState(4590) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67827,7 +68372,7 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve if _la == MDLParserLBRACE { { - p.SetState(4529) + p.SetState(4586) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -67835,11 +68380,11 @@ func (p *MDLParser) WorkflowBoundaryEventClause() (localctx IWorkflowBoundaryEve } } { - p.SetState(4530) + p.SetState(4587) p.WorkflowBody() } { - p.SetState(4531) + p.SetState(4588) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -67969,7 +68514,7 @@ func (p *MDLParser) WorkflowUserTaskOutcome() (localctx IWorkflowUserTaskOutcome p.EnterRule(localctx, 532, MDLParserRULE_workflowUserTaskOutcome) p.EnterOuterAlt(localctx, 1) { - p.SetState(4537) + p.SetState(4594) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -67977,7 +68522,7 @@ func (p *MDLParser) WorkflowUserTaskOutcome() (localctx IWorkflowUserTaskOutcome } } { - p.SetState(4538) + p.SetState(4595) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -67985,11 +68530,11 @@ func (p *MDLParser) WorkflowUserTaskOutcome() (localctx IWorkflowUserTaskOutcome } } { - p.SetState(4539) + p.SetState(4596) p.WorkflowBody() } { - p.SetState(4540) + p.SetState(4597) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -68288,7 +68833,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow p.EnterOuterAlt(localctx, 1) { - p.SetState(4542) + p.SetState(4599) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -68296,7 +68841,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4543) + p.SetState(4600) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -68304,10 +68849,10 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4544) + p.SetState(4601) p.QualifiedName() } - p.SetState(4547) + p.SetState(4604) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68316,7 +68861,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow if _la == MDLParserCOMMENT { { - p.SetState(4545) + p.SetState(4602) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -68324,7 +68869,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4546) + p.SetState(4603) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -68333,7 +68878,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } - p.SetState(4561) + p.SetState(4618) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68342,7 +68887,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow if _la == MDLParserWITH { { - p.SetState(4549) + p.SetState(4606) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -68350,7 +68895,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4550) + p.SetState(4607) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -68358,10 +68903,10 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4551) + p.SetState(4608) p.WorkflowParameterMapping() } - p.SetState(4556) + p.SetState(4613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68370,7 +68915,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow for _la == MDLParserCOMMA { { - p.SetState(4552) + p.SetState(4609) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -68378,11 +68923,11 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4553) + p.SetState(4610) p.WorkflowParameterMapping() } - p.SetState(4558) + p.SetState(4615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68390,7 +68935,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow _la = p.GetTokenStream().LA(1) } { - p.SetState(4559) + p.SetState(4616) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -68399,7 +68944,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } - p.SetState(4569) + p.SetState(4626) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68408,27 +68953,27 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow if _la == MDLParserOUTCOMES { { - p.SetState(4563) + p.SetState(4620) p.Match(MDLParserOUTCOMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4565) + p.SetState(4622) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-295)) & ^0x3f) == 0 && ((int64(1)<<(_la-295))&7) != 0) || _la == MDLParserSTRING_LITERAL { + for ok := true; ok; ok = ((int64((_la-299)) & ^0x3f) == 0 && ((int64(1)<<(_la-299))&7) != 0) || _la == MDLParserSTRING_LITERAL { { - p.SetState(4564) + p.SetState(4621) p.WorkflowConditionOutcome() } - p.SetState(4567) + p.SetState(4624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68437,7 +68982,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } - p.SetState(4578) + p.SetState(4635) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68446,7 +68991,7 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow if _la == MDLParserBOUNDARY { { - p.SetState(4571) + p.SetState(4628) p.Match(MDLParserBOUNDARY) if p.HasError() { // Recognition error - abort rule @@ -68454,27 +68999,27 @@ func (p *MDLParser) WorkflowCallMicroflowStmt() (localctx IWorkflowCallMicroflow } } { - p.SetState(4572) + p.SetState(4629) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4574) + p.SetState(4631) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&1537) != 0) { + for ok := true; ok; ok = ((int64((_la-472)) & ^0x3f) == 0 && ((int64(1)<<(_la-472))&1537) != 0) { { - p.SetState(4573) + p.SetState(4630) p.WorkflowBoundaryEventClause() } - p.SetState(4576) + p.SetState(4633) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68594,11 +69139,11 @@ func (p *MDLParser) WorkflowParameterMapping() (localctx IWorkflowParameterMappi p.EnterRule(localctx, 536, MDLParserRULE_workflowParameterMapping) p.EnterOuterAlt(localctx, 1) { - p.SetState(4580) + p.SetState(4637) p.QualifiedName() } { - p.SetState(4581) + p.SetState(4638) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -68606,7 +69151,7 @@ func (p *MDLParser) WorkflowParameterMapping() (localctx IWorkflowParameterMappi } } { - p.SetState(4582) + p.SetState(4639) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -68804,7 +69349,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt p.EnterOuterAlt(localctx, 1) { - p.SetState(4584) + p.SetState(4641) p.Match(MDLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -68812,7 +69357,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4585) + p.SetState(4642) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -68820,10 +69365,10 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4586) + p.SetState(4643) p.QualifiedName() } - p.SetState(4589) + p.SetState(4646) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68832,7 +69377,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt if _la == MDLParserCOMMENT { { - p.SetState(4587) + p.SetState(4644) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -68840,7 +69385,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4588) + p.SetState(4645) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -68849,7 +69394,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } - p.SetState(4603) + p.SetState(4660) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68858,7 +69403,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt if _la == MDLParserWITH { { - p.SetState(4591) + p.SetState(4648) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -68866,7 +69411,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4592) + p.SetState(4649) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -68874,10 +69419,10 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4593) + p.SetState(4650) p.WorkflowParameterMapping() } - p.SetState(4598) + p.SetState(4655) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68886,7 +69431,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt for _la == MDLParserCOMMA { { - p.SetState(4594) + p.SetState(4651) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -68894,11 +69439,11 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt } } { - p.SetState(4595) + p.SetState(4652) p.WorkflowParameterMapping() } - p.SetState(4600) + p.SetState(4657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68906,7 +69451,7 @@ func (p *MDLParser) WorkflowCallWorkflowStmt() (localctx IWorkflowCallWorkflowSt _la = p.GetTokenStream().LA(1) } { - p.SetState(4601) + p.SetState(4658) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -69069,14 +69614,14 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex p.EnterOuterAlt(localctx, 1) { - p.SetState(4605) + p.SetState(4662) p.Match(MDLParserDECISION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4607) + p.SetState(4664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69085,7 +69630,7 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex if _la == MDLParserSTRING_LITERAL { { - p.SetState(4606) + p.SetState(4663) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -69094,7 +69639,7 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex } } - p.SetState(4611) + p.SetState(4668) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69103,7 +69648,7 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex if _la == MDLParserCOMMENT { { - p.SetState(4609) + p.SetState(4666) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69111,7 +69656,7 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex } } { - p.SetState(4610) + p.SetState(4667) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -69120,7 +69665,7 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex } } - p.SetState(4619) + p.SetState(4676) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69129,27 +69674,27 @@ func (p *MDLParser) WorkflowDecisionStmt() (localctx IWorkflowDecisionStmtContex if _la == MDLParserOUTCOMES { { - p.SetState(4613) + p.SetState(4670) p.Match(MDLParserOUTCOMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4615) + p.SetState(4672) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-295)) & ^0x3f) == 0 && ((int64(1)<<(_la-295))&7) != 0) || _la == MDLParserSTRING_LITERAL { + for ok := true; ok; ok = ((int64((_la-299)) & ^0x3f) == 0 && ((int64(1)<<(_la-299))&7) != 0) || _la == MDLParserSTRING_LITERAL { { - p.SetState(4614) + p.SetState(4671) p.WorkflowConditionOutcome() } - p.SetState(4617) + p.SetState(4674) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69296,10 +69841,10 @@ func (p *MDLParser) WorkflowConditionOutcome() (localctx IWorkflowConditionOutco p.EnterOuterAlt(localctx, 1) { - p.SetState(4621) + p.SetState(4678) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-295)) & ^0x3f) == 0 && ((int64(1)<<(_la-295))&7) != 0) || _la == MDLParserSTRING_LITERAL) { + if !(((int64((_la-299)) & ^0x3f) == 0 && ((int64(1)<<(_la-299))&7) != 0) || _la == MDLParserSTRING_LITERAL) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -69307,7 +69852,7 @@ func (p *MDLParser) WorkflowConditionOutcome() (localctx IWorkflowConditionOutco } } { - p.SetState(4622) + p.SetState(4679) p.Match(MDLParserARROW) if p.HasError() { // Recognition error - abort rule @@ -69315,7 +69860,7 @@ func (p *MDLParser) WorkflowConditionOutcome() (localctx IWorkflowConditionOutco } } { - p.SetState(4623) + p.SetState(4680) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -69323,11 +69868,11 @@ func (p *MDLParser) WorkflowConditionOutcome() (localctx IWorkflowConditionOutco } } { - p.SetState(4624) + p.SetState(4681) p.WorkflowBody() } { - p.SetState(4625) + p.SetState(4682) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -69483,7 +70028,7 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit p.EnterOuterAlt(localctx, 1) { - p.SetState(4627) + p.SetState(4684) p.Match(MDLParserPARALLEL) if p.HasError() { // Recognition error - abort rule @@ -69491,14 +70036,14 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit } } { - p.SetState(4628) + p.SetState(4685) p.Match(MDLParserSPLIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4631) + p.SetState(4688) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69507,7 +70052,7 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit if _la == MDLParserCOMMENT { { - p.SetState(4629) + p.SetState(4686) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69515,7 +70060,7 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit } } { - p.SetState(4630) + p.SetState(4687) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -69524,7 +70069,7 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit } } - p.SetState(4634) + p.SetState(4691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69533,11 +70078,11 @@ func (p *MDLParser) WorkflowParallelSplitStmt() (localctx IWorkflowParallelSplit for ok := true; ok; ok = _la == MDLParserPATH { { - p.SetState(4633) + p.SetState(4690) p.WorkflowParallelPath() } - p.SetState(4636) + p.SetState(4693) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69665,7 +70210,7 @@ func (p *MDLParser) WorkflowParallelPath() (localctx IWorkflowParallelPathContex p.EnterRule(localctx, 546, MDLParserRULE_workflowParallelPath) p.EnterOuterAlt(localctx, 1) { - p.SetState(4638) + p.SetState(4695) p.Match(MDLParserPATH) if p.HasError() { // Recognition error - abort rule @@ -69673,7 +70218,7 @@ func (p *MDLParser) WorkflowParallelPath() (localctx IWorkflowParallelPathContex } } { - p.SetState(4639) + p.SetState(4696) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -69681,7 +70226,7 @@ func (p *MDLParser) WorkflowParallelPath() (localctx IWorkflowParallelPathContex } } { - p.SetState(4640) + p.SetState(4697) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -69689,11 +70234,11 @@ func (p *MDLParser) WorkflowParallelPath() (localctx IWorkflowParallelPathContex } } { - p.SetState(4641) + p.SetState(4698) p.WorkflowBody() } { - p.SetState(4642) + p.SetState(4699) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -69811,7 +70356,7 @@ func (p *MDLParser) WorkflowJumpToStmt() (localctx IWorkflowJumpToStmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4644) + p.SetState(4701) p.Match(MDLParserJUMP) if p.HasError() { // Recognition error - abort rule @@ -69819,7 +70364,7 @@ func (p *MDLParser) WorkflowJumpToStmt() (localctx IWorkflowJumpToStmtContext) { } } { - p.SetState(4645) + p.SetState(4702) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -69827,14 +70372,14 @@ func (p *MDLParser) WorkflowJumpToStmt() (localctx IWorkflowJumpToStmtContext) { } } { - p.SetState(4646) + p.SetState(4703) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4649) + p.SetState(4706) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69843,7 +70388,7 @@ func (p *MDLParser) WorkflowJumpToStmt() (localctx IWorkflowJumpToStmtContext) { if _la == MDLParserCOMMENT { { - p.SetState(4647) + p.SetState(4704) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69851,7 +70396,7 @@ func (p *MDLParser) WorkflowJumpToStmt() (localctx IWorkflowJumpToStmtContext) { } } { - p.SetState(4648) + p.SetState(4705) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -69976,7 +70521,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt p.EnterOuterAlt(localctx, 1) { - p.SetState(4651) + p.SetState(4708) p.Match(MDLParserWAIT) if p.HasError() { // Recognition error - abort rule @@ -69984,7 +70529,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt } } { - p.SetState(4652) + p.SetState(4709) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -69992,14 +70537,14 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt } } { - p.SetState(4653) + p.SetState(4710) p.Match(MDLParserTIMER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4655) + p.SetState(4712) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70008,7 +70553,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt if _la == MDLParserSTRING_LITERAL { { - p.SetState(4654) + p.SetState(4711) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70017,7 +70562,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt } } - p.SetState(4659) + p.SetState(4716) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70026,7 +70571,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt if _la == MDLParserCOMMENT { { - p.SetState(4657) + p.SetState(4714) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70034,7 +70579,7 @@ func (p *MDLParser) WorkflowWaitForTimerStmt() (localctx IWorkflowWaitForTimerSt } } { - p.SetState(4658) + p.SetState(4715) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70207,7 +70752,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor p.EnterOuterAlt(localctx, 1) { - p.SetState(4661) + p.SetState(4718) p.Match(MDLParserWAIT) if p.HasError() { // Recognition error - abort rule @@ -70215,7 +70760,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor } } { - p.SetState(4662) + p.SetState(4719) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -70223,14 +70768,14 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor } } { - p.SetState(4663) + p.SetState(4720) p.Match(MDLParserNOTIFICATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4666) + p.SetState(4723) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70239,7 +70784,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor if _la == MDLParserCOMMENT { { - p.SetState(4664) + p.SetState(4721) p.Match(MDLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70247,7 +70792,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor } } { - p.SetState(4665) + p.SetState(4722) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70256,7 +70801,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor } } - p.SetState(4675) + p.SetState(4732) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70265,7 +70810,7 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor if _la == MDLParserBOUNDARY { { - p.SetState(4668) + p.SetState(4725) p.Match(MDLParserBOUNDARY) if p.HasError() { // Recognition error - abort rule @@ -70273,27 +70818,27 @@ func (p *MDLParser) WorkflowWaitForNotificationStmt() (localctx IWorkflowWaitFor } } { - p.SetState(4669) + p.SetState(4726) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4671) + p.SetState(4728) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - for ok := true; ok; ok = ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&1537) != 0) { + for ok := true; ok; ok = ((int64((_la-472)) & ^0x3f) == 0 && ((int64(1)<<(_la-472))&1537) != 0) { { - p.SetState(4670) + p.SetState(4727) p.WorkflowBoundaryEventClause() } - p.SetState(4673) + p.SetState(4730) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70396,7 +70941,7 @@ func (p *MDLParser) WorkflowAnnotationStmt() (localctx IWorkflowAnnotationStmtCo p.EnterRule(localctx, 554, MDLParserRULE_workflowAnnotationStmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4677) + p.SetState(4734) p.Match(MDLParserANNOTATION) if p.HasError() { // Recognition error - abort rule @@ -70404,7 +70949,7 @@ func (p *MDLParser) WorkflowAnnotationStmt() (localctx IWorkflowAnnotationStmtCo } } { - p.SetState(4678) + p.SetState(4735) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70617,7 +71162,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) p.EnterRule(localctx, 556, MDLParserRULE_alterSettingsClause) var _la int - p.SetState(4719) + p.SetState(4776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70627,14 +71172,14 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) case MDLParserWORKFLOWS, MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(4680) + p.SetState(4737) p.SettingsSection() } { - p.SetState(4681) + p.SetState(4738) p.SettingsAssignment() } - p.SetState(4686) + p.SetState(4743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70643,7 +71188,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) for _la == MDLParserCOMMA { { - p.SetState(4682) + p.SetState(4739) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -70651,11 +71196,11 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4683) + p.SetState(4740) p.SettingsAssignment() } - p.SetState(4688) + p.SetState(4745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70666,7 +71211,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) case MDLParserCONSTANT: p.EnterOuterAlt(localctx, 2) { - p.SetState(4689) + p.SetState(4746) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -70674,14 +71219,14 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4690) + p.SetState(4747) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4694) + p.SetState(4751) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70690,7 +71235,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) switch p.GetTokenStream().LA(1) { case MDLParserVALUE: { - p.SetState(4691) + p.SetState(4748) p.Match(MDLParserVALUE) if p.HasError() { // Recognition error - abort rule @@ -70698,13 +71243,13 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4692) + p.SetState(4749) p.SettingsValue() } case MDLParserDROP: { - p.SetState(4693) + p.SetState(4750) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -70716,7 +71261,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(4699) + p.SetState(4756) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70725,7 +71270,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) if _la == MDLParserIN { { - p.SetState(4696) + p.SetState(4753) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -70733,7 +71278,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4697) + p.SetState(4754) p.Match(MDLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -70741,7 +71286,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4698) + p.SetState(4755) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70754,7 +71299,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) case MDLParserDROP: p.EnterOuterAlt(localctx, 3) { - p.SetState(4701) + p.SetState(4758) p.Match(MDLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -70762,7 +71307,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4702) + p.SetState(4759) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -70770,14 +71315,14 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4703) + p.SetState(4760) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4707) + p.SetState(4764) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70786,7 +71331,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) if _la == MDLParserIN { { - p.SetState(4704) + p.SetState(4761) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -70794,7 +71339,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4705) + p.SetState(4762) p.Match(MDLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -70802,7 +71347,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4706) + p.SetState(4763) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70815,7 +71360,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) case MDLParserCONFIGURATION: p.EnterOuterAlt(localctx, 4) { - p.SetState(4709) + p.SetState(4766) p.Match(MDLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -70823,7 +71368,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4710) + p.SetState(4767) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -70831,10 +71376,10 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4711) + p.SetState(4768) p.SettingsAssignment() } - p.SetState(4716) + p.SetState(4773) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70843,7 +71388,7 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) for _la == MDLParserCOMMA { { - p.SetState(4712) + p.SetState(4769) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -70851,11 +71396,11 @@ func (p *MDLParser) AlterSettingsClause() (localctx IAlterSettingsClauseContext) } } { - p.SetState(4713) + p.SetState(4770) p.SettingsAssignment() } - p.SetState(4718) + p.SetState(4775) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70963,7 +71508,7 @@ func (p *MDLParser) SettingsSection() (localctx ISettingsSectionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4721) + p.SetState(4778) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserWORKFLOWS || _la == MDLParserIDENTIFIER) { @@ -71084,7 +71629,7 @@ func (p *MDLParser) SettingsAssignment() (localctx ISettingsAssignmentContext) { p.EnterRule(localctx, 560, MDLParserRULE_settingsAssignment) p.EnterOuterAlt(localctx, 1) { - p.SetState(4723) + p.SetState(4780) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -71092,7 +71637,7 @@ func (p *MDLParser) SettingsAssignment() (localctx ISettingsAssignmentContext) { } } { - p.SetState(4724) + p.SetState(4781) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -71100,7 +71645,7 @@ func (p *MDLParser) SettingsAssignment() (localctx ISettingsAssignmentContext) { } } { - p.SetState(4725) + p.SetState(4782) p.SettingsValue() } @@ -71229,17 +71774,17 @@ func (s *SettingsValueContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) SettingsValue() (localctx ISettingsValueContext) { localctx = NewSettingsValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 562, MDLParserRULE_settingsValue) - p.SetState(4731) + p.SetState(4788) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 514, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 524, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4727) + p.SetState(4784) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -71250,7 +71795,7 @@ func (p *MDLParser) SettingsValue() (localctx ISettingsValueContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4728) + p.SetState(4785) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -71261,14 +71806,14 @@ func (p *MDLParser) SettingsValue() (localctx ISettingsValueContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4729) + p.SetState(4786) p.BooleanLiteral() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4730) + p.SetState(4787) p.QualifiedName() } @@ -71425,38 +71970,38 @@ func (s *DqlStatementContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) DqlStatement() (localctx IDqlStatementContext) { localctx = NewDqlStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 564, MDLParserRULE_dqlStatement) - p.SetState(4737) + p.SetState(4794) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 515, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 525, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4733) + p.SetState(4790) p.ShowStatement() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4734) + p.SetState(4791) p.DescribeStatement() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4735) + p.SetState(4792) p.CatalogSelectQuery() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4736) + p.SetState(4793) p.OqlQuery() } @@ -72013,17 +72558,17 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { p.EnterRule(localctx, 566, MDLParserRULE_showStatement) var _la int - p.SetState(5174) + p.SetState(5231) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 583, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 593, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4739) + p.SetState(4796) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72031,7 +72576,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4740) + p.SetState(4797) p.Match(MDLParserMODULES) if p.HasError() { // Recognition error - abort rule @@ -72042,7 +72587,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4741) + p.SetState(4798) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72050,7 +72595,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4742) + p.SetState(4799) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -72058,7 +72603,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4743) + p.SetState(4800) p.Match(MDLParserENTITIES) if p.HasError() { // Recognition error - abort rule @@ -72066,7 +72611,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4744) + p.SetState(4801) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -72074,14 +72619,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4745) + p.SetState(4802) p.QualifiedName() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4746) + p.SetState(4803) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72089,7 +72634,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4747) + p.SetState(4804) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -72097,7 +72642,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4748) + p.SetState(4805) p.Match(MDLParserACTIONS) if p.HasError() { // Recognition error - abort rule @@ -72105,7 +72650,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4749) + p.SetState(4806) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -72113,14 +72658,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4750) + p.SetState(4807) p.QualifiedName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4751) + p.SetState(4808) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72128,7 +72673,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4752) + p.SetState(4809) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -72136,7 +72681,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4753) + p.SetState(4810) p.Match(MDLParserCHANNELS) if p.HasError() { // Recognition error - abort rule @@ -72144,7 +72689,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4754) + p.SetState(4811) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -72152,14 +72697,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4755) + p.SetState(4812) p.QualifiedName() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4756) + p.SetState(4813) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72167,7 +72712,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4757) + p.SetState(4814) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -72175,7 +72720,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4758) + p.SetState(4815) p.Match(MDLParserMESSAGES) if p.HasError() { // Recognition error - abort rule @@ -72183,7 +72728,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4759) + p.SetState(4816) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -72191,14 +72736,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4760) + p.SetState(4817) p.QualifiedName() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4761) + p.SetState(4818) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72206,14 +72751,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4762) + p.SetState(4819) p.Match(MDLParserENTITIES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4768) + p.SetState(4825) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72222,29 +72767,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4763) + p.SetState(4820) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4766) + p.SetState(4823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 516, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 526, p.GetParserRuleContext()) { case 1: { - p.SetState(4764) + p.SetState(4821) p.QualifiedName() } case 2: { - p.SetState(4765) + p.SetState(4822) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72261,7 +72806,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4770) + p.SetState(4827) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72269,14 +72814,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4771) + p.SetState(4828) p.Match(MDLParserASSOCIATIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4777) + p.SetState(4834) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72285,29 +72830,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4772) + p.SetState(4829) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4775) + p.SetState(4832) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 518, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 528, p.GetParserRuleContext()) { case 1: { - p.SetState(4773) + p.SetState(4830) p.QualifiedName() } case 2: { - p.SetState(4774) + p.SetState(4831) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72324,7 +72869,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4779) + p.SetState(4836) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72332,14 +72877,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4780) + p.SetState(4837) p.Match(MDLParserMICROFLOWS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4786) + p.SetState(4843) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72348,29 +72893,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4781) + p.SetState(4838) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4784) + p.SetState(4841) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 520, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 530, p.GetParserRuleContext()) { case 1: { - p.SetState(4782) + p.SetState(4839) p.QualifiedName() } case 2: { - p.SetState(4783) + p.SetState(4840) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72387,7 +72932,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4788) + p.SetState(4845) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72395,14 +72940,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4789) + p.SetState(4846) p.Match(MDLParserNANOFLOWS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4795) + p.SetState(4852) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72411,29 +72956,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4790) + p.SetState(4847) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4793) + p.SetState(4850) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 522, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 532, p.GetParserRuleContext()) { case 1: { - p.SetState(4791) + p.SetState(4848) p.QualifiedName() } case 2: { - p.SetState(4792) + p.SetState(4849) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72450,7 +72995,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4797) + p.SetState(4854) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72458,14 +73003,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4798) + p.SetState(4855) p.Match(MDLParserWORKFLOWS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4804) + p.SetState(4861) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72474,29 +73019,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4799) + p.SetState(4856) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4802) + p.SetState(4859) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 524, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 534, p.GetParserRuleContext()) { case 1: { - p.SetState(4800) + p.SetState(4857) p.QualifiedName() } case 2: { - p.SetState(4801) + p.SetState(4858) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72513,7 +73058,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4806) + p.SetState(4863) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72521,14 +73066,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4807) + p.SetState(4864) p.Match(MDLParserPAGES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4813) + p.SetState(4870) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72537,29 +73082,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4808) + p.SetState(4865) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4811) + p.SetState(4868) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 526, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 536, p.GetParserRuleContext()) { case 1: { - p.SetState(4809) + p.SetState(4866) p.QualifiedName() } case 2: { - p.SetState(4810) + p.SetState(4867) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72576,7 +73121,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4815) + p.SetState(4872) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72584,14 +73129,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4816) + p.SetState(4873) p.Match(MDLParserSNIPPETS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4822) + p.SetState(4879) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72600,29 +73145,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4817) + p.SetState(4874) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4820) + p.SetState(4877) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 528, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 538, p.GetParserRuleContext()) { case 1: { - p.SetState(4818) + p.SetState(4875) p.QualifiedName() } case 2: { - p.SetState(4819) + p.SetState(4876) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72639,7 +73184,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(4824) + p.SetState(4881) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72647,14 +73192,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4825) + p.SetState(4882) p.Match(MDLParserENUMERATIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4831) + p.SetState(4888) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72663,29 +73208,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4826) + p.SetState(4883) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4829) + p.SetState(4886) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 530, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 540, p.GetParserRuleContext()) { case 1: { - p.SetState(4827) + p.SetState(4884) p.QualifiedName() } case 2: { - p.SetState(4828) + p.SetState(4885) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72702,7 +73247,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(4833) + p.SetState(4890) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72710,14 +73255,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4834) + p.SetState(4891) p.Match(MDLParserCONSTANTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4840) + p.SetState(4897) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72726,29 +73271,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4835) + p.SetState(4892) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4838) + p.SetState(4895) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 532, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 542, p.GetParserRuleContext()) { case 1: { - p.SetState(4836) + p.SetState(4893) p.QualifiedName() } case 2: { - p.SetState(4837) + p.SetState(4894) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72765,7 +73310,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(4842) + p.SetState(4899) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72773,7 +73318,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4843) + p.SetState(4900) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -72781,14 +73326,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4844) + p.SetState(4901) p.Match(MDLParserVALUES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4850) + p.SetState(4907) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72797,29 +73342,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4845) + p.SetState(4902) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4848) + p.SetState(4905) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 534, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 544, p.GetParserRuleContext()) { case 1: { - p.SetState(4846) + p.SetState(4903) p.QualifiedName() } case 2: { - p.SetState(4847) + p.SetState(4904) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72836,7 +73381,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(4852) + p.SetState(4909) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72844,14 +73389,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4853) + p.SetState(4910) p.Match(MDLParserLAYOUTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4859) + p.SetState(4916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72860,29 +73405,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4854) + p.SetState(4911) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4857) + p.SetState(4914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 536, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 546, p.GetParserRuleContext()) { case 1: { - p.SetState(4855) + p.SetState(4912) p.QualifiedName() } case 2: { - p.SetState(4856) + p.SetState(4913) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72899,7 +73444,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(4861) + p.SetState(4918) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72907,14 +73452,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4862) + p.SetState(4919) p.Match(MDLParserNOTEBOOKS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4868) + p.SetState(4925) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72923,29 +73468,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4863) + p.SetState(4920) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4866) + p.SetState(4923) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 538, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 548, p.GetParserRuleContext()) { case 1: { - p.SetState(4864) + p.SetState(4921) p.QualifiedName() } case 2: { - p.SetState(4865) + p.SetState(4922) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -72962,7 +73507,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(4870) + p.SetState(4927) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -72970,7 +73515,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4871) + p.SetState(4928) p.Match(MDLParserJAVA) if p.HasError() { // Recognition error - abort rule @@ -72978,14 +73523,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4872) + p.SetState(4929) p.Match(MDLParserACTIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4878) + p.SetState(4935) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72994,29 +73539,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4873) + p.SetState(4930) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4876) + p.SetState(4933) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 540, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 550, p.GetParserRuleContext()) { case 1: { - p.SetState(4874) + p.SetState(4931) p.QualifiedName() } case 2: { - p.SetState(4875) + p.SetState(4932) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -73033,7 +73578,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(4880) + p.SetState(4937) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73041,7 +73586,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4881) + p.SetState(4938) p.Match(MDLParserJAVASCRIPT) if p.HasError() { // Recognition error - abort rule @@ -73049,14 +73594,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4882) + p.SetState(4939) p.Match(MDLParserACTIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4888) + p.SetState(4945) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73065,29 +73610,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4883) + p.SetState(4940) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4886) + p.SetState(4943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 542, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 552, p.GetParserRuleContext()) { case 1: { - p.SetState(4884) + p.SetState(4941) p.QualifiedName() } case 2: { - p.SetState(4885) + p.SetState(4942) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -73104,7 +73649,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(4890) + p.SetState(4947) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73112,7 +73657,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4891) + p.SetState(4948) p.Match(MDLParserIMAGE) if p.HasError() { // Recognition error - abort rule @@ -73120,14 +73665,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4892) + p.SetState(4949) p.Match(MDLParserCOLLECTION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4898) + p.SetState(4955) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73136,29 +73681,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4893) + p.SetState(4950) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4896) + p.SetState(4953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 544, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 554, p.GetParserRuleContext()) { case 1: { - p.SetState(4894) + p.SetState(4951) p.QualifiedName() } case 2: { - p.SetState(4895) + p.SetState(4952) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -73175,7 +73720,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(4900) + p.SetState(4957) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73183,7 +73728,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4901) + p.SetState(4958) p.Match(MDLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -73191,14 +73736,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4902) + p.SetState(4959) p.Match(MDLParserSTRUCTURES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4908) + p.SetState(4965) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73207,29 +73752,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4903) + p.SetState(4960) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4906) + p.SetState(4963) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 546, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 556, p.GetParserRuleContext()) { case 1: { - p.SetState(4904) + p.SetState(4961) p.QualifiedName() } case 2: { - p.SetState(4905) + p.SetState(4962) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -73246,7 +73791,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(4910) + p.SetState(4967) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73254,7 +73799,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4911) + p.SetState(4968) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -73262,14 +73807,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4912) + p.SetState(4969) p.QualifiedName() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(4913) + p.SetState(4970) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73277,7 +73822,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4914) + p.SetState(4971) p.Match(MDLParserASSOCIATION) if p.HasError() { // Recognition error - abort rule @@ -73285,14 +73830,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4915) + p.SetState(4972) p.QualifiedName() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(4916) + p.SetState(4973) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73300,7 +73845,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4917) + p.SetState(4974) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -73308,14 +73853,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4918) + p.SetState(4975) p.QualifiedName() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(4919) + p.SetState(4976) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73323,7 +73868,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4920) + p.SetState(4977) p.Match(MDLParserCONNECTIONS) if p.HasError() { // Recognition error - abort rule @@ -73334,7 +73879,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(4921) + p.SetState(4978) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73342,7 +73887,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4922) + p.SetState(4979) p.Match(MDLParserSTATUS) if p.HasError() { // Recognition error - abort rule @@ -73353,7 +73898,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(4923) + p.SetState(4980) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73361,7 +73906,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4924) + p.SetState(4981) p.Match(MDLParserVERSION) if p.HasError() { // Recognition error - abort rule @@ -73372,7 +73917,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(4925) + p.SetState(4982) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73380,7 +73925,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4926) + p.SetState(4983) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -73388,7 +73933,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4927) + p.SetState(4984) p.Match(MDLParserSTATUS) if p.HasError() { // Recognition error - abort rule @@ -73399,7 +73944,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(4928) + p.SetState(4985) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73407,7 +73952,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4929) + p.SetState(4986) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -73415,7 +73960,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4930) + p.SetState(4987) p.Match(MDLParserTABLES) if p.HasError() { // Recognition error - abort rule @@ -73426,7 +73971,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(4931) + p.SetState(4988) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73434,7 +73979,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4932) + p.SetState(4989) p.Match(MDLParserCALLERS) if p.HasError() { // Recognition error - abort rule @@ -73442,7 +73987,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4933) + p.SetState(4990) p.Match(MDLParserOF) if p.HasError() { // Recognition error - abort rule @@ -73450,10 +73995,10 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4934) + p.SetState(4991) p.QualifiedName() } - p.SetState(4936) + p.SetState(4993) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73462,7 +74007,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserTRANSITIVE { { - p.SetState(4935) + p.SetState(4992) p.Match(MDLParserTRANSITIVE) if p.HasError() { // Recognition error - abort rule @@ -73475,7 +74020,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(4938) + p.SetState(4995) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73483,7 +74028,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4939) + p.SetState(4996) p.Match(MDLParserCALLEES) if p.HasError() { // Recognition error - abort rule @@ -73491,7 +74036,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4940) + p.SetState(4997) p.Match(MDLParserOF) if p.HasError() { // Recognition error - abort rule @@ -73499,10 +74044,10 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4941) + p.SetState(4998) p.QualifiedName() } - p.SetState(4943) + p.SetState(5000) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73511,7 +74056,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserTRANSITIVE { { - p.SetState(4942) + p.SetState(4999) p.Match(MDLParserTRANSITIVE) if p.HasError() { // Recognition error - abort rule @@ -73524,7 +74069,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(4945) + p.SetState(5002) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73532,7 +74077,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4946) + p.SetState(5003) p.Match(MDLParserREFERENCES) if p.HasError() { // Recognition error - abort rule @@ -73540,7 +74085,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4947) + p.SetState(5004) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -73548,14 +74093,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4948) + p.SetState(5005) p.QualifiedName() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(4949) + p.SetState(5006) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73563,7 +74108,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4950) + p.SetState(5007) p.Match(MDLParserIMPACT) if p.HasError() { // Recognition error - abort rule @@ -73571,7 +74116,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4951) + p.SetState(5008) p.Match(MDLParserOF) if p.HasError() { // Recognition error - abort rule @@ -73579,14 +74124,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4952) + p.SetState(5009) p.QualifiedName() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(4953) + p.SetState(5010) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73594,7 +74139,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4954) + p.SetState(5011) p.Match(MDLParserCONTEXT) if p.HasError() { // Recognition error - abort rule @@ -73602,7 +74147,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4955) + p.SetState(5012) p.Match(MDLParserOF) if p.HasError() { // Recognition error - abort rule @@ -73610,10 +74155,10 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4956) + p.SetState(5013) p.QualifiedName() } - p.SetState(4959) + p.SetState(5016) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73622,7 +74167,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserDEPTH { { - p.SetState(4957) + p.SetState(5014) p.Match(MDLParserDEPTH) if p.HasError() { // Recognition error - abort rule @@ -73630,7 +74175,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4958) + p.SetState(5015) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -73643,7 +74188,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(4961) + p.SetState(5018) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73651,14 +74196,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4962) + p.SetState(5019) p.Match(MDLParserWIDGETS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4964) + p.SetState(5021) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73667,7 +74212,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserWHERE || _la == MDLParserIN { { - p.SetState(4963) + p.SetState(5020) p.ShowWidgetsFilter() } @@ -73676,7 +74221,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(4966) + p.SetState(5023) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73684,7 +74229,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4967) + p.SetState(5024) p.Match(MDLParserPROJECT) if p.HasError() { // Recognition error - abort rule @@ -73692,7 +74237,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4968) + p.SetState(5025) p.Match(MDLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -73703,7 +74248,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(4969) + p.SetState(5026) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73711,7 +74256,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4970) + p.SetState(5027) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -73719,14 +74264,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4971) + p.SetState(5028) p.Match(MDLParserROLES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4977) + p.SetState(5034) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73735,29 +74280,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(4972) + p.SetState(5029) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4975) + p.SetState(5032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 552, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 562, p.GetParserRuleContext()) { case 1: { - p.SetState(4973) + p.SetState(5030) p.QualifiedName() } case 2: { - p.SetState(4974) + p.SetState(5031) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -73774,7 +74319,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(4979) + p.SetState(5036) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73782,7 +74327,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4980) + p.SetState(5037) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -73790,7 +74335,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4981) + p.SetState(5038) p.Match(MDLParserROLES) if p.HasError() { // Recognition error - abort rule @@ -73801,7 +74346,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(4982) + p.SetState(5039) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73809,7 +74354,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4983) + p.SetState(5040) p.Match(MDLParserDEMO) if p.HasError() { // Recognition error - abort rule @@ -73817,7 +74362,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4984) + p.SetState(5041) p.Match(MDLParserUSERS) if p.HasError() { // Recognition error - abort rule @@ -73828,7 +74373,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(4985) + p.SetState(5042) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73836,7 +74381,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4986) + p.SetState(5043) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -73844,7 +74389,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4987) + p.SetState(5044) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -73852,14 +74397,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4988) + p.SetState(5045) p.QualifiedName() } case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(4989) + p.SetState(5046) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73867,7 +74412,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4990) + p.SetState(5047) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -73875,7 +74420,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4991) + p.SetState(5048) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -73883,7 +74428,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4992) + p.SetState(5049) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -73891,14 +74436,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4993) + p.SetState(5050) p.QualifiedName() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(4994) + p.SetState(5051) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73906,7 +74451,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4995) + p.SetState(5052) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -73914,7 +74459,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4996) + p.SetState(5053) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -73922,7 +74467,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4997) + p.SetState(5054) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -73930,14 +74475,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(4998) + p.SetState(5055) p.QualifiedName() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(4999) + p.SetState(5056) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73945,7 +74490,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5000) + p.SetState(5057) p.Match(MDLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -73953,7 +74498,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5001) + p.SetState(5058) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -73961,7 +74506,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5002) + p.SetState(5059) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -73969,14 +74514,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5003) + p.SetState(5060) p.QualifiedName() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(5004) + p.SetState(5061) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -73984,7 +74529,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5005) + p.SetState(5062) p.Match(MDLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -73992,14 +74537,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5006) + p.SetState(5063) p.Match(MDLParserMATRIX) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5012) + p.SetState(5069) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74008,29 +74553,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5007) + p.SetState(5064) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5010) + p.SetState(5067) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 554, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 564, p.GetParserRuleContext()) { case 1: { - p.SetState(5008) + p.SetState(5065) p.QualifiedName() } case 2: { - p.SetState(5009) + p.SetState(5066) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74047,7 +74592,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(5014) + p.SetState(5071) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74055,7 +74600,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5015) + p.SetState(5072) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -74063,14 +74608,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5016) + p.SetState(5073) p.Match(MDLParserCLIENTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5022) + p.SetState(5079) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74079,29 +74624,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5017) + p.SetState(5074) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5020) + p.SetState(5077) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 556, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 566, p.GetParserRuleContext()) { case 1: { - p.SetState(5018) + p.SetState(5075) p.QualifiedName() } case 2: { - p.SetState(5019) + p.SetState(5076) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74118,7 +74663,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(5024) + p.SetState(5081) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74126,7 +74671,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5025) + p.SetState(5082) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -74134,14 +74679,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5026) + p.SetState(5083) p.Match(MDLParserSERVICES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5032) + p.SetState(5089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74150,29 +74695,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5027) + p.SetState(5084) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5030) + p.SetState(5087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 558, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 568, p.GetParserRuleContext()) { case 1: { - p.SetState(5028) + p.SetState(5085) p.QualifiedName() } case 2: { - p.SetState(5029) + p.SetState(5086) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74189,7 +74734,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(5034) + p.SetState(5091) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74197,7 +74742,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5035) + p.SetState(5092) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -74205,14 +74750,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5036) + p.SetState(5093) p.Match(MDLParserENTITIES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5042) + p.SetState(5099) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74221,29 +74766,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5037) + p.SetState(5094) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5040) + p.SetState(5097) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 560, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 570, p.GetParserRuleContext()) { case 1: { - p.SetState(5038) + p.SetState(5095) p.QualifiedName() } case 2: { - p.SetState(5039) + p.SetState(5096) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74260,7 +74805,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(5044) + p.SetState(5101) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74268,7 +74813,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5045) + p.SetState(5102) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -74276,14 +74821,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5046) + p.SetState(5103) p.Match(MDLParserACTIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5052) + p.SetState(5109) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74292,29 +74837,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5047) + p.SetState(5104) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5050) + p.SetState(5107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 562, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 572, p.GetParserRuleContext()) { case 1: { - p.SetState(5048) + p.SetState(5105) p.QualifiedName() } case 2: { - p.SetState(5049) + p.SetState(5106) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74331,7 +74876,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(5054) + p.SetState(5111) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74339,7 +74884,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5055) + p.SetState(5112) p.Match(MDLParserNAVIGATION) if p.HasError() { // Recognition error - abort rule @@ -74350,7 +74895,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(5056) + p.SetState(5113) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74358,7 +74903,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5057) + p.SetState(5114) p.Match(MDLParserNAVIGATION) if p.HasError() { // Recognition error - abort rule @@ -74366,27 +74911,27 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5058) + p.SetState(5115) p.Match(MDLParserMENU_KW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5061) + p.SetState(5118) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 564, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 574, p.GetParserRuleContext()) == 1 { { - p.SetState(5059) + p.SetState(5116) p.QualifiedName() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 564, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 574, p.GetParserRuleContext()) == 2 { { - p.SetState(5060) + p.SetState(5117) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74401,7 +74946,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(5063) + p.SetState(5120) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74409,7 +74954,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5064) + p.SetState(5121) p.Match(MDLParserNAVIGATION) if p.HasError() { // Recognition error - abort rule @@ -74417,7 +74962,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5065) + p.SetState(5122) p.Match(MDLParserHOMES) if p.HasError() { // Recognition error - abort rule @@ -74428,7 +74973,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(5066) + p.SetState(5123) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74436,7 +74981,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5067) + p.SetState(5124) p.Match(MDLParserDESIGN) if p.HasError() { // Recognition error - abort rule @@ -74444,14 +74989,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5068) + p.SetState(5125) p.Match(MDLParserPROPERTIES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5071) + p.SetState(5128) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74460,7 +75005,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserFOR { { - p.SetState(5069) + p.SetState(5126) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -74468,7 +75013,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5070) + p.SetState(5127) p.WidgetTypeKeyword() } @@ -74477,7 +75022,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(5073) + p.SetState(5130) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74485,14 +75030,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5074) + p.SetState(5131) p.Match(MDLParserSTRUCTURE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5077) + p.SetState(5134) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74501,7 +75046,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserDEPTH { { - p.SetState(5075) + p.SetState(5132) p.Match(MDLParserDEPTH) if p.HasError() { // Recognition error - abort rule @@ -74509,7 +75054,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5076) + p.SetState(5133) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -74518,7 +75063,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } - p.SetState(5084) + p.SetState(5141) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74527,29 +75072,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5079) + p.SetState(5136) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5082) + p.SetState(5139) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 567, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 577, p.GetParserRuleContext()) { case 1: { - p.SetState(5080) + p.SetState(5137) p.QualifiedName() } case 2: { - p.SetState(5081) + p.SetState(5138) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74562,7 +75107,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } - p.SetState(5087) + p.SetState(5144) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74571,7 +75116,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserALL { { - p.SetState(5086) + p.SetState(5143) p.Match(MDLParserALL) if p.HasError() { // Recognition error - abort rule @@ -74584,7 +75129,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(5089) + p.SetState(5146) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74592,7 +75137,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5090) + p.SetState(5147) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -74600,7 +75145,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5091) + p.SetState(5148) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -74608,14 +75153,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5092) + p.SetState(5149) p.Match(MDLParserSERVICES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5098) + p.SetState(5155) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74624,29 +75169,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5093) + p.SetState(5150) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5096) + p.SetState(5153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 570, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 580, p.GetParserRuleContext()) { case 1: { - p.SetState(5094) + p.SetState(5151) p.QualifiedName() } case 2: { - p.SetState(5095) + p.SetState(5152) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74663,7 +75208,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(5100) + p.SetState(5157) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74671,7 +75216,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5101) + p.SetState(5158) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -74679,7 +75224,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5102) + p.SetState(5159) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -74687,14 +75232,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5103) + p.SetState(5160) p.Match(MDLParserCLIENTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5109) + p.SetState(5166) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74703,29 +75248,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5104) + p.SetState(5161) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5107) + p.SetState(5164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 572, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 582, p.GetParserRuleContext()) { case 1: { - p.SetState(5105) + p.SetState(5162) p.QualifiedName() } case 2: { - p.SetState(5106) + p.SetState(5163) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74742,7 +75287,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(5111) + p.SetState(5168) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74750,7 +75295,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5112) + p.SetState(5169) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -74758,14 +75303,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5113) + p.SetState(5170) p.Match(MDLParserEVENTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5119) + p.SetState(5176) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74774,29 +75319,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5114) + p.SetState(5171) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5117) + p.SetState(5174) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 574, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 584, p.GetParserRuleContext()) { case 1: { - p.SetState(5115) + p.SetState(5172) p.QualifiedName() } case 2: { - p.SetState(5116) + p.SetState(5173) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74813,7 +75358,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 57: p.EnterOuterAlt(localctx, 57) { - p.SetState(5121) + p.SetState(5178) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74821,7 +75366,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5122) + p.SetState(5179) p.Match(MDLParserSETTINGS) if p.HasError() { // Recognition error - abort rule @@ -74832,7 +75377,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 58: p.EnterOuterAlt(localctx, 58) { - p.SetState(5123) + p.SetState(5180) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74840,7 +75385,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5124) + p.SetState(5181) p.Match(MDLParserFRAGMENTS) if p.HasError() { // Recognition error - abort rule @@ -74851,7 +75396,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 59: p.EnterOuterAlt(localctx, 59) { - p.SetState(5125) + p.SetState(5182) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74859,7 +75404,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5126) + p.SetState(5183) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -74867,14 +75412,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5127) + p.SetState(5184) p.Match(MDLParserCONNECTIONS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5133) + p.SetState(5190) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74883,29 +75428,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5128) + p.SetState(5185) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5131) + p.SetState(5188) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 576, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 586, p.GetParserRuleContext()) { case 1: { - p.SetState(5129) + p.SetState(5186) p.QualifiedName() } case 2: { - p.SetState(5130) + p.SetState(5187) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74922,7 +75467,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 60: p.EnterOuterAlt(localctx, 60) { - p.SetState(5135) + p.SetState(5192) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -74930,7 +75475,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5136) + p.SetState(5193) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -74938,14 +75483,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5137) + p.SetState(5194) p.Match(MDLParserCLIENTS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5143) + p.SetState(5200) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74954,29 +75499,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5138) + p.SetState(5195) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5141) + p.SetState(5198) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 578, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 588, p.GetParserRuleContext()) { case 1: { - p.SetState(5139) + p.SetState(5196) p.QualifiedName() } case 2: { - p.SetState(5140) + p.SetState(5197) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -74993,7 +75538,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 61: p.EnterOuterAlt(localctx, 61) { - p.SetState(5145) + p.SetState(5202) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -75001,7 +75546,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5146) + p.SetState(5203) p.Match(MDLParserPUBLISHED) if p.HasError() { // Recognition error - abort rule @@ -75009,7 +75554,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5147) + p.SetState(5204) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -75017,14 +75562,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5148) + p.SetState(5205) p.Match(MDLParserSERVICES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5154) + p.SetState(5211) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75033,29 +75578,29 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5149) + p.SetState(5206) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5152) + p.SetState(5209) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 580, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 590, p.GetParserRuleContext()) { case 1: { - p.SetState(5150) + p.SetState(5207) p.QualifiedName() } case 2: { - p.SetState(5151) + p.SetState(5208) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -75072,7 +75617,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 62: p.EnterOuterAlt(localctx, 62) { - p.SetState(5156) + p.SetState(5213) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -75080,7 +75625,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5157) + p.SetState(5214) p.Match(MDLParserLANGUAGES) if p.HasError() { // Recognition error - abort rule @@ -75091,7 +75636,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 63: p.EnterOuterAlt(localctx, 63) { - p.SetState(5158) + p.SetState(5215) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -75099,14 +75644,14 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5159) + p.SetState(5216) p.Match(MDLParserFEATURES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5162) + p.SetState(5219) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75115,7 +75660,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { if _la == MDLParserIN { { - p.SetState(5160) + p.SetState(5217) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -75123,7 +75668,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5161) + p.SetState(5218) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -75136,7 +75681,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 64: p.EnterOuterAlt(localctx, 64) { - p.SetState(5164) + p.SetState(5221) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -75144,7 +75689,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5165) + p.SetState(5222) p.Match(MDLParserFEATURES) if p.HasError() { // Recognition error - abort rule @@ -75152,7 +75697,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5166) + p.SetState(5223) p.Match(MDLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -75160,7 +75705,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5167) + p.SetState(5224) p.Match(MDLParserVERSION) if p.HasError() { // Recognition error - abort rule @@ -75168,7 +75713,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5168) + p.SetState(5225) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -75179,7 +75724,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { case 65: p.EnterOuterAlt(localctx, 65) { - p.SetState(5169) + p.SetState(5226) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -75187,7 +75732,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5170) + p.SetState(5227) p.Match(MDLParserFEATURES) if p.HasError() { // Recognition error - abort rule @@ -75195,7 +75740,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5171) + p.SetState(5228) p.Match(MDLParserADDED) if p.HasError() { // Recognition error - abort rule @@ -75203,7 +75748,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5172) + p.SetState(5229) p.Match(MDLParserSINCE) if p.HasError() { // Recognition error - abort rule @@ -75211,7 +75756,7 @@ func (p *MDLParser) ShowStatement() (localctx IShowStatementContext) { } } { - p.SetState(5173) + p.SetState(5230) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -75391,7 +75936,7 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { p.EnterRule(localctx, 568, MDLParserRULE_showWidgetsFilter) var _la int - p.SetState(5197) + p.SetState(5254) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75401,7 +75946,7 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { case MDLParserWHERE: p.EnterOuterAlt(localctx, 1) { - p.SetState(5176) + p.SetState(5233) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -75409,10 +75954,10 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { } } { - p.SetState(5177) + p.SetState(5234) p.WidgetCondition() } - p.SetState(5182) + p.SetState(5239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75421,7 +75966,7 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { for _la == MDLParserAND { { - p.SetState(5178) + p.SetState(5235) p.Match(MDLParserAND) if p.HasError() { // Recognition error - abort rule @@ -75429,18 +75974,18 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { } } { - p.SetState(5179) + p.SetState(5236) p.WidgetCondition() } - p.SetState(5184) + p.SetState(5241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(5190) + p.SetState(5247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75449,29 +75994,29 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { if _la == MDLParserIN { { - p.SetState(5185) + p.SetState(5242) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5188) + p.SetState(5245) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 585, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 595, p.GetParserRuleContext()) { case 1: { - p.SetState(5186) + p.SetState(5243) p.QualifiedName() } case 2: { - p.SetState(5187) + p.SetState(5244) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -75488,29 +76033,29 @@ func (p *MDLParser) ShowWidgetsFilter() (localctx IShowWidgetsFilterContext) { case MDLParserIN: p.EnterOuterAlt(localctx, 2) { - p.SetState(5192) + p.SetState(5249) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5195) + p.SetState(5252) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 587, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 597, p.GetParserRuleContext()) { case 1: { - p.SetState(5193) + p.SetState(5250) p.QualifiedName() } case 2: { - p.SetState(5194) + p.SetState(5251) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -75571,6 +76116,8 @@ type IWidgetTypeKeywordContext interface { SNIPPETCALL() antlr.TerminalNode NAVIGATIONLIST() antlr.TerminalNode CUSTOMCONTAINER() antlr.TerminalNode + TABCONTAINER() antlr.TerminalNode + TABPAGE() antlr.TerminalNode DROPDOWN() antlr.TerminalNode REFERENCESELECTOR() antlr.TerminalNode GROUPBOX() antlr.TerminalNode @@ -75704,6 +76251,14 @@ func (s *WidgetTypeKeywordContext) CUSTOMCONTAINER() antlr.TerminalNode { return s.GetToken(MDLParserCUSTOMCONTAINER, 0) } +func (s *WidgetTypeKeywordContext) TABCONTAINER() antlr.TerminalNode { + return s.GetToken(MDLParserTABCONTAINER, 0) +} + +func (s *WidgetTypeKeywordContext) TABPAGE() antlr.TerminalNode { + return s.GetToken(MDLParserTABPAGE, 0) +} + func (s *WidgetTypeKeywordContext) DROPDOWN() antlr.TerminalNode { return s.GetToken(MDLParserDROPDOWN, 0) } @@ -75747,10 +76302,10 @@ func (p *MDLParser) WidgetTypeKeyword() (localctx IWidgetTypeKeywordContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5199) + p.SetState(5256) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&211106767466623) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&61) != 0) || _la == MDLParserIDENTIFIER) { + if !(((int64((_la-148)) & ^0x3f) == 0 && ((int64(1)<<(_la-148))&844425465065599) != 0) || ((int64((_la-228)) & ^0x3f) == 0 && ((int64(1)<<(_la-228))&253) != 0) || _la == MDLParserIDENTIFIER) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -75866,7 +76421,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { p.EnterRule(localctx, 572, MDLParserRULE_widgetCondition) var _la int - p.SetState(5207) + p.SetState(5264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75876,7 +76431,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { case MDLParserWIDGETTYPE: p.EnterOuterAlt(localctx, 1) { - p.SetState(5201) + p.SetState(5258) p.Match(MDLParserWIDGETTYPE) if p.HasError() { // Recognition error - abort rule @@ -75884,7 +76439,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { } } { - p.SetState(5202) + p.SetState(5259) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserLIKE || _la == MDLParserEQUALS) { @@ -75895,7 +76450,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { } } { - p.SetState(5203) + p.SetState(5260) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -75906,7 +76461,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(5204) + p.SetState(5261) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -75914,7 +76469,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { } } { - p.SetState(5205) + p.SetState(5262) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserLIKE || _la == MDLParserEQUALS) { @@ -75925,7 +76480,7 @@ func (p *MDLParser) WidgetCondition() (localctx IWidgetConditionContext) { } } { - p.SetState(5206) + p.SetState(5263) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -76048,7 +76603,7 @@ func (p *MDLParser) WidgetPropertyAssignment() (localctx IWidgetPropertyAssignme p.EnterRule(localctx, 574, MDLParserRULE_widgetPropertyAssignment) p.EnterOuterAlt(localctx, 1) { - p.SetState(5209) + p.SetState(5266) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -76056,7 +76611,7 @@ func (p *MDLParser) WidgetPropertyAssignment() (localctx IWidgetPropertyAssignme } } { - p.SetState(5210) + p.SetState(5267) p.Match(MDLParserEQUALS) if p.HasError() { // Recognition error - abort rule @@ -76064,7 +76619,7 @@ func (p *MDLParser) WidgetPropertyAssignment() (localctx IWidgetPropertyAssignme } } { - p.SetState(5211) + p.SetState(5268) p.WidgetPropertyValue() } @@ -76181,7 +76736,7 @@ func (s *WidgetPropertyValueContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) WidgetPropertyValue() (localctx IWidgetPropertyValueContext) { localctx = NewWidgetPropertyValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 576, MDLParserRULE_widgetPropertyValue) - p.SetState(5217) + p.SetState(5274) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76191,7 +76746,7 @@ func (p *MDLParser) WidgetPropertyValue() (localctx IWidgetPropertyValueContext) case MDLParserSTRING_LITERAL: p.EnterOuterAlt(localctx, 1) { - p.SetState(5213) + p.SetState(5270) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -76202,7 +76757,7 @@ func (p *MDLParser) WidgetPropertyValue() (localctx IWidgetPropertyValueContext) case MDLParserNUMBER_LITERAL: p.EnterOuterAlt(localctx, 2) { - p.SetState(5214) + p.SetState(5271) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -76213,14 +76768,14 @@ func (p *MDLParser) WidgetPropertyValue() (localctx IWidgetPropertyValueContext) case MDLParserTRUE, MDLParserFALSE: p.EnterOuterAlt(localctx, 3) { - p.SetState(5215) + p.SetState(5272) p.BooleanLiteral() } case MDLParserNULL: p.EnterOuterAlt(localctx, 4) { - p.SetState(5216) + p.SetState(5273) p.Match(MDLParserNULL) if p.HasError() { // Recognition error - abort rule @@ -76607,17 +77162,17 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { p.EnterRule(localctx, 578, MDLParserRULE_describeStatement) var _la int - p.SetState(5374) + p.SetState(5431) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 596, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 606, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5219) + p.SetState(5276) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76625,7 +77180,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5220) + p.SetState(5277) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -76633,7 +77188,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5221) + p.SetState(5278) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -76641,10 +77196,10 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5222) + p.SetState(5279) p.QualifiedName() } - p.SetState(5225) + p.SetState(5282) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76653,7 +77208,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { if _la == MDLParserFORMAT { { - p.SetState(5223) + p.SetState(5280) p.Match(MDLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -76661,7 +77216,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5224) + p.SetState(5281) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -76674,7 +77229,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5227) + p.SetState(5284) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76682,7 +77237,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5228) + p.SetState(5285) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -76690,7 +77245,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5229) + p.SetState(5286) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -76698,10 +77253,10 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5230) + p.SetState(5287) p.QualifiedName() } - p.SetState(5233) + p.SetState(5290) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76710,7 +77265,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { if _la == MDLParserFORMAT { { - p.SetState(5231) + p.SetState(5288) p.Match(MDLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -76718,7 +77273,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5232) + p.SetState(5289) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -76731,7 +77286,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5235) + p.SetState(5292) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76739,7 +77294,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5236) + p.SetState(5293) p.Match(MDLParserCONTRACT) if p.HasError() { // Recognition error - abort rule @@ -76747,7 +77302,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5237) + p.SetState(5294) p.Match(MDLParserMESSAGE) if p.HasError() { // Recognition error - abort rule @@ -76755,14 +77310,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5238) + p.SetState(5295) p.QualifiedName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5239) + p.SetState(5296) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76770,7 +77325,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5240) + p.SetState(5297) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -76778,14 +77333,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5241) + p.SetState(5298) p.QualifiedName() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5242) + p.SetState(5299) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76793,7 +77348,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5243) + p.SetState(5300) p.Match(MDLParserASSOCIATION) if p.HasError() { // Recognition error - abort rule @@ -76801,14 +77356,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5244) + p.SetState(5301) p.QualifiedName() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5245) + p.SetState(5302) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76816,7 +77371,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5246) + p.SetState(5303) p.Match(MDLParserMICROFLOW) if p.HasError() { // Recognition error - abort rule @@ -76824,14 +77379,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5247) + p.SetState(5304) p.QualifiedName() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5248) + p.SetState(5305) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76839,7 +77394,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5249) + p.SetState(5306) p.Match(MDLParserNANOFLOW) if p.HasError() { // Recognition error - abort rule @@ -76847,14 +77402,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5250) + p.SetState(5307) p.QualifiedName() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5251) + p.SetState(5308) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76862,7 +77417,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5252) + p.SetState(5309) p.Match(MDLParserWORKFLOW) if p.HasError() { // Recognition error - abort rule @@ -76870,14 +77425,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5253) + p.SetState(5310) p.QualifiedName() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5254) + p.SetState(5311) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76885,7 +77440,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5255) + p.SetState(5312) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -76893,14 +77448,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5256) + p.SetState(5313) p.QualifiedName() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5257) + p.SetState(5314) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76908,7 +77463,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5258) + p.SetState(5315) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -76916,14 +77471,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5259) + p.SetState(5316) p.QualifiedName() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5260) + p.SetState(5317) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76931,7 +77486,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5261) + p.SetState(5318) p.Match(MDLParserLAYOUT) if p.HasError() { // Recognition error - abort rule @@ -76939,14 +77494,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5262) + p.SetState(5319) p.QualifiedName() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5263) + p.SetState(5320) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76954,7 +77509,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5264) + p.SetState(5321) p.Match(MDLParserENUMERATION) if p.HasError() { // Recognition error - abort rule @@ -76962,14 +77517,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5265) + p.SetState(5322) p.QualifiedName() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5266) + p.SetState(5323) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -76977,7 +77532,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5267) + p.SetState(5324) p.Match(MDLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -76985,14 +77540,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5268) + p.SetState(5325) p.QualifiedName() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5269) + p.SetState(5326) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77000,7 +77555,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5270) + p.SetState(5327) p.Match(MDLParserJAVA) if p.HasError() { // Recognition error - abort rule @@ -77008,7 +77563,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5271) + p.SetState(5328) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -77016,14 +77571,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5272) + p.SetState(5329) p.QualifiedName() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5273) + p.SetState(5330) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77031,7 +77586,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5274) + p.SetState(5331) p.Match(MDLParserJAVASCRIPT) if p.HasError() { // Recognition error - abort rule @@ -77039,7 +77594,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5275) + p.SetState(5332) p.Match(MDLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -77047,14 +77602,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5276) + p.SetState(5333) p.QualifiedName() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5277) + p.SetState(5334) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77062,7 +77617,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5278) + p.SetState(5335) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -77070,14 +77625,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5279) + p.SetState(5336) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5282) + p.SetState(5339) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77086,7 +77641,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { if _la == MDLParserWITH { { - p.SetState(5280) + p.SetState(5337) p.Match(MDLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -77094,7 +77649,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5281) + p.SetState(5338) p.Match(MDLParserALL) if p.HasError() { // Recognition error - abort rule @@ -77107,7 +77662,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5284) + p.SetState(5341) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77115,7 +77670,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5285) + p.SetState(5342) p.Match(MDLParserMODULE) if p.HasError() { // Recognition error - abort rule @@ -77123,7 +77678,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5286) + p.SetState(5343) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -77131,14 +77686,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5287) + p.SetState(5344) p.QualifiedName() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(5288) + p.SetState(5345) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77146,7 +77701,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5289) + p.SetState(5346) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -77154,7 +77709,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5290) + p.SetState(5347) p.Match(MDLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -77162,7 +77717,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5291) + p.SetState(5348) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -77173,7 +77728,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(5292) + p.SetState(5349) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77181,7 +77736,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5293) + p.SetState(5350) p.Match(MDLParserDEMO) if p.HasError() { // Recognition error - abort rule @@ -77189,7 +77744,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5294) + p.SetState(5351) p.Match(MDLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -77197,7 +77752,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5295) + p.SetState(5352) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -77208,7 +77763,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(5296) + p.SetState(5353) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77216,7 +77771,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5297) + p.SetState(5354) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -77224,7 +77779,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5298) + p.SetState(5355) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -77232,14 +77787,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5299) + p.SetState(5356) p.QualifiedName() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(5300) + p.SetState(5357) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77247,7 +77802,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5301) + p.SetState(5358) p.Match(MDLParserODATA) if p.HasError() { // Recognition error - abort rule @@ -77255,7 +77810,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5302) + p.SetState(5359) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -77263,14 +77818,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5303) + p.SetState(5360) p.QualifiedName() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(5304) + p.SetState(5361) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77278,7 +77833,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5305) + p.SetState(5362) p.Match(MDLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -77286,7 +77841,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5306) + p.SetState(5363) p.Match(MDLParserENTITY) if p.HasError() { // Recognition error - abort rule @@ -77294,14 +77849,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5307) + p.SetState(5364) p.QualifiedName() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(5308) + p.SetState(5365) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77309,27 +77864,27 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5309) + p.SetState(5366) p.Match(MDLParserNAVIGATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5312) + p.SetState(5369) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 594, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 604, p.GetParserRuleContext()) == 1 { { - p.SetState(5310) + p.SetState(5367) p.QualifiedName() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 594, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 604, p.GetParserRuleContext()) == 2 { { - p.SetState(5311) + p.SetState(5368) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -77344,7 +77899,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(5314) + p.SetState(5371) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77352,7 +77907,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5315) + p.SetState(5372) p.Match(MDLParserSTYLING) if p.HasError() { // Recognition error - abort rule @@ -77360,7 +77915,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5316) + p.SetState(5373) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -77368,7 +77923,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5317) + p.SetState(5374) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserPAGE || _la == MDLParserSNIPPET) { @@ -77379,10 +77934,10 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5318) + p.SetState(5375) p.QualifiedName() } - p.SetState(5321) + p.SetState(5378) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77391,7 +77946,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { if _la == MDLParserWIDGET { { - p.SetState(5319) + p.SetState(5376) p.Match(MDLParserWIDGET) if p.HasError() { // Recognition error - abort rule @@ -77399,7 +77954,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5320) + p.SetState(5377) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -77412,7 +77967,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(5323) + p.SetState(5380) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77420,7 +77975,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5324) + p.SetState(5381) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -77428,7 +77983,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5325) + p.SetState(5382) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -77437,14 +77992,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } { - p.SetState(5326) + p.SetState(5383) p.CatalogTableName() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(5327) + p.SetState(5384) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77452,7 +78007,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5328) + p.SetState(5385) p.Match(MDLParserBUSINESS) if p.HasError() { // Recognition error - abort rule @@ -77460,7 +78015,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5329) + p.SetState(5386) p.Match(MDLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -77468,7 +78023,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5330) + p.SetState(5387) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -77476,14 +78031,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5331) + p.SetState(5388) p.QualifiedName() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(5332) + p.SetState(5389) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77491,7 +78046,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5333) + p.SetState(5390) p.Match(MDLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -77499,7 +78054,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5334) + p.SetState(5391) p.Match(MDLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -77507,14 +78062,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5335) + p.SetState(5392) p.QualifiedName() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(5336) + p.SetState(5393) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77522,7 +78077,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5337) + p.SetState(5394) p.Match(MDLParserSETTINGS) if p.HasError() { // Recognition error - abort rule @@ -77533,7 +78088,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(5338) + p.SetState(5395) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77541,7 +78096,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5339) + p.SetState(5396) p.Match(MDLParserFRAGMENT) if p.HasError() { // Recognition error - abort rule @@ -77549,7 +78104,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5340) + p.SetState(5397) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77557,7 +78112,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5341) + p.SetState(5398) p.Match(MDLParserPAGE) if p.HasError() { // Recognition error - abort rule @@ -77565,11 +78120,11 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5342) + p.SetState(5399) p.QualifiedName() } { - p.SetState(5343) + p.SetState(5400) p.Match(MDLParserWIDGET) if p.HasError() { // Recognition error - abort rule @@ -77577,14 +78132,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5344) + p.SetState(5401) p.IdentifierOrKeyword() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(5346) + p.SetState(5403) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77592,7 +78147,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5347) + p.SetState(5404) p.Match(MDLParserFRAGMENT) if p.HasError() { // Recognition error - abort rule @@ -77600,7 +78155,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5348) + p.SetState(5405) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77608,7 +78163,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5349) + p.SetState(5406) p.Match(MDLParserSNIPPET) if p.HasError() { // Recognition error - abort rule @@ -77616,11 +78171,11 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5350) + p.SetState(5407) p.QualifiedName() } { - p.SetState(5351) + p.SetState(5408) p.Match(MDLParserWIDGET) if p.HasError() { // Recognition error - abort rule @@ -77628,14 +78183,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5352) + p.SetState(5409) p.IdentifierOrKeyword() } case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(5354) + p.SetState(5411) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77643,7 +78198,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5355) + p.SetState(5412) p.Match(MDLParserIMAGE) if p.HasError() { // Recognition error - abort rule @@ -77651,7 +78206,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5356) + p.SetState(5413) p.Match(MDLParserCOLLECTION) if p.HasError() { // Recognition error - abort rule @@ -77659,14 +78214,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5357) + p.SetState(5414) p.QualifiedName() } case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(5358) + p.SetState(5415) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77674,7 +78229,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5359) + p.SetState(5416) p.Match(MDLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -77682,7 +78237,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5360) + p.SetState(5417) p.Match(MDLParserSTRUCTURE) if p.HasError() { // Recognition error - abort rule @@ -77690,14 +78245,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5361) + p.SetState(5418) p.QualifiedName() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(5362) + p.SetState(5419) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77705,7 +78260,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5363) + p.SetState(5420) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -77713,7 +78268,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5364) + p.SetState(5421) p.Match(MDLParserCLIENT) if p.HasError() { // Recognition error - abort rule @@ -77721,14 +78276,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5365) + p.SetState(5422) p.QualifiedName() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(5366) + p.SetState(5423) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77736,7 +78291,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5367) + p.SetState(5424) p.Match(MDLParserPUBLISHED) if p.HasError() { // Recognition error - abort rule @@ -77744,7 +78299,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5368) + p.SetState(5425) p.Match(MDLParserREST) if p.HasError() { // Recognition error - abort rule @@ -77752,7 +78307,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5369) + p.SetState(5426) p.Match(MDLParserSERVICE) if p.HasError() { // Recognition error - abort rule @@ -77760,14 +78315,14 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5370) + p.SetState(5427) p.QualifiedName() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(5371) + p.SetState(5428) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -77775,7 +78330,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5372) + p.SetState(5429) p.Match(MDLParserFRAGMENT) if p.HasError() { // Recognition error - abort rule @@ -77783,7 +78338,7 @@ func (p *MDLParser) DescribeStatement() (localctx IDescribeStatementContext) { } } { - p.SetState(5373) + p.SetState(5430) p.IdentifierOrKeyword() } @@ -78132,19 +78687,19 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5376) + p.SetState(5433) p.Match(MDLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5378) + p.SetState(5435) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 597, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 607, p.GetParserRuleContext()) == 1 { { - p.SetState(5377) + p.SetState(5434) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserDISTINCT || _la == MDLParserALL) { @@ -78159,11 +78714,11 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { goto errorExit } { - p.SetState(5380) + p.SetState(5437) p.SelectList() } { - p.SetState(5381) + p.SetState(5438) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -78171,7 +78726,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5382) + p.SetState(5439) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -78179,7 +78734,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5383) + p.SetState(5440) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -78187,14 +78742,14 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5384) + p.SetState(5441) p.CatalogTableName() } - p.SetState(5389) + p.SetState(5446) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 599, p.GetParserRuleContext()) == 1 { - p.SetState(5386) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 609, p.GetParserRuleContext()) == 1 { + p.SetState(5443) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78203,7 +78758,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserAS { { - p.SetState(5385) + p.SetState(5442) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -78213,7 +78768,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } { - p.SetState(5388) + p.SetState(5445) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -78224,7 +78779,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(5394) + p.SetState(5451) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78233,18 +78788,18 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { for (int64((_la-86)) & ^0x3f) == 0 && ((int64(1)<<(_la-86))&111) != 0 { { - p.SetState(5391) + p.SetState(5448) p.CatalogJoinClause() } - p.SetState(5396) + p.SetState(5453) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(5399) + p.SetState(5456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78253,7 +78808,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserWHERE { { - p.SetState(5397) + p.SetState(5454) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -78261,7 +78816,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5398) + p.SetState(5455) var _x = p.Expression() @@ -78269,7 +78824,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } - p.SetState(5407) + p.SetState(5464) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78278,7 +78833,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserGROUP_BY { { - p.SetState(5401) + p.SetState(5458) p.Match(MDLParserGROUP_BY) if p.HasError() { // Recognition error - abort rule @@ -78286,10 +78841,10 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5402) + p.SetState(5459) p.GroupByList() } - p.SetState(5405) + p.SetState(5462) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78298,7 +78853,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserHAVING { { - p.SetState(5403) + p.SetState(5460) p.Match(MDLParserHAVING) if p.HasError() { // Recognition error - abort rule @@ -78306,7 +78861,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5404) + p.SetState(5461) var _x = p.Expression() @@ -78316,7 +78871,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } - p.SetState(5411) + p.SetState(5468) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78325,7 +78880,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserORDER_BY { { - p.SetState(5409) + p.SetState(5466) p.Match(MDLParserORDER_BY) if p.HasError() { // Recognition error - abort rule @@ -78333,12 +78888,12 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5410) + p.SetState(5467) p.OrderByList() } } - p.SetState(5415) + p.SetState(5472) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78347,7 +78902,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserLIMIT { { - p.SetState(5413) + p.SetState(5470) p.Match(MDLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -78355,7 +78910,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5414) + p.SetState(5471) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -78364,7 +78919,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } - p.SetState(5419) + p.SetState(5476) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78373,7 +78928,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { if _la == MDLParserOFFSET { { - p.SetState(5417) + p.SetState(5474) p.Match(MDLParserOFFSET) if p.HasError() { // Recognition error - abort rule @@ -78381,7 +78936,7 @@ func (p *MDLParser) CatalogSelectQuery() (localctx ICatalogSelectQueryContext) { } } { - p.SetState(5418) + p.SetState(5475) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -78556,7 +79111,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(5422) + p.SetState(5479) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78565,13 +79120,13 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { if (int64((_la-87)) & ^0x3f) == 0 && ((int64(1)<<(_la-87))&55) != 0 { { - p.SetState(5421) + p.SetState(5478) p.JoinType() } } { - p.SetState(5424) + p.SetState(5481) p.Match(MDLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -78579,7 +79134,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } } { - p.SetState(5425) + p.SetState(5482) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -78587,7 +79142,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } } { - p.SetState(5426) + p.SetState(5483) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -78595,14 +79150,14 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } } { - p.SetState(5427) + p.SetState(5484) p.CatalogTableName() } - p.SetState(5432) + p.SetState(5489) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 609, p.GetParserRuleContext()) == 1 { - p.SetState(5429) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 619, p.GetParserRuleContext()) == 1 { + p.SetState(5486) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78611,7 +79166,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { if _la == MDLParserAS { { - p.SetState(5428) + p.SetState(5485) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -78621,7 +79176,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } { - p.SetState(5431) + p.SetState(5488) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -78632,7 +79187,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(5436) + p.SetState(5493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78641,7 +79196,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { if _la == MDLParserON { { - p.SetState(5434) + p.SetState(5491) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -78649,7 +79204,7 @@ func (p *MDLParser) CatalogJoinClause() (localctx ICatalogJoinClauseContext) { } } { - p.SetState(5435) + p.SetState(5492) p.Expression() } @@ -78810,10 +79365,10 @@ func (p *MDLParser) CatalogTableName() (localctx ICatalogTableNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5438) + p.SetState(5495) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-143)) & ^0x3f) == 0 && ((int64(1)<<(_la-143))&580542139465735) != 0) || _la == MDLParserATTRIBUTES || _la == MDLParserODATA || _la == MDLParserMODULES || ((int64((_la-378)) & ^0x3f) == 0 && ((int64(1)<<(_la-378))&61) != 0) || _la == MDLParserIDENTIFIER) { + if !(((int64((_la-143)) & ^0x3f) == 0 && ((int64(1)<<(_la-143))&2322168557862919) != 0) || _la == MDLParserATTRIBUTES || _la == MDLParserODATA || _la == MDLParserMODULES || ((int64((_la-382)) & ^0x3f) == 0 && ((int64(1)<<(_la-382))&61) != 0) || _la == MDLParserIDENTIFIER) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -78969,10 +79524,10 @@ func (p *MDLParser) OqlQuery() (localctx IOqlQueryContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5440) + p.SetState(5497) p.OqlQueryTerm() } - p.SetState(5448) + p.SetState(5505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78981,14 +79536,14 @@ func (p *MDLParser) OqlQuery() (localctx IOqlQueryContext) { for _la == MDLParserUNION { { - p.SetState(5441) + p.SetState(5498) p.Match(MDLParserUNION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5443) + p.SetState(5500) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78997,7 +79552,7 @@ func (p *MDLParser) OqlQuery() (localctx IOqlQueryContext) { if _la == MDLParserALL { { - p.SetState(5442) + p.SetState(5499) p.Match(MDLParserALL) if p.HasError() { // Recognition error - abort rule @@ -79007,11 +79562,11 @@ func (p *MDLParser) OqlQuery() (localctx IOqlQueryContext) { } { - p.SetState(5445) + p.SetState(5502) p.OqlQueryTerm() } - p.SetState(5450) + p.SetState(5507) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79221,7 +79776,7 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { p.EnterRule(localctx, 588, MDLParserRULE_oqlQueryTerm) var _la int - p.SetState(5487) + p.SetState(5544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79231,22 +79786,22 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { case MDLParserSELECT: p.EnterOuterAlt(localctx, 1) { - p.SetState(5451) + p.SetState(5508) p.SelectClause() } - p.SetState(5453) + p.SetState(5510) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 613, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 623, p.GetParserRuleContext()) == 1 { { - p.SetState(5452) + p.SetState(5509) p.FromClause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5456) + p.SetState(5513) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79255,12 +79810,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserWHERE { { - p.SetState(5455) + p.SetState(5512) p.WhereClause() } } - p.SetState(5459) + p.SetState(5516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79269,12 +79824,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserGROUP_BY { { - p.SetState(5458) + p.SetState(5515) p.GroupByClause() } } - p.SetState(5462) + p.SetState(5519) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79283,12 +79838,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserHAVING { { - p.SetState(5461) + p.SetState(5518) p.HavingClause() } } - p.SetState(5465) + p.SetState(5522) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79297,12 +79852,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserORDER_BY { { - p.SetState(5464) + p.SetState(5521) p.OrderByClause() } } - p.SetState(5468) + p.SetState(5525) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79311,7 +79866,7 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserOFFSET || _la == MDLParserLIMIT { { - p.SetState(5467) + p.SetState(5524) p.LimitOffsetClause() } @@ -79320,10 +79875,10 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { case MDLParserFROM: p.EnterOuterAlt(localctx, 2) { - p.SetState(5470) + p.SetState(5527) p.FromClause() } - p.SetState(5472) + p.SetState(5529) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79332,12 +79887,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserWHERE { { - p.SetState(5471) + p.SetState(5528) p.WhereClause() } } - p.SetState(5475) + p.SetState(5532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79346,12 +79901,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserGROUP_BY { { - p.SetState(5474) + p.SetState(5531) p.GroupByClause() } } - p.SetState(5478) + p.SetState(5535) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79360,16 +79915,16 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserHAVING { { - p.SetState(5477) + p.SetState(5534) p.HavingClause() } } { - p.SetState(5480) + p.SetState(5537) p.SelectClause() } - p.SetState(5482) + p.SetState(5539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79378,12 +79933,12 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserORDER_BY { { - p.SetState(5481) + p.SetState(5538) p.OrderByClause() } } - p.SetState(5485) + p.SetState(5542) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79392,7 +79947,7 @@ func (p *MDLParser) OqlQueryTerm() (localctx IOqlQueryTermContext) { if _la == MDLParserOFFSET || _la == MDLParserLIMIT { { - p.SetState(5484) + p.SetState(5541) p.LimitOffsetClause() } @@ -79520,19 +80075,19 @@ func (p *MDLParser) SelectClause() (localctx ISelectClauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5489) + p.SetState(5546) p.Match(MDLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5491) + p.SetState(5548) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 625, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 635, p.GetParserRuleContext()) == 1 { { - p.SetState(5490) + p.SetState(5547) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserDISTINCT || _la == MDLParserALL) { @@ -79547,7 +80102,7 @@ func (p *MDLParser) SelectClause() (localctx ISelectClauseContext) { goto errorExit } { - p.SetState(5493) + p.SetState(5550) p.SelectList() } @@ -79692,7 +80247,7 @@ func (p *MDLParser) SelectList() (localctx ISelectListContext) { p.EnterRule(localctx, 592, MDLParserRULE_selectList) var _la int - p.SetState(5504) + p.SetState(5561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79702,7 +80257,7 @@ func (p *MDLParser) SelectList() (localctx ISelectListContext) { case MDLParserSTAR: p.EnterOuterAlt(localctx, 1) { - p.SetState(5495) + p.SetState(5552) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -79710,13 +80265,13 @@ func (p *MDLParser) SelectList() (localctx ISelectListContext) { } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(5496) + p.SetState(5553) p.SelectItem() } - p.SetState(5501) + p.SetState(5558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79725,7 +80280,7 @@ func (p *MDLParser) SelectList() (localctx ISelectListContext) { for _la == MDLParserCOMMA { { - p.SetState(5497) + p.SetState(5554) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -79733,11 +80288,11 @@ func (p *MDLParser) SelectList() (localctx ISelectListContext) { } } { - p.SetState(5498) + p.SetState(5555) p.SelectItem() } - p.SetState(5503) + p.SetState(5560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79889,20 +80444,20 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { p.EnterRule(localctx, 594, MDLParserRULE_selectItem) var _la int - p.SetState(5516) + p.SetState(5573) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 630, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 640, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5506) + p.SetState(5563) p.Expression() } - p.SetState(5509) + p.SetState(5566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79911,7 +80466,7 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { if _la == MDLParserAS { { - p.SetState(5507) + p.SetState(5564) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -79919,7 +80474,7 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { } } { - p.SetState(5508) + p.SetState(5565) p.SelectAlias() } @@ -79928,10 +80483,10 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5511) + p.SetState(5568) p.AggregateFunction() } - p.SetState(5514) + p.SetState(5571) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79940,7 +80495,7 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { if _la == MDLParserAS { { - p.SetState(5512) + p.SetState(5569) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -79948,7 +80503,7 @@ func (p *MDLParser) SelectItem() (localctx ISelectItemContext) { } } { - p.SetState(5513) + p.SetState(5570) p.SelectAlias() } @@ -80061,7 +80616,7 @@ func (s *SelectAliasContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) SelectAlias() (localctx ISelectAliasContext) { localctx = NewSelectAliasContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 596, MDLParserRULE_selectAlias) - p.SetState(5520) + p.SetState(5577) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80071,7 +80626,7 @@ func (p *MDLParser) SelectAlias() (localctx ISelectAliasContext) { case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(5518) + p.SetState(5575) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -80082,7 +80637,7 @@ func (p *MDLParser) SelectAlias() (localctx ISelectAliasContext) { case MDLParserINDEX, MDLParserOWNER, MDLParserREFERENCE, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserDEBUG, MDLParserACTION, MDLParserSORT, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserTITLE, MDLParserLABEL, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserCONTENT, MDLParserTABLETWIDTH, MDLParserPHONEWIDTH, MDLParserCLASS, MDLParserSTYLE, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserEDITABLE, MDLParserVISIBLE, MDLParserSUCCESS, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserERROR, MDLParserRANGE, MDLParserSTATUS, MDLParserVERSION, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserNAVIGATION, MDLParserHOME, MDLParserCHECK, MDLParserTEXT, MDLParserMESSAGE, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserFORMAT, MDLParserROLE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserDESCRIPTION, MDLParserOFF: p.EnterOuterAlt(localctx, 2) { - p.SetState(5519) + p.SetState(5576) p.CommonNameKeyword() } @@ -80241,7 +80796,7 @@ func (p *MDLParser) FromClause() (localctx IFromClauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5522) + p.SetState(5579) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -80249,10 +80804,10 @@ func (p *MDLParser) FromClause() (localctx IFromClauseContext) { } } { - p.SetState(5523) + p.SetState(5580) p.TableReference() } - p.SetState(5527) + p.SetState(5584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80261,11 +80816,11 @@ func (p *MDLParser) FromClause() (localctx IFromClauseContext) { for (int64((_la-86)) & ^0x3f) == 0 && ((int64(1)<<(_la-86))&111) != 0 { { - p.SetState(5524) + p.SetState(5581) p.JoinClause() } - p.SetState(5529) + p.SetState(5586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80410,24 +80965,24 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { p.EnterRule(localctx, 600, MDLParserRULE_tableReference) var _la int - p.SetState(5546) + p.SetState(5603) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV, MDLParserIDENTIFIER, MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(5530) + p.SetState(5587) p.QualifiedName() } - p.SetState(5535) + p.SetState(5592) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 634, p.GetParserRuleContext()) == 1 { - p.SetState(5532) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 644, p.GetParserRuleContext()) == 1 { + p.SetState(5589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80436,7 +80991,7 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { if _la == MDLParserAS { { - p.SetState(5531) + p.SetState(5588) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -80446,7 +81001,7 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { } { - p.SetState(5534) + p.SetState(5591) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -80461,7 +81016,7 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { case MDLParserLPAREN: p.EnterOuterAlt(localctx, 2) { - p.SetState(5537) + p.SetState(5594) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -80469,22 +81024,22 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { } } { - p.SetState(5538) + p.SetState(5595) p.OqlQuery() } { - p.SetState(5539) + p.SetState(5596) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5544) + p.SetState(5601) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 636, p.GetParserRuleContext()) == 1 { - p.SetState(5541) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 646, p.GetParserRuleContext()) == 1 { + p.SetState(5598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80493,7 +81048,7 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { if _la == MDLParserAS { { - p.SetState(5540) + p.SetState(5597) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -80503,7 +81058,7 @@ func (p *MDLParser) TableReference() (localctx ITableReferenceContext) { } { - p.SetState(5543) + p.SetState(5600) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -80691,16 +81246,16 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { p.EnterRule(localctx, 602, MDLParserRULE_joinClause) var _la int - p.SetState(5568) + p.SetState(5625) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 643, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 653, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(5549) + p.SetState(5606) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80709,13 +81264,13 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { if (int64((_la-87)) & ^0x3f) == 0 && ((int64(1)<<(_la-87))&55) != 0 { { - p.SetState(5548) + p.SetState(5605) p.JoinType() } } { - p.SetState(5551) + p.SetState(5608) p.Match(MDLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -80723,10 +81278,10 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { } } { - p.SetState(5552) + p.SetState(5609) p.TableReference() } - p.SetState(5555) + p.SetState(5612) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80735,7 +81290,7 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { if _la == MDLParserON { { - p.SetState(5553) + p.SetState(5610) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -80743,7 +81298,7 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { } } { - p.SetState(5554) + p.SetState(5611) p.Expression() } @@ -80751,7 +81306,7 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(5558) + p.SetState(5615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80760,13 +81315,13 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { if (int64((_la-87)) & ^0x3f) == 0 && ((int64(1)<<(_la-87))&55) != 0 { { - p.SetState(5557) + p.SetState(5614) p.JoinType() } } { - p.SetState(5560) + p.SetState(5617) p.Match(MDLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -80774,14 +81329,14 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { } } { - p.SetState(5561) + p.SetState(5618) p.AssociationPath() } - p.SetState(5566) + p.SetState(5623) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 642, p.GetParserRuleContext()) == 1 { - p.SetState(5563) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 652, p.GetParserRuleContext()) == 1 { + p.SetState(5620) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80790,7 +81345,7 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { if _la == MDLParserAS { { - p.SetState(5562) + p.SetState(5619) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -80800,7 +81355,7 @@ func (p *MDLParser) JoinClause() (localctx IJoinClauseContext) { } { - p.SetState(5565) + p.SetState(5622) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -80955,17 +81510,17 @@ func (s *AssociationPathContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) AssociationPath() (localctx IAssociationPathContext) { localctx = NewAssociationPathContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 604, MDLParserRULE_associationPath) - p.SetState(5580) + p.SetState(5637) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 644, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 654, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5570) + p.SetState(5627) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -80973,7 +81528,7 @@ func (p *MDLParser) AssociationPath() (localctx IAssociationPathContext) { } } { - p.SetState(5571) + p.SetState(5628) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -80981,11 +81536,11 @@ func (p *MDLParser) AssociationPath() (localctx IAssociationPathContext) { } } { - p.SetState(5572) + p.SetState(5629) p.QualifiedName() } { - p.SetState(5573) + p.SetState(5630) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -80993,18 +81548,18 @@ func (p *MDLParser) AssociationPath() (localctx IAssociationPathContext) { } } { - p.SetState(5574) + p.SetState(5631) p.QualifiedName() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5576) + p.SetState(5633) p.QualifiedName() } { - p.SetState(5577) + p.SetState(5634) p.Match(MDLParserSLASH) if p.HasError() { // Recognition error - abort rule @@ -81012,7 +81567,7 @@ func (p *MDLParser) AssociationPath() (localctx IAssociationPathContext) { } } { - p.SetState(5578) + p.SetState(5635) p.QualifiedName() } @@ -81133,7 +81688,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { p.EnterRule(localctx, 606, MDLParserRULE_joinType) var _la int - p.SetState(5596) + p.SetState(5653) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81143,14 +81698,14 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { case MDLParserLEFT: p.EnterOuterAlt(localctx, 1) { - p.SetState(5582) + p.SetState(5639) p.Match(MDLParserLEFT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5584) + p.SetState(5641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81159,7 +81714,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { if _la == MDLParserOUTER { { - p.SetState(5583) + p.SetState(5640) p.Match(MDLParserOUTER) if p.HasError() { // Recognition error - abort rule @@ -81172,14 +81727,14 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { case MDLParserRIGHT: p.EnterOuterAlt(localctx, 2) { - p.SetState(5586) + p.SetState(5643) p.Match(MDLParserRIGHT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5588) + p.SetState(5645) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81188,7 +81743,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { if _la == MDLParserOUTER { { - p.SetState(5587) + p.SetState(5644) p.Match(MDLParserOUTER) if p.HasError() { // Recognition error - abort rule @@ -81201,7 +81756,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { case MDLParserINNER: p.EnterOuterAlt(localctx, 3) { - p.SetState(5590) + p.SetState(5647) p.Match(MDLParserINNER) if p.HasError() { // Recognition error - abort rule @@ -81212,14 +81767,14 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { case MDLParserFULL: p.EnterOuterAlt(localctx, 4) { - p.SetState(5591) + p.SetState(5648) p.Match(MDLParserFULL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5593) + p.SetState(5650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81228,7 +81783,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { if _la == MDLParserOUTER { { - p.SetState(5592) + p.SetState(5649) p.Match(MDLParserOUTER) if p.HasError() { // Recognition error - abort rule @@ -81241,7 +81796,7 @@ func (p *MDLParser) JoinType() (localctx IJoinTypeContext) { case MDLParserCROSS: p.EnterOuterAlt(localctx, 5) { - p.SetState(5595) + p.SetState(5652) p.Match(MDLParserCROSS) if p.HasError() { // Recognition error - abort rule @@ -81359,7 +81914,7 @@ func (p *MDLParser) WhereClause() (localctx IWhereClauseContext) { p.EnterRule(localctx, 608, MDLParserRULE_whereClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(5598) + p.SetState(5655) p.Match(MDLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -81367,7 +81922,7 @@ func (p *MDLParser) WhereClause() (localctx IWhereClauseContext) { } } { - p.SetState(5599) + p.SetState(5656) p.Expression() } @@ -81476,7 +82031,7 @@ func (p *MDLParser) GroupByClause() (localctx IGroupByClauseContext) { p.EnterRule(localctx, 610, MDLParserRULE_groupByClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(5601) + p.SetState(5658) p.Match(MDLParserGROUP_BY) if p.HasError() { // Recognition error - abort rule @@ -81484,7 +82039,7 @@ func (p *MDLParser) GroupByClause() (localctx IGroupByClauseContext) { } } { - p.SetState(5602) + p.SetState(5659) p.ExpressionList() } @@ -81593,7 +82148,7 @@ func (p *MDLParser) HavingClause() (localctx IHavingClauseContext) { p.EnterRule(localctx, 612, MDLParserRULE_havingClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(5604) + p.SetState(5661) p.Match(MDLParserHAVING) if p.HasError() { // Recognition error - abort rule @@ -81601,7 +82156,7 @@ func (p *MDLParser) HavingClause() (localctx IHavingClauseContext) { } } { - p.SetState(5605) + p.SetState(5662) p.Expression() } @@ -81710,7 +82265,7 @@ func (p *MDLParser) OrderByClause() (localctx IOrderByClauseContext) { p.EnterRule(localctx, 614, MDLParserRULE_orderByClause) p.EnterOuterAlt(localctx, 1) { - p.SetState(5607) + p.SetState(5664) p.Match(MDLParserORDER_BY) if p.HasError() { // Recognition error - abort rule @@ -81718,7 +82273,7 @@ func (p *MDLParser) OrderByClause() (localctx IOrderByClauseContext) { } } { - p.SetState(5608) + p.SetState(5665) p.OrderByList() } @@ -81860,10 +82415,10 @@ func (p *MDLParser) OrderByList() (localctx IOrderByListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5610) + p.SetState(5667) p.OrderByItem() } - p.SetState(5615) + p.SetState(5672) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81872,7 +82427,7 @@ func (p *MDLParser) OrderByList() (localctx IOrderByListContext) { for _la == MDLParserCOMMA { { - p.SetState(5611) + p.SetState(5668) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -81880,11 +82435,11 @@ func (p *MDLParser) OrderByList() (localctx IOrderByListContext) { } } { - p.SetState(5612) + p.SetState(5669) p.OrderByItem() } - p.SetState(5617) + p.SetState(5674) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82004,10 +82559,10 @@ func (p *MDLParser) OrderByItem() (localctx IOrderByItemContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5618) + p.SetState(5675) p.Expression() } - p.SetState(5620) + p.SetState(5677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82016,7 +82571,7 @@ func (p *MDLParser) OrderByItem() (localctx IOrderByItemContext) { if _la == MDLParserASC || _la == MDLParserDESC { { - p.SetState(5619) + p.SetState(5676) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserASC || _la == MDLParserDESC) { @@ -82167,10 +82722,10 @@ func (p *MDLParser) GroupByList() (localctx IGroupByListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5622) + p.SetState(5679) p.Expression() } - p.SetState(5627) + p.SetState(5684) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82179,7 +82734,7 @@ func (p *MDLParser) GroupByList() (localctx IGroupByListContext) { for _la == MDLParserCOMMA { { - p.SetState(5623) + p.SetState(5680) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -82187,11 +82742,11 @@ func (p *MDLParser) GroupByList() (localctx IGroupByListContext) { } } { - p.SetState(5624) + p.SetState(5681) p.Expression() } - p.SetState(5629) + p.SetState(5686) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82302,7 +82857,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { p.EnterRule(localctx, 622, MDLParserRULE_limitOffsetClause) var _la int - p.SetState(5642) + p.SetState(5699) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82312,7 +82867,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { case MDLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(5630) + p.SetState(5687) p.Match(MDLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -82320,14 +82875,14 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { } } { - p.SetState(5631) + p.SetState(5688) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5634) + p.SetState(5691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82336,7 +82891,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { if _la == MDLParserOFFSET { { - p.SetState(5632) + p.SetState(5689) p.Match(MDLParserOFFSET) if p.HasError() { // Recognition error - abort rule @@ -82344,7 +82899,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { } } { - p.SetState(5633) + p.SetState(5690) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -82357,7 +82912,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { case MDLParserOFFSET: p.EnterOuterAlt(localctx, 2) { - p.SetState(5636) + p.SetState(5693) p.Match(MDLParserOFFSET) if p.HasError() { // Recognition error - abort rule @@ -82365,14 +82920,14 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { } } { - p.SetState(5637) + p.SetState(5694) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5640) + p.SetState(5697) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82381,7 +82936,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { if _la == MDLParserLIMIT { { - p.SetState(5638) + p.SetState(5695) p.Match(MDLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -82389,7 +82944,7 @@ func (p *MDLParser) LimitOffsetClause() (localctx ILimitOffsetClauseContext) { } } { - p.SetState(5639) + p.SetState(5696) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -82757,122 +83312,122 @@ func (s *UtilityStatementContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) UtilityStatement() (localctx IUtilityStatementContext) { localctx = NewUtilityStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 624, MDLParserRULE_utilityStatement) - p.SetState(5660) + p.SetState(5717) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 655, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 665, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5644) + p.SetState(5701) p.ConnectStatement() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5645) + p.SetState(5702) p.DisconnectStatement() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5646) + p.SetState(5703) p.UpdateStatement() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5647) + p.SetState(5704) p.CheckStatement() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5648) + p.SetState(5705) p.BuildStatement() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5649) + p.SetState(5706) p.ExecuteScriptStatement() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5650) + p.SetState(5707) p.ExecuteRuntimeStatement() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5651) + p.SetState(5708) p.LintStatement() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5652) + p.SetState(5709) p.SearchStatement() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5653) + p.SetState(5710) p.UseSessionStatement() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5654) + p.SetState(5711) p.IntrospectApiStatement() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5655) + p.SetState(5712) p.DebugStatement() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5656) + p.SetState(5713) p.DefineFragmentStatement() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5657) + p.SetState(5714) p.SqlStatement() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5658) + p.SetState(5715) p.ImportStatement() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5659) + p.SetState(5716) p.HelpStatement() } @@ -82973,7 +83528,7 @@ func (p *MDLParser) SearchStatement() (localctx ISearchStatementContext) { p.EnterRule(localctx, 626, MDLParserRULE_searchStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5662) + p.SetState(5719) p.Match(MDLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -82981,7 +83536,7 @@ func (p *MDLParser) SearchStatement() (localctx ISearchStatementContext) { } } { - p.SetState(5663) + p.SetState(5720) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83132,17 +83687,17 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { p.EnterRule(localctx, 628, MDLParserRULE_connectStatement) var _la int - p.SetState(5688) + p.SetState(5745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 658, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 668, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5665) + p.SetState(5722) p.Match(MDLParserCONNECT) if p.HasError() { // Recognition error - abort rule @@ -83150,7 +83705,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5666) + p.SetState(5723) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -83158,7 +83713,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5667) + p.SetState(5724) p.Match(MDLParserPROJECT) if p.HasError() { // Recognition error - abort rule @@ -83166,14 +83721,14 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5668) + p.SetState(5725) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5671) + p.SetState(5728) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83182,7 +83737,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { if _la == MDLParserBRANCH { { - p.SetState(5669) + p.SetState(5726) p.Match(MDLParserBRANCH) if p.HasError() { // Recognition error - abort rule @@ -83190,7 +83745,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5670) + p.SetState(5727) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83200,7 +83755,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } { - p.SetState(5673) + p.SetState(5730) p.Match(MDLParserTOKEN) if p.HasError() { // Recognition error - abort rule @@ -83208,7 +83763,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5674) + p.SetState(5731) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83219,7 +83774,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5675) + p.SetState(5732) p.Match(MDLParserCONNECT) if p.HasError() { // Recognition error - abort rule @@ -83227,7 +83782,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5676) + p.SetState(5733) p.Match(MDLParserLOCAL) if p.HasError() { // Recognition error - abort rule @@ -83235,7 +83790,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5677) + p.SetState(5734) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83246,7 +83801,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5678) + p.SetState(5735) p.Match(MDLParserCONNECT) if p.HasError() { // Recognition error - abort rule @@ -83254,7 +83809,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5679) + p.SetState(5736) p.Match(MDLParserRUNTIME) if p.HasError() { // Recognition error - abort rule @@ -83262,7 +83817,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5680) + p.SetState(5737) p.Match(MDLParserHOST) if p.HasError() { // Recognition error - abort rule @@ -83270,7 +83825,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5681) + p.SetState(5738) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83278,7 +83833,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5682) + p.SetState(5739) p.Match(MDLParserPORT) if p.HasError() { // Recognition error - abort rule @@ -83286,14 +83841,14 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5683) + p.SetState(5740) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5686) + p.SetState(5743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83302,7 +83857,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { if _la == MDLParserTOKEN { { - p.SetState(5684) + p.SetState(5741) p.Match(MDLParserTOKEN) if p.HasError() { // Recognition error - abort rule @@ -83310,7 +83865,7 @@ func (p *MDLParser) ConnectStatement() (localctx IConnectStatementContext) { } } { - p.SetState(5685) + p.SetState(5742) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -83412,7 +83967,7 @@ func (p *MDLParser) DisconnectStatement() (localctx IDisconnectStatementContext) p.EnterRule(localctx, 630, MDLParserRULE_disconnectStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5690) + p.SetState(5747) p.Match(MDLParserDISCONNECT) if p.HasError() { // Recognition error - abort rule @@ -83538,17 +84093,17 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { p.EnterRule(localctx, 632, MDLParserRULE_updateStatement) var _la int - p.SetState(5708) + p.SetState(5765) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 663, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 673, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5692) + p.SetState(5749) p.Match(MDLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -83559,7 +84114,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5693) + p.SetState(5750) p.Match(MDLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -83567,14 +84122,14 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { } } { - p.SetState(5694) + p.SetState(5751) p.Match(MDLParserCATALOG) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5696) + p.SetState(5753) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83583,7 +84138,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { if _la == MDLParserFULL { { - p.SetState(5695) + p.SetState(5752) p.Match(MDLParserFULL) if p.HasError() { // Recognition error - abort rule @@ -83592,7 +84147,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { } } - p.SetState(5699) + p.SetState(5756) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83601,7 +84156,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { if _la == MDLParserSOURCE_KW { { - p.SetState(5698) + p.SetState(5755) p.Match(MDLParserSOURCE_KW) if p.HasError() { // Recognition error - abort rule @@ -83610,7 +84165,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { } } - p.SetState(5702) + p.SetState(5759) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83619,7 +84174,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { if _la == MDLParserFORCE { { - p.SetState(5701) + p.SetState(5758) p.Match(MDLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -83628,7 +84183,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { } } - p.SetState(5705) + p.SetState(5762) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83637,7 +84192,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { if _la == MDLParserBACKGROUND { { - p.SetState(5704) + p.SetState(5761) p.Match(MDLParserBACKGROUND) if p.HasError() { // Recognition error - abort rule @@ -83650,7 +84205,7 @@ func (p *MDLParser) UpdateStatement() (localctx IUpdateStatementContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5707) + p.SetState(5764) p.Match(MDLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -83750,7 +84305,7 @@ func (p *MDLParser) CheckStatement() (localctx ICheckStatementContext) { p.EnterRule(localctx, 634, MDLParserRULE_checkStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5710) + p.SetState(5767) p.Match(MDLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -83846,7 +84401,7 @@ func (p *MDLParser) BuildStatement() (localctx IBuildStatementContext) { p.EnterRule(localctx, 636, MDLParserRULE_buildStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5712) + p.SetState(5769) p.Match(MDLParserBUILD) if p.HasError() { // Recognition error - abort rule @@ -83952,7 +84507,7 @@ func (p *MDLParser) ExecuteScriptStatement() (localctx IExecuteScriptStatementCo p.EnterRule(localctx, 638, MDLParserRULE_executeScriptStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5714) + p.SetState(5771) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -83960,7 +84515,7 @@ func (p *MDLParser) ExecuteScriptStatement() (localctx IExecuteScriptStatementCo } } { - p.SetState(5715) + p.SetState(5772) p.Match(MDLParserSCRIPT) if p.HasError() { // Recognition error - abort rule @@ -83968,7 +84523,7 @@ func (p *MDLParser) ExecuteScriptStatement() (localctx IExecuteScriptStatementCo } } { - p.SetState(5716) + p.SetState(5773) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -84074,7 +84629,7 @@ func (p *MDLParser) ExecuteRuntimeStatement() (localctx IExecuteRuntimeStatement p.EnterRule(localctx, 640, MDLParserRULE_executeRuntimeStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5718) + p.SetState(5775) p.Match(MDLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -84082,7 +84637,7 @@ func (p *MDLParser) ExecuteRuntimeStatement() (localctx IExecuteRuntimeStatement } } { - p.SetState(5719) + p.SetState(5776) p.Match(MDLParserRUNTIME) if p.HasError() { // Recognition error - abort rule @@ -84090,7 +84645,7 @@ func (p *MDLParser) ExecuteRuntimeStatement() (localctx IExecuteRuntimeStatement } } { - p.SetState(5720) + p.SetState(5777) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -84235,7 +84790,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { p.EnterRule(localctx, 642, MDLParserRULE_lintStatement) var _la int - p.SetState(5733) + p.SetState(5790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84245,26 +84800,26 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { case MDLParserLINT: p.EnterOuterAlt(localctx, 1) { - p.SetState(5722) + p.SetState(5779) p.Match(MDLParserLINT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5724) + p.SetState(5781) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 664, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 674, p.GetParserRuleContext()) == 1 { { - p.SetState(5723) + p.SetState(5780) p.LintTarget() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5728) + p.SetState(5785) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84273,7 +84828,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { if _la == MDLParserFORMAT { { - p.SetState(5726) + p.SetState(5783) p.Match(MDLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -84281,7 +84836,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { } } { - p.SetState(5727) + p.SetState(5784) p.LintFormat() } @@ -84290,7 +84845,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { case MDLParserSHOW: p.EnterOuterAlt(localctx, 2) { - p.SetState(5730) + p.SetState(5787) p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule @@ -84298,7 +84853,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { } } { - p.SetState(5731) + p.SetState(5788) p.Match(MDLParserLINT) if p.HasError() { // Recognition error - abort rule @@ -84306,7 +84861,7 @@ func (p *MDLParser) LintStatement() (localctx ILintStatementContext) { } } { - p.SetState(5732) + p.SetState(5789) p.Match(MDLParserRULES) if p.HasError() { // Recognition error - abort rule @@ -84427,21 +84982,21 @@ func (s *LintTargetContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) LintTarget() (localctx ILintTargetContext) { localctx = NewLintTargetContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 644, MDLParserRULE_lintTarget) - p.SetState(5741) + p.SetState(5798) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 667, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 677, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5735) + p.SetState(5792) p.QualifiedName() } { - p.SetState(5736) + p.SetState(5793) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -84449,7 +85004,7 @@ func (p *MDLParser) LintTarget() (localctx ILintTargetContext) { } } { - p.SetState(5737) + p.SetState(5794) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -84460,14 +85015,14 @@ func (p *MDLParser) LintTarget() (localctx ILintTargetContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5739) + p.SetState(5796) p.QualifiedName() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5740) + p.SetState(5797) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -84579,7 +85134,7 @@ func (p *MDLParser) LintFormat() (localctx ILintFormatContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5743) + p.SetState(5800) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserJSON || _la == MDLParserTEXT || _la == MDLParserSARIF) { @@ -84698,17 +85253,17 @@ func (s *UseSessionStatementContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) UseSessionStatement() (localctx IUseSessionStatementContext) { localctx = NewUseSessionStatementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 648, MDLParserRULE_useSessionStatement) - p.SetState(5749) + p.SetState(5806) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 668, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 678, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5745) + p.SetState(5802) p.Match(MDLParserUSE) if p.HasError() { // Recognition error - abort rule @@ -84716,14 +85271,14 @@ func (p *MDLParser) UseSessionStatement() (localctx IUseSessionStatementContext) } } { - p.SetState(5746) + p.SetState(5803) p.SessionIdList() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5747) + p.SetState(5804) p.Match(MDLParserUSE) if p.HasError() { // Recognition error - abort rule @@ -84731,7 +85286,7 @@ func (p *MDLParser) UseSessionStatement() (localctx IUseSessionStatementContext) } } { - p.SetState(5748) + p.SetState(5805) p.Match(MDLParserALL) if p.HasError() { // Recognition error - abort rule @@ -84881,10 +85436,10 @@ func (p *MDLParser) SessionIdList() (localctx ISessionIdListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5751) + p.SetState(5808) p.SessionId() } - p.SetState(5756) + p.SetState(5813) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84893,7 +85448,7 @@ func (p *MDLParser) SessionIdList() (localctx ISessionIdListContext) { for _la == MDLParserCOMMA { { - p.SetState(5752) + p.SetState(5809) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -84901,11 +85456,11 @@ func (p *MDLParser) SessionIdList() (localctx ISessionIdListContext) { } } { - p.SetState(5753) + p.SetState(5810) p.SessionId() } - p.SetState(5758) + p.SetState(5815) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85008,7 +85563,7 @@ func (p *MDLParser) SessionId() (localctx ISessionIdContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5759) + p.SetState(5816) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserIDENTIFIER || _la == MDLParserHYPHENATED_ID) { @@ -85112,7 +85667,7 @@ func (p *MDLParser) IntrospectApiStatement() (localctx IIntrospectApiStatementCo p.EnterRule(localctx, 654, MDLParserRULE_introspectApiStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5761) + p.SetState(5818) p.Match(MDLParserINTROSPECT) if p.HasError() { // Recognition error - abort rule @@ -85120,7 +85675,7 @@ func (p *MDLParser) IntrospectApiStatement() (localctx IIntrospectApiStatementCo } } { - p.SetState(5762) + p.SetState(5819) p.Match(MDLParserAPI) if p.HasError() { // Recognition error - abort rule @@ -85221,7 +85776,7 @@ func (p *MDLParser) DebugStatement() (localctx IDebugStatementContext) { p.EnterRule(localctx, 656, MDLParserRULE_debugStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5764) + p.SetState(5821) p.Match(MDLParserDEBUG) if p.HasError() { // Recognition error - abort rule @@ -85229,7 +85784,7 @@ func (p *MDLParser) DebugStatement() (localctx IDebugStatementContext) { } } { - p.SetState(5765) + p.SetState(5822) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -85380,28 +85935,16 @@ func (s *SqlShowTablesContext) SQL() antlr.TerminalNode { return s.GetToken(MDLParserSQL, 0) } -func (s *SqlShowTablesContext) IDENTIFIER() antlr.TerminalNode { - return s.GetToken(MDLParserIDENTIFIER, 0) +func (s *SqlShowTablesContext) AllIDENTIFIER() []antlr.TerminalNode { + return s.GetTokens(MDLParserIDENTIFIER) } -func (s *SqlShowTablesContext) SHOW() antlr.TerminalNode { - return s.GetToken(MDLParserSHOW, 0) +func (s *SqlShowTablesContext) IDENTIFIER(i int) antlr.TerminalNode { + return s.GetToken(MDLParserIDENTIFIER, i) } -func (s *SqlShowTablesContext) IdentifierOrKeyword() IIdentifierOrKeywordContext { - var t antlr.RuleContext - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IIdentifierOrKeywordContext); ok { - t = ctx.(antlr.RuleContext) - break - } - } - - if t == nil { - return nil - } - - return t.(IIdentifierOrKeywordContext) +func (s *SqlShowTablesContext) SHOW() antlr.TerminalNode { + return s.GetToken(MDLParserSHOW, 0) } func (s *SqlShowTablesContext) EnterRule(listener antlr.ParseTreeListener) { @@ -85438,28 +85981,16 @@ func (s *SqlDescribeTableContext) SQL() antlr.TerminalNode { return s.GetToken(MDLParserSQL, 0) } -func (s *SqlDescribeTableContext) IDENTIFIER() antlr.TerminalNode { - return s.GetToken(MDLParserIDENTIFIER, 0) +func (s *SqlDescribeTableContext) AllIDENTIFIER() []antlr.TerminalNode { + return s.GetTokens(MDLParserIDENTIFIER) } -func (s *SqlDescribeTableContext) DESCRIBE() antlr.TerminalNode { - return s.GetToken(MDLParserDESCRIBE, 0) +func (s *SqlDescribeTableContext) IDENTIFIER(i int) antlr.TerminalNode { + return s.GetToken(MDLParserIDENTIFIER, i) } -func (s *SqlDescribeTableContext) QualifiedName() IQualifiedNameContext { - var t antlr.RuleContext - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IQualifiedNameContext); ok { - t = ctx.(antlr.RuleContext) - break - } - } - - if t == nil { - return nil - } - - return t.(IQualifiedNameContext) +func (s *SqlDescribeTableContext) DESCRIBE() antlr.TerminalNode { + return s.GetToken(MDLParserDESCRIBE, 0) } func (s *SqlDescribeTableContext) EnterRule(listener antlr.ParseTreeListener) { @@ -85528,48 +86059,6 @@ func (s *SqlQueryContext) ExitRule(listener antlr.ParseTreeListener) { } } -type SqlConnectAliasContext struct { - SqlStatementContext -} - -func NewSqlConnectAliasContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *SqlConnectAliasContext { - var p = new(SqlConnectAliasContext) - - InitEmptySqlStatementContext(&p.SqlStatementContext) - p.parser = parser - p.CopyAll(ctx.(*SqlStatementContext)) - - return p -} - -func (s *SqlConnectAliasContext) GetRuleContext() antlr.RuleContext { - return s -} - -func (s *SqlConnectAliasContext) SQL() antlr.TerminalNode { - return s.GetToken(MDLParserSQL, 0) -} - -func (s *SqlConnectAliasContext) CONNECT() antlr.TerminalNode { - return s.GetToken(MDLParserCONNECT, 0) -} - -func (s *SqlConnectAliasContext) IDENTIFIER() antlr.TerminalNode { - return s.GetToken(MDLParserIDENTIFIER, 0) -} - -func (s *SqlConnectAliasContext) EnterRule(listener antlr.ParseTreeListener) { - if listenerT, ok := listener.(MDLParserListener); ok { - listenerT.EnterSqlConnectAlias(s) - } -} - -func (s *SqlConnectAliasContext) ExitRule(listener antlr.ParseTreeListener) { - if listenerT, ok := listener.(MDLParserListener); ok { - listenerT.ExitSqlConnectAlias(s) - } -} - type SqlConnectionsContext struct { SqlStatementContext } @@ -85782,18 +86271,18 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { p.EnterRule(localctx, 658, MDLParserRULE_sqlStatement) var _la int - p.SetState(5829) + p.SetState(5883) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 675, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 685, p.GetParserRuleContext()) { case 1: localctx = NewSqlConnectContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(5767) + p.SetState(5824) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85801,7 +86290,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5768) + p.SetState(5825) p.Match(MDLParserCONNECT) if p.HasError() { // Recognition error - abort rule @@ -85809,7 +86298,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5769) + p.SetState(5826) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -85817,7 +86306,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5770) + p.SetState(5827) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -85825,7 +86314,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5771) + p.SetState(5828) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -85833,7 +86322,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5772) + p.SetState(5829) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -85842,10 +86331,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } case 2: - localctx = NewSqlConnectAliasContext(p, localctx) + localctx = NewSqlDisconnectContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(5773) + p.SetState(5830) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85853,15 +86342,15 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5774) - p.Match(MDLParserCONNECT) + p.SetState(5831) + p.Match(MDLParserDISCONNECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(5775) + p.SetState(5832) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -85870,10 +86359,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } case 3: - localctx = NewSqlDisconnectContext(p, localctx) + localctx = NewSqlConnectionsContext(p, localctx) p.EnterOuterAlt(localctx, 3) { - p.SetState(5776) + p.SetState(5833) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85881,16 +86370,8 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5777) - p.Match(MDLParserDISCONNECT) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(5778) - p.Match(MDLParserIDENTIFIER) + p.SetState(5834) + p.Match(MDLParserCONNECTIONS) if p.HasError() { // Recognition error - abort rule goto errorExit @@ -85898,10 +86379,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } case 4: - localctx = NewSqlConnectionsContext(p, localctx) + localctx = NewSqlShowTablesContext(p, localctx) p.EnterOuterAlt(localctx, 4) { - p.SetState(5779) + p.SetState(5835) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85909,51 +86390,35 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5780) - p.Match(MDLParserCONNECTIONS) + p.SetState(5836) + p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - - case 5: - localctx = NewSqlShowTablesContext(p, localctx) - p.EnterOuterAlt(localctx, 5) { - p.SetState(5781) - p.Match(MDLParserSQL) + p.SetState(5837) + p.Match(MDLParserSHOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } { - p.SetState(5782) + p.SetState(5838) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - { - p.SetState(5783) - p.Match(MDLParserSHOW) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(5784) - p.IdentifierOrKeyword() - } - case 6: + case 5: localctx = NewSqlDescribeTableContext(p, localctx) - p.EnterOuterAlt(localctx, 6) + p.EnterOuterAlt(localctx, 5) { - p.SetState(5785) + p.SetState(5839) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85961,7 +86426,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5786) + p.SetState(5840) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -85969,7 +86434,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5787) + p.SetState(5841) p.Match(MDLParserDESCRIBE) if p.HasError() { // Recognition error - abort rule @@ -85977,15 +86442,19 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5788) - p.QualifiedName() + p.SetState(5842) + p.Match(MDLParserIDENTIFIER) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } - case 7: + case 6: localctx = NewSqlGenerateConnectorContext(p, localctx) - p.EnterOuterAlt(localctx, 7) + p.EnterOuterAlt(localctx, 6) { - p.SetState(5789) + p.SetState(5843) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -85993,7 +86462,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5790) + p.SetState(5844) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -86001,7 +86470,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5791) + p.SetState(5845) p.Match(MDLParserGENERATE) if p.HasError() { // Recognition error - abort rule @@ -86009,7 +86478,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5792) + p.SetState(5846) p.Match(MDLParserCONNECTOR) if p.HasError() { // Recognition error - abort rule @@ -86017,7 +86486,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5793) + p.SetState(5847) p.Match(MDLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -86025,10 +86494,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5794) + p.SetState(5848) p.IdentifierOrKeyword() } - p.SetState(5807) + p.SetState(5861) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86037,7 +86506,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { if _la == MDLParserTABLES { { - p.SetState(5795) + p.SetState(5849) p.Match(MDLParserTABLES) if p.HasError() { // Recognition error - abort rule @@ -86045,7 +86514,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5796) + p.SetState(5850) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -86053,10 +86522,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5797) + p.SetState(5851) p.IdentifierOrKeyword() } - p.SetState(5802) + p.SetState(5856) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86065,7 +86534,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { for _la == MDLParserCOMMA { { - p.SetState(5798) + p.SetState(5852) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86073,11 +86542,11 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5799) + p.SetState(5853) p.IdentifierOrKeyword() } - p.SetState(5804) + p.SetState(5858) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86085,7 +86554,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(5805) + p.SetState(5859) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -86094,7 +86563,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } - p.SetState(5821) + p.SetState(5875) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86103,7 +86572,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { if _la == MDLParserVIEWS { { - p.SetState(5809) + p.SetState(5863) p.Match(MDLParserVIEWS) if p.HasError() { // Recognition error - abort rule @@ -86111,7 +86580,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5810) + p.SetState(5864) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -86119,10 +86588,10 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5811) + p.SetState(5865) p.IdentifierOrKeyword() } - p.SetState(5816) + p.SetState(5870) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86131,7 +86600,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { for _la == MDLParserCOMMA { { - p.SetState(5812) + p.SetState(5866) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86139,11 +86608,11 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5813) + p.SetState(5867) p.IdentifierOrKeyword() } - p.SetState(5818) + p.SetState(5872) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86151,7 +86620,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(5819) + p.SetState(5873) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -86160,7 +86629,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } - p.SetState(5824) + p.SetState(5878) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86169,7 +86638,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { if _la == MDLParserEXEC { { - p.SetState(5823) + p.SetState(5877) p.Match(MDLParserEXEC) if p.HasError() { // Recognition error - abort rule @@ -86179,11 +86648,11 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } - case 8: + case 7: localctx = NewSqlQueryContext(p, localctx) - p.EnterOuterAlt(localctx, 8) + p.EnterOuterAlt(localctx, 7) { - p.SetState(5826) + p.SetState(5880) p.Match(MDLParserSQL) if p.HasError() { // Recognition error - abort rule @@ -86191,7 +86660,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5827) + p.SetState(5881) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -86199,7 +86668,7 @@ func (p *MDLParser) SqlStatement() (localctx ISqlStatementContext) { } } { - p.SetState(5828) + p.SetState(5882) p.SqlPassthrough() } @@ -86323,7 +86792,7 @@ func (p *MDLParser) SqlPassthrough() (localctx ISqlPassthroughContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(5832) + p.SetState(5886) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86333,7 +86802,7 @@ func (p *MDLParser) SqlPassthrough() (localctx ISqlPassthroughContext) { switch _alt { case 1: { - p.SetState(5831) + p.SetState(5885) _la = p.GetTokenStream().LA(1) if _la <= 0 || _la == MDLParserEOF || _la == MDLParserSLASH || _la == MDLParserSEMICOLON { @@ -86349,9 +86818,9 @@ func (p *MDLParser) SqlPassthrough() (localctx ISqlPassthroughContext) { goto errorExit } - p.SetState(5834) + p.SetState(5888) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 676, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 686, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -86648,7 +87117,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { localctx = NewImportFromQueryContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(5836) + p.SetState(5890) p.Match(MDLParserIMPORT) if p.HasError() { // Recognition error - abort rule @@ -86656,7 +87125,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5837) + p.SetState(5891) p.Match(MDLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -86664,11 +87133,11 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5838) + p.SetState(5892) p.IdentifierOrKeyword() } { - p.SetState(5839) + p.SetState(5893) p.Match(MDLParserQUERY) if p.HasError() { // Recognition error - abort rule @@ -86676,7 +87145,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5840) + p.SetState(5894) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserSTRING_LITERAL || _la == MDLParserDOLLAR_STRING) { @@ -86687,7 +87156,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5841) + p.SetState(5895) p.Match(MDLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -86695,11 +87164,11 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5842) + p.SetState(5896) p.QualifiedName() } { - p.SetState(5843) + p.SetState(5897) p.Match(MDLParserMAP) if p.HasError() { // Recognition error - abort rule @@ -86707,7 +87176,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5844) + p.SetState(5898) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -86715,10 +87184,10 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5845) + p.SetState(5899) p.ImportMapping() } - p.SetState(5850) + p.SetState(5904) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86727,7 +87196,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { for _la == MDLParserCOMMA { { - p.SetState(5846) + p.SetState(5900) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86735,11 +87204,11 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5847) + p.SetState(5901) p.ImportMapping() } - p.SetState(5852) + p.SetState(5906) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86747,14 +87216,14 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(5853) + p.SetState(5907) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5866) + p.SetState(5920) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86763,7 +87232,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { if _la == MDLParserLINK { { - p.SetState(5854) + p.SetState(5908) p.Match(MDLParserLINK) if p.HasError() { // Recognition error - abort rule @@ -86771,7 +87240,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5855) + p.SetState(5909) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -86779,10 +87248,10 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5856) + p.SetState(5910) p.LinkMapping() } - p.SetState(5861) + p.SetState(5915) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86791,7 +87260,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { for _la == MDLParserCOMMA { { - p.SetState(5857) + p.SetState(5911) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86799,11 +87268,11 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5858) + p.SetState(5912) p.LinkMapping() } - p.SetState(5863) + p.SetState(5917) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86811,7 +87280,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(5864) + p.SetState(5918) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -86820,7 +87289,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } - p.SetState(5870) + p.SetState(5924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86829,7 +87298,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { if _la == MDLParserBATCH { { - p.SetState(5868) + p.SetState(5922) p.Match(MDLParserBATCH) if p.HasError() { // Recognition error - abort rule @@ -86837,7 +87306,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5869) + p.SetState(5923) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -86846,7 +87315,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } - p.SetState(5874) + p.SetState(5928) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86855,7 +87324,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { if _la == MDLParserLIMIT { { - p.SetState(5872) + p.SetState(5926) p.Match(MDLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -86863,7 +87332,7 @@ func (p *MDLParser) ImportStatement() (localctx IImportStatementContext) { } } { - p.SetState(5873) + p.SetState(5927) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -87004,11 +87473,11 @@ func (p *MDLParser) ImportMapping() (localctx IImportMappingContext) { p.EnterRule(localctx, 664, MDLParserRULE_importMapping) p.EnterOuterAlt(localctx, 1) { - p.SetState(5876) + p.SetState(5930) p.IdentifierOrKeyword() } { - p.SetState(5877) + p.SetState(5931) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -87016,7 +87485,7 @@ func (p *MDLParser) ImportMapping() (localctx IImportMappingContext) { } } { - p.SetState(5878) + p.SetState(5932) p.IdentifierOrKeyword() } @@ -87244,22 +87713,22 @@ func (s *LinkLookupContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) LinkMapping() (localctx ILinkMappingContext) { localctx = NewLinkMappingContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 666, MDLParserRULE_linkMapping) - p.SetState(5890) + p.SetState(5944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 682, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 692, p.GetParserRuleContext()) { case 1: localctx = NewLinkLookupContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(5880) + p.SetState(5934) p.IdentifierOrKeyword() } { - p.SetState(5881) + p.SetState(5935) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -87267,11 +87736,11 @@ func (p *MDLParser) LinkMapping() (localctx ILinkMappingContext) { } } { - p.SetState(5882) + p.SetState(5936) p.IdentifierOrKeyword() } { - p.SetState(5883) + p.SetState(5937) p.Match(MDLParserON) if p.HasError() { // Recognition error - abort rule @@ -87279,7 +87748,7 @@ func (p *MDLParser) LinkMapping() (localctx ILinkMappingContext) { } } { - p.SetState(5884) + p.SetState(5938) p.IdentifierOrKeyword() } @@ -87287,11 +87756,11 @@ func (p *MDLParser) LinkMapping() (localctx ILinkMappingContext) { localctx = NewLinkDirectContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(5886) + p.SetState(5940) p.IdentifierOrKeyword() } { - p.SetState(5887) + p.SetState(5941) p.Match(MDLParserTO) if p.HasError() { // Recognition error - abort rule @@ -87299,7 +87768,7 @@ func (p *MDLParser) LinkMapping() (localctx ILinkMappingContext) { } } { - p.SetState(5888) + p.SetState(5942) p.IdentifierOrKeyword() } @@ -87395,7 +87864,7 @@ func (p *MDLParser) HelpStatement() (localctx IHelpStatementContext) { p.EnterRule(localctx, 668, MDLParserRULE_helpStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5892) + p.SetState(5946) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -87545,7 +88014,7 @@ func (p *MDLParser) DefineFragmentStatement() (localctx IDefineFragmentStatement p.EnterRule(localctx, 670, MDLParserRULE_defineFragmentStatement) p.EnterOuterAlt(localctx, 1) { - p.SetState(5894) + p.SetState(5948) p.Match(MDLParserDEFINE) if p.HasError() { // Recognition error - abort rule @@ -87553,7 +88022,7 @@ func (p *MDLParser) DefineFragmentStatement() (localctx IDefineFragmentStatement } } { - p.SetState(5895) + p.SetState(5949) p.Match(MDLParserFRAGMENT) if p.HasError() { // Recognition error - abort rule @@ -87561,11 +88030,11 @@ func (p *MDLParser) DefineFragmentStatement() (localctx IDefineFragmentStatement } } { - p.SetState(5896) + p.SetState(5950) p.IdentifierOrKeyword() } { - p.SetState(5897) + p.SetState(5951) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -87573,7 +88042,7 @@ func (p *MDLParser) DefineFragmentStatement() (localctx IDefineFragmentStatement } } { - p.SetState(5898) + p.SetState(5952) p.Match(MDLParserLBRACE) if p.HasError() { // Recognition error - abort rule @@ -87581,11 +88050,11 @@ func (p *MDLParser) DefineFragmentStatement() (localctx IDefineFragmentStatement } } { - p.SetState(5899) + p.SetState(5953) p.PageBodyV3() } { - p.SetState(5900) + p.SetState(5954) p.Match(MDLParserRBRACE) if p.HasError() { // Recognition error - abort rule @@ -87693,7 +88162,7 @@ func (p *MDLParser) Expression() (localctx IExpressionContext) { p.EnterRule(localctx, 672, MDLParserRULE_expression) p.EnterOuterAlt(localctx, 1) { - p.SetState(5902) + p.SetState(5956) p.OrExpression() } @@ -87835,22 +88304,22 @@ func (p *MDLParser) OrExpression() (localctx IOrExpressionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5904) + p.SetState(5958) p.AndExpression() } - p.SetState(5909) + p.SetState(5963) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 683, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 693, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(5905) + p.SetState(5959) p.Match(MDLParserOR) if p.HasError() { // Recognition error - abort rule @@ -87858,17 +88327,17 @@ func (p *MDLParser) OrExpression() (localctx IOrExpressionContext) { } } { - p.SetState(5906) + p.SetState(5960) p.AndExpression() } } - p.SetState(5911) + p.SetState(5965) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 683, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 693, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -88012,22 +88481,22 @@ func (p *MDLParser) AndExpression() (localctx IAndExpressionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5912) + p.SetState(5966) p.NotExpression() } - p.SetState(5917) + p.SetState(5971) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 684, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 694, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(5913) + p.SetState(5967) p.Match(MDLParserAND) if p.HasError() { // Recognition error - abort rule @@ -88035,17 +88504,17 @@ func (p *MDLParser) AndExpression() (localctx IAndExpressionContext) { } } { - p.SetState(5914) + p.SetState(5968) p.NotExpression() } } - p.SetState(5919) + p.SetState(5973) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 684, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 694, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -88155,12 +88624,12 @@ func (p *MDLParser) NotExpression() (localctx INotExpressionContext) { localctx = NewNotExpressionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 678, MDLParserRULE_notExpression) p.EnterOuterAlt(localctx, 1) - p.SetState(5921) + p.SetState(5975) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 685, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 695, p.GetParserRuleContext()) == 1 { { - p.SetState(5920) + p.SetState(5974) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -88172,7 +88641,7 @@ func (p *MDLParser) NotExpression() (localctx INotExpressionContext) { goto errorExit } { - p.SetState(5923) + p.SetState(5977) p.ComparisonExpression() } @@ -88405,27 +88874,27 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex p.EnterOuterAlt(localctx, 1) { - p.SetState(5925) + p.SetState(5979) p.AdditiveExpression() } - p.SetState(5954) + p.SetState(6008) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 1 { { - p.SetState(5926) + p.SetState(5980) p.ComparisonOperator() } { - p.SetState(5927) + p.SetState(5981) p.AdditiveExpression() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 2 { { - p.SetState(5929) + p.SetState(5983) p.Match(MDLParserIS_NULL) if p.HasError() { // Recognition error - abort rule @@ -88435,9 +88904,9 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 3 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 3 { { - p.SetState(5930) + p.SetState(5984) p.Match(MDLParserIS_NOT_NULL) if p.HasError() { // Recognition error - abort rule @@ -88447,9 +88916,9 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 4 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 4 { { - p.SetState(5931) + p.SetState(5985) p.Match(MDLParserIN) if p.HasError() { // Recognition error - abort rule @@ -88457,29 +88926,29 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } } { - p.SetState(5932) + p.SetState(5986) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5935) + p.SetState(5989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 686, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 696, p.GetParserRuleContext()) { case 1: { - p.SetState(5933) + p.SetState(5987) p.OqlQuery() } case 2: { - p.SetState(5934) + p.SetState(5988) p.ExpressionList() } @@ -88487,7 +88956,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex goto errorExit } { - p.SetState(5937) + p.SetState(5991) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -88497,8 +88966,8 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 5 { - p.SetState(5940) + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 5 { + p.SetState(5994) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88507,7 +88976,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex if _la == MDLParserNOT { { - p.SetState(5939) + p.SetState(5993) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -88517,7 +88986,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } { - p.SetState(5942) + p.SetState(5996) p.Match(MDLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -88525,11 +88994,11 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } } { - p.SetState(5943) + p.SetState(5997) p.AdditiveExpression() } { - p.SetState(5944) + p.SetState(5998) p.Match(MDLParserAND) if p.HasError() { // Recognition error - abort rule @@ -88537,14 +89006,14 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } } { - p.SetState(5945) + p.SetState(5999) p.AdditiveExpression() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 6 { - p.SetState(5948) + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 6 { + p.SetState(6002) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88553,7 +89022,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex if _la == MDLParserNOT { { - p.SetState(5947) + p.SetState(6001) p.Match(MDLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -88563,7 +89032,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } { - p.SetState(5950) + p.SetState(6004) p.Match(MDLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -88571,15 +89040,15 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } } { - p.SetState(5951) + p.SetState(6005) p.AdditiveExpression() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 689, p.GetParserRuleContext()) == 7 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 699, p.GetParserRuleContext()) == 7 { { - p.SetState(5952) + p.SetState(6006) p.Match(MDLParserMATCH) if p.HasError() { // Recognition error - abort rule @@ -88587,7 +89056,7 @@ func (p *MDLParser) ComparisonExpression() (localctx IComparisonExpressionContex } } { - p.SetState(5953) + p.SetState(6007) p.AdditiveExpression() } @@ -88710,10 +89179,10 @@ func (p *MDLParser) ComparisonOperator() (localctx IComparisonOperatorContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5956) + p.SetState(6010) _la = p.GetTokenStream().LA(1) - if !((int64((_la-487)) & ^0x3f) == 0 && ((int64(1)<<(_la-487))&63) != 0) { + if !((int64((_la-491)) & ^0x3f) == 0 && ((int64(1)<<(_la-491))&63) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -88871,22 +89340,22 @@ func (p *MDLParser) AdditiveExpression() (localctx IAdditiveExpressionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5958) + p.SetState(6012) p.MultiplicativeExpression() } - p.SetState(5963) + p.SetState(6017) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 690, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 700, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(5959) + p.SetState(6013) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserPLUS || _la == MDLParserMINUS) { @@ -88897,17 +89366,17 @@ func (p *MDLParser) AdditiveExpression() (localctx IAdditiveExpressionContext) { } } { - p.SetState(5960) + p.SetState(6014) p.MultiplicativeExpression() } } - p.SetState(5965) + p.SetState(6019) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 690, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 700, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -89103,25 +89572,25 @@ func (p *MDLParser) MultiplicativeExpression() (localctx IMultiplicativeExpressi p.EnterOuterAlt(localctx, 1) { - p.SetState(5966) + p.SetState(6020) p.UnaryExpression() } - p.SetState(5971) + p.SetState(6025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 691, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 701, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(5967) + p.SetState(6021) _la = p.GetTokenStream().LA(1) - if !((int64((_la-495)) & ^0x3f) == 0 && ((int64(1)<<(_la-495))&16415) != 0) { + if !((int64((_la-499)) & ^0x3f) == 0 && ((int64(1)<<(_la-499))&16415) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -89129,17 +89598,17 @@ func (p *MDLParser) MultiplicativeExpression() (localctx IMultiplicativeExpressi } } { - p.SetState(5968) + p.SetState(6022) p.UnaryExpression() } } - p.SetState(5973) + p.SetState(6027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 691, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 701, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -89256,7 +89725,7 @@ func (p *MDLParser) UnaryExpression() (localctx IUnaryExpressionContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(5975) + p.SetState(6029) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89265,7 +89734,7 @@ func (p *MDLParser) UnaryExpression() (localctx IUnaryExpressionContext) { if _la == MDLParserPLUS || _la == MDLParserMINUS { { - p.SetState(5974) + p.SetState(6028) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserPLUS || _la == MDLParserMINUS) { @@ -89278,7 +89747,7 @@ func (p *MDLParser) UnaryExpression() (localctx IUnaryExpressionContext) { } { - p.SetState(5977) + p.SetState(6031) p.PrimaryExpression() } @@ -89548,17 +90017,17 @@ func (s *PrimaryExpressionContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { localctx = NewPrimaryExpressionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 690, MDLParserRULE_primaryExpression) - p.SetState(6000) + p.SetState(6054) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 693, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 703, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5979) + p.SetState(6033) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -89566,11 +90035,11 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { } } { - p.SetState(5980) + p.SetState(6034) p.Expression() } { - p.SetState(5981) + p.SetState(6035) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -89581,7 +90050,7 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5983) + p.SetState(6037) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -89589,11 +90058,11 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { } } { - p.SetState(5984) + p.SetState(6038) p.OqlQuery() } { - p.SetState(5985) + p.SetState(6039) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -89604,7 +90073,7 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5987) + p.SetState(6041) p.Match(MDLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -89612,7 +90081,7 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { } } { - p.SetState(5988) + p.SetState(6042) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -89620,11 +90089,11 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { } } { - p.SetState(5989) + p.SetState(6043) p.OqlQuery() } { - p.SetState(5990) + p.SetState(6044) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -89635,56 +90104,56 @@ func (p *MDLParser) PrimaryExpression() (localctx IPrimaryExpressionContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5992) + p.SetState(6046) p.IfThenElseExpression() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5993) + p.SetState(6047) p.CaseExpression() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5994) + p.SetState(6048) p.CastExpression() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5995) + p.SetState(6049) p.ListAggregateOperation() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5996) + p.SetState(6050) p.ListOperation() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5997) + p.SetState(6051) p.AggregateFunction() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5998) + p.SetState(6052) p.FunctionCall() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5999) + p.SetState(6053) p.AtomicExpression() } @@ -89855,14 +90324,14 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6002) + p.SetState(6056) p.Match(MDLParserCASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6008) + p.SetState(6062) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89871,7 +90340,7 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { for ok := true; ok; ok = _la == MDLParserWHEN { { - p.SetState(6003) + p.SetState(6057) p.Match(MDLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -89879,11 +90348,11 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { } } { - p.SetState(6004) + p.SetState(6058) p.Expression() } { - p.SetState(6005) + p.SetState(6059) p.Match(MDLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -89891,18 +90360,18 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { } } { - p.SetState(6006) + p.SetState(6060) p.Expression() } - p.SetState(6010) + p.SetState(6064) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) } - p.SetState(6014) + p.SetState(6068) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89911,7 +90380,7 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { if _la == MDLParserELSE { { - p.SetState(6012) + p.SetState(6066) p.Match(MDLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -89919,13 +90388,13 @@ func (p *MDLParser) CaseExpression() (localctx ICaseExpressionContext) { } } { - p.SetState(6013) + p.SetState(6067) p.Expression() } } { - p.SetState(6016) + p.SetState(6070) p.Match(MDLParserEND) if p.HasError() { // Recognition error - abort rule @@ -90107,7 +90576,7 @@ func (p *MDLParser) IfThenElseExpression() (localctx IIfThenElseExpressionContex p.EnterRule(localctx, 694, MDLParserRULE_ifThenElseExpression) p.EnterOuterAlt(localctx, 1) { - p.SetState(6018) + p.SetState(6072) p.Match(MDLParserIF) if p.HasError() { // Recognition error - abort rule @@ -90115,14 +90584,14 @@ func (p *MDLParser) IfThenElseExpression() (localctx IIfThenElseExpressionContex } } { - p.SetState(6019) + p.SetState(6073) var _x = p.Expression() localctx.(*IfThenElseExpressionContext).condition = _x } { - p.SetState(6020) + p.SetState(6074) p.Match(MDLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -90130,14 +90599,14 @@ func (p *MDLParser) IfThenElseExpression() (localctx IIfThenElseExpressionContex } } { - p.SetState(6021) + p.SetState(6075) var _x = p.Expression() localctx.(*IfThenElseExpressionContext).thenExpr = _x } { - p.SetState(6022) + p.SetState(6076) p.Match(MDLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -90145,7 +90614,7 @@ func (p *MDLParser) IfThenElseExpression() (localctx IIfThenElseExpressionContex } } { - p.SetState(6023) + p.SetState(6077) var _x = p.Expression() @@ -90289,7 +90758,7 @@ func (p *MDLParser) CastExpression() (localctx ICastExpressionContext) { p.EnterRule(localctx, 696, MDLParserRULE_castExpression) p.EnterOuterAlt(localctx, 1) { - p.SetState(6025) + p.SetState(6079) p.Match(MDLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -90297,7 +90766,7 @@ func (p *MDLParser) CastExpression() (localctx ICastExpressionContext) { } } { - p.SetState(6026) + p.SetState(6080) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -90305,11 +90774,11 @@ func (p *MDLParser) CastExpression() (localctx ICastExpressionContext) { } } { - p.SetState(6027) + p.SetState(6081) p.Expression() } { - p.SetState(6028) + p.SetState(6082) p.Match(MDLParserAS) if p.HasError() { // Recognition error - abort rule @@ -90317,11 +90786,11 @@ func (p *MDLParser) CastExpression() (localctx ICastExpressionContext) { } } { - p.SetState(6029) + p.SetState(6083) p.CastDataType() } { - p.SetState(6030) + p.SetState(6084) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -90444,10 +90913,10 @@ func (p *MDLParser) CastDataType() (localctx ICastDataTypeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6032) + p.SetState(6086) _la = p.GetTokenStream().LA(1) - if !((int64((_la-262)) & ^0x3f) == 0 && ((int64(1)<<(_la-262))&63) != 0) { + if !((int64((_la-266)) & ^0x3f) == 0 && ((int64(1)<<(_la-266))&63) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -90602,10 +91071,10 @@ func (p *MDLParser) AggregateFunction() (localctx IAggregateFunctionContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6034) + p.SetState(6088) _la = p.GetTokenStream().LA(1) - if !((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&31) != 0) { + if !((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&31) != 0) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -90613,27 +91082,27 @@ func (p *MDLParser) AggregateFunction() (localctx IAggregateFunctionContext) { } } { - p.SetState(6035) + p.SetState(6089) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6041) + p.SetState(6095) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } switch p.GetTokenStream().LA(1) { - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: - p.SetState(6037) + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserCASE, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserHEAD, MDLParserTAIL, MDLParserFIND, MDLParserSORT, MDLParserUNION, MDLParserINTERSECT, MDLParserSUBTRACT, MDLParserCONTAINS, MDLParserAVERAGE, MDLParserMINIMUM, MDLParserMAXIMUM, MDLParserLIST, MDLParserEQUALS_OP, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserEMPTY, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserFILTER, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserLENGTH, MDLParserTRIM, MDLParserCAST, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserEXISTS, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserPLUS, MDLParserMINUS, MDLParserMOD, MDLParserDIV, MDLParserLPAREN, MDLParserMENDIX_TOKEN, MDLParserSTRING_LITERAL, MDLParserNUMBER_LITERAL, MDLParserVARIABLE, MDLParserIDENTIFIER, MDLParserHYPHENATED_ID, MDLParserQUOTED_IDENTIFIER: + p.SetState(6091) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 696, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 706, p.GetParserRuleContext()) == 1 { { - p.SetState(6036) + p.SetState(6090) p.Match(MDLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -90645,13 +91114,13 @@ func (p *MDLParser) AggregateFunction() (localctx IAggregateFunctionContext) { goto errorExit } { - p.SetState(6039) + p.SetState(6093) p.Expression() } case MDLParserSTAR: { - p.SetState(6040) + p.SetState(6094) p.Match(MDLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -90664,7 +91133,7 @@ func (p *MDLParser) AggregateFunction() (localctx IAggregateFunctionContext) { goto errorExit } { - p.SetState(6043) + p.SetState(6097) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -90801,33 +91270,33 @@ func (p *MDLParser) FunctionCall() (localctx IFunctionCallContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6045) + p.SetState(6099) p.FunctionName() } { - p.SetState(6046) + p.SetState(6100) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6048) + p.SetState(6102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-2305993334156951905) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&2277142317606631421) != 0) || ((int64((_la-207)) & ^0x3f) == 0 && ((int64(1)<<(_la-207))&-36007081597674497) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&-4323455672474730625) != 0) || ((int64((_la-340)) & ^0x3f) == 0 && ((int64(1)<<(_la-340))&-5765205657493962753) != 0) || ((int64((_la-404)) & ^0x3f) == 0 && ((int64(1)<<(_la-404))&-15441749737549) != 0) || ((int64((_la-468)) & ^0x3f) == 0 && ((int64(1)<<(_la-468))&70650256836456575) != 0) { + if ((int64((_la-8)) & ^0x3f) == 0 && ((int64(1)<<(_la-8))&-1292714375848673789) != 0) || ((int64((_la-72)) & ^0x3f) == 0 && ((int64(1)<<(_la-72))&-2305993334156951905) != 0) || ((int64((_la-136)) & ^0x3f) == 0 && ((int64(1)<<(_la-136))&9108540002374252541) != 0) || ((int64((_la-209)) & ^0x3f) == 0 && ((int64(1)<<(_la-209))&-144028326389294081) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-3865478971517) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-76561210845167647) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1976543966406185) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&9043232875066441727) != 0) { { - p.SetState(6047) + p.SetState(6101) p.ArgumentList() } } { - p.SetState(6050) + p.SetState(6104) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -90995,10 +91464,10 @@ func (p *MDLParser) FunctionName() (localctx IFunctionNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6052) + p.SetState(6106) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-123)) & ^0x3f) == 0 && ((int64(1)<<(_la-123))&4611686018427519009) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&3145855) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserHYPHENATED_ID) { + if !(((int64((_la-123)) & ^0x3f) == 0 && ((int64(1)<<(_la-123))&131105) != 0) || _la == MDLParserFILTER || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&3145855) != 0) || _la == MDLParserIDENTIFIER || _la == MDLParserHYPHENATED_ID) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -91144,10 +91613,10 @@ func (p *MDLParser) ArgumentList() (localctx IArgumentListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6054) + p.SetState(6108) p.Expression() } - p.SetState(6059) + p.SetState(6113) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91156,7 +91625,7 @@ func (p *MDLParser) ArgumentList() (localctx IArgumentListContext) { for _la == MDLParserCOMMA { { - p.SetState(6055) + p.SetState(6109) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -91164,11 +91633,11 @@ func (p *MDLParser) ArgumentList() (localctx IArgumentListContext) { } } { - p.SetState(6056) + p.SetState(6110) p.Expression() } - p.SetState(6061) + p.SetState(6115) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91361,31 +91830,31 @@ func (p *MDLParser) AtomicExpression() (localctx IAtomicExpressionContext) { p.EnterRule(localctx, 708, MDLParserRULE_atomicExpression) var _la int - p.SetState(6074) + p.SetState(6128) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 701, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 711, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6062) + p.SetState(6116) p.Literal() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6063) + p.SetState(6117) p.Match(MDLParserVARIABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6068) + p.SetState(6122) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91394,7 +91863,7 @@ func (p *MDLParser) AtomicExpression() (localctx IAtomicExpressionContext) { for _la == MDLParserDOT { { - p.SetState(6064) + p.SetState(6118) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -91402,11 +91871,11 @@ func (p *MDLParser) AtomicExpression() (localctx IAtomicExpressionContext) { } } { - p.SetState(6065) + p.SetState(6119) p.AttributeName() } - p.SetState(6070) + p.SetState(6124) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91417,14 +91886,14 @@ func (p *MDLParser) AtomicExpression() (localctx IAtomicExpressionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6071) + p.SetState(6125) p.QualifiedName() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6072) + p.SetState(6126) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -91435,7 +91904,7 @@ func (p *MDLParser) AtomicExpression() (localctx IAtomicExpressionContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6073) + p.SetState(6127) p.Match(MDLParserMENDIX_TOKEN) if p.HasError() { // Recognition error - abort rule @@ -91585,10 +92054,10 @@ func (p *MDLParser) ExpressionList() (localctx IExpressionListContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6076) + p.SetState(6130) p.Expression() } - p.SetState(6081) + p.SetState(6135) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91597,7 +92066,7 @@ func (p *MDLParser) ExpressionList() (localctx IExpressionListContext) { for _la == MDLParserCOMMA { { - p.SetState(6077) + p.SetState(6131) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -91605,11 +92074,11 @@ func (p *MDLParser) ExpressionList() (localctx IExpressionListContext) { } } { - p.SetState(6078) + p.SetState(6132) p.Expression() } - p.SetState(6083) + p.SetState(6137) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91755,22 +92224,22 @@ func (p *MDLParser) QualifiedName() (localctx IQualifiedNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6084) + p.SetState(6138) p.IdentifierOrKeyword() } - p.SetState(6089) + p.SetState(6143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 703, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 713, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(6085) + p.SetState(6139) p.Match(MDLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -91778,17 +92247,17 @@ func (p *MDLParser) QualifiedName() (localctx IQualifiedNameContext) { } } { - p.SetState(6086) + p.SetState(6140) p.IdentifierOrKeyword() } } - p.SetState(6091) + p.SetState(6145) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 703, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 713, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -91902,7 +92371,7 @@ func (s *IdentifierOrKeywordContext) ExitRule(listener antlr.ParseTreeListener) func (p *MDLParser) IdentifierOrKeyword() (localctx IIdentifierOrKeywordContext) { localctx = NewIdentifierOrKeywordContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 714, MDLParserRULE_identifierOrKeyword) - p.SetState(6095) + p.SetState(6149) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91912,7 +92381,7 @@ func (p *MDLParser) IdentifierOrKeyword() (localctx IIdentifierOrKeywordContext) case MDLParserIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(6092) + p.SetState(6146) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -91923,7 +92392,7 @@ func (p *MDLParser) IdentifierOrKeyword() (localctx IIdentifierOrKeywordContext) case MDLParserQUOTED_IDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(6093) + p.SetState(6147) p.Match(MDLParserQUOTED_IDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -91931,10 +92400,10 @@ func (p *MDLParser) IdentifierOrKeyword() (localctx IIdentifierOrKeywordContext) } } - case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: + case MDLParserGROUP_BY, MDLParserORDER_BY, MDLParserCREATE, MDLParserALTER, MDLParserDROP, MDLParserRENAME, MDLParserMOVE, MDLParserENTITY, MDLParserPERSISTENT, MDLParserVIEW, MDLParserEXTERNAL, MDLParserASSOCIATION, MDLParserENUMERATION, MDLParserMODULE, MDLParserMICROFLOW, MDLParserWORKFLOW, MDLParserPAGE, MDLParserSNIPPET, MDLParserLAYOUT, MDLParserATTRIBUTE, MDLParserCOLUMN, MDLParserCOLUMNS, MDLParserINDEX, MDLParserOWNER, MDLParserSTORE, MDLParserREFERENCE, MDLParserSET, MDLParserPOSITION, MDLParserSTORAGE, MDLParserTABLE, MDLParserCASCADE, MDLParserCONNECT, MDLParserDISCONNECT, MDLParserLOCAL, MDLParserPROJECT, MDLParserSHOW, MDLParserDESCRIBE, MDLParserUSE, MDLParserDEBUG, MDLParserSELECT, MDLParserFROM, MDLParserWHERE, MDLParserHAVING, MDLParserOFFSET, MDLParserLIMIT, MDLParserAS, MDLParserTHEN, MDLParserELSE, MDLParserEND, MDLParserDISTINCT, MDLParserALL, MDLParserJOIN, MDLParserLEFT, MDLParserRIGHT, MDLParserINNER, MDLParserOUTER, MDLParserON, MDLParserBEGIN, MDLParserDECLARE, MDLParserCHANGE, MDLParserRETRIEVE, MDLParserDELETE, MDLParserCOMMIT, MDLParserLOOP, MDLParserWHILE, MDLParserIF, MDLParserELSIF, MDLParserRETURN, MDLParserLOG, MDLParserCALL, MDLParserJAVA, MDLParserACTION, MDLParserACTIONS, MDLParserCLOSE, MDLParserEVENTS, MDLParserSORT, MDLParserLIST, MDLParserINFO, MDLParserWARNING, MDLParserCRITICAL, MDLParserWITH, MDLParserOBJECT, MDLParserOBJECTS, MDLParserPAGES, MDLParserLAYOUTS, MDLParserSNIPPETS, MDLParserNOTEBOOKS, MDLParserSNIPPETCALL, MDLParserLAYOUTGRID, MDLParserDATAGRID, MDLParserDATAVIEW, MDLParserLISTVIEW, MDLParserGALLERY, MDLParserITEM, MDLParserCONTROLBAR, MDLParserSEARCH, MDLParserSEARCHBAR, MDLParserNAVIGATIONLIST, MDLParserACTIONBUTTON, MDLParserLINKBUTTON, MDLParserBUTTON, MDLParserTITLE, MDLParserDYNAMICTEXT, MDLParserDYNAMIC, MDLParserLABEL, MDLParserTEXTBOX, MDLParserTEXTAREA, MDLParserDATEPICKER, MDLParserRADIOBUTTONS, MDLParserCOMBOBOX, MDLParserCHECKBOX, MDLParserIMAGEINPUT, MDLParserWIDGETS, MDLParserCAPTION, MDLParserDATASOURCE, MDLParserSOURCE_KW, MDLParserSELECTION, MDLParserFOOTER, MDLParserHEADER, MDLParserCONTENT, MDLParserCLASS, MDLParserSTYLE, MDLParserBUTTONSTYLE, MDLParserDESIGN, MDLParserPROPERTIES, MDLParserDESIGNPROPERTIES, MDLParserSTYLING, MDLParserCLEAR, MDLParserWIDTH, MDLParserHEIGHT, MDLParserURL, MDLParserFOLDER, MDLParserCONTEXT, MDLParserEDITABLE, MDLParserIMAGE, MDLParserCOLLECTION, MDLParserSTATICIMAGE, MDLParserDYNAMICIMAGE, MDLParserCUSTOMCONTAINER, MDLParserTABCONTAINER, MDLParserTABPAGE, MDLParserGROUPBOX, MDLParserVISIBLE, MDLParserCANCEL, MDLParserPRIMARY, MDLParserSUCCESS, MDLParserDANGER, MDLParserTEMPLATE, MDLParserSTRING_TYPE, MDLParserINTEGER_TYPE, MDLParserLONG_TYPE, MDLParserDECIMAL_TYPE, MDLParserBOOLEAN_TYPE, MDLParserDATETIME_TYPE, MDLParserDATE_TYPE, MDLParserAUTONUMBER_TYPE, MDLParserBINARY_TYPE, MDLParserCOUNT, MDLParserSUM, MDLParserAVG, MDLParserMIN, MDLParserMAX, MDLParserAND, MDLParserOR, MDLParserNOT, MDLParserNULL, MDLParserIN, MDLParserBETWEEN, MDLParserLIKE, MDLParserUNIQUE, MDLParserDEFAULT, MDLParserTRUE, MDLParserFALSE, MDLParserVALIDATION, MDLParserFEEDBACK, MDLParserRULE, MDLParserREQUIRED, MDLParserERROR, MDLParserRANGE, MDLParserREGEX, MDLParserPATTERN, MDLParserEXPRESSION, MDLParserREST, MDLParserSERVICE, MDLParserSERVICES, MDLParserODATA, MDLParserBASE, MDLParserAUTH, MDLParserAUTHENTICATION, MDLParserBASIC, MDLParserNOTHING, MDLParserOAUTH, MDLParserOPERATION, MDLParserMETHOD, MDLParserPATH, MDLParserTIMEOUT, MDLParserBODY, MDLParserRESPONSE, MDLParserREQUEST, MDLParserSEND, MDLParserJSON, MDLParserXML, MDLParserSTATUS, MDLParserFILE_KW, MDLParserVERSION, MDLParserAPI, MDLParserCLIENT, MDLParserCLIENTS, MDLParserPUBLISH, MDLParserPUBLISHED, MDLParserEXPOSE, MDLParserCONTRACT, MDLParserNAMESPACE_KW, MDLParserSESSION, MDLParserGUEST, MDLParserPAGING, MDLParserNOT_SUPPORTED, MDLParserUSERNAME, MDLParserPASSWORD, MDLParserCONNECTION, MDLParserDATABASE, MDLParserQUERY, MDLParserMAP, MDLParserMAPPING, MDLParserIMPORT, MDLParserINTO, MDLParserBATCH, MDLParserLINK, MDLParserEXPORT, MDLParserGENERATE, MDLParserCONNECTOR, MDLParserEXEC, MDLParserTABLES, MDLParserVIEWS, MDLParserPARAMETER, MDLParserPARAMETERS, MDLParserHEADERS, MDLParserNAVIGATION, MDLParserMENU_KW, MDLParserHOMES, MDLParserHOME, MDLParserLOGIN, MDLParserFOUND, MDLParserMODULES, MDLParserENTITIES, MDLParserASSOCIATIONS, MDLParserMICROFLOWS, MDLParserNANOFLOWS, MDLParserWORKFLOWS, MDLParserENUMERATIONS, MDLParserCONSTANTS, MDLParserDEFINE, MDLParserFRAGMENT, MDLParserFRAGMENTS, MDLParserINSERT, MDLParserBEFORE, MDLParserAFTER, MDLParserUPDATE, MDLParserREFRESH, MDLParserCHECK, MDLParserBUILD, MDLParserEXECUTE, MDLParserSCRIPT, MDLParserLINT, MDLParserTEXT, MDLParserMESSAGE, MDLParserMESSAGES, MDLParserCHANNELS, MDLParserCATALOG, MDLParserFORCE, MDLParserCALLERS, MDLParserCALLEES, MDLParserREFERENCES, MDLParserTRANSITIVE, MDLParserIMPACT, MDLParserDEPTH, MDLParserSTRUCTURE, MDLParserSTRUCTURES, MDLParserTYPE, MDLParserVALUE, MDLParserSINGLE, MDLParserMULTIPLE, MDLParserNONE, MDLParserBOTH, MDLParserTO, MDLParserOF, MDLParserOVER, MDLParserFOR, MDLParserREPLACE, MDLParserMEMBERS, MDLParserFORMAT, MDLParserWITHOUT, MDLParserWIDGETTYPE, MDLParserBUSINESS, MDLParserEVENT, MDLParserSUBSCRIBE, MDLParserSETTINGS, MDLParserCONFIGURATION, MDLParserSECURITY, MDLParserROLE, MDLParserROLES, MDLParserGRANT, MDLParserREVOKE, MDLParserPRODUCTION, MDLParserPROTOTYPE, MDLParserMANAGE, MDLParserDEMO, MDLParserMATRIX, MDLParserAPPLY, MDLParserACCESS, MDLParserLEVEL, MDLParserUSER, MDLParserTASK, MDLParserDECISION, MDLParserSPLIT, MDLParserOUTCOMES, MDLParserTARGETING, MDLParserNOTIFICATION, MDLParserTIMER, MDLParserJUMP, MDLParserDUE, MDLParserOVERVIEW, MDLParserDATE, MDLParserPARALLEL, MDLParserWAIT, MDLParserBY, MDLParserREAD, MDLParserWRITE, MDLParserDESCRIPTION, MDLParserOFF, MDLParserUSERS, MDLParserMOD, MDLParserDIV: p.EnterOuterAlt(localctx, 3) { - p.SetState(6094) + p.SetState(6148) p.Keyword() } @@ -92061,7 +92530,7 @@ func (s *LiteralContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) Literal() (localctx ILiteralContext) { localctx = NewLiteralContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 716, MDLParserRULE_literal) - p.SetState(6102) + p.SetState(6156) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92071,7 +92540,7 @@ func (p *MDLParser) Literal() (localctx ILiteralContext) { case MDLParserSTRING_LITERAL: p.EnterOuterAlt(localctx, 1) { - p.SetState(6097) + p.SetState(6151) p.Match(MDLParserSTRING_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -92082,7 +92551,7 @@ func (p *MDLParser) Literal() (localctx ILiteralContext) { case MDLParserNUMBER_LITERAL: p.EnterOuterAlt(localctx, 2) { - p.SetState(6098) + p.SetState(6152) p.Match(MDLParserNUMBER_LITERAL) if p.HasError() { // Recognition error - abort rule @@ -92093,14 +92562,14 @@ func (p *MDLParser) Literal() (localctx ILiteralContext) { case MDLParserTRUE, MDLParserFALSE: p.EnterOuterAlt(localctx, 3) { - p.SetState(6099) + p.SetState(6153) p.BooleanLiteral() } case MDLParserNULL: p.EnterOuterAlt(localctx, 4) { - p.SetState(6100) + p.SetState(6154) p.Match(MDLParserNULL) if p.HasError() { // Recognition error - abort rule @@ -92111,7 +92580,7 @@ func (p *MDLParser) Literal() (localctx ILiteralContext) { case MDLParserEMPTY: p.EnterOuterAlt(localctx, 5) { - p.SetState(6101) + p.SetState(6155) p.Match(MDLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -92272,26 +92741,26 @@ func (p *MDLParser) ArrayLiteral() (localctx IArrayLiteralContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6104) + p.SetState(6158) p.Match(MDLParserLBRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6113) + p.SetState(6167) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } _la = p.GetTokenStream().LA(1) - if _la == MDLParserEMPTY || ((int64((_la-288)) & ^0x3f) == 0 && ((int64(1)<<(_la-288))&769) != 0) || _la == MDLParserSTRING_LITERAL || _la == MDLParserNUMBER_LITERAL { + if _la == MDLParserEMPTY || ((int64((_la-292)) & ^0x3f) == 0 && ((int64(1)<<(_la-292))&769) != 0) || _la == MDLParserSTRING_LITERAL || _la == MDLParserNUMBER_LITERAL { { - p.SetState(6105) + p.SetState(6159) p.Literal() } - p.SetState(6110) + p.SetState(6164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92300,7 +92769,7 @@ func (p *MDLParser) ArrayLiteral() (localctx IArrayLiteralContext) { for _la == MDLParserCOMMA { { - p.SetState(6106) + p.SetState(6160) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -92308,11 +92777,11 @@ func (p *MDLParser) ArrayLiteral() (localctx IArrayLiteralContext) { } } { - p.SetState(6107) + p.SetState(6161) p.Literal() } - p.SetState(6112) + p.SetState(6166) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92322,7 +92791,7 @@ func (p *MDLParser) ArrayLiteral() (localctx IArrayLiteralContext) { } { - p.SetState(6115) + p.SetState(6169) p.Match(MDLParserRBRACKET) if p.HasError() { // Recognition error - abort rule @@ -92425,7 +92894,7 @@ func (p *MDLParser) BooleanLiteral() (localctx IBooleanLiteralContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6117) + p.SetState(6171) _la = p.GetTokenStream().LA(1) if !(_la == MDLParserTRUE || _la == MDLParserFALSE) { @@ -92524,7 +92993,7 @@ func (p *MDLParser) DocComment() (localctx IDocCommentContext) { p.EnterRule(localctx, 722, MDLParserRULE_docComment) p.EnterOuterAlt(localctx, 1) { - p.SetState(6119) + p.SetState(6173) p.Match(MDLParserDOC_COMMENT) if p.HasError() { // Recognition error - abort rule @@ -92681,7 +93150,7 @@ func (p *MDLParser) Annotation() (localctx IAnnotationContext) { p.EnterRule(localctx, 724, MDLParserRULE_annotation) p.EnterOuterAlt(localctx, 1) { - p.SetState(6121) + p.SetState(6175) p.Match(MDLParserAT) if p.HasError() { // Recognition error - abort rule @@ -92689,15 +93158,15 @@ func (p *MDLParser) Annotation() (localctx IAnnotationContext) { } } { - p.SetState(6122) + p.SetState(6176) p.AnnotationName() } - p.SetState(6128) + p.SetState(6182) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 708, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 718, p.GetParserRuleContext()) == 1 { { - p.SetState(6123) + p.SetState(6177) p.Match(MDLParserLPAREN) if p.HasError() { // Recognition error - abort rule @@ -92705,11 +93174,11 @@ func (p *MDLParser) Annotation() (localctx IAnnotationContext) { } } { - p.SetState(6124) + p.SetState(6178) p.AnnotationParams() } { - p.SetState(6125) + p.SetState(6179) p.Match(MDLParserRPAREN) if p.HasError() { // Recognition error - abort rule @@ -92719,9 +93188,9 @@ func (p *MDLParser) Annotation() (localctx IAnnotationContext) { } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 708, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 718, p.GetParserRuleContext()) == 2 { { - p.SetState(6127) + p.SetState(6181) p.AnnotationValue() } @@ -92854,10 +93323,10 @@ func (p *MDLParser) AnnotationName() (localctx IAnnotationNameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6130) + p.SetState(6184) _la = p.GetTokenStream().LA(1) - if !(_la == MDLParserPOSITION || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&2147483651) != 0) || _la == MDLParserREQUIRED || _la == MDLParserCOMMENT || _la == MDLParserANNOTATION || _la == MDLParserIDENTIFIER) { + if !(_la == MDLParserPOSITION || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2147483651) != 0) || _la == MDLParserREQUIRED || _la == MDLParserCOMMENT || _la == MDLParserANNOTATION || _la == MDLParserIDENTIFIER) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -93003,10 +93472,10 @@ func (p *MDLParser) AnnotationParams() (localctx IAnnotationParamsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6132) + p.SetState(6186) p.AnnotationParam() } - p.SetState(6137) + p.SetState(6191) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -93015,7 +93484,7 @@ func (p *MDLParser) AnnotationParams() (localctx IAnnotationParamsContext) { for _la == MDLParserCOMMA { { - p.SetState(6133) + p.SetState(6187) p.Match(MDLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -93023,11 +93492,11 @@ func (p *MDLParser) AnnotationParams() (localctx IAnnotationParamsContext) { } } { - p.SetState(6134) + p.SetState(6188) p.AnnotationParam() } - p.SetState(6139) + p.SetState(6193) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -93143,17 +93612,17 @@ func (s *AnnotationParamContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) AnnotationParam() (localctx IAnnotationParamContext) { localctx = NewAnnotationParamContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 730, MDLParserRULE_annotationParam) - p.SetState(6144) + p.SetState(6198) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 710, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 720, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6140) + p.SetState(6194) p.Match(MDLParserIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -93161,7 +93630,7 @@ func (p *MDLParser) AnnotationParam() (localctx IAnnotationParamContext) { } } { - p.SetState(6141) + p.SetState(6195) p.Match(MDLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -93169,14 +93638,14 @@ func (p *MDLParser) AnnotationParam() (localctx IAnnotationParamContext) { } } { - p.SetState(6142) + p.SetState(6196) p.AnnotationValue() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6143) + p.SetState(6197) p.AnnotationValue() } @@ -93316,31 +93785,31 @@ func (s *AnnotationValueContext) ExitRule(listener antlr.ParseTreeListener) { func (p *MDLParser) AnnotationValue() (localctx IAnnotationValueContext) { localctx = NewAnnotationValueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 732, MDLParserRULE_annotationValue) - p.SetState(6149) + p.SetState(6203) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 711, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 721, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6146) + p.SetState(6200) p.Literal() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6147) + p.SetState(6201) p.Expression() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6148) + p.SetState(6202) p.QualifiedName() } @@ -93743,10 +94212,10 @@ func (p *MDLParser) CommonNameKeyword() (localctx ICommonNameKeywordContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6151) + p.SetState(6205) _la = p.GetTokenStream().LA(1) - if !(((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-188)) & ^0x3f) == 0 && ((int64(1)<<(_la-188))&576478365295182137) != 0) || ((int64((_la-276)) & ^0x3f) == 0 && ((int64(1)<<(_la-276))&180143985430364191) != 0) || ((int64((_la-350)) & ^0x3f) == 0 && ((int64(1)<<(_la-350))&11294183459389443) != 0) || ((int64((_la-419)) & ^0x3f) == 0 && ((int64(1)<<(_la-419))&7749194760315) != 0) || _la == MDLParserDESCRIPTION || _la == MDLParserOFF) { + if !(((int64((_la-41)) & ^0x3f) == 0 && ((int64(1)<<(_la-41))&268446987) != 0) || ((int64((_la-116)) & ^0x3f) == 0 && ((int64(1)<<(_la-116))&4785074609848577) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&2305913398763585849) != 0) || ((int64((_la-280)) & ^0x3f) == 0 && ((int64(1)<<(_la-280))&180143985430364191) != 0) || ((int64((_la-354)) & ^0x3f) == 0 && ((int64(1)<<(_la-354))&11294183459389443) != 0) || ((int64((_la-423)) & ^0x3f) == 0 && ((int64(1)<<(_la-423))&7749194760315) != 0) || _la == MDLParserDESCRIPTION || _la == MDLParserOFF) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) @@ -93952,6 +94421,8 @@ type IKeywordContext interface { STATICIMAGE() antlr.TerminalNode DYNAMICIMAGE() antlr.TerminalNode CUSTOMCONTAINER() antlr.TerminalNode + TABCONTAINER() antlr.TerminalNode + TABPAGE() antlr.TerminalNode GROUPBOX() antlr.TerminalNode HEADER() antlr.TerminalNode FOOTER() antlr.TerminalNode @@ -94851,6 +95322,14 @@ func (s *KeywordContext) CUSTOMCONTAINER() antlr.TerminalNode { return s.GetToken(MDLParserCUSTOMCONTAINER, 0) } +func (s *KeywordContext) TABCONTAINER() antlr.TerminalNode { + return s.GetToken(MDLParserTABCONTAINER, 0) +} + +func (s *KeywordContext) TABPAGE() antlr.TerminalNode { + return s.GetToken(MDLParserTABPAGE, 0) +} + func (s *KeywordContext) GROUPBOX() antlr.TerminalNode { return s.GetToken(MDLParserGROUPBOX, 0) } @@ -95494,10 +95973,10 @@ func (p *MDLParser) Keyword() (localctx IKeywordContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6153) + p.SetState(6207) _la = p.GetTokenStream().LA(1) - if !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1106513109511439104) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&629276753604317175) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-468218264967741735) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&44473182800836609) != 0) || ((int64((_la-262)) & ^0x3f) == 0 && ((int64(1)<<(_la-262))&-494783461604865) != 0) || ((int64((_la-326)) & ^0x3f) == 0 && ((int64(1)<<(_la-326))&8646909085528092927) != 0) || ((int64((_la-390)) & ^0x3f) == 0 && ((int64(1)<<(_la-390))&-252997627699991553) != 0) || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&52784009314303) != 0)) { + if !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&1106513109511439104) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&629276753604317175) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-1873341348707336487) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&711570936314191879) != 0) || ((int64((_la-266)) & ^0x3f) == 0 && ((int64(1)<<(_la-266))&-494783461604865) != 0) || ((int64((_la-330)) & ^0x3f) == 0 && ((int64(1)<<(_la-330))&8646909085528092927) != 0) || ((int64((_la-394)) & ^0x3f) == 0 && ((int64(1)<<(_la-394))&-252997627699991553) != 0) || ((int64((_la-458)) & ^0x3f) == 0 && ((int64(1)<<(_la-458))&52784009314303) != 0)) { p.GetErrorHandler().RecoverInline(p) } else { p.GetErrorHandler().ReportMatch(p) diff --git a/mdl/grammar/parser/mdlparser_base_listener.go b/mdl/grammar/parser/mdlparser_base_listener.go index 096b37d7..065e47d5 100644 --- a/mdl/grammar/parser/mdlparser_base_listener.go +++ b/mdl/grammar/parser/mdlparser_base_listener.go @@ -1,4 +1,4 @@ -// Code generated from MDLParser.g4 by ANTLR 4.13.2. DO NOT EDIT. +// Code generated from MDLParser.g4 by ANTLR 4.13.1. DO NOT EDIT. package parser // MDLParser import "github.com/antlr4-go/antlr/v4" @@ -2068,12 +2068,6 @@ func (s *BaseMDLParserListener) EnterSqlConnect(ctx *SqlConnectContext) {} // ExitSqlConnect is called when production sqlConnect is exited. func (s *BaseMDLParserListener) ExitSqlConnect(ctx *SqlConnectContext) {} -// EnterSqlConnectAlias is called when production sqlConnectAlias is entered. -func (s *BaseMDLParserListener) EnterSqlConnectAlias(ctx *SqlConnectAliasContext) {} - -// ExitSqlConnectAlias is called when production sqlConnectAlias is exited. -func (s *BaseMDLParserListener) ExitSqlConnectAlias(ctx *SqlConnectAliasContext) {} - // EnterSqlDisconnect is called when production sqlDisconnect is entered. func (s *BaseMDLParserListener) EnterSqlDisconnect(ctx *SqlDisconnectContext) {} diff --git a/mdl/grammar/parser/mdlparser_listener.go b/mdl/grammar/parser/mdlparser_listener.go index 5c233596..bccb75b7 100644 --- a/mdl/grammar/parser/mdlparser_listener.go +++ b/mdl/grammar/parser/mdlparser_listener.go @@ -1,4 +1,4 @@ -// Code generated from MDLParser.g4 by ANTLR 4.13.2. DO NOT EDIT. +// Code generated from MDLParser.g4 by ANTLR 4.13.1. DO NOT EDIT. package parser // MDLParser import "github.com/antlr4-go/antlr/v4" @@ -997,9 +997,6 @@ type MDLParserListener interface { // EnterSqlConnect is called when entering the sqlConnect production. EnterSqlConnect(c *SqlConnectContext) - // EnterSqlConnectAlias is called when entering the sqlConnectAlias production. - EnterSqlConnectAlias(c *SqlConnectAliasContext) - // EnterSqlDisconnect is called when entering the sqlDisconnect production. EnterSqlDisconnect(c *SqlDisconnectContext) @@ -2128,9 +2125,6 @@ type MDLParserListener interface { // ExitSqlConnect is called when exiting the sqlConnect production. ExitSqlConnect(c *SqlConnectContext) - // ExitSqlConnectAlias is called when exiting the sqlConnectAlias production. - ExitSqlConnectAlias(c *SqlConnectAliasContext) - // ExitSqlDisconnect is called when exiting the sqlDisconnect production. ExitSqlDisconnect(c *SqlDisconnectContext) diff --git a/mdl/visitor/visitor_alter_page.go b/mdl/visitor/visitor_alter_page.go index 94a81d27..61e9f1af 100644 --- a/mdl/visitor/visitor_alter_page.go +++ b/mdl/visitor/visitor_alter_page.go @@ -106,6 +106,11 @@ func (b *Builder) buildAlterPageSetLayout(ctx *parser.AlterPageSetContext) *ast. // buildAlterPageAssignment extracts property name and value from an assignment context. func (b *Builder) buildAlterPageAssignment(ctx *parser.AlterPageAssignmentContext) (string, interface{}) { + // DataSource = dataSourceExprV3 + if dsCtx := ctx.DataSourceExprV3(); dsCtx != nil { + return "DataSource", buildDataSourceV3(dsCtx) + } + var name string if id := ctx.IdentifierOrKeyword(); id != nil { diff --git a/mdl/visitor/visitor_page_v3.go b/mdl/visitor/visitor_page_v3.go index fd82e9fc..d288e890 100644 --- a/mdl/visitor/visitor_page_v3.go +++ b/mdl/visitor/visitor_page_v3.go @@ -312,7 +312,13 @@ func buildWidgetV3(ctx parser.IWidgetV3Context, b *Builder) *ast.WidgetV3 { } // Get widget type - if typeCtx := wCtx.WidgetTypeV3(); typeCtx != nil { + if wCtx.PLUGGABLEWIDGET() != nil { + widget.Type = "PLUGGABLEWIDGET" + widget.Properties["WidgetType"] = unquoteString(wCtx.STRING_LITERAL().GetText()) + } else if wCtx.CUSTOMWIDGET() != nil { + widget.Type = "CUSTOMWIDGET" + widget.Properties["WidgetType"] = unquoteString(wCtx.STRING_LITERAL().GetText()) + } else if typeCtx := wCtx.WidgetTypeV3(); typeCtx != nil { widget.Type = strings.ToUpper(typeCtx.GetText()) } @@ -584,6 +590,15 @@ func parseWidgetPropertyV3(ctx parser.IWidgetPropertyV3Context, widget *ast.Widg } return } + + // Generic property with keyword name: keyword: value (for pluggable widget property keys + // that happen to be MDL keywords, e.g., type, datasource, content) + if kw := propCtx.Keyword(); kw != nil { + if valCtx := propCtx.PropertyValueV3(); valCtx != nil { + widget.Properties[kw.GetText()] = buildPropertyValueV3(valCtx) + } + return + } } // buildDataSourceV3 builds a DataSource from the parse context. diff --git a/mdl/visitor/visitor_sql.go b/mdl/visitor/visitor_sql.go index 4efc777f..53c31658 100644 --- a/mdl/visitor/visitor_sql.go +++ b/mdl/visitor/visitor_sql.go @@ -31,15 +31,6 @@ func (b *Builder) ExitSqlConnect(ctx *parser.SqlConnectContext) { }) } -// ExitSqlConnectAlias handles SQL CONNECT (resolve from connections.yaml) -func (b *Builder) ExitSqlConnectAlias(ctx *parser.SqlConnectAliasContext) { - alias := ctx.IDENTIFIER().GetText() - b.statements = append(b.statements, &ast.SQLConnectStmt{ - Alias: alias, - // Driver and DSN empty — executor resolves from config - }) -} - // ExitSqlDisconnect handles SQL DISCONNECT func (b *Builder) ExitSqlDisconnect(ctx *parser.SqlDisconnectContext) { alias := ctx.IDENTIFIER().GetText() @@ -55,12 +46,12 @@ func (b *Builder) ExitSqlConnections(ctx *parser.SqlConnectionsContext) { // ExitSqlShowTables handles SQL SHOW TABLES|VIEWS|FUNCTIONS func (b *Builder) ExitSqlShowTables(ctx *parser.SqlShowTablesContext) { - alias := ctx.IDENTIFIER().GetText() - iok := ctx.IdentifierOrKeyword() - if iok == nil { + ids := ctx.AllIDENTIFIER() + if len(ids) < 2 { return } - target := strings.ToUpper(iok.GetText()) + alias := ids[0].GetText() + target := strings.ToUpper(ids[1].GetText()) switch target { case "VIEWS": @@ -75,12 +66,12 @@ func (b *Builder) ExitSqlShowTables(ctx *parser.SqlShowTablesContext) { // ExitSqlDescribeTable handles SQL DESCRIBE func (b *Builder) ExitSqlDescribeTable(ctx *parser.SqlDescribeTableContext) { - alias := ctx.IDENTIFIER().GetText() - qn := ctx.QualifiedName() - if qn == nil { + ids := ctx.AllIDENTIFIER() + if len(ids) < 2 { return } - table := buildQualifiedName(qn).String() + alias := ids[0].GetText() + table := ids[1].GetText() b.statements = append(b.statements, &ast.SQLDescribeTableStmt{ Alias: alias, Table: table, diff --git a/sdk/microflows/microflows.go b/sdk/microflows/microflows.go index ff0f804a..f0440f1f 100644 --- a/sdk/microflows/microflows.go +++ b/sdk/microflows/microflows.go @@ -162,6 +162,8 @@ type SequenceFlow struct { DestinationConnectionIndex int `json:"destinationConnectionIndex"` CaseValue CaseValue `json:"caseValue,omitempty"` IsErrorHandler bool `json:"isErrorHandler,omitempty"` + OriginControlVector string `json:"originControlVector,omitempty"` + DestinationControlVector string `json:"destinationControlVector,omitempty"` } // CaseValue represents a case value for a decision flow. diff --git a/sdk/mpr/parser_microflow.go b/sdk/mpr/parser_microflow.go index f29ce1f1..ea82dbb2 100644 --- a/sdk/mpr/parser_microflow.go +++ b/sdk/mpr/parser_microflow.go @@ -155,6 +155,16 @@ func parseSequenceFlow(raw map[string]any) *microflows.SequenceFlow { flow.CaseValue = parseCaseValues(caseVals) } + // Parse BezierCurve control vectors from Line + if lineMap := extractBsonMap(raw["Line"]); lineMap != nil { + if v, ok := lineMap["OriginControlVector"].(string); ok { + flow.OriginControlVector = v + } + if v, ok := lineMap["DestinationControlVector"].(string); ok { + flow.DestinationControlVector = v + } + } + return flow } @@ -239,7 +249,8 @@ func parseMicroflowObjectCollection(raw map[string]any) *microflows.MicroflowObj // Prefer primitive.D path to preserve field ordering for unknown types if rawD, ok := obj.(primitive.D); ok { typeName, _ := rawD.Map()["$Type"].(string) - if typeName == "" { + if typeName == "" || typeName == "Microflows$MicroflowParameter" { + // Parameters are handled separately via mf.Parameters continue } if fn, ok := microflowObjectParsers[typeName]; ok { @@ -253,6 +264,9 @@ func parseMicroflowObjectCollection(raw map[string]any) *microflows.MicroflowObj } // Fallback for map[string]any if objMap := extractBsonMap(obj); objMap != nil { + if typeName, _ := objMap["$Type"].(string); typeName == "Microflows$MicroflowParameter" { + continue // Parameters are handled separately + } if mfObj := parseMicroflowObject(objMap); mfObj != nil { collection.Objects = append(collection.Objects, mfObj) } @@ -302,6 +316,7 @@ func parseStartEvent(raw map[string]any) *microflows.StartEvent { event := µflows.StartEvent{} event.ID = model.ID(extractBsonID(raw["$ID"])) event.Position = parsePoint(raw["RelativeMiddlePoint"]) + event.Size = parseSize(raw["Size"]) return event } @@ -309,6 +324,7 @@ func parseEndEvent(raw map[string]any) *microflows.EndEvent { event := µflows.EndEvent{} event.ID = model.ID(extractBsonID(raw["$ID"])) event.Position = parsePoint(raw["RelativeMiddlePoint"]) + event.Size = parseSize(raw["Size"]) event.ReturnValue = extractString(raw["ReturnValue"]) return event } @@ -317,6 +333,7 @@ func parseErrorEvent(raw map[string]any) *microflows.ErrorEvent { event := µflows.ErrorEvent{} event.ID = model.ID(extractBsonID(raw["$ID"])) event.Position = parsePoint(raw["RelativeMiddlePoint"]) + event.Size = parseSize(raw["Size"]) return event } @@ -324,6 +341,7 @@ func parseBreakEvent(raw map[string]any) *microflows.BreakEvent { event := µflows.BreakEvent{} event.ID = model.ID(extractBsonID(raw["$ID"])) event.Position = parsePoint(raw["RelativeMiddlePoint"]) + event.Size = parseSize(raw["Size"]) return event } @@ -331,6 +349,7 @@ func parseContinueEvent(raw map[string]any) *microflows.ContinueEvent { event := µflows.ContinueEvent{} event.ID = model.ID(extractBsonID(raw["$ID"])) event.Position = parsePoint(raw["RelativeMiddlePoint"]) + event.Size = parseSize(raw["Size"]) return event } @@ -338,6 +357,7 @@ func parseExclusiveSplit(raw map[string]any) *microflows.ExclusiveSplit { split := µflows.ExclusiveSplit{} split.ID = model.ID(extractBsonID(raw["$ID"])) split.Position = parsePoint(raw["RelativeMiddlePoint"]) + split.Size = parseSize(raw["Size"]) split.Caption = extractString(raw["Caption"]) split.Documentation = extractString(raw["Documentation"]) @@ -353,6 +373,7 @@ func parseExclusiveMerge(raw map[string]any) *microflows.ExclusiveMerge { merge := µflows.ExclusiveMerge{} merge.ID = model.ID(extractBsonID(raw["$ID"])) merge.Position = parsePoint(raw["RelativeMiddlePoint"]) + merge.Size = parseSize(raw["Size"]) return merge } @@ -360,6 +381,7 @@ func parseInheritanceSplit(raw map[string]any) *microflows.InheritanceSplit { split := µflows.InheritanceSplit{} split.ID = model.ID(extractBsonID(raw["$ID"])) split.Position = parsePoint(raw["RelativeMiddlePoint"]) + split.Size = parseSize(raw["Size"]) split.Caption = extractString(raw["Caption"]) split.Documentation = extractString(raw["Documentation"]) split.VariableName = extractString(raw["SplitVariableName"]) @@ -370,6 +392,7 @@ func parseLoopedActivity(raw map[string]any) *microflows.LoopedActivity { loop := µflows.LoopedActivity{} loop.ID = model.ID(extractBsonID(raw["$ID"])) loop.Position = parsePoint(raw["RelativeMiddlePoint"]) + loop.Size = parseSize(raw["Size"]) loop.Caption = extractString(raw["Caption"]) loop.Documentation = extractString(raw["Documentation"]) @@ -403,6 +426,7 @@ func parseMicroflowAnnotation(raw map[string]any) *microflows.Annotation { annot := µflows.Annotation{} annot.ID = model.ID(extractBsonID(raw["$ID"])) annot.Position = parsePoint(raw["RelativeMiddlePoint"]) + annot.Size = parseSize(raw["Size"]) annot.Caption = extractString(raw["Caption"]) return annot } @@ -450,6 +474,7 @@ func parseActionActivity(raw map[string]any) *microflows.ActionActivity { activity := µflows.ActionActivity{} activity.ID = model.ID(extractBsonID(raw["$ID"])) activity.Position = parsePoint(raw["RelativeMiddlePoint"]) + activity.Size = parseSize(raw["Size"]) activity.Caption = extractString(raw["Caption"]) activity.Documentation = extractString(raw["Documentation"]) activity.AutoGenerateCaption = extractBool(raw["AutoGenerateCaption"], false) @@ -1016,4 +1041,17 @@ func parsePoint(raw any) model.Point { return model.Point{} } +// parseSize parses a Size from raw BSON data (stored as "W;H" string). +func parseSize(raw any) model.Size { + if s, ok := raw.(string); ok { + parts := strings.SplitN(s, ";", 2) + if len(parts) == 2 { + w, _ := strconv.Atoi(strings.TrimSpace(parts[0])) + h, _ := strconv.Atoi(strings.TrimSpace(parts[1])) + return model.Size{Width: w, Height: h} + } + } + return model.Size{} +} + // parseNanoflow parses nanoflow contents from BSON. diff --git a/sdk/mpr/roundtrip_test.go b/sdk/mpr/roundtrip_test.go new file mode 100644 index 00000000..77c7bfbb --- /dev/null +++ b/sdk/mpr/roundtrip_test.go @@ -0,0 +1,249 @@ +// SPDX-License-Identifier: Apache-2.0 + +package mpr + +import ( + "os" + "path/filepath" + "strings" + "testing" + + bsondebug "github.com/mendixlabs/mxcli/cmd/mxcli/bson" + "go.mongodb.org/mongo-driver/bson" +) + +// testReader creates a minimal Reader for roundtrip tests (no database needed). +func testReader() *Reader { + return &Reader{version: MPRVersionV1} +} + +// testWriter creates a minimal Writer for roundtrip tests (no database needed). +func testWriter() *Writer { + return &Writer{reader: testReader()} +} + +// toNDSL unmarshals raw BSON bytes and renders as Normalized DSL text. +func toNDSL(t *testing.T, data []byte) string { + t.Helper() + var doc bson.D + if err := bson.Unmarshal(data, &doc); err != nil { + t.Fatalf("failed to unmarshal BSON: %v", err) + } + return bsondebug.Render(doc, 0) +} + +// roundtripPage: baseline → parse → serialize → parse → serialize → compare two serializations. +// Verifies serialization idempotency. Original baseline is preserved as ground truth. +func roundtripPage(t *testing.T, baselineBytes []byte) { + t.Helper() + r := testReader() + w := testWriter() + + // First pass: baseline → parse → serialize + page1, err := r.parsePage("test-unit-id", "test-container-id", baselineBytes) + if err != nil { + t.Fatalf("parsePage (pass 1) failed: %v", err) + } + serialized1, err := w.serializePage(page1) + if err != nil { + t.Fatalf("serializePage (pass 1) failed: %v", err) + } + + // Second pass: serialized → parse → serialize + page2, err := r.parsePage("test-unit-id", "test-container-id", serialized1) + if err != nil { + t.Fatalf("parsePage (pass 2) failed: %v", err) + } + serialized2, err := w.serializePage(page2) + if err != nil { + t.Fatalf("serializePage (pass 2) failed: %v", err) + } + + ndsl1 := toNDSL(t, serialized1) + ndsl2 := toNDSL(t, serialized2) + + if ndsl1 != ndsl2 { + t.Errorf("serialization not idempotent for page %q\n--- pass 1 ---\n%s\n--- pass 2 ---\n%s\n--- diff ---\n%s", + page1.Name, ndsl1, ndsl2, ndslDiff(ndsl1, ndsl2)) + } +} + +// roundtripMicroflow: baseline → parse → serialize → parse → serialize → compare two serializations. +func roundtripMicroflow(t *testing.T, baselineBytes []byte) { + t.Helper() + r := testReader() + w := testWriter() + + // First pass + mf1, err := r.parseMicroflow("test-unit-id", "test-container-id", baselineBytes) + if err != nil { + t.Fatalf("parseMicroflow (pass 1) failed: %v", err) + } + serialized1, err := w.serializeMicroflow(mf1) + if err != nil { + t.Fatalf("serializeMicroflow (pass 1) failed: %v", err) + } + + // Second pass + mf2, err := r.parseMicroflow("test-unit-id", "test-container-id", serialized1) + if err != nil { + t.Fatalf("parseMicroflow (pass 2) failed: %v", err) + } + serialized2, err := w.serializeMicroflow(mf2) + if err != nil { + t.Fatalf("serializeMicroflow (pass 2) failed: %v", err) + } + + ndsl1 := toNDSL(t, serialized1) + ndsl2 := toNDSL(t, serialized2) + + if ndsl1 != ndsl2 { + t.Errorf("serialization not idempotent for microflow %q\n--- pass 1 ---\n%s\n--- pass 2 ---\n%s\n--- diff ---\n%s", + mf1.Name, ndsl1, ndsl2, ndslDiff(ndsl1, ndsl2)) + } +} + +// roundtripSnippet: double roundtrip idempotency test. +func roundtripSnippet(t *testing.T, baselineBytes []byte) { + t.Helper() + r := testReader() + w := testWriter() + + snippet1, err := r.parseSnippet("test-unit-id", "test-container-id", baselineBytes) + if err != nil { + t.Fatalf("parseSnippet (pass 1) failed: %v", err) + } + serialized1, err := w.serializeSnippet(snippet1) + if err != nil { + t.Fatalf("serializeSnippet (pass 1) failed: %v", err) + } + + snippet2, err := r.parseSnippet("test-unit-id", "test-container-id", serialized1) + if err != nil { + t.Fatalf("parseSnippet (pass 2) failed: %v", err) + } + serialized2, err := w.serializeSnippet(snippet2) + if err != nil { + t.Fatalf("serializeSnippet (pass 2) failed: %v", err) + } + + ndsl1 := toNDSL(t, serialized1) + ndsl2 := toNDSL(t, serialized2) + + if ndsl1 != ndsl2 { + t.Errorf("serialization not idempotent for snippet %q\n--- pass 1 ---\n%s\n--- pass 2 ---\n%s\n--- diff ---\n%s", + snippet1.Name, ndsl1, ndsl2, ndslDiff(ndsl1, ndsl2)) + } +} + +// roundtripEnumeration: double roundtrip idempotency test. +func roundtripEnumeration(t *testing.T, baselineBytes []byte) { + t.Helper() + r := testReader() + w := testWriter() + + enum1, err := r.parseEnumeration("test-unit-id", "test-container-id", baselineBytes) + if err != nil { + t.Fatalf("parseEnumeration (pass 1) failed: %v", err) + } + serialized1, err := w.serializeEnumeration(enum1) + if err != nil { + t.Fatalf("serializeEnumeration (pass 1) failed: %v", err) + } + + enum2, err := r.parseEnumeration("test-unit-id", "test-container-id", serialized1) + if err != nil { + t.Fatalf("parseEnumeration (pass 2) failed: %v", err) + } + serialized2, err := w.serializeEnumeration(enum2) + if err != nil { + t.Fatalf("serializeEnumeration (pass 2) failed: %v", err) + } + + ndsl1 := toNDSL(t, serialized1) + ndsl2 := toNDSL(t, serialized2) + + if ndsl1 != ndsl2 { + t.Errorf("serialization not idempotent for enumeration %q\n--- pass 1 ---\n%s\n--- pass 2 ---\n%s\n--- diff ---\n%s", + enum1.Name, ndsl1, ndsl2, ndslDiff(ndsl1, ndsl2)) + } +} + +// TestRoundtrip_Pages runs roundtrip tests on all page baselines in testdata/. +func TestRoundtrip_Pages(t *testing.T) { + runRoundtripDir(t, "testdata/pages", roundtripPage) +} + +// TestRoundtrip_Microflows runs roundtrip tests on all microflow baselines. +func TestRoundtrip_Microflows(t *testing.T) { + runRoundtripDir(t, "testdata/microflows", roundtripMicroflow) +} + +// TestRoundtrip_Snippets runs roundtrip tests on all snippet baselines. +func TestRoundtrip_Snippets(t *testing.T) { + runRoundtripDir(t, "testdata/snippets", roundtripSnippet) +} + +// TestRoundtrip_Enumerations runs roundtrip tests on all enumeration baselines. +func TestRoundtrip_Enumerations(t *testing.T) { + runRoundtripDir(t, "testdata/enumerations", roundtripEnumeration) +} + +// runRoundtripDir loads all .mxunit files from a directory and runs the given roundtrip function. +func runRoundtripDir(t *testing.T, dir string, fn func(*testing.T, []byte)) { + t.Helper() + entries, err := os.ReadDir(dir) + if err != nil { + if os.IsNotExist(err) { + t.Skipf("no baseline directory: %s", dir) + return + } + t.Fatalf("failed to read directory %s: %v", dir, err) + } + + count := 0 + for _, entry := range entries { + if entry.IsDir() || !strings.HasSuffix(entry.Name(), ".mxunit") { + continue + } + count++ + name := strings.TrimSuffix(entry.Name(), ".mxunit") + t.Run(name, func(t *testing.T) { + data, err := os.ReadFile(filepath.Join(dir, entry.Name())) + if err != nil { + t.Fatalf("failed to read baseline: %v", err) + } + fn(t, data) + }) + } + if count == 0 { + t.Skipf("no .mxunit baselines in %s", dir) + } +} + +// ndslDiff returns a simple line-by-line diff of two NDSL strings. +func ndslDiff(a, b string) string { + linesA := strings.Split(a, "\n") + linesB := strings.Split(b, "\n") + + var diffs []string + maxLen := len(linesA) + if len(linesB) > maxLen { + maxLen = len(linesB) + } + + for i := 0; i < maxLen; i++ { + la, lb := "", "" + if i < len(linesA) { + la = linesA[i] + } + if i < len(linesB) { + lb = linesB[i] + } + if la != lb { + diffs = append(diffs, "- "+la) + diffs = append(diffs, "+ "+lb) + } + } + return strings.Join(diffs, "\n") +} diff --git a/sdk/mpr/writer_domainmodel.go b/sdk/mpr/writer_domainmodel.go index 672082c5..62989cd7 100644 --- a/sdk/mpr/writer_domainmodel.go +++ b/sdk/mpr/writer_domainmodel.go @@ -4,6 +4,7 @@ package mpr import ( "fmt" + "sort" "strings" "github.com/mendixlabs/mxcli/model" @@ -1061,7 +1062,14 @@ func serializeText(text *model.Text) bson.D { // Translations as Items array with version prefix 3 // Use bson.D for ordered documents to match Studio Pro format items := bson.A{int32(3)} - for lang, value := range text.Translations { + // Sort language keys for deterministic output + langs := make([]string, 0, len(text.Translations)) + for lang := range text.Translations { + langs = append(langs, lang) + } + sort.Strings(langs) + for _, lang := range langs { + value := text.Translations[lang] items = append(items, bson.D{ {Key: "$ID", Value: idToBsonBinary(generateUUID())}, {Key: "$Type", Value: "Texts$Translation"}, diff --git a/sdk/mpr/writer_enumeration.go b/sdk/mpr/writer_enumeration.go index bda9bc5e..28f5b2eb 100644 --- a/sdk/mpr/writer_enumeration.go +++ b/sdk/mpr/writer_enumeration.go @@ -4,6 +4,7 @@ package mpr import ( "fmt" + "sort" "github.com/mendixlabs/mxcli/model" @@ -89,15 +90,20 @@ func (w *Writer) serializeEnumeration(enum *model.Enumeration) ([]byte, error) { } captionID := generateUUID() - // Build translation items + // Build translation items (sorted for deterministic output) translationItems := bson.A{int32(3)} if v.Caption != nil { - for langCode, text := range v.Caption.Translations { + langs := make([]string, 0, len(v.Caption.Translations)) + for lang := range v.Caption.Translations { + langs = append(langs, lang) + } + sort.Strings(langs) + for _, langCode := range langs { translationItems = append(translationItems, bson.M{ "$ID": idToBsonBinary(generateUUID()), "$Type": "Texts$Translation", "LanguageCode": langCode, - "Text": text, + "Text": v.Caption.Translations[langCode], }) } } diff --git a/sdk/mpr/writer_microflow.go b/sdk/mpr/writer_microflow.go index f1bb6074..677b0202 100644 --- a/sdk/mpr/writer_microflow.go +++ b/sdk/mpr/writer_microflow.go @@ -4,6 +4,7 @@ package mpr import ( "fmt" + "sort" "github.com/mendixlabs/mxcli/model" "github.com/mendixlabs/mxcli/sdk/microflows" @@ -171,9 +172,34 @@ func serializeSequenceFlow(flow *microflows.SequenceFlow) bson.D { {Key: "Value", Value: cv.Value}, }, } + case microflows.NoCase: + caseValues = bson.A{ + int32(2), + bson.D{ + {Key: "$ID", Value: idToBsonBinary(string(cv.ID))}, + {Key: "$Type", Value: "Microflows$NoCase"}, + }, + } + case *microflows.NoCase: + caseValues = bson.A{ + int32(2), + bson.D{ + {Key: "$ID", Value: idToBsonBinary(string(cv.ID))}, + {Key: "$Type", Value: "Microflows$NoCase"}, + }, + } } } + originCV := flow.OriginControlVector + if originCV == "" { + originCV = "0;0" + } + destCV := flow.DestinationControlVector + if destCV == "" { + destCV = "0;0" + } + return bson.D{ {Key: "$ID", Value: idToBsonBinary(string(flow.ID))}, {Key: "$Type", Value: "Microflows$SequenceFlow"}, @@ -184,8 +210,8 @@ func serializeSequenceFlow(flow *microflows.SequenceFlow) bson.D { {Key: "Line", Value: bson.D{ {Key: "$ID", Value: idToBsonBinary(generateUUID())}, {Key: "$Type", Value: "Microflows$BezierCurve"}, - {Key: "DestinationControlVector", Value: "0;0"}, - {Key: "OriginControlVector", Value: "0;0"}, + {Key: "DestinationControlVector", Value: destCV}, + {Key: "OriginControlVector", Value: originCV}, }}, {Key: "OriginConnectionIndex", Value: int64(flow.OriginConnectionIndex)}, {Key: "OriginPointer", Value: idToBsonBinary(string(flow.OriginID))}, @@ -612,12 +638,18 @@ func serializeTextTemplate(text *model.Text, params []string) bson.D { if len(text.Translations) > 0 { var transArray bson.A transArray = append(transArray, int32(3)) // items marker (3 = has items) - for lang, value := range text.Translations { + // Sort language keys for deterministic output + langs := make([]string, 0, len(text.Translations)) + for lang := range text.Translations { + langs = append(langs, lang) + } + sort.Strings(langs) + for _, lang := range langs { transArray = append(transArray, bson.D{ {Key: "$ID", Value: idToBsonBinary(generateUUID())}, {Key: "$Type", Value: "Texts$Translation"}, {Key: "LanguageCode", Value: lang}, - {Key: "Text", Value: value}, + {Key: "Text", Value: text.Translations[lang]}, }) } textDoc = append(textDoc, bson.E{Key: "Items", Value: transArray}) diff --git a/sdk/mpr/writer_pages.go b/sdk/mpr/writer_pages.go index 409473be..21576431 100644 --- a/sdk/mpr/writer_pages.go +++ b/sdk/mpr/writer_pages.go @@ -4,6 +4,7 @@ package mpr import ( "fmt" + "sort" "github.com/mendixlabs/mxcli/model" "github.com/mendixlabs/mxcli/sdk/pages" @@ -218,18 +219,21 @@ func (w *Writer) serializePage(page *pages.Page) ([]byte, error) { // Items go directly after the version marker, NOT nested in another array if page.Title != nil { titleItems := bson.A{int32(3)} // Start with empty marker - hasTranslations := false - for langCode, text := range page.Title.Translations { - if !hasTranslations { - titleItems = bson.A{int32(2)} // First item: change to version 2 - hasTranslations = true + if len(page.Title.Translations) > 0 { + titleItems = bson.A{int32(2)} // version 2 for non-empty + langs := make([]string, 0, len(page.Title.Translations)) + for lang := range page.Title.Translations { + langs = append(langs, lang) + } + sort.Strings(langs) + for _, langCode := range langs { + titleItems = append(titleItems, bson.D{ + {Key: "$ID", Value: idToBsonBinary(generateUUID())}, + {Key: "$Type", Value: "Texts$Translation"}, + {Key: "LanguageCode", Value: langCode}, + {Key: "Text", Value: page.Title.Translations[langCode]}, + }) } - titleItems = append(titleItems, bson.D{ - {Key: "$ID", Value: idToBsonBinary(generateUUID())}, - {Key: "$Type", Value: "Texts$Translation"}, - {Key: "LanguageCode", Value: langCode}, - {Key: "Text", Value: text}, - }) } titleDoc := bson.D{ {Key: "$ID", Value: idToBsonBinary(string(page.Title.ID))}, diff --git a/sdk/mpr/writer_widgets.go b/sdk/mpr/writer_widgets.go index 94391fc5..fde831c5 100644 --- a/sdk/mpr/writer_widgets.go +++ b/sdk/mpr/writer_widgets.go @@ -46,7 +46,9 @@ func serializeWidget(w pages.Widget) bson.D { case *pages.Container: doc = serializeContainer(widget) case *pages.GroupBox: - doc = serializeGroupBox(widget) + return serializeGroupBox(widget) + case *pages.TabContainer: + return serializeTabContainer(widget) case *pages.LayoutGrid: doc = serializeLayoutGrid(widget) case *pages.DynamicText: @@ -352,7 +354,7 @@ func serializeAppearance(class, style string, designProps []pages.DesignProperty } // serializeDesignProperties serializes design property values to a BSON array. -// Both empty and non-empty use version marker int32(3). +// Both empty and non-empty use version marker int64(3). func serializeDesignProperties(props []pages.DesignPropertyValue) bson.A { if len(props) == 0 { return bson.A{int32(3)} diff --git a/sdk/mpr/writer_widgets_layout.go b/sdk/mpr/writer_widgets_layout.go index 0160c043..69612c4c 100644 --- a/sdk/mpr/writer_widgets_layout.go +++ b/sdk/mpr/writer_widgets_layout.go @@ -3,6 +3,7 @@ package mpr import ( + "github.com/mendixlabs/mxcli/model" "github.com/mendixlabs/mxcli/sdk/pages" "go.mongodb.org/mongo-driver/bson" @@ -60,6 +61,71 @@ func serializeGroupBox(gb *pages.GroupBox) bson.D { return doc } +// serializeTabContainer serializes a TabContainer widget. +func serializeTabContainer(tc *pages.TabContainer) bson.D { + tabPages := bson.A{int32(3)} // marker=3 for TabPages array + var defaultPageID []byte + for i, tp := range tc.TabPages { + tpDoc := serializeTabPage(tp) + tabPages = append(tabPages, tpDoc) + if i == 0 { + // Default to first tab + defaultPageID = idToBsonBinary(string(tp.ID)).Data + } + } + if tc.DefaultPageID != "" { + defaultPageID = idToBsonBinary(string(tc.DefaultPageID)).Data + } + + doc := bson.D{ + {Key: "$ID", Value: idToBsonBinary(string(tc.ID))}, + {Key: "$Type", Value: "Forms$TabControl"}, + {Key: "ActivePageAttributeRef", Value: nil}, + {Key: "ActivePageOnChangeAction", Value: bson.D{ + {Key: "$ID", Value: idToBsonBinary(GenerateID())}, + {Key: "$Type", Value: "Forms$NoAction"}, + {Key: "DisabledDuringExecution", Value: true}, + }}, + {Key: "ActivePageSourceVariable", Value: nil}, + {Key: "Appearance", Value: serializeAppearance(tc.Class, tc.Style, tc.DesignProperties)}, + {Key: "ConditionalVisibilitySettings", Value: nil}, + {Key: "DefaultPagePointer", Value: defaultPageID}, + {Key: "Name", Value: tc.Name}, + {Key: "TabIndex", Value: int64(0)}, + {Key: "TabPages", Value: tabPages}, + } + return doc +} + +// serializeTabPage serializes a TabPage within a TabContainer. +func serializeTabPage(tp *pages.TabPage) bson.D { + // Caption + var caption bson.D + if tp.Caption != nil { + caption = serializeText(tp.Caption) + } else { + caption = serializeText(&model.Text{ + BaseElement: model.BaseElement{ + ID: model.ID(GenerateID()), + TypeName: "Texts$Text", + }, + Translations: map[string]string{"en_US": tp.Name}, + }) + } + + doc := bson.D{ + {Key: "$ID", Value: idToBsonBinary(string(tp.ID))}, + {Key: "$Type", Value: "Forms$TabPage"}, + {Key: "Badge", Value: nil}, + {Key: "Caption", Value: caption}, + {Key: "ConditionalVisibilitySettings", Value: nil}, + {Key: "Name", Value: tp.Name}, + {Key: "RefreshOnShow", Value: tp.RefreshOnShow}, + {Key: "Widgets", Value: serializeWidgetArray(tp.Widgets)}, + } + return doc +} + // serializeLayoutGrid serializes a LayoutGrid widget. func serializeLayoutGrid(lg *pages.LayoutGrid) bson.D { // Mendix uses [3] for empty arrays, [2, item1, item2, ...] for non-empty arrays diff --git a/sdk/pages/pages_widgets_advanced.go b/sdk/pages/pages_widgets_advanced.go index b5384218..00e991fe 100644 --- a/sdk/pages/pages_widgets_advanced.go +++ b/sdk/pages/pages_widgets_advanced.go @@ -168,6 +168,7 @@ type PropertyTypeIDEntry struct { ValueTypeID string DefaultValue string // Default value from the template's ValueType ValueType string // Type of value (Boolean, Integer, String, DataSource, etc.) + Required bool // Whether this property is required // For object list properties (IsList=true with ObjectType), these hold nested IDs ObjectTypeID string // ID of the nested ObjectType (for object lists like columns) NestedPropertyIDs map[string]PropertyTypeIDEntry // Property IDs within the nested ObjectType diff --git a/sdk/widgets/augment.go b/sdk/widgets/augment.go index 5373d770..0b3132a1 100644 --- a/sdk/widgets/augment.go +++ b/sdk/widgets/augment.go @@ -87,7 +87,7 @@ func AugmentTemplate(tmpl *WidgetTemplate, def *mpk.WidgetDefinition) error { } } - // Nothing to do + // Nothing to add/remove if len(missing) == 0 && len(stale) == 0 { return nil } @@ -112,8 +112,14 @@ func AugmentTemplate(tmpl *WidgetTemplate, def *mpk.WidgetDefinition) error { exemplarIdx, hasExemplar := typeExemplars[bsonType] var newPropType, newProp map[string]any if hasExemplar { - newPropType, newProp = clonePropertyPair(propTypes, objProps, exemplarIdx, p) - } else { + var err error + newPropType, newProp, err = clonePropertyPair(propTypes, objProps, exemplarIdx, p) + if err != nil { + return fmt.Errorf("augment %s: %w", tmpl.WidgetID, err) + } + } + // Fall back to createPropertyPair if cloning failed (no exemplar or no matching property) + if newPropType == nil || newProp == nil { newPropType, newProp = createPropertyPair(p, bsonType) } @@ -173,14 +179,17 @@ func removeProperties(propTypes []any, objProps []any, staleKeys map[string]bool } // clonePropertyPair deep-clones an existing PropertyType/Property pair and updates keys/IDs. -func clonePropertyPair(propTypes []any, objProps []any, exemplarIdx int, p mpk.PropertyDef) (map[string]any, map[string]any) { +func clonePropertyPair(propTypes []any, objProps []any, exemplarIdx int, p mpk.PropertyDef) (map[string]any, map[string]any, error) { exemplar, ok := propTypes[exemplarIdx].(map[string]any) if !ok { - return nil, nil + return nil, nil, nil } // Deep-clone the PropertyType - newPT := deepCloneMap(exemplar) + newPT, err := deepCloneMap(exemplar) + if err != nil { + return nil, nil, fmt.Errorf("clone property type %q: %w", p.Key, err) + } newPTID := placeholderID() newPT["$ID"] = newPTID newPT["PropertyKey"] = p.Key @@ -254,11 +263,14 @@ func clonePropertyPair(propTypes []any, objProps []any, exemplarIdx int, p mpk.P } if exemplarProp == nil { - return newPT, nil + return newPT, nil, nil } // Deep-clone the Property - newProp := deepCloneMap(exemplarProp) + newProp, err := deepCloneMap(exemplarProp) + if err != nil { + return nil, nil, fmt.Errorf("clone property %q: %w", p.Key, err) + } newProp["$ID"] = placeholderID() newProp["TypePointer"] = newPTID @@ -283,7 +295,7 @@ func clonePropertyPair(propTypes []any, objProps []any, exemplarIdx int, p mpk.P } } - return newPT, newProp + return newPT, newProp, nil } // createPropertyPair creates a new PropertyType/Property pair from scratch. @@ -603,16 +615,16 @@ func setArrayField(m map[string]any, key string, arr []any) { } // deepCloneMap deep-clones a map[string]interface{} via JSON round-trip. -func deepCloneMap(m map[string]any) map[string]any { +func deepCloneMap(m map[string]any) (map[string]any, error) { data, err := json.Marshal(m) if err != nil { - return nil + return nil, fmt.Errorf("deep clone marshal: %w", err) } var result map[string]any if err := json.Unmarshal(data, &result); err != nil { - return nil + return nil, fmt.Errorf("deep clone unmarshal: %w", err) } - return result + return result, nil } // regenerateNestedIDs walks a structure and replaces all $ID fields with new placeholders. @@ -636,7 +648,7 @@ func regenerateNestedIDs(m map[string]any) { } // deepCloneTemplate deep-clones a WidgetTemplate so augmentation doesn't mutate the cache. -func deepCloneTemplate(tmpl *WidgetTemplate) *WidgetTemplate { +func deepCloneTemplate(tmpl *WidgetTemplate) (*WidgetTemplate, error) { clone := &WidgetTemplate{ WidgetID: tmpl.WidgetID, Name: tmpl.Name, @@ -645,11 +657,118 @@ func deepCloneTemplate(tmpl *WidgetTemplate) *WidgetTemplate { } if tmpl.Type != nil { - clone.Type = deepCloneMap(tmpl.Type) + var err error + clone.Type, err = deepCloneMap(tmpl.Type) + if err != nil { + return nil, fmt.Errorf("clone template type %s: %w", tmpl.WidgetID, err) + } } if tmpl.Object != nil { - clone.Object = deepCloneMap(tmpl.Object) + var err error + clone.Object, err = deepCloneMap(tmpl.Object) + if err != nil { + return nil, fmt.Errorf("clone template object %s: %w", tmpl.WidgetID, err) + } + } + + return clone, nil +} + +// collectNestedPropertyTypeIDs extracts PropertyKey→$ID mappings from a ValueType's ObjectType. +func collectNestedPropertyTypeIDs(vt map[string]any) map[string]string { + result := make(map[string]string) + objType, ok := getMapField(vt, "ObjectType") + if !ok { + return result + } + propTypes, ok := getArrayField(objType, "PropertyTypes") + if !ok { + return result + } + for _, pt := range propTypes { + ptMap, ok := pt.(map[string]any) + if !ok { + continue + } + key, _ := ptMap["PropertyKey"].(string) + id, _ := ptMap["$ID"].(string) + if key != "" && id != "" { + result[key] = id + } + } + return result +} + +// collectNestedPropertyTypeIDsByKey extracts PropertyKey→$ID from a rebuilt ObjectType map. +func collectNestedPropertyTypeIDsByKey(objType map[string]any) map[string]string { + result := make(map[string]string) + propTypes, ok := getArrayField(objType, "PropertyTypes") + if !ok { + return result + } + for _, pt := range propTypes { + ptMap, ok := pt.(map[string]any) + if !ok { + continue + } + key, _ := ptMap["PropertyKey"].(string) + id, _ := ptMap["$ID"].(string) + if key != "" && id != "" { + result[key] = id + } } + return result +} - return clone +// remapObjectTypePointers walks the Object Properties array and updates TypePointers +// that reference old PropertyType IDs from a rebuilt ObjectType. +func remapObjectTypePointers(objProps []any, idRemap map[string]string) { + if len(idRemap) == 0 { + return + } + for _, prop := range objProps { + propMap, ok := prop.(map[string]any) + if !ok { + continue + } + // Check Value.Objects for nested WidgetObjects with TypePointers + val, ok := getMapField(propMap, "Value") + if !ok { + continue + } + objects, ok := getArrayField(val, "Objects") + if !ok { + continue + } + for _, obj := range objects { + objMap, ok := obj.(map[string]any) + if !ok { + continue + } + // Remap the object's nested properties' TypePointers + nestedProps, ok := getArrayField(objMap, "Properties") + if !ok { + continue + } + for _, nestedProp := range nestedProps { + npMap, ok := nestedProp.(map[string]any) + if !ok { + continue + } + if tp, ok := npMap["TypePointer"].(string); ok { + if newTP, exists := idRemap[tp]; exists { + npMap["TypePointer"] = newTP + } + } + // Also remap Value.TypePointer (references ValueType $ID) + if nestedVal, ok := getMapField(npMap, "Value"); ok { + if tp, ok := nestedVal["TypePointer"].(string); ok { + if newTP, exists := idRemap[tp]; exists { + nestedVal["TypePointer"] = newTP + } + } + } + } + } + } } diff --git a/sdk/widgets/augment_test.go b/sdk/widgets/augment_test.go index 5d50b766..0c5ddbab 100644 --- a/sdk/widgets/augment_test.go +++ b/sdk/widgets/augment_test.go @@ -433,7 +433,10 @@ func TestDeepCloneTemplate(t *testing.T) { }, } - clone := deepCloneTemplate(original) + clone, err := deepCloneTemplate(original) + if err != nil { + t.Fatalf("deepCloneTemplate failed: %v", err) + } // Modify clone clone.Type["key"] = "modified" @@ -489,7 +492,10 @@ func TestAugmentTemplate_WithRealTemplate(t *testing.T) { } ResetPlaceholderCounter() - clone := deepCloneTemplate(tmpl) + clone, err := deepCloneTemplate(tmpl) + if err != nil { + t.Fatalf("deepCloneTemplate failed: %v", err) + } // Count original properties objType := clone.Type["ObjectType"].(map[string]any) @@ -589,7 +595,10 @@ func TestAugmentTemplate_NoPlaceholderLeakAfterBSONConversion(t *testing.T) { t.Skip("ComboBox template not available") } - clone := deepCloneTemplate(tmpl) + clone, err := deepCloneTemplate(tmpl) + if err != nil { + t.Fatalf("deepCloneTemplate failed: %v", err) + } // Build a definition with existing properties + one new one objType := clone.Type["ObjectType"].(map[string]any) diff --git a/sdk/widgets/definitions/barcodescanner.def.json b/sdk/widgets/definitions/barcodescanner.def.json new file mode 100644 index 00000000..f521a3ae --- /dev/null +++ b/sdk/widgets/definitions/barcodescanner.def.json @@ -0,0 +1,9 @@ +{ + "widgetId": "com.mendix.widget.web.barcodescanner.BarcodeScanner", + "mdlName": "BARCODESCANNER", + "templateFile": "barcodescanner.json", + "defaultEditable": "Always", + "propertyMappings": [ + {"propertyKey": "datasource", "source": "Attribute", "operation": "attribute"} + ] +} diff --git a/sdk/widgets/definitions/datefilter.def.json b/sdk/widgets/definitions/datefilter.def.json new file mode 100644 index 00000000..e335dbee --- /dev/null +++ b/sdk/widgets/definitions/datefilter.def.json @@ -0,0 +1,11 @@ +{ + "widgetId": "com.mendix.widget.web.datagriddatefilter.DatagridDateFilter", + "mdlName": "DATEFILTER", + "templateFile": "datagrid-date-filter.json", + "defaultEditable": "Always", + "propertyMappings": [ + {"propertyKey": "attrChoice", "value": "linked", "operation": "primitive"}, + {"propertyKey": "attributes", "source": "Attributes", "operation": "attributeObjects"}, + {"propertyKey": "defaultFilter", "source": "FilterType", "operation": "primitive"} + ] +} diff --git a/sdk/widgets/definitions/dropdownfilter.def.json b/sdk/widgets/definitions/dropdownfilter.def.json new file mode 100644 index 00000000..c0b99ff7 --- /dev/null +++ b/sdk/widgets/definitions/dropdownfilter.def.json @@ -0,0 +1,11 @@ +{ + "widgetId": "com.mendix.widget.web.datagriddropdownfilter.DatagridDropdownFilter", + "mdlName": "DROPDOWNFILTER", + "templateFile": "datagrid-dropdown-filter.json", + "defaultEditable": "Always", + "propertyMappings": [ + {"propertyKey": "attrChoice", "value": "linked", "operation": "primitive"}, + {"propertyKey": "attributes", "source": "Attributes", "operation": "attributeObjects"}, + {"propertyKey": "defaultFilter", "source": "FilterType", "operation": "primitive"} + ] +} diff --git a/sdk/widgets/definitions/dropdownsort.def.json b/sdk/widgets/definitions/dropdownsort.def.json new file mode 100644 index 00000000..283bc8c5 --- /dev/null +++ b/sdk/widgets/definitions/dropdownsort.def.json @@ -0,0 +1,6 @@ +{ + "widgetId": "com.mendix.widget.web.dropdownsort.DropdownSort", + "mdlName": "DROPDOWNSORT", + "templateFile": "dropdownsort.json", + "defaultEditable": "Always" +} diff --git a/sdk/widgets/definitions/numberfilter.def.json b/sdk/widgets/definitions/numberfilter.def.json new file mode 100644 index 00000000..2b7aeb09 --- /dev/null +++ b/sdk/widgets/definitions/numberfilter.def.json @@ -0,0 +1,11 @@ +{ + "widgetId": "com.mendix.widget.web.datagridnumberfilter.DatagridNumberFilter", + "mdlName": "NUMBERFILTER", + "templateFile": "datagrid-number-filter.json", + "defaultEditable": "Always", + "propertyMappings": [ + {"propertyKey": "attrChoice", "value": "linked", "operation": "primitive"}, + {"propertyKey": "attributes", "source": "Attributes", "operation": "attributeObjects"}, + {"propertyKey": "defaultFilter", "source": "FilterType", "operation": "primitive"} + ] +} diff --git a/sdk/widgets/definitions/textfilter.def.json b/sdk/widgets/definitions/textfilter.def.json new file mode 100644 index 00000000..17700e0a --- /dev/null +++ b/sdk/widgets/definitions/textfilter.def.json @@ -0,0 +1,11 @@ +{ + "widgetId": "com.mendix.widget.web.datagridtextfilter.DatagridTextFilter", + "mdlName": "TEXTFILTER", + "templateFile": "datagrid-text-filter.json", + "defaultEditable": "Always", + "propertyMappings": [ + {"propertyKey": "attrChoice", "value": "linked", "operation": "primitive"}, + {"propertyKey": "attributes", "source": "Attributes", "operation": "attributeObjects"}, + {"propertyKey": "defaultFilter", "source": "FilterType", "operation": "primitive"} + ] +} diff --git a/sdk/widgets/loader.go b/sdk/widgets/loader.go index c446edc2..0fd876f3 100644 --- a/sdk/widgets/loader.go +++ b/sdk/widgets/loader.go @@ -9,6 +9,7 @@ import ( "encoding/hex" "encoding/json" "fmt" + "log" "path/filepath" "sort" "strings" @@ -115,16 +116,52 @@ var ( templateCacheLock sync.RWMutex ) -// Known widget IDs and their template files. -var widgetTemplateFiles = map[string]string{ - "com.mendix.widget.web.combobox.Combobox": "combobox.json", - "com.mendix.widget.web.datagrid.Datagrid": "datagrid.json", - "com.mendix.widget.web.datagridtextfilter.DatagridTextFilter": "datagrid-text-filter.json", - "com.mendix.widget.web.datagriddatefilter.DatagridDateFilter": "datagrid-date-filter.json", - "com.mendix.widget.web.datagriddropdownfilter.DatagridDropdownFilter": "datagrid-dropdown-filter.json", - "com.mendix.widget.web.datagridnumberfilter.DatagridNumberFilter": "datagrid-number-filter.json", - "com.mendix.widget.web.gallery.Gallery": "gallery.json", - "com.mendix.widget.web.image.Image": "image.json", +// widgetTemplateIndex maps widget IDs to template filenames. +// Built lazily by scanning embedded template JSON files. +var ( + widgetTemplateIndex map[string]string + widgetTemplateIndexOnce sync.Once +) + +// getWidgetTemplateIndex returns the widget ID → filename mapping, +// built by scanning all embedded JSON templates for their "widgetId" field. +func getWidgetTemplateIndex() map[string]string { + widgetTemplateIndexOnce.Do(func() { + widgetTemplateIndex = make(map[string]string) + entries, err := templateFS.ReadDir("templates/mendix-11.6") + if err != nil { + return + } + for _, entry := range entries { + if entry.IsDir() || !strings.HasSuffix(entry.Name(), ".json") { + continue + } + // Read just enough to extract widgetId + data, err := templateFS.ReadFile("templates/mendix-11.6/" + entry.Name()) + if err != nil { + continue + } + var header struct { + WidgetID string `json:"widgetId"` + Type map[string]any `json:"type"` + } + if err := json.Unmarshal(data, &header); err != nil { + continue + } + wid := header.WidgetID + // Fallback: extract WidgetId from type.WidgetId for older templates + if wid == "" && header.Type != nil { + if v, ok := header.Type["WidgetId"].(string); ok { + wid = v + } + } + if wid == "" { + continue + } + widgetTemplateIndex[wid] = entry.Name() + } + }) + return widgetTemplateIndex } // GetTemplate loads a widget template by widget ID. @@ -138,8 +175,9 @@ func GetTemplate(widgetID string) (*WidgetTemplate, error) { } templateCacheLock.RUnlock() - // Find template file - filename, ok := widgetTemplateFiles[widgetID] + // Find template file from auto-scanned index + index := getWidgetTemplateIndex() + filename, ok := index[widgetID] if !ok { return nil, nil // Not found, not an error } @@ -253,6 +291,7 @@ func jsonToBSONWithMappingAndObjectType(data map[string]any, idMapping map[strin var valueTypeID string var defaultValue string var valueType string + var required bool var nestedObjectTypeID string var nestedPropertyIDs map[string]PropertyTypeIDEntry @@ -294,9 +333,9 @@ func jsonToBSONWithMappingAndObjectType(data map[string]any, idMapping map[strin } } } else if key == "ValueType" && isPropertyType { - // For PropertyTypes, extract ValueType info including nested ObjectType, DefaultValue, and Type + // For PropertyTypes, extract ValueType info including nested ObjectType, DefaultValue, Type, Required nestedPropertyIDs = make(map[string]PropertyTypeIDEntry) - elem.Value = jsonValueToBSONWithNestedObjectType(val, idMapping, &valueTypeID, &nestedObjectTypeID, nestedPropertyIDs, &defaultValue, &valueType) + elem.Value = jsonValueToBSONWithNestedObjectType(val, idMapping, &valueTypeID, &nestedObjectTypeID, nestedPropertyIDs, &defaultValue, &valueType, &required) } else { elem.Value = jsonValueToBSONWithMappingAndObjectType(val, idMapping, propertyTypeIDs, &valueTypeID, key == "ValueType", objectTypeID) } @@ -311,6 +350,7 @@ func jsonToBSONWithMappingAndObjectType(data map[string]any, idMapping map[strin ValueTypeID: valueTypeID, DefaultValue: defaultValue, ValueType: valueType, + Required: required, } if nestedObjectTypeID != "" { entry.ObjectTypeID = nestedObjectTypeID @@ -323,7 +363,7 @@ func jsonToBSONWithMappingAndObjectType(data map[string]any, idMapping map[strin } // jsonValueToBSONWithNestedObjectType extracts ValueType info including nested ObjectType, DefaultValue, and Type. -func jsonValueToBSONWithNestedObjectType(val any, idMapping map[string]string, valueTypeID *string, nestedObjectTypeID *string, nestedPropertyIDs map[string]PropertyTypeIDEntry, defaultValue *string, valueType *string) any { +func jsonValueToBSONWithNestedObjectType(val any, idMapping map[string]string, valueTypeID *string, nestedObjectTypeID *string, nestedPropertyIDs map[string]PropertyTypeIDEntry, defaultValue *string, valueType *string, required *bool) any { switch v := val.(type) { case map[string]any: result := make(bson.D, 0, len(v)) @@ -357,6 +397,12 @@ func jsonValueToBSONWithNestedObjectType(val any, idMapping map[string]string, v *valueType = vt } elem.Value = jsonValueToBSONSimple(fieldVal, idMapping) + } else if key == "Required" { + // Extract required flag + if r, ok := fieldVal.(bool); ok { + *required = r + } + elem.Value = jsonValueToBSONSimple(fieldVal, idMapping) } else { elem.Value = jsonValueToBSONSimple(fieldVal, idMapping) } @@ -453,11 +499,31 @@ func extractNestedPropertyTypes(val any, idMapping map[string]string, nestedProp } } + // Extract DefaultValue, Type, and Required from nested ValueType + var nestedDefaultValue, nestedValueType string + var nestedRequired bool + if vtVal, ok := propType["ValueType"]; ok { + if vt, ok := vtVal.(map[string]any); ok { + if dv, ok := vt["DefaultValue"].(string); ok { + nestedDefaultValue = dv + } + if t, ok := vt["Type"].(string); ok { + nestedValueType = t + } + if r, ok := vt["Required"].(bool); ok { + nestedRequired = r + } + } + } + // Record the nested property type if propKey != "" { nestedPropertyIDs[propKey] = PropertyTypeIDEntry{ PropertyTypeID: propTypeID, ValueTypeID: valueTypeID, + DefaultValue: nestedDefaultValue, + ValueType: nestedValueType, + Required: nestedRequired, } } } @@ -640,6 +706,7 @@ type PropertyTypeIDEntry struct { ValueTypeID string DefaultValue string // Default value from the template's ValueType ValueType string // Type of value (Boolean, Integer, String, DataSource, etc.) + Required bool // Whether this property is required // For object list properties (IsList=true with ObjectType), these hold nested IDs ObjectTypeID string // ID of the nested ObjectType (for object lists) NestedPropertyIDs map[string]PropertyTypeIDEntry // Property IDs within the nested ObjectType @@ -649,8 +716,10 @@ type PropertyTypeIDEntry struct { func collectIDs(data map[string]any, idGenerator func() string, idMapping map[string]string) { for key, val := range data { if key == "$ID" { - if oldID, ok := val.(string); ok && len(oldID) == 32 && isHexString(oldID) { - // Generate new ID for this $ID field + if oldID, ok := val.(string); ok && len(oldID) == 32 { + // Generate new ID for this $ID field. + // Accept any 32-char string (not just valid hex) to handle + // manually crafted placeholder IDs in templates. newID := idGenerator() idMapping[oldID] = newID } @@ -844,8 +913,13 @@ func augmentFromMPK(tmpl *WidgetTemplate, widgetID string, projectPath string) * } // Deep-clone so we don't mutate the cached template - clone := deepCloneTemplate(tmpl) + clone, err := deepCloneTemplate(tmpl) + if err != nil { + log.Printf("warning: failed to clone template for %s: %v", widgetID, err) + return tmpl + } if err := AugmentTemplate(clone, def); err != nil { + log.Printf("warning: failed to augment template for %s from MPK: %v", widgetID, err) return tmpl } @@ -854,8 +928,9 @@ func augmentFromMPK(tmpl *WidgetTemplate, widgetID string, projectPath string) * // ListAvailableTemplates returns a list of available widget template IDs. func ListAvailableTemplates() []string { - result := make([]string, 0, len(widgetTemplateFiles)) - for widgetID := range widgetTemplateFiles { + index := getWidgetTemplateIndex() + result := make([]string, 0, len(index)) + for widgetID := range index { result = append(result, widgetID) } return result diff --git a/sdk/widgets/mpk/mpk.go b/sdk/widgets/mpk/mpk.go index 066d0f98..058c4b1b 100644 --- a/sdk/widgets/mpk/mpk.go +++ b/sdk/widgets/mpk/mpk.go @@ -35,6 +35,7 @@ type WidgetDefinition struct { ID string // e.g. "com.mendix.widget.web.combobox.Combobox" Name string // e.g. "Combo box" Version string // from package.xml clientModule version + IsPluggable bool // true if pluginWidget="true" (React), false for legacy Dojo Properties []PropertyDef // regular elements SystemProps []PropertyDef // elements } @@ -190,9 +191,10 @@ func ParseMPK(mpkPath string) (*WidgetDefinition, error) { } def := &WidgetDefinition{ - ID: widget.ID, - Name: widget.Name, - Version: version, + ID: widget.ID, + Name: widget.Name, + Version: version, + IsPluggable: widget.PluginWidget == "true", } // Walk property groups to collect properties diff --git a/sdk/widgets/templates/mendix-11.6/accessibilityhelper.json b/sdk/widgets/templates/mendix-11.6/accessibilityhelper.json new file mode 100644 index 00000000..e02ab201 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/accessibilityhelper.json @@ -0,0 +1,575 @@ +{ + "widgetId": "com.mendix.widget.web.accessibilityhelper.AccessibilityHelper", + "name": "Accessibility helper", + "version": "11.6.4", + "extractedFrom": "d6b6fc94-3653-4109-a73f-09944df7e718", + "type": { + "$ID": "5c3de2779d13478a826fed18d5e07708", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/accessibility-helper", + "ObjectType": { + "$ID": "dd4ee79e7559480d9684069e6af65eaf", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "9abe99286b744e8d93e49d770bf53166", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Target selector", + "Category": "General", + "Description": "Selector to find the first HTML element you want to target which must be a valid CSS selector like '.mx-name-texbox1 input'", + "IsDefault": false, + "PropertyKey": "targetSelector", + "ValueType": { + "$ID": "0e2976b38fc74508a3a638f223f54d15", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "3bd8424210734732b930c34bb26bc344", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "content", + "ValueType": { + "$ID": "a70f929f68fb4c7f8f7c106ac7415ce7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "3f9062bcf3d048fd875f902b720e7610", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "HTML Attributes", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributesList", + "ValueType": { + "$ID": "8445209d45884c6ca2357bded63b442f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "c93ee83253034b3c8eab53ad487e3096", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "5ad7f3fa608e4f5880a438a61213b8b7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "HTML attribute", + "Category": "General", + "Description": "The HTML attribute to be set based on the condition. The following attributes are not allowed: 'class', 'style', 'widgetid', 'data-mendix-id'.", + "IsDefault": false, + "PropertyKey": "attribute", + "ValueType": { + "$ID": "ba5e723f2461458f87429f55644d275c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "14d614c60f5148a4b4cc73510e4caadd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Source type", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "valueSourceType", + "ValueType": { + "$ID": "a358cb4620584b71823311e5f460cd3b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "58e0cd93c6e242149a31cccd3b2ca4ab", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "2b288e3d9c5d40b5b28977a146160013", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "d9569a7455e44927bedb3ed31fb993f6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Expression value", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "valueExpression", + "ValueType": { + "$ID": "39a7f02a43c34fc7b64927e3eb6668af", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "311f9b41a9894a928275bcb113940d6f", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "06e0b234e23d40e8a3ac09bf12000493", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Text value", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "valueText", + "ValueType": { + "$ID": "f33d608468c641c495a59897835d2aac", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "583d5460e20943d0ad9ea63d81e35258", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Condition", + "Category": "General", + "Description": "Condition to determine if the HTML attribute must be set or not", + "IsDefault": false, + "PropertyKey": "attributeCondition", + "ValueType": { + "$ID": "3521722cf0ea46e49be072a280e196a1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": { + "$ID": "293c423c2b534773b100bec2e591ecde", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Boolean" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Input Elements", + "StudioProCategory": "Input elements", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.accessibilityhelper.AccessibilityHelper", + "WidgetName": "Accessibility helper", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "4438c2a0d66845ee85276500f05451bd", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "4b20a3e358a74f4487cdba22c44505c9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9abe99286b744e8d93e49d770bf53166", + "Value": { + "$ID": "2f6ed0f0c168495cbfbe6973b2d647be", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d26eb73c9f53405db4a9c864ec55c3cf", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0e2976b38fc74508a3a638f223f54d15", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "885c2d5714e045779460a1e56a2c0d80", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3bd8424210734732b930c34bb26bc344", + "Value": { + "$ID": "696f1af8851d46528ad99615e41b53a5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "16d37d2505224052a6b89922158c7f88", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a70f929f68fb4c7f8f7c106ac7415ce7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d2f840d6ab8a41dda2fb3621364c2611", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3f9062bcf3d048fd875f902b720e7610", + "Value": { + "$ID": "0bdea5b240c94d35a6e3ff8c448b88ac", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7b7806c990224a1fa7033334dadb2cc5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8445209d45884c6ca2357bded63b442f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "dd4ee79e7559480d9684069e6af65eaf" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/accordion.json b/sdk/widgets/templates/mendix-11.6/accordion.json new file mode 100644 index 00000000..2164b4a9 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/accordion.json @@ -0,0 +1,1643 @@ +{ + "widgetId": "com.mendix.widget.web.accordion.Accordion", + "name": "Accordion", + "version": "11.6.4", + "extractedFrom": "d7e4c5c1-ace2-435f-840c-e52b5b2c86d2", + "type": { + "$ID": "9b829055d81f4432bfc058b314d01698", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/accordion", + "ObjectType": { + "$ID": "2bf34ced5aa64585bee73194224b2fd8", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "a9fe20a3479c4c2492c01a7d0116f807", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advancedMode", + "ValueType": { + "$ID": "a44b5dec4c054cf18cb8b6679516f095", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "8eb08fd0127a47728ed894189e2afd86", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Groups", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "groups", + "ValueType": { + "$ID": "20c082654b22478eb963f1e86ccf560c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "cd558af1126c4e1990ee32a37bf775b6", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "75940fa9e9c24764a5b907192325f86e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Header", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerRenderMode", + "ValueType": { + "$ID": "012f87736310460d8c4ae0ae688f77f7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "32d515a6e9e945f6addae6f5039a79a6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "b152efc11e364792b0d1e418397de934", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "d94078cf60934c8b9d3762f789b2667c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Text", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerText", + "ValueType": { + "$ID": "4a6357e0cbdb49d99faf006193d1d55d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2, + { + "$ID": "8a392dcf73e9410eb88821fa711a9d09", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "en_US", + "Text": "Header" + }, + { + "$ID": "7c68574fd2154ae1b173c1b5bfb67ede", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "nl_NL", + "Text": "Koptekst" + } + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "509c024adbac4c918c748890a8674379", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Render mode", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerHeading", + "ValueType": { + "$ID": "8106d4f9eee04de58d1ec5684b514ff2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "headingThree", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "d1220234a2be4ecabcbae6a3acde284c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingOne", + "Caption": "Heading 1" + }, + { + "$ID": "6ca728e0d1ff4beebad078ccbfc67f12", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingTwo", + "Caption": "Heading 2" + }, + { + "$ID": "91da1cc906d04e0f9750f53f492c82ae", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingThree", + "Caption": "Heading 3" + }, + { + "$ID": "b64d97070a824b228421348fc3e74945", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingFour", + "Caption": "Heading 4" + }, + { + "$ID": "043d571e70844474a69c43a62545152e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingFive", + "Caption": "Heading 5" + }, + { + "$ID": "f6aec2605ae144d589fa35a2b0302da9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headingSix", + "Caption": "Heading 6" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "65d967cbfe7f46dcbb229ba134ae6ba3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Header", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerContent", + "ValueType": { + "$ID": "ca9fd407a6ec44ebb4182863fc3bad02", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "d19cebf76ddc447da6ab777e930c9aae", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "content", + "ValueType": { + "$ID": "e40c72110a7041438356f419771d8346", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "f4849729831c4a7a881e0e3065013b3f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Visible", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "visible", + "ValueType": { + "$ID": "d8ab530ae1dd4687925a2306d5f1f37f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": { + "$ID": "1494174ff8b6425397b066f0992eeede", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Boolean" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "51507cb11a4446b38c1f347267071dc8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Dynamic class", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicClass", + "ValueType": { + "$ID": "3b841b8bf1ce46d0ae23a2db1cf5c274", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "e047c3d0a28f438392129637885a6aea", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "af77a3e64ed940a99eb312940ea04d14", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Load content", + "Category": "General", + "Description": "This property determines when the widgets should be rendered and data is fetched. The “Always” option will always load the widgets regardless whether the group is expanded. The “When expanded” option can reduce the initial (page) load time, but will increase the load time when expanding the group.", + "IsDefault": false, + "PropertyKey": "loadContent", + "ValueType": { + "$ID": "9d7fb194de604dd9b44fe8c00c21e53d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "always", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "75fcec702c544f6cada2aa490295d69c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "always", + "Caption": "Always" + }, + { + "$ID": "3f99fa6fb72241d28118e1f110efcbf7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "whenExpanded", + "Caption": "When expanded" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "71812e4f60e94d15b78dae49e1e6d63e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Start as", + "Category": "State", + "Description": "", + "IsDefault": false, + "PropertyKey": "initialCollapsedState", + "ValueType": { + "$ID": "acb113a51e1344789572144041f33fdc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "collapsed", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "667b7f8ccb0742919ecd037e86d2312e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expanded", + "Caption": "Expanded" + }, + { + "$ID": "8de17cd22f1f47349b8877d436c371d0", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "collapsed", + "Caption": "Collapsed" + }, + { + "$ID": "8685cf26cff3451cb54cb0c62cca7eb4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "6407eec0890f49fbb12a1b18810a39dd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Start as collapsed", + "Category": "State", + "Description": "", + "IsDefault": false, + "PropertyKey": "initiallyCollapsed", + "ValueType": { + "$ID": "9b9bac64fef04e94825ae2c9562c02f3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": { + "$ID": "6211e801e12a4fb2ad02f03b2bd3b60f", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Boolean" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "8b01afe7bb3244689655ba76fb7721ed", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Collapsed", + "Category": "State", + "Description": "Determines whether the group is collapsed or expanded. The 'Start as' properties override the attribute value for the initial state.", + "IsDefault": false, + "PropertyKey": "collapsed", + "ValueType": { + "$ID": "d9ab3363e019431eb4f0e34818996b37", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Boolean" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "onToggleCollapsed", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "3f2e479194c8401094151d98adbfa072", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On change", + "Category": "State", + "Description": "Executes an action when the 'Collapsed' attribute value changes. Note: the 'Start as' properties can prevent execution of this action when the initial state changes.", + "IsDefault": false, + "PropertyKey": "onToggleCollapsed", + "ValueType": { + "$ID": "88e57b00c1274f56a2971c003d97f76c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "ef723b40e4674cb0a47d2a2bf377a810", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Collapsible", + "Category": "General::Behavior", + "Description": "", + "IsDefault": false, + "PropertyKey": "collapsible", + "ValueType": { + "$ID": "76c23c2ad61e4f738580f001e4907c53", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "171e668971c345ba8dd52d6af515d8e7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Expanded groups", + "Category": "General::Behavior", + "Description": "Allow a single group or multiple groups to be expanded at the same time.", + "IsDefault": false, + "PropertyKey": "expandBehavior", + "ValueType": { + "$ID": "604ded66e66c433dac83d2f74053beb2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "singleExpanded", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "b3dfac4f82324e5ba4af091d74110530", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "singleExpanded", + "Caption": "Single" + }, + { + "$ID": "15e1bbc52f544933ab154ef3b155e40b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "multipleExpanded", + "Caption": "Multiple" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "993ef05849cb4931b58e37b6b9613a97", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Animate", + "Category": "General::Behavior", + "Description": "", + "IsDefault": false, + "PropertyKey": "animate", + "ValueType": { + "$ID": "f517f2969b9b4e408580c9a77087ff9b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "2be7ddcc28174bea87be40d393876a67", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "showIcon", + "ValueType": { + "$ID": "30099e4fb3884901ab204f02b7a1964e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "right", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "05c6e7f40f334d5591cc35bc8f86e5d4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "right", + "Caption": "Right" + }, + { + "$ID": "7699bb8048c2478284440e88c18a6907", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "left", + "Caption": "Left" + }, + { + "$ID": "fbebe833ec5b4a379a44035c0a1f14e7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "no", + "Caption": "No" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "4124118fc17f40f488f2a4348ae5e7f7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "icon", + "ValueType": { + "$ID": "135d6dae1a5a49d6b57f20d3d9e1f666", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "e667f977e59740699af8ba663fe783e5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Expand icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "expandIcon", + "ValueType": { + "$ID": "82a42970e63148a4b9f0ea30d7a00dcb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "3877992a51ed40c581cce1015fe275cf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Collapse icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "collapseIcon", + "ValueType": { + "$ID": "c33afcfe38e54bd8a82e8af529fd6538", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "9f96f046d0c647dcb2b581d868608032", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Animate icon", + "Category": "Visualization::Icon", + "Description": "Animate the icon when the group is collapsing or expanding.", + "IsDefault": false, + "PropertyKey": "animateIcon", + "ValueType": { + "$ID": "9acf8e3196464786bfc7c055d5bd7497", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Structure", + "StudioProCategory": "Structure", + "SupportedPlatform": "Web", + "WidgetDescription": "Toggle the display of sections of content.", + "WidgetId": "com.mendix.widget.web.accordion.Accordion", + "WidgetName": "Accordion", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "c78a3f6d33804cb489462308a1d48363", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "ea6d01f4cedf441d9d0c6e56b6471f40", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a9fe20a3479c4c2492c01a7d0116f807", + "Value": { + "$ID": "ea08587d862a45438a6338673b3ed374", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6a25acd769604acaaf83784c526cbdf5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a44b5dec4c054cf18cb8b6679516f095", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b2ac3097de134b81ba5d252e786f431e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "8eb08fd0127a47728ed894189e2afd86", + "Value": { + "$ID": "131de340a2cf4969bdbc5889459de568", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0d9bb2e0e7d64a988eb5ef48aa3df1b5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "20c082654b22478eb963f1e86ccf560c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7d834a6cb4b94039a2b00de1b4339aa2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ef723b40e4674cb0a47d2a2bf377a810", + "Value": { + "$ID": "1caf5918ab9d4a0b8f88803f124f4f1f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3091d8a41c4e45ec98ecc643636bf565", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "76c23c2ad61e4f738580f001e4907c53", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a0eb4161f0f641798c7d339a2c726ae2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "171e668971c345ba8dd52d6af515d8e7", + "Value": { + "$ID": "47443d263e064782906f805755cfecb2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d29eb93b52614a43a4dea7441bef1b77", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "singleExpanded", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "604ded66e66c433dac83d2f74053beb2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a8e8d5fd18ae48d482019efe4c9e3ce7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "993ef05849cb4931b58e37b6b9613a97", + "Value": { + "$ID": "b4706b96a1774b5db0757df31d5d7ef9", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "03331c01a13a458294a14e6a226a7521", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f517f2969b9b4e408580c9a77087ff9b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c322671c3ced40679790e03059fa6c20", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2be7ddcc28174bea87be40d393876a67", + "Value": { + "$ID": "9e4f03a5aef640c6950a874177d725ce", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5044c9b6dadc448cb0ca07b9259a3681", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "right", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "30099e4fb3884901ab204f02b7a1964e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "405153c11e364dfd8afe842cc8222c6d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4124118fc17f40f488f2a4348ae5e7f7", + "Value": { + "$ID": "4162a808bef04984a7e3b7d7d0748022", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b3246d9cda074d27807e8ccd2b7b9bcc", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "135d6dae1a5a49d6b57f20d3d9e1f666", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "805fd08b6cd04ae098fe12c5c4aad0aa", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e667f977e59740699af8ba663fe783e5", + "Value": { + "$ID": "e2e316b7680b4a44843cc17db7ab1b1b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4d5fd1c9d3224a31b17c57c2718933f3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "82a42970e63148a4b9f0ea30d7a00dcb", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bfdc75bae7e9478ca885cc63922ad9bc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3877992a51ed40c581cce1015fe275cf", + "Value": { + "$ID": "856da36f92fc48e69c2c507502277f35", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5a8b8acc5d3a4531a32a665eeac37442", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c33afcfe38e54bd8a82e8af529fd6538", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e5e098a06b244badbd09c24367544352", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9f96f046d0c647dcb2b581d868608032", + "Value": { + "$ID": "02ad5d9e26cf4a91a5c9f0cb85a17582", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "dae94c4ac34e4dd3bc6eb46b83685fd5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9acf8e3196464786bfc7c055d5bd7497", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "2bf34ced5aa64585bee73194224b2fd8" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/areachart.json b/sdk/widgets/templates/mendix-11.6/areachart.json new file mode 100644 index 00000000..5cdfdc99 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/areachart.json @@ -0,0 +1,2955 @@ +{ + "widgetId": "com.mendix.widget.web.areachart.AreaChart", + "name": "Area chart", + "version": "11.6.4", + "extractedFrom": "fc805e44-3c87-436c-836a-0695e63d24d5", + "type": { + "$ID": "ab4d5280d82b4bc682e95ba8e23572d1", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "", + "ObjectType": { + "$ID": "042daa8b3fc84137888feed6bbb26049", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "fedae3140aac4f0c82c93119092d1aa8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Series", + "Category": "General::Data source", + "Description": "Add series and configure their properties", + "IsDefault": false, + "PropertyKey": "series", + "ValueType": { + "$ID": "cf44f20c7a3944a181bf17056ff74eda", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "5cea1433acad4d108414ed7566e70efb", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "a4bd4aa487c24e90bf61c1e935a9cd0d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data set", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dataSet", + "ValueType": { + "$ID": "eefaea7cd80b43b681eff1457cc1d083", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "61f394ad083240cca1dcac2f7d0c6490", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Single series" + }, + { + "$ID": "e9867aebba214a3d93f61bcdb97fd530", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Multiple series" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2f66685007334216a72e1e9f52ee1ec9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "General", + "Description": "Data points for a single series.", + "IsDefault": false, + "PropertyKey": "staticDataSource", + "ValueType": { + "$ID": "ace704e42f9b41e6b41f98919885eb2b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "5ed251064e124f49a040098ba4a8047b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "General", + "Description": "Data points for all series which will be divided into single series based on the Group by attribute value.", + "IsDefault": false, + "PropertyKey": "dynamicDataSource", + "ValueType": { + "$ID": "fa83898c1ddc4c58bb834c112d6d5758", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "8d7ac0615f3e42b6bd81c820b358132f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Group by", + "Category": "General", + "Description": "Data points within the same group form one series.", + "IsDefault": false, + "PropertyKey": "groupByAttribute", + "ValueType": { + "$ID": "602dcba63fa94622b34534b8b028259b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String", + "Boolean", + "DateTime", + "Decimal", + "Enum", + "HashString", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "879ae0ff97fb4859a701a114a9846278", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Series name", + "Category": "General", + "Description": "The series name displayed in the legend.", + "IsDefault": false, + "PropertyKey": "staticName", + "ValueType": { + "$ID": "3c09ab70d0c64bddb82598f916a883a5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "3a6a695994744a47b55fd044e5e3ed46", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Series name", + "Category": "General", + "Description": "The series name displayed in the legend.", + "IsDefault": false, + "PropertyKey": "dynamicName", + "ValueType": { + "$ID": "339ba5d034164019aa39d21a72580c86", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "5b31bc9abb554a1bab9d2c0c345809b6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "X axis attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticXAttribute", + "ValueType": { + "$ID": "5a8e2737d1464be39c71091247e318f1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String", + "Enum", + "DateTime", + "Decimal", + "Integer", + "Long", + "AutoNumber" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "d669b4fb46164ad988b591341fc8229c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "X axis attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicXAttribute", + "ValueType": { + "$ID": "86e749e601be4e1ab93651fdf120413e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String", + "Enum", + "DateTime", + "Decimal", + "Integer", + "Long", + "AutoNumber" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "6136b8bf95764eef9a175166d4e6cb0e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Y axis attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticYAttribute", + "ValueType": { + "$ID": "7cb187c8c3e84194a056f10ffc038ee2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String", + "Enum", + "DateTime", + "Decimal", + "Integer", + "Long", + "AutoNumber" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "35e0a17b76c24b3191283cb557a90e3e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Y axis attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicYAttribute", + "ValueType": { + "$ID": "b72c9aabe1174d978497234814718e15", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String", + "Enum", + "DateTime", + "Decimal", + "Integer", + "Long", + "AutoNumber" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "571814c218a34ad1b42e1fdb6af425f7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Aggregation function", + "Category": "General", + "Description": "Defines how data is aggregated when multiple Y values are available for a single X value", + "IsDefault": false, + "PropertyKey": "aggregationType", + "ValueType": { + "$ID": "df2dfba21c714ff49c5f30d117e2a05f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "none", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "40e7c39ca12f4d0ab67579f68e0177e5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "none", + "Caption": "None" + }, + { + "$ID": "833a077cb2de432ea9ac2f7227c4c08c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "count", + "Caption": "Count" + }, + { + "$ID": "8434e1ed67bc41c7beeb9bdfd9eb0cb0", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "sum", + "Caption": "Sum" + }, + { + "$ID": "4a21802b0a944e59b7844e1c072b728d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "avg", + "Caption": "Average" + }, + { + "$ID": "2ee8163106204e61b0e96c33b91524b7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "min", + "Caption": "Minimum" + }, + { + "$ID": "c187b7f8896844189731bbb237851186", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "max", + "Caption": "Maximum" + }, + { + "$ID": "dbcc89ceccaa4852ab6ed8ab8905d879", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "median", + "Caption": "Median" + }, + { + "$ID": "d2f20d5cc4e44197be4d752cfc99ecf0", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "mode", + "Caption": "Mode" + }, + { + "$ID": "cf247af9731445608a212ccb36601b49", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "first", + "Caption": "First" + }, + { + "$ID": "55742a4ca6774e039f4ab6a0fd82c646", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "last", + "Caption": "Last" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "5155e4350e85492bb69318de5d766310", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip hover text", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticTooltipHoverText", + "ValueType": { + "$ID": "47c5dfffd5ee4bf19d8bf1cf61287318", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "a6920725d2534918a4314bba2199ac6d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip hover text", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicTooltipHoverText", + "ValueType": { + "$ID": "a9716315fb0e49d9beed3c9fa740b2f4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "faae07e613b44c8b82cc205a0cea04dc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Interpolation", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "interpolation", + "ValueType": { + "$ID": "ce80a39d87aa475cbf814dc643555224", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "linear", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "d44ac31245be47288c485f8f3897084a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "linear", + "Caption": "Linear" + }, + { + "$ID": "904c71db2d914e60bfc167a8b1849cee", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "spline", + "Caption": "Curved" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "41cc26b947c843ceb604bddf48c7343d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Line style", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "lineStyle", + "ValueType": { + "$ID": "192c0397df9e4747909d84686bc1c4c5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "line", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "f8526ce38bd041bf963b8cbfdc9a116b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "line", + "Caption": "Line" + }, + { + "$ID": "38535bd9cb034c868f15f611af747d8c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "lineWithMarkers", + "Caption": "Line with markers" + }, + { + "$ID": "ce26d05e416c466dbb70d0c72ed3041f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "d23be6a811fb4f488a8bcc74efa13095", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Line color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticLineColor", + "ValueType": { + "$ID": "6ac13cbf8cb54ec081ebc7c670bc16c9", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "941458377dc241e6ab081cd0a98731bd", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "e156f1bacf364f74994d1502a7df06a3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Line color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicLineColor", + "ValueType": { + "$ID": "74e4904f6ed243e59798ae82ac10de78", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "939ada0836e64121af0d04f9aceb5ea1", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "98cd727eeeac469890f108d714d760bf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMarkerColor", + "ValueType": { + "$ID": "fe4703dd26db44edb969d623e08a1e1b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "b921cf8881c640c79c3baafb2f0a9667", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "b94d53c6eca947978252e122c1e6d56d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicMarkerColor", + "ValueType": { + "$ID": "cd3f8c06052947f39325fa7089aa4eab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "43a6b311e65c4df58b2037ba9b806bf4", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "01318629ea34460a9c1f9cb4b8c77e90", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Area fill color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticFillColor", + "ValueType": { + "$ID": "7e539f3902eb4bbfbc68e99d7e53e0db", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "90288070052240f0a0fd10a699cea5db", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "3692299be0f84548826d8527103ca308", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Area fill color", + "Category": "Appearance", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicFillColor", + "ValueType": { + "$ID": "fc33bef18de04bb48eb3aee39409e126", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "a160790f8d6846aabe739386d44a0c5b", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "9dd98b2525b84538aefc592db751e71e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click action", + "Category": "Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticOnClickAction", + "ValueType": { + "$ID": "678c084838524e1b82b9710c334eeb40", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "staticDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "4b227e4811904f66a686e07b53fa7534", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click action", + "Category": "Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicOnClickAction", + "ValueType": { + "$ID": "4b00fda13576461ead53d8a9f918033f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "dynamicDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "bd68452195c7481d82b1edd80e4ea219", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom series options", + "Category": "Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "customSeriesOptions", + "ValueType": { + "$ID": "90c602035b0d48b6b3eb14f60dcca788", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "10dd3cb022b14a5fbca85e92a449c2db", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "enableAdvancedOptions", + "ValueType": { + "$ID": "1715cc01641f4372889ba3dbaa7d75f3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "7f4487f2d5eb4b7fa1bbafa30b3da770", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show playground slot", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "showPlaygroundSlot", + "ValueType": { + "$ID": "d7ca3668c6374353b4fdd45e689e25f6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "df01fb30535d4117b3101670afb04356", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Playground slot", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "playground", + "ValueType": { + "$ID": "fde93bf882004e179fbe9deb1bddb743", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "90fdcbfd8bc84bb792881c9487c0832a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "X axis label", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "xAxisLabel", + "ValueType": { + "$ID": "d0176fa0f7854e7db7e853876c4c5a63", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "19dfa60ef1d44c9ca808da9ec9ae02d3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Y axis label", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "yAxisLabel", + "ValueType": { + "$ID": "1e24e31f1de442d9ba308a5826d73613", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "dffa95d3eb2d468bb5f0e94e90817065", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show legend", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "showLegend", + "ValueType": { + "$ID": "61bcb80b560147bb93e365657197cffe", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "ad533e816cd4469e89d995ecefca848f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Grid lines", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "gridLines", + "ValueType": { + "$ID": "cf118a4bd6f8494cb4e3c207b20d29b0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "none", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "39463fb030b14b0890ecda06773308c4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "none", + "Caption": "None" + }, + { + "$ID": "067fc0ecfa234a47bef15ca657c0c232", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "horizontal", + "Caption": "Horizontal" + }, + { + "$ID": "9d7dc52a596b4c76971841ac94fd9519", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "vertical", + "Caption": "Vertical" + }, + { + "$ID": "c01f12f9701a44e0b0c1e480438997f4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "both", + "Caption": "Both" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "0d416fd63d9d4e7a86b3f3e22046de56", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "61a935d77e544db9801627eaf44c0a02", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "24a9fb62fcea42278c9df925f9bf22e7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "997e1dec54634424afdbef91b2fe3837", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "da3af3b1823740d2b26f59fc1bc967b0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "a314f8fd263c4697be3895f2ee3e162f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "d8cdac67ab3b458e9a37dc82fdc7c30a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width unit", + "Category": "Dimensions::Dimensions", + "Description": "Percentage: portion of parent size. Pixels: absolute amount of pixels.", + "IsDefault": false, + "PropertyKey": "widthUnit", + "ValueType": { + "$ID": "0f687b57d2664cdc89d66d8d15eb168e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "16397fc4e1104fb4b8c6250a298f6a25", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "695c47d908f84e65b4f544779a8934ce", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "5443235e93614619a5fcac8a84185b9d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "width", + "ValueType": { + "$ID": "217d8baf7a4e4f83bf973f6ccacf95cc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "70bd0d33a9e74c36bf12292c295166bb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "a8417a2956bb4247b1d6a8609cf856db", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentageOfWidth", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "1506ef7bb5474a07b53d638eb24da920", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfWidth", + "Caption": "Percentage of width" + }, + { + "$ID": "46b3ab8394834a3da28196dfda1fd228", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + }, + { + "$ID": "27908550accb4c518eef3ea029a90518", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfParent", + "Caption": "Percentage of parent" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "c8be0326e0cd4172b68b0e8521093a20", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "f96cfbeaca6d419891e0d19af12b4f16", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "75", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "ebfad7c5e2014b03856118defb896a46", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable theme folder config loading", + "Category": "Advanced::Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "enableThemeConfig", + "ValueType": { + "$ID": "55dc3d0b9eea4fada252f837662b1fc7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "149963d338614d498337045df37250fc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom layout", + "Category": "Advanced::Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "customLayout", + "ValueType": { + "$ID": "cad8dcf6d87f4cde8848455b239b1db7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "554b34b35355425f904dba7559a4d734", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom configurations", + "Category": "Advanced::Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "customConfigurations", + "ValueType": { + "$ID": "2338a487dc594f1caa8c7b1505cd0733", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Charts", + "StudioProCategory": "Charts", + "SupportedPlatform": "Web", + "WidgetDescription": "Create an area chart", + "WidgetId": "com.mendix.widget.web.areachart.AreaChart", + "WidgetName": "Area chart", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "c90426f7a2ce40cfbef83ab818395488", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "a9ebb83e0e334c188b0824ce847f6aa2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fedae3140aac4f0c82c93119092d1aa8", + "Value": { + "$ID": "8ece006822d641dc89fba968f58e3be9", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "92524cbb96354b14a0edd00b7f5f8708", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cf44f20c7a3944a181bf17056ff74eda", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c6e617f8330f4310977d918d6c75644d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "10dd3cb022b14a5fbca85e92a449c2db", + "Value": { + "$ID": "8a7869dc5e9e49baa2e9dd14f80c2f71", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ef37d6b28b2842ae82e631b04adf66d1", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1715cc01641f4372889ba3dbaa7d75f3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b69ec8bef8a94735b7a0b416b5db9cdc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "7f4487f2d5eb4b7fa1bbafa30b3da770", + "Value": { + "$ID": "46a2bc885fe746f581411c6cf56780cf", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "59e237222f8845d8a3eaccd93a616451", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d7ca3668c6374353b4fdd45e689e25f6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f76451a4008d4d0aaf2e5c9ca685a008", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "df01fb30535d4117b3101670afb04356", + "Value": { + "$ID": "e597d50a36ac450c8dcbe47328a797be", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "9f2eb0e4153049309f3da755a7806b61", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fde93bf882004e179fbe9deb1bddb743", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2816d75aab6e4a3e996c0905a97f8be0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "90fdcbfd8bc84bb792881c9487c0832a", + "Value": { + "$ID": "1d67eb2eabdd44e0b61953dcfd280f54", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1896a289d8144681a580c179e20fecc6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "d5b702ebc99a497db72e271c471f3ffa", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "88946a9b63304ff0b7981124a371b840", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "c94143fe86fb46febf0355436d88069e", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "d0176fa0f7854e7db7e853876c4c5a63", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "0451022872cd43888af6e409918861f9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "19dfa60ef1d44c9ca808da9ec9ae02d3", + "Value": { + "$ID": "011819fb1b2d4dad9e388ee831359c6c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7ae79af30f5847dda02a001caad1a772", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "81b4566045f24392afdac6e492a30748", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "6fc3a62c0f064636b0ba1599fbad963f", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "fec14758a14246189ecf98ab9742e17a", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "1e24e31f1de442d9ba308a5826d73613", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "139f2d99550447e0ad4670d58271ce94", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "dffa95d3eb2d468bb5f0e94e90817065", + "Value": { + "$ID": "26717a29961e4edd80c76af5f10ec91d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4313dd812f3047b3ace3399c7f699187", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "61bcb80b560147bb93e365657197cffe", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1de0c7861307459d84e187c350aaed82", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ad533e816cd4469e89d995ecefca848f", + "Value": { + "$ID": "56d91fe3775b44b5927720ca18ab32e0", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "391235c6f6ef49ee8aebe05e073cb05b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "none", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cf118a4bd6f8494cb4e3c207b20d29b0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f19e5c9396f947aaa713ffdc9682176d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d8cdac67ab3b458e9a37dc82fdc7c30a", + "Value": { + "$ID": "9f78747affe64e889e446929c7ff1bb8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0d51c38d12b24571947f8888ddafb14f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0f687b57d2664cdc89d66d8d15eb168e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9c77c9fbf2694642984768a7b4d20fee", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5443235e93614619a5fcac8a84185b9d", + "Value": { + "$ID": "87c1e023f64645c1959c604d222f13df", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c65f2655c1e54b349d0de217c537a17a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "217d8baf7a4e4f83bf973f6ccacf95cc", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "27300dc4840b42e3a2f82a2dc6621a55", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "70bd0d33a9e74c36bf12292c295166bb", + "Value": { + "$ID": "ebadb1609676489e9a6cb8319388079e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1bbbd8f212274b38bf4bf1d37adfcc66", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentageOfWidth", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a8417a2956bb4247b1d6a8609cf856db", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e96d0262d9c84f1e871bf812c5c9e998", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c8be0326e0cd4172b68b0e8521093a20", + "Value": { + "$ID": "6a458576677644638c86a88220f5f88a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "53d32b8fdd8049a9b369d9a5d00e5abe", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "75", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f96cfbeaca6d419891e0d19af12b4f16", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7724ce0f2c3049579a5950a3a3319bf6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ebfad7c5e2014b03856118defb896a46", + "Value": { + "$ID": "5d65e20eff954595bbd35856edef432a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "11600880dc5f4144850a33c2fc3e8e99", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "55dc3d0b9eea4fada252f837662b1fc7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9006fe0941d54787adff5b7b658178d6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "149963d338614d498337045df37250fc", + "Value": { + "$ID": "f1cba8f0a145433a882ae3da51e09cef", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b61f2e6a05de4aeea39c5afcab9a81f7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cad8dcf6d87f4cde8848455b239b1db7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "38344dead414494eb6e937f4e92609eb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "554b34b35355425f904dba7559a4d734", + "Value": { + "$ID": "c562556ec98e420e8836d99e51401d81", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0e9a2aa87f5145a88614c20910c5c1fe", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "2338a487dc594f1caa8c7b1505cd0733", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "042daa8b3fc84137888feed6bbb26049" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/badge.json b/sdk/widgets/templates/mendix-11.6/badge.json new file mode 100644 index 00000000..ffad45d1 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/badge.json @@ -0,0 +1,499 @@ +{ + "widgetId": "com.mendix.widget.custom.badge.Badge", + "name": "Badge", + "version": "11.6.4", + "extractedFrom": "83cca78d-22db-42ca-b240-96bab87b5ea6", + "type": { + "$ID": "9e274f783a54436bad1999dd95a9f280", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/badge", + "ObjectType": { + "$ID": "1384bec123534199b6b0b2ea035a3179", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "555856bea9d141c7aadaf23df5eb80e1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Type", + "Category": "General::General", + "Description": "Render it as either a badge or a color label", + "IsDefault": false, + "PropertyKey": "type", + "ValueType": { + "$ID": "d54f16a9d6f54bd8b451e06a038e255c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "badge", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "5cf56a2cf8a24cb6979ddb96c879dea9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "badge", + "Caption": "Badge" + }, + { + "$ID": "866da99cec274b4fb63f1cb4295a30ce", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "label", + "Caption": "Label" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "6b20222dc8b941ddb107017f6a2bc754", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "value", + "ValueType": { + "$ID": "0a6295c8d8c1412d9095030900e26c43", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2, + { + "$ID": "80a64a52993c4d2ba148a8432cb87730", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "en_US", + "Text": "Badge" + }, + { + "$ID": "f6899968c8db440294eb62f820d8c54d", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "nl_NL", + "Text": "Badge" + } + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "e65c75abcd714e5d88a74763e9dee6f7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "General::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClick", + "ValueType": { + "$ID": "0d3b0d6a38f0447f9269e9c550e5ae5b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "0c671ff171fd4d16b6821397fcae867f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "df23e99e1c0d4edca524d37d36f592bb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "f34490489f28491494f916246e5530b9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "8ebcf1b818a24d0e84c5d0be34ae0669", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "d59047a500454ca5a68dc0afe9589465", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "42127cc7083640dcbb24f1fd1b8b252e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.custom.badge.Badge", + "WidgetName": "Badge", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "b191758d8ae74dc5be25ef1e513857af", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "5575e33caa0f4dc691f9a36f850681ed", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "555856bea9d141c7aadaf23df5eb80e1", + "Value": { + "$ID": "e39bcff97aaa43e8a078c07fddaba388", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "68b2569f32444e6b94060b7dfea64452", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "badge", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d54f16a9d6f54bd8b451e06a038e255c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "72b1ec8f57bc4fa7997a74dced005023", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6b20222dc8b941ddb107017f6a2bc754", + "Value": { + "$ID": "d83bd4805716412ead67c45d28a6a976", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "fd02c1b48e094a09bb0d41779a8592dd", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "235dffc822594a1f87de620cba444de7", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "882b5aab868845c28636d4209263cfe3", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "ea91ce0f03bd4a1797d0be4c226e7c4b", + "$Type": "Texts$Text", + "Items": [ + 3, + { + "$ID": "85c46a6a2fbb4b289c16dd07643875b6", + "$Type": "Texts$Translation", + "LanguageCode": "en_US", + "Text": "Badge" + }, + { + "$ID": "21ffe4bd98c4413ab3e23c48e2b38082", + "$Type": "Texts$Translation", + "LanguageCode": "nl_NL", + "Text": "Badge" + } + ] + } + }, + "TranslatableValue": null, + "TypePointer": "0a6295c8d8c1412d9095030900e26c43", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "38e37b0f97664122820f2716c5edac92", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e65c75abcd714e5d88a74763e9dee6f7", + "Value": { + "$ID": "a2a9801284f54255a12603db83e5eab5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e45b19238900441896af6f6f41fc1da6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0d3b0d6a38f0447f9269e9c550e5ae5b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "1384bec123534199b6b0b2ea035a3179" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/badgebutton.json b/sdk/widgets/templates/mendix-11.6/badgebutton.json new file mode 100644 index 00000000..e95d1d3f --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/badgebutton.json @@ -0,0 +1,507 @@ +{ + "widgetId": "com.mendix.widget.custom.badgebutton.BadgeButton", + "name": "Badge button", + "version": "11.6.4", + "extractedFrom": "d7f00fd7-1453-4eb8-ac89-0dcd71afafec", + "type": { + "$ID": "831b978fab204e66875cabc5353f9312", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/badge-button", + "ObjectType": { + "$ID": "759eac27ace6401abdb5b40368866420", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "eae62503898249b7a69d806c129bb870", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Caption", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "label", + "ValueType": { + "$ID": "0aa399c331e940bc8f4ad40fb03af4bb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2, + { + "$ID": "8e4035abba434c43a4f69044e493c9aa", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "en_US", + "Text": "Button" + }, + { + "$ID": "52446bf832d8440b8b3049e29709ed71", + "$Type": "CustomWidgets$WidgetTranslation", + "LanguageCode": "nl_NL", + "Text": "Knop" + } + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "855e856443ba4b4e93b8d2b7c4d0c040", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "General::Badge", + "Description": "", + "IsDefault": false, + "PropertyKey": "value", + "ValueType": { + "$ID": "91e1594dd5324ffd8059c63212cddf7e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "8a8a7ef4dbf64e509361bc3f22692cab", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "883fdaed681542ba998cb4cea46b26fc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "58f30ec22b8549a097dc2821bd5b7027", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "General::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClickEvent", + "ValueType": { + "$ID": "598dcf467ad742eab225dc7dded7d701", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "b0fc71c80db842d59f4f763e2b9b7061", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "6c03b03dad20496fb61032bfafba222a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "bcad1f889c184dc5a2b36423aa9f6223", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "fb58e400ce6249c190cfeec46f3e214c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Buttons", + "StudioProCategory": "Buttons", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.custom.badgebutton.BadgeButton", + "WidgetName": "Badge button", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "0075f56f65c445119c969b92bebebfe3", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "dc6f1bc49b0a4050918c70c8af872848", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "eae62503898249b7a69d806c129bb870", + "Value": { + "$ID": "5bee9ae3cf894b6eaf2913a6594330d8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2903bc0c851940d1a800ab599c66129c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "e3b39d0a093b4cb5a826ab7b892f6880", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "db22afe546be4cf6882fe99b570fe4b1", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "5d57ddde262a4497a180af3dadc507d6", + "$Type": "Texts$Text", + "Items": [ + 3, + { + "$ID": "8c3897cb2f414139a642edb711c3a144", + "$Type": "Texts$Translation", + "LanguageCode": "en_US", + "Text": "Button" + }, + { + "$ID": "1ac06c1b86054a3db0ea1c61629b83c6", + "$Type": "Texts$Translation", + "LanguageCode": "nl_NL", + "Text": "Knop" + } + ] + } + }, + "TranslatableValue": null, + "TypePointer": "0aa399c331e940bc8f4ad40fb03af4bb", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "509a8b3b9a614ee0bf60bab6ca72a23f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "855e856443ba4b4e93b8d2b7c4d0c040", + "Value": { + "$ID": "e5294180853045b49ad901ed22124404", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a18939cf12c749a5be7d9e3002912c12", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "636016df8b9f4d15b4f2d04095e7b8a0", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "1b9ee95feb56478b9320a53eb0e173c4", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "070c286b6a2846b98452439a37911821", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "91e1594dd5324ffd8059c63212cddf7e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "dcf17972ca554ac9b4941be6e4c41972", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "58f30ec22b8549a097dc2821bd5b7027", + "Value": { + "$ID": "dda00f61c34344e8b916aaf7e677acb9", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6d996a12fec04d01875f9b4da31546da", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "598dcf467ad742eab225dc7dded7d701", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "759eac27ace6401abdb5b40368866420" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/barcodescanner.json b/sdk/widgets/templates/mendix-11.6/barcodescanner.json new file mode 100644 index 00000000..08ec2683 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/barcodescanner.json @@ -0,0 +1,1166 @@ +{ + "widgetId": "com.mendix.widget.web.barcodescanner.BarcodeScanner", + "name": "Barcode Scanner", + "version": "11.6.4", + "extractedFrom": "2b7fdb72-6eb1-454d-a802-5aba764b77aa", + "type": { + "$ID": "0da65cbde2944091ac27bbd4ed8407f9", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/barcode-scanner", + "ObjectType": { + "$ID": "0dfe60a187464140b0d34505b18d3cfd", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "3a0f0fb474db4bddb20891d47de45932", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Scanned result", + "Category": "General::General", + "Description": "The String attribute used to store the result of the scanned barcode.", + "IsDefault": false, + "PropertyKey": "datasource", + "ValueType": { + "$ID": "952eed9ce6c04716b07e8eedebf84d7c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "75a181b291ab421989dc541b1577bb15", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show barcode mask", + "Category": "General::General", + "Description": "Apply a mask to camera view, as a specific target area for the barcode.", + "IsDefault": false, + "PropertyKey": "showMask", + "ValueType": { + "$ID": "086f6704d5524de7b49bdd02247b93b6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "7da17500358a43f5a932236173fbbd03", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Use all barcode formats", + "Category": "General::General", + "Description": "Scan for all available barcode formats", + "IsDefault": false, + "PropertyKey": "useAllFormats", + "ValueType": { + "$ID": "d535e99996024a6b9c7a8c688637079d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "099018a4ba2a44119b10880c75cd2404", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enabled barcode formats", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "barcodeFormats", + "ValueType": { + "$ID": "3837318200964fd69cb4fd1666591d43", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "c42e7d5225084b4e931b5cc13203590a", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "674396265d274d6ca685f9b4c3c70709", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Barcode format", + "Category": "Object list group", + "Description": "Barcode format which should be recognized by the scanner", + "IsDefault": false, + "PropertyKey": "barcodeFormat", + "ValueType": { + "$ID": "d9fdb39a4e1142628d2bf4a04abed200", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "AZTEC", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "96ba85a7621e42d1b46640c9f699edd7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "AZTEC", + "Caption": "Aztec" + }, + { + "$ID": "e37627e8b669466785603ea70d712ec5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "CODE_39", + "Caption": "Code 39" + }, + { + "$ID": "f2b8479601d84db09374b2658e6fc426", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "CODE_128", + "Caption": "Code 128" + }, + { + "$ID": "aeefdcb0fd8046329339adf0c21470be", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "DATA_MATRIX", + "Caption": "Data Matrix" + }, + { + "$ID": "b2edeaa9e4ba4c37a09ff25f7e3a0786", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "EAN_8", + "Caption": "EAN-8" + }, + { + "$ID": "52dae29c49984e1dac71b40e32e1a24e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "EAN_13", + "Caption": "EAN-13" + }, + { + "$ID": "f15401313339418fa8a45f49f8bc911d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "ITF", + "Caption": "ITF" + }, + { + "$ID": "42c7d087b51340bb9d9372240bc4f3b2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "PDF_417", + "Caption": "PDF 417" + }, + { + "$ID": "3dc754d497274822847a18130dd5dcf6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "QR_CODE", + "Caption": "QR Code" + }, + { + "$ID": "390bd3b225e346da8d986aec4d46b6b4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "RSS_14", + "Caption": "RSS-14" + }, + { + "$ID": "b75a33ab8bfb400988a8a001aae3cf5e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "UPC_A", + "Caption": "UPC-A" + }, + { + "$ID": "a13092698b924e7ea8e04455f604bec4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "UPC_E", + "Caption": "UPC-E" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "22299ce7299d4fd9a480d6b3979336eb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On detect action", + "Category": "General::Events", + "Description": "Action to trigger when the barcode has been successfully detected.", + "IsDefault": false, + "PropertyKey": "onDetect", + "ValueType": { + "$ID": "192e8584113a4fad828ff361b85edd33", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "21ae491b404b4a21921d0044bcac6f2b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "6a34b2c7727143fa8a4399c966070aa5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "85228b50c51b4dc68eace21d461fd7a1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "811a93307e044714a7461b76ea06810a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "1bce78118ca041539fbbea0c3d5a18fd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width unit", + "Category": "Dimensions::Dimensions", + "Description": "Percentage: portion of parent size. Pixels: absolute amount of pixels.", + "IsDefault": false, + "PropertyKey": "widthUnit", + "ValueType": { + "$ID": "63e15d123c784fd2b367b3ab68863fb1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "3a79fb42dd304dd6be050dacea0de0d5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "36537ec83bef43009429fd7fcc10f164", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "dadbf80510c941e1851f14396a78f611", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "width", + "ValueType": { + "$ID": "051313616e564aa58390712dd00d6738", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "278e6f88ca5346dd883fcbd810fe8bd6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "2e634983564149b0b32a8a3f4f700528", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentageOfWidth", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "ab858fb381f04c2cb4a3632699552248", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfWidth", + "Caption": "Percentage of width" + }, + { + "$ID": "9b75da9d924442d0843d24a4b1025d98", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + }, + { + "$ID": "4707ef93256046b8a2776b385ecf7111", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfParent", + "Caption": "Percentage of parent" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "aac7b8dcc985401e84342fde5eb1b9bf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "e79701ff57fe4747b903c4696d6333d3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "75", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "21d8dde252ac497b9244c7191f8a14fc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Detection logic", + "Category": "Advanced", + "Description": "Choose the detection logic to use for barcode scanning.", + "IsDefault": false, + "PropertyKey": "detectionLogic", + "ValueType": { + "$ID": "30992c2695654242b6b27bfc63e30f00", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "native", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "1fe4fb05f8fb4ab083601270e4efa373", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "zxing", + "Caption": "ZXing" + }, + { + "$ID": "0e09eaca0dc043529fb1f959eac8b03a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "native", + "Caption": "BarcodeDetector API (experimental fast scan, fallback to ZXing)" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Images, Videos & Files", + "StudioProCategory": "Images, videos & files", + "SupportedPlatform": "Web", + "WidgetDescription": "The widget lets you scan a barcode", + "WidgetId": "com.mendix.widget.web.barcodescanner.BarcodeScanner", + "WidgetName": "Barcode Scanner", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "0c784a92e130406d8a5bd4e8ffe44dbb", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "1382914ee022455496db32d018f7bcb2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3a0f0fb474db4bddb20891d47de45932", + "Value": { + "$ID": "ea29b7a948a84d5395f22d0c58401cbc", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "036a2844205f4c0e8a4ce6fa81272202", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "952eed9ce6c04716b07e8eedebf84d7c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5a9082f43aba4c5d80e06c5821bc74d5", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "75a181b291ab421989dc541b1577bb15", + "Value": { + "$ID": "b9314efa2c1d475f89190b95d8549aad", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "57577c3b02b948e3a208fc70ff663d4e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "086f6704d5524de7b49bdd02247b93b6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ad0e645da06e4009b7d6b10a8b36b67a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "7da17500358a43f5a932236173fbbd03", + "Value": { + "$ID": "fbcb5acd5caa48d88c064ffb7b5d2919", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a4e3a19f058a431ab56de832b6ad850a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d535e99996024a6b9c7a8c688637079d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f9c1e1b8afc54913bc80b4e7ef97efa7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "099018a4ba2a44119b10880c75cd2404", + "Value": { + "$ID": "073fd52946c845cb8f61ffe8ca0f7c4d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "df21916323cc4ab79d7ce408ba6908af", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3837318200964fd69cb4fd1666591d43", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "96fc8d3c2f1f416886e7dc3aa37959f7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "22299ce7299d4fd9a480d6b3979336eb", + "Value": { + "$ID": "04fddda5df8e46e09665deeff97a1bf1", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "262f3bedfe49470b96a068eb2ea327e2", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "192e8584113a4fad828ff361b85edd33", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "dd8f4f3f0577422898289d86a7834615", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1bce78118ca041539fbbea0c3d5a18fd", + "Value": { + "$ID": "e26d837e29c14307acc071704d0bf24b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e07fa120047f4ddaaaec746ef977e7af", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "63e15d123c784fd2b367b3ab68863fb1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e08c9f8395e74c969af83f6c7083d3c2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "dadbf80510c941e1851f14396a78f611", + "Value": { + "$ID": "117ab989793c4d72932255b80f678aa7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a2f9ab26b39c4e3589bb62a09b81ad7c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "051313616e564aa58390712dd00d6738", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d8ced11d1f9d4fd496d41fc02e38aa3b", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "278e6f88ca5346dd883fcbd810fe8bd6", + "Value": { + "$ID": "f04160097e174436ba15e6629a79e8af", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "94e636cf112640d9abb51fce2af72bf3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentageOfWidth", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "2e634983564149b0b32a8a3f4f700528", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "cc53d695a8904ed8b1b95a6183e81987", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "aac7b8dcc985401e84342fde5eb1b9bf", + "Value": { + "$ID": "9ad8289f95ca48b7964b6c8723221804", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "9149d1b0e45a4d6c91ba6cd4675d11a3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "75", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e79701ff57fe4747b903c4696d6333d3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e39c83e58cf042a8b9ff7b2ceec4ffd0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "21d8dde252ac497b9244c7191f8a14fc", + "Value": { + "$ID": "33c4e8b1357f42c4b01b024e1609d3df", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "243f6da117e74a9189dd8d63e5603ed9", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "native", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "30992c2695654242b6b27bfc63e30f00", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "0dfe60a187464140b0d34505b18d3cfd" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/datagrid-number-filter.json b/sdk/widgets/templates/mendix-11.6/datagrid-number-filter.json index 14a64213..7bfdb8af 100644 --- a/sdk/widgets/templates/mendix-11.6/datagrid-number-filter.json +++ b/sdk/widgets/templates/mendix-11.6/datagrid-number-filter.json @@ -214,16 +214,16 @@ "Selection": "None", "SourceVariable": null, "TextTemplate": { - "$ID": "dn2b3c4d5e6f700100000000000001a0", + "$ID": "dd2b3c4d5e6f700100000000000001a0", "$Type": "Forms$ClientTemplate", "Fallback": { - "$ID": "dn2b3c4d5e6f700100000000000001a1", + "$ID": "dd2b3c4d5e6f700100000000000001a1", "$Type": "Texts$Text", "Items": [] }, "Parameters": [], "Template": { - "$ID": "dn2b3c4d5e6f700100000000000001a2", + "$ID": "dd2b3c4d5e6f700100000000000001a2", "$Type": "Texts$Text", "Items": [] } @@ -408,16 +408,16 @@ "Selection": "None", "SourceVariable": null, "TextTemplate": { - "$ID": "dn2b3c4d5e6f700200000000000002a0", + "$ID": "dd2b3c4d5e6f700200000000000002a0", "$Type": "Forms$ClientTemplate", "Fallback": { - "$ID": "dn2b3c4d5e6f700200000000000002a1", + "$ID": "dd2b3c4d5e6f700200000000000002a1", "$Type": "Texts$Text", "Items": [] }, "Parameters": [], "Template": { - "$ID": "dn2b3c4d5e6f700200000000000002a2", + "$ID": "dd2b3c4d5e6f700200000000000002a2", "$Type": "Texts$Text", "Items": [] } @@ -458,16 +458,16 @@ "Selection": "None", "SourceVariable": null, "TextTemplate": { - "$ID": "dn2b3c4d5e6f700300000000000003a0", + "$ID": "dd2b3c4d5e6f700300000000000003a0", "$Type": "Forms$ClientTemplate", "Fallback": { - "$ID": "dn2b3c4d5e6f700300000000000003a1", + "$ID": "dd2b3c4d5e6f700300000000000003a1", "$Type": "Texts$Text", "Items": [] }, "Parameters": [], "Template": { - "$ID": "dn2b3c4d5e6f700300000000000003a2", + "$ID": "dd2b3c4d5e6f700300000000000003a2", "$Type": "Texts$Text", "Items": [] } diff --git a/sdk/widgets/templates/mendix-11.6/dropdownsort.json b/sdk/widgets/templates/mendix-11.6/dropdownsort.json new file mode 100644 index 00000000..b8762e43 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/dropdownsort.json @@ -0,0 +1,639 @@ +{ + "widgetId": "com.mendix.widget.web.dropdownsort.DropdownSort", + "name": "Drop-down sort", + "version": "11.6.4", + "extractedFrom": "3e6abfe6-e8c3-4838-b48d-cdd7f8b149ca", + "type": { + "$ID": "b8d2cfee37f041bdb27d0f52e1c441ea", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/modules/gallery#4-1-drop-down-sort", + "ObjectType": { + "$ID": "120d8afba5974cf99e480a01d4d08435", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "f1317b894e584171a81633aa5933dbad", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Datasource to sort", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "linkedDs", + "ValueType": { + "$ID": "cba23601493c447789c45b4f6c4896f9", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": true, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "18e941e4bc844383bfa790bc44a02e55", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Attributes", + "Category": "General::General", + "Description": "Select the attributes that the end-user may use for sorting", + "IsDefault": false, + "PropertyKey": "attributes", + "ValueType": { + "$ID": "9106343841054369a847e4227361ffd2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "e4db6891f0d44c17bc6d89da43e91c44", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "17d9dc1382384ee8b29bf93cb31451a1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "attribute", + "ValueType": { + "$ID": "6ac38d55045f40fda4e9c1716898cb9e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "AutoNumber", + "Decimal", + "Integer", + "Long", + "String", + "DateTime", + "Boolean", + "Enum" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "../linkedDs", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": true, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "8dd13272e9d34c51902fad4a019c7200", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Caption", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "caption", + "ValueType": { + "$ID": "afd5231dcf7f4bba9f29cab873884270", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "7c6936425498455db0dd42a47af5677b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Empty option caption", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "emptyOptionCaption", + "ValueType": { + "$ID": "7cd7cb7785854635bcd4cbebfcce2627", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "7bfb6190781e477ba2b17c8aae1e9b83", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Sort order button caption", + "Category": "Accessibility::Accessibility", + "Description": "Assistive technology will read this upon reaching the sort order button.", + "IsDefault": false, + "PropertyKey": "screenReaderButtonCaption", + "ValueType": { + "$ID": "24868f84769c47fdaad17c819eebabbb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "39aecd9929a341288d999dacf28076c5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Input caption", + "Category": "Accessibility::Accessibility", + "Description": "Assistive technology will read this upon reaching the input element.", + "IsDefault": false, + "PropertyKey": "screenReaderInputCaption", + "ValueType": { + "$ID": "d505fbf7f4144d26b944fbbb3beeca02", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Data Controls", + "StudioProCategory": "Data controls", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.dropdownsort.DropdownSort", + "WidgetName": "Drop-down sort", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "c1b4ad6d38034c52b74aeb8321d63091", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "097120e02eca4ca78fdf848b94c4484e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "f1317b894e584171a81633aa5933dbad", + "Value": { + "$ID": "8b198bf471624db7940bcefef66005d7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8921998978db44bf82a6e8a4d8296fef", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cba23601493c447789c45b4f6c4896f9", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f9c6726497d343259c6ec029c16fa391", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "18e941e4bc844383bfa790bc44a02e55", + "Value": { + "$ID": "9f9855fa934b4ab9be85e68df7e27131", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b5cf12d2ca664a3a9347991da7095b1b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9106343841054369a847e4227361ffd2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "71777e7b80a6489a910d127dafd81011", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "7c6936425498455db0dd42a47af5677b", + "Value": { + "$ID": "32f3f1b2257f4c2796ff09844df4ee65", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3e8d720c804b4073bd8c6c1c4fc6e72d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "002d5e7109054cceb5b89ebb55290a0e", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "0d7965479ba34d85b87a7f13f092d38e", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "e4a06a73e1154e78adc9d60429f59ca8", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "7cd7cb7785854635bcd4cbebfcce2627", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7ad2f4ea70064eb5bf3714e96e71f827", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "7bfb6190781e477ba2b17c8aae1e9b83", + "Value": { + "$ID": "c089d516ebdf4f87b40b75cfe2e9a3fb", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6a30f33b302f4037a5abc986fe5efff2", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "df3430a3658a44f68640966c1df833e2", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "02f7fb8b26aa4c14beb2d2424d3e9f0f", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "8080d89f48c04b07ad59ce605010f4fb", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "24868f84769c47fdaad17c819eebabbb", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "919216cc133d4a5ab1dc19789bee5b40", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "39aecd9929a341288d999dacf28076c5", + "Value": { + "$ID": "8dd70193e57a4613b7580425a9266718", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "72275b3561484e39a4de1ae0cf4a2286", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "663075078d7b4d6fa11824b14ce9a66a", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "3f91a97ea8de4532a4bdc80681fad4a9", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "bbd4b555ca4e45189d3dbe7e272d4933", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "d505fbf7f4144d26b944fbbb3beeca02", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "120d8afba5974cf99e480a01d4d08435" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/fieldset.json b/sdk/widgets/templates/mendix-11.6/fieldset.json new file mode 100644 index 00000000..cc4b7158 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/fieldset.json @@ -0,0 +1,377 @@ +{ + "widgetId": "com.mendix.widget.web.fieldset.Fieldset", + "name": "Fieldset", + "version": "11.6.4", + "extractedFrom": "c7be9537-45f5-45aa-92fc-ed052b6bc496", + "type": { + "$ID": "57f63fba7eed476ca88ec2a7a111615a", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/fieldset", + "ObjectType": { + "$ID": "5b8c60c42faa4be6b21a505fe61ab011", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "30701ee7121e4b00b8e989357cc518f1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Legend", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "legend", + "ValueType": { + "$ID": "61a0d2eb60e54d4eb5531cda780f8527", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "cb9f346f01e242ac99e160e81301e58c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "content", + "ValueType": { + "$ID": "0d4d0760e07e41198451e55e1c765956", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "5a53214b2c7b4498bbe330648d2a272d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "942420ac761f462d823138582bfa2e6d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "60b78f670fb847aca1db6cf27c3f81e5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "783e577574304b8f813556471558e25c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "c3e4042892474f00beab3314c88ee89b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "66c4f0b8294a4000bdb104d918b8f1d4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Input Elements", + "StudioProCategory": "Input elements", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.fieldset.Fieldset", + "WidgetName": "Fieldset", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "ba3c16b1e3624aa983bdfa5604ea1df1", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "4b07816381454d91ae4984d53244b6b4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "30701ee7121e4b00b8e989357cc518f1", + "Value": { + "$ID": "7c1c9436296348d991a139024bdf5bb6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "30cb1e0eff6a4c36997a1f1c35a62f9f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "6b5582a828044a92958cf61cf2f72163", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "d430d87568bf40a4b5a859c118ecc767", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "04a70387bf11476e832e71b7699eca88", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "61a0d2eb60e54d4eb5531cda780f8527", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "0d18a2f006bc4d00aac5876e6d73557e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "cb9f346f01e242ac99e160e81301e58c", + "Value": { + "$ID": "e8a026251eb34eea81f89bd9208803ea", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "89ec9566217f4928bc16e5e8c6c2b3ae", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0d4d0760e07e41198451e55e1c765956", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "5b8c60c42faa4be6b21a505fe61ab011" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/gallery.json b/sdk/widgets/templates/mendix-11.6/gallery.json index c3c48fa1..350f9590 100644 --- a/sdk/widgets/templates/mendix-11.6/gallery.json +++ b/sdk/widgets/templates/mendix-11.6/gallery.json @@ -58,28 +58,13 @@ "DataSource": { "$ID": "1e4694c2700d4a5da47f590dc70517e9", "$Type": "CustomWidgets$CustomWidgetXPathSource", - "EntityRef": { - "$ID": "3056e3d4a12b48ac8c58e43144a8b80b", - "$Type": "DomainModels$DirectEntityRef", - "Entity": "PgTest.Customer" - }, + "EntityRef": null, "ForceFullObjects": false, "SortBar": { "$ID": "19fd730b1ce74ebd89e6535328b94913", "$Type": "Forms$GridSortBar", "SortItems": [ - 2, - { - "$ID": "b05e121b081c453191d5ede425af0c61", - "$Type": "Forms$GridSortItem", - "AttributeRef": { - "$ID": "3a7b8c4b0eb14c5c8ae7980083eb86f6", - "$Type": "DomainModels$AttributeRef", - "Attribute": "PgTest.Customer.Name", - "EntityRef": null - }, - "SortOrder": "Ascending" - } + 2 ] }, "SourceVariable": null, @@ -246,148 +231,7 @@ "TranslatableValue": null, "TypePointer": "5cadb97bf49546a5afaee593b6d2f398", "Widgets": [ - 2, - { - "$ID": "6b55ceb70c324de0b6fb45b4c8b607e6", - "$Type": "Forms$DynamicText", - "Appearance": { - "$ID": "29b23d288c944097a8c4cfa52f1a835f", - "$Type": "Forms$Appearance", - "Class": "", - "DesignProperties": [ - 3 - ], - "DynamicClasses": "", - "Style": "" - }, - "ConditionalVisibilitySettings": null, - "Content": { - "$ID": "a5347beef24a402d9c18485d1382b0f8", - "$Type": "Forms$ClientTemplate", - "Fallback": { - "$ID": "6550515be4a74d1c8925eaa9402dad13", - "$Type": "Texts$Text", - "Items": [ - 3 - ] - }, - "Parameters": [ - 2 - ], - "Template": { - "$ID": "bdcc89f4c6a149fbb3692a831ee79169", - "$Type": "Texts$Text", - "Items": [ - 3, - { - "$ID": "38704f9f3d244012a04ef123530ec4c6", - "$Type": "Texts$Translation", - "LanguageCode": "en_US", - "Text": "{Name}" - } - ] - } - }, - "Name": "custName", - "NativeAccessibilitySettings": null, - "NativeTextStyle": "Text", - "RenderMode": "Text", - "TabIndex": 0 - }, - { - "$ID": "e77bb30cf56b4e2c84e5701eda0dd6b9", - "$Type": "Forms$DynamicText", - "Appearance": { - "$ID": "6483460c2b0f4162b0f19fcbb95843a8", - "$Type": "Forms$Appearance", - "Class": "", - "DesignProperties": [ - 3 - ], - "DynamicClasses": "", - "Style": "" - }, - "ConditionalVisibilitySettings": null, - "Content": { - "$ID": "bfb041bf438f4f30b00169d597bdced9", - "$Type": "Forms$ClientTemplate", - "Fallback": { - "$ID": "0d65fe67ebdf45e2b12b2986844b32d2", - "$Type": "Texts$Text", - "Items": [ - 3 - ] - }, - "Parameters": [ - 2 - ], - "Template": { - "$ID": "e233d87f63d7499f86010ebbacc33484", - "$Type": "Texts$Text", - "Items": [ - 3, - { - "$ID": "f2f9b086e2c3437081bc8f0fab7a15c3", - "$Type": "Texts$Translation", - "LanguageCode": "en_US", - "Text": "{Email}" - } - ] - } - }, - "Name": "custEmail", - "NativeAccessibilitySettings": null, - "NativeTextStyle": "Text", - "RenderMode": "Text", - "TabIndex": 0 - }, - { - "$ID": "ea0d34709e764cbf8bfc0fef444d0a29", - "$Type": "Forms$DynamicText", - "Appearance": { - "$ID": "87b73ea2217a449fb3140280329142cc", - "$Type": "Forms$Appearance", - "Class": "", - "DesignProperties": [ - 3 - ], - "DynamicClasses": "", - "Style": "" - }, - "ConditionalVisibilitySettings": null, - "Content": { - "$ID": "1c7c58e85d4c4a0080a6fa119815e43a", - "$Type": "Forms$ClientTemplate", - "Fallback": { - "$ID": "c69c01faf4274af38df74a319233089a", - "$Type": "Texts$Text", - "Items": [ - 3 - ] - }, - "Parameters": [ - 2 - ], - "Template": { - "$ID": "7b0c1431871045088a12244653901dfc", - "$Type": "Texts$Text", - "Items": [ - 3, - { - "$ID": "a6ff0b28f0fe439ba2c4be400fd7efac", - "$Type": "Texts$Translation", - "LanguageCode": "en_US", - "Text": "{City}" - } - ] - } - }, - "Name": "custCity", - "NativeAccessibilitySettings": null, - "NativeTextStyle": "Text", - "RenderMode": "Text", - "TabIndex": 0 - } + 2 ], "XPathConstraint": "" } diff --git a/sdk/widgets/templates/mendix-11.6/htmlelement.json b/sdk/widgets/templates/mendix-11.6/htmlelement.json new file mode 100644 index 00000000..c83a0a0c --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/htmlelement.json @@ -0,0 +1,2723 @@ +{ + "widgetId": "com.mendix.widget.web.htmlelement.HTMLElement", + "name": "HTML Element", + "version": "11.6.4", + "extractedFrom": "c8276e45-b488-4a96-bf97-6779dabb9790", + "type": { + "$ID": "140e3e654c8a4174ad1013a033a87fff", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/htmlelement", + "ObjectType": { + "$ID": "9eff0a9186c84b9f806909f4ce05074e", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "62ebe9c3314e49da894ffe8571bf648c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tag name", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagName", + "ValueType": { + "$ID": "de627189f12d44ff8544d485beca832e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "div", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "745a8eb8adae4a91aba46a939a8f559e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "div", + "Caption": "div" + }, + { + "$ID": "6a82fb5ec12543f69af6e43e24a79a4a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "span", + "Caption": "span" + }, + { + "$ID": "6c104f347366481f87c117808192d347", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "p", + "Caption": "p" + }, + { + "$ID": "0a3aba0c732e41aba6a89e19d91a22a6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "ul", + "Caption": "ul" + }, + { + "$ID": "2eb03d4ae5f24749a2b75c33191b3ac1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "ol", + "Caption": "ol" + }, + { + "$ID": "9ee5536b5ac24c629de1c14718cab5b1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "li", + "Caption": "li" + }, + { + "$ID": "98607bdccf6c4da281c8d890bb0281d0", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "a", + "Caption": "a" + }, + { + "$ID": "65bbe4f3e79f4461807d24aeb3a71134", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "img", + "Caption": "img" + }, + { + "$ID": "8a2d7f72b6bf4170908595a7b5a8bfe1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h1", + "Caption": "h1" + }, + { + "$ID": "f1c2ea0b4cc741dcb0f7719c8d298c0a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h2", + "Caption": "h2" + }, + { + "$ID": "a0062f79ec54486cb4c4fc720f69e3e7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h3", + "Caption": "h3" + }, + { + "$ID": "4a57fd8230114bbda1ed955e9fa6e459", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h4", + "Caption": "h4" + }, + { + "$ID": "1c42867c2f6c40ee8f4ea060c4909cf2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h5", + "Caption": "h5" + }, + { + "$ID": "c30d7c67dc3145448cec6ce26746a4ee", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "h6", + "Caption": "h6" + }, + { + "$ID": "9861366505f942cdbc0838b4e68b286e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "__customTag__", + "Caption": "Use custom name" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "a667e0a50f7c45d3b24fb63a6d7817e0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom tag", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagNameCustom", + "ValueType": { + "$ID": "0111ed2547cd419ba03f8db23e4be3e8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "div", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "a710678d5c34478cba15ec23732c28b9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Repeat element", + "Category": "General::HTML element", + "Description": "Repeat element for each item in data source.", + "IsDefault": false, + "PropertyKey": "tagUseRepeat", + "ValueType": { + "$ID": "d73a18adc15649f3beb06117a63acbe2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "ad3d8d8e1bdf4ebe8ca7c986e8a14c0b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentRepeatDataSource", + "ValueType": { + "$ID": "fd92cd4f02614494b02894f94b443268", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "f708f35ab1a4411c9223d3ceef3729d7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentMode", + "ValueType": { + "$ID": "76a063ead93a4237a4c0dddc6f88dc81", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "container", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "77102354b9e940d9b8ba1ddf6add5f10", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "container", + "Caption": "Container for widgets" + }, + { + "$ID": "2c576aa025984036a24636bcd13371eb", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "innerHTML", + "Caption": "HTML" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "9fc1be7221e74c179ef5682a4b647dc9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "HTML", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentHTML", + "ValueType": { + "$ID": "edca5b43e8644cd6a7babe04e334e543", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "298b6067ae484064ad7c2dde6c327b85", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentContainer", + "ValueType": { + "$ID": "5de72ea0bb4a4366b2a27f221f012582", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "da6bbe716fc44cbdb86bc362102f5817", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "HTML", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentRepeatHTML", + "ValueType": { + "$ID": "c6876ed9e0984185807545c007358207", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "tagContentRepeatDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "02c28e671b5544399939118564eadb48", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General::HTML element", + "Description": "", + "IsDefault": false, + "PropertyKey": "tagContentRepeatContainer", + "ValueType": { + "$ID": "7bd9f6abb6a04e0ebce046651c3876f6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "tagContentRepeatDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "710f85e985524f17a0d53a1104518b2d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Attributes", + "Category": "General::HTML attributes", + "Description": "The HTML attributes that are added to the HTML element. For example: ‘title‘, ‘href‘. If ‘class’ or ‘style’ is added as attribute this is merged with the widget class/style property. For events (e.g. onClick) use the Events section.", + "IsDefault": false, + "PropertyKey": "attributes", + "ValueType": { + "$ID": "f81a352a90ce40ee967742f44ec8d5c2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "0c7166b9731349b59dc7894874711355", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "b432009582994e80a50f25c5d0e4066e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Name", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeName", + "ValueType": { + "$ID": "cb1ac89cf4de43239d94474c546ad9a8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "b66420acb7b74eaaa976304b293da3ae", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value based on", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeValueType", + "ValueType": { + "$ID": "f451034c5ccd4efe8a93767e474fdcce", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "expression", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "b634f957a7ae4cd3a5a548ed366008aa", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + }, + { + "$ID": "a8fef238c86a4e2ea124291659559360", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "template", + "Caption": "Text template" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "fb3b944f7b9649c692aee42a61f5037e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeValueTemplate", + "ValueType": { + "$ID": "39489dfce04b4ed9a23c9ba0756a72c8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "0351558d3f6a4c8f91ed16199b3f9ad1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeValueExpression", + "ValueType": { + "$ID": "df254738e41a4728b96b9cecfcad7c60", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "ad656bfc1d384586a6b1fcff4e05aea6", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "ef3bc8b02e7d4e208a0cad595242de9d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeValueTemplateRepeat", + "ValueType": { + "$ID": "fdc8d66fd5b5411b80f31eda2a382bab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "../tagContentRepeatDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "65d8203f50704084baf7c66ac005b9ef", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value", + "Category": "Attributes", + "Description": "", + "IsDefault": false, + "PropertyKey": "attributeValueExpressionRepeat", + "ValueType": { + "$ID": "52cfc59726954074ada07704ca64e057", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "../tagContentRepeatDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "e15a32ae19264f5d9ce896a2af18b6e9", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "1411c33495a74f288e99278409d4199c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Events", + "Category": "Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "events", + "ValueType": { + "$ID": "7b60fcc7cf0c447aa73c3bd0ff3db62c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "9e8c3c0815534b178710603b289c578a", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "473b9e0a22704cf0940f8bbb8713bc4a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Name", + "Category": "Event", + "Description": "", + "IsDefault": false, + "PropertyKey": "eventName", + "ValueType": { + "$ID": "101b15e134d34294810eb7dccdc2ed94", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "onClick", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "16aa2ce3382c4c72bafa4302450b2269", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAbort", + "Caption": "onAbort" + }, + { + "$ID": "ecdca3ae296d47299ac667df6d525c3a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAbortCapture", + "Caption": "onAbortCapture" + }, + { + "$ID": "317486f339084853aace05580e9d1957", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationEnd", + "Caption": "onAnimationEnd" + }, + { + "$ID": "2ce5e35673a0468bab8667fca06bd9f2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationEndCapture", + "Caption": "onAnimationEndCapture" + }, + { + "$ID": "98696cdf2ef54ef3b173f64648f18d68", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationIteration", + "Caption": "onAnimationIteration" + }, + { + "$ID": "f9351199a2a74af6b0b37bf999814694", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationIterationCapture", + "Caption": "onAnimationIterationCapture" + }, + { + "$ID": "6ea1b6f992af49d59017b49d013efcdd", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationStart", + "Caption": "onAnimationStart" + }, + { + "$ID": "b1d98a45724a4dd39e7f3c844cffbd6b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAnimationStartCapture", + "Caption": "onAnimationStartCapture" + }, + { + "$ID": "bd35d9e2056248d395e5f4d8ec64ec9f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAuxClick", + "Caption": "onAuxClick" + }, + { + "$ID": "5f18c6a5310042c1b5eaabe93e764d74", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onAuxClickCapture", + "Caption": "onAuxClickCapture" + }, + { + "$ID": "5f376a9ea4ed4ff38959fe7c65cafc1f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onBeforeInput", + "Caption": "onBeforeInput" + }, + { + "$ID": "732bb09f939048d2af5ae4c3769db891", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onBeforeInputCapture", + "Caption": "onBeforeInputCapture" + }, + { + "$ID": "221f84e9786547149b88b0a6f1d9e7fd", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onBlur", + "Caption": "onBlur" + }, + { + "$ID": "891ee37aaad24779b9695b368ea28733", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onBlurCapture", + "Caption": "onBlurCapture" + }, + { + "$ID": "0a463e859e374f4ca240420ff87c35d5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCanPlay", + "Caption": "onCanPlay" + }, + { + "$ID": "628cf4b384024e2caee22df103614115", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCanPlayCapture", + "Caption": "onCanPlayCapture" + }, + { + "$ID": "61e4d294850f4f659082578ee7457853", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCanPlayThrough", + "Caption": "onCanPlayThrough" + }, + { + "$ID": "9cb0b8c82b464452980df41e9e2e304c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCanPlayThroughCapture", + "Caption": "onCanPlayThroughCapture" + }, + { + "$ID": "ebbae824bab9412a83d4acc376f6fa89", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onChange", + "Caption": "onChange" + }, + { + "$ID": "8edb852d3a0840a3a448695efc4f9285", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onChangeCapture", + "Caption": "onChangeCapture" + }, + { + "$ID": "79b50ff304b34fae9f31a234e2cf8c36", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onClick", + "Caption": "onClick" + }, + { + "$ID": "113b6cb010ea442b9e56e143b655be60", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onClickCapture", + "Caption": "onClickCapture" + }, + { + "$ID": "fe2d3219b5744f858cc7cb9dba51861f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionEnd", + "Caption": "onCompositionEnd" + }, + { + "$ID": "2eb79f7ccbb74cddaf2640771fe9ed55", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionEndCapture", + "Caption": "onCompositionEndCapture" + }, + { + "$ID": "6883a83259c8409285796f08133b452b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionStart", + "Caption": "onCompositionStart" + }, + { + "$ID": "88352a563bf94878974fb9707c85654d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionStartCapture", + "Caption": "onCompositionStartCapture" + }, + { + "$ID": "61455408f63041e1b334f2f923b555cf", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionUpdate", + "Caption": "onCompositionUpdate" + }, + { + "$ID": "54a5b438d25b49dc823470f1629858d5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCompositionUpdateCapture", + "Caption": "onCompositionUpdateCapture" + }, + { + "$ID": "a702d6d3a14c450d8ec4954015d1073a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onContextMenu", + "Caption": "onContextMenu" + }, + { + "$ID": "826d110cacab4490a6b6dbd4f8a98c52", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onContextMenuCapture", + "Caption": "onContextMenuCapture" + }, + { + "$ID": "59d748b7d3fd40dbace0f4aa930cf2f2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCopy", + "Caption": "onCopy" + }, + { + "$ID": "b0e4787e401347478000baefb93f12bb", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCopyCapture", + "Caption": "onCopyCapture" + }, + { + "$ID": "c147b7e571b14b41a18626581102f8c2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCut", + "Caption": "onCut" + }, + { + "$ID": "0be4c8a071114dbe95aefcc9395a63e8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onCutCapture", + "Caption": "onCutCapture" + }, + { + "$ID": "0b9c2a9c3cd64f089d4805677113aa8f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDoubleClick", + "Caption": "onDoubleClick" + }, + { + "$ID": "aea01328e7434cea9e60aef609f4cc78", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDoubleClickCapture", + "Caption": "onDoubleClickCapture" + }, + { + "$ID": "7264620d539049c09f8c4c38df67c537", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDrag", + "Caption": "onDrag" + }, + { + "$ID": "54bb174d971241e488b64b66a74a0e15", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragCapture", + "Caption": "onDragCapture" + }, + { + "$ID": "0792197528b34436bebb6c3cc5075d63", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragEnd", + "Caption": "onDragEnd" + }, + { + "$ID": "32f9c923e16b4c4aa961ef6c52bc3e8b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragEndCapture", + "Caption": "onDragEndCapture" + }, + { + "$ID": "a30e5786d581402899c60b84fa60ead1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragEnter", + "Caption": "onDragEnter" + }, + { + "$ID": "b7bb5db1459b450ea0d23d241ac64a64", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragEnterCapture", + "Caption": "onDragEnterCapture" + }, + { + "$ID": "95080fd7e9a94084a747470f57c3b633", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragExit", + "Caption": "onDragExit" + }, + { + "$ID": "2f94c4e005f141da891f89c7f0309b31", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragExitCapture", + "Caption": "onDragExitCapture" + }, + { + "$ID": "137d0af02ab244239418aff5569cf14e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragLeave", + "Caption": "onDragLeave" + }, + { + "$ID": "2949e8b28960485a94cc671c60668165", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragLeaveCapture", + "Caption": "onDragLeaveCapture" + }, + { + "$ID": "81d7430a7e6544b9a0f7515f187e07a5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragOver", + "Caption": "onDragOver" + }, + { + "$ID": "70203334d4ef4894a5daa24be4b4d7a6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragOverCapture", + "Caption": "onDragOverCapture" + }, + { + "$ID": "315e6ff4d37941d0b73243f40b4291d9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragStart", + "Caption": "onDragStart" + }, + { + "$ID": "3e0afd28321447ccb7651b3bfe2dd90f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDragStartCapture", + "Caption": "onDragStartCapture" + }, + { + "$ID": "1f794e0d88c9486592391a390d9d5ba3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDrop", + "Caption": "onDrop" + }, + { + "$ID": "9f129473df884d13b143e19d377fc985", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDropCapture", + "Caption": "onDropCapture" + }, + { + "$ID": "299fa7ed82004948a4548e5b7480f813", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDurationChange", + "Caption": "onDurationChange" + }, + { + "$ID": "bf6d7a97192c45b5883c80750b841332", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onDurationChangeCapture", + "Caption": "onDurationChangeCapture" + }, + { + "$ID": "1669174bb20d4ab592f65f9e0ba267ee", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEmptied", + "Caption": "onEmptied" + }, + { + "$ID": "465f073847544a01b0283f45be19beed", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEmptiedCapture", + "Caption": "onEmptiedCapture" + }, + { + "$ID": "27c171679f9145e4b5d012221c22345a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEncrypted", + "Caption": "onEncrypted" + }, + { + "$ID": "35e564421be04f268e74c198b15f179e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEncryptedCapture", + "Caption": "onEncryptedCapture" + }, + { + "$ID": "4f265e8715da45bf9debd03618d35017", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEnded", + "Caption": "onEnded" + }, + { + "$ID": "4a3d85a91a404068b9fb53258ae4fe71", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onEndedCapture", + "Caption": "onEndedCapture" + }, + { + "$ID": "267bbef13c184e4a98720c690bcf1eb3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onError", + "Caption": "onError" + }, + { + "$ID": "70ce3c257ed34282a624b189cf4eb80d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onErrorCapture", + "Caption": "onErrorCapture" + }, + { + "$ID": "60ef040d550244538db14d3a23f92660", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onFocus", + "Caption": "onFocus" + }, + { + "$ID": "c15e5591312d4027b25909dd5474328e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onFocusCapture", + "Caption": "onFocusCapture" + }, + { + "$ID": "7dd99a4cd72e4e7f8412cf53c13c70d8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onGotPointerCapture", + "Caption": "onGotPointerCapture" + }, + { + "$ID": "b1e77ad1785d40ad960681c166a03d30", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onGotPointerCaptureCapture", + "Caption": "onGotPointerCaptureCapture" + }, + { + "$ID": "bfca6a0b87f4418cb0234f95b5fb8604", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onInput", + "Caption": "onInput" + }, + { + "$ID": "b7127ba611cf4ff7b35971fb2235f665", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onInputCapture", + "Caption": "onInputCapture" + }, + { + "$ID": "a4beb7df04594576a4d30c7075f6638d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onInvalid", + "Caption": "onInvalid" + }, + { + "$ID": "3403695cb9644d54bbd0b0491cf7e3e0", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onInvalidCapture", + "Caption": "onInvalidCapture" + }, + { + "$ID": "5d9b5dc178ef468a913f0f363bfee1c8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyDown", + "Caption": "onKeyDown" + }, + { + "$ID": "db0817375da54913857767dbd64adacf", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyDownCapture", + "Caption": "onKeyDownCapture" + }, + { + "$ID": "f1a43d405796498ab8bdbcabfad61760", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyPress", + "Caption": "onKeyPress" + }, + { + "$ID": "04968500807b4f27a3096cc616e72177", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyPressCapture", + "Caption": "onKeyPressCapture" + }, + { + "$ID": "9cc8322c5c494cda902ec2b2900c9bae", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyUp", + "Caption": "onKeyUp" + }, + { + "$ID": "ea6f4de9b45b4561b80ab81244c150c8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onKeyUpCapture", + "Caption": "onKeyUpCapture" + }, + { + "$ID": "af8e3ee33f534c2180267038088c8e11", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLeave", + "Caption": "onLeave" + }, + { + "$ID": "5dfc1cb4f4f84e1a99d832ee25c30aff", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoad", + "Caption": "onLoad" + }, + { + "$ID": "f6fddc6cbaa149ec8551e72ad29852a5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadCapture", + "Caption": "onLoadCapture" + }, + { + "$ID": "10673995e81b4bdab7f61c17df13610d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadedData", + "Caption": "onLoadedData" + }, + { + "$ID": "69221601be7a46bdad0da216db9a7bac", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadedDataCapture", + "Caption": "onLoadedDataCapture" + }, + { + "$ID": "ca18b76ebda74cd5b955546ab5a1fde9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadedMetadata", + "Caption": "onLoadedMetadata" + }, + { + "$ID": "2a83f883602a41f796d767d305bce9e5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadedMetadataCapture", + "Caption": "onLoadedMetadataCapture" + }, + { + "$ID": "ec896cd0866a476ea7ba7281e6145704", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadStart", + "Caption": "onLoadStart" + }, + { + "$ID": "64315215d96c4711a10aa5342bd38498", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLoadStartCapture", + "Caption": "onLoadStartCapture" + }, + { + "$ID": "189acd94c6d640d2af1f3faa07013f7a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLostPointerCapture", + "Caption": "onLostPointerCapture" + }, + { + "$ID": "71a550d1735f406e80008306e92919aa", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onLostPointerCaptureCapture", + "Caption": "onLostPointerCaptureCapture" + }, + { + "$ID": "df7cd19a02214675b044e8c2c14485fa", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseDown", + "Caption": "onMouseDown" + }, + { + "$ID": "cfaf681510c24c04949800960cabdca3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseDownCapture", + "Caption": "onMouseDownCapture" + }, + { + "$ID": "264387b021e34bca8c39416e49459d39", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseEnter", + "Caption": "onMouseEnter" + }, + { + "$ID": "dbb0a76cf4c246dfb6e6a55874310440", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseLeave", + "Caption": "onMouseLeave" + }, + { + "$ID": "b66be07c438c43b4826c6ca8d0fc3fdb", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseMove", + "Caption": "onMouseMove" + }, + { + "$ID": "5e58d6f3c49c4f15875087c05aeb284e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseMoveCapture", + "Caption": "onMouseMoveCapture" + }, + { + "$ID": "3e161864949745f194d350c7b6042619", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseOut", + "Caption": "onMouseOut" + }, + { + "$ID": "3f658069a5834acbb920501a21e083df", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseOutCapture", + "Caption": "onMouseOutCapture" + }, + { + "$ID": "56cc1f89bc2948cdaa56de33c6ce9968", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseOver", + "Caption": "onMouseOver" + }, + { + "$ID": "46da9928e9a948c5aed9a1a05e2d56c7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseOverCapture", + "Caption": "onMouseOverCapture" + }, + { + "$ID": "629af293eefd489cb91ea96ecba7e17f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseUp", + "Caption": "onMouseUp" + }, + { + "$ID": "d6faa0aa62da4854b488d20a10bc081b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onMouseUpCapture", + "Caption": "onMouseUpCapture" + }, + { + "$ID": "16a3b71a9e15457b9b1b410aaba467e3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPaste", + "Caption": "onPaste" + }, + { + "$ID": "4d8c16281ae24d9d91bcdc76cfe5137e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPasteCapture", + "Caption": "onPasteCapture" + }, + { + "$ID": "9cc088419a0845bf856632cd76052969", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPause", + "Caption": "onPause" + }, + { + "$ID": "6e35a458ab684e718c5a5a7b74306262", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPauseCapture", + "Caption": "onPauseCapture" + }, + { + "$ID": "ee8173c186e2470a89364ff160a8963f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPlay", + "Caption": "onPlay" + }, + { + "$ID": "86a515580ce44cc090a818c83491039a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPlayCapture", + "Caption": "onPlayCapture" + }, + { + "$ID": "ba0b388d66f14da28f82532122c6d828", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPlaying", + "Caption": "onPlaying" + }, + { + "$ID": "e57935d0fbbe487bac35521cae33ed6c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPlayingCapture", + "Caption": "onPlayingCapture" + }, + { + "$ID": "132c7cb1b0a94e5f8edd346d38711c7c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerCancel", + "Caption": "onPointerCancel" + }, + { + "$ID": "47ac1d0c3449452ca1122c0e31462ad3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerCancelCapture", + "Caption": "onPointerCancelCapture" + }, + { + "$ID": "b362ac1eb7f648228dc22fd5fdc74d02", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerDown", + "Caption": "onPointerDown" + }, + { + "$ID": "e8c2f65237184744a1857461b1dc3e23", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerDownCapture", + "Caption": "onPointerDownCapture" + }, + { + "$ID": "8cf61ac7eaf74ba79c88b23c15b3f626", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerEnter", + "Caption": "onPointerEnter" + }, + { + "$ID": "2b19ad84edcb436dbb4d942163828ece", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerEnterCapture", + "Caption": "onPointerEnterCapture" + }, + { + "$ID": "776124d295ef481e91ddf40470fa60a6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerLeave", + "Caption": "onPointerLeave" + }, + { + "$ID": "36c52929c4624db4ab15db02705afb52", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerLeaveCapture", + "Caption": "onPointerLeaveCapture" + }, + { + "$ID": "c4ac07373d894c3dacdb7a82b21bee0b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerMove", + "Caption": "onPointerMove" + }, + { + "$ID": "46cbce29a6e941ceaa8309f81300e24f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerMoveCapture", + "Caption": "onPointerMoveCapture" + }, + { + "$ID": "744ba4b789894f2c968943a2a5fe564e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerOut", + "Caption": "onPointerOut" + }, + { + "$ID": "ef747e7138724f26bdce67bc24e726f7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerOutCapture", + "Caption": "onPointerOutCapture" + }, + { + "$ID": "da58706b36444c149579c78060db97ce", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerOver", + "Caption": "onPointerOver" + }, + { + "$ID": "b45c8fb42f684903a3e61a7cae9384a8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerOverCapture", + "Caption": "onPointerOverCapture" + }, + { + "$ID": "0366b3c944e54ca4a19bee892217af81", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerUp", + "Caption": "onPointerUp" + }, + { + "$ID": "d07c700466bd4156a54cf2229ce14450", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onPointerUpCapture", + "Caption": "onPointerUpCapture" + }, + { + "$ID": "d71b53e0f3b141a5886841ce206178a6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onProgress", + "Caption": "onProgress" + }, + { + "$ID": "420cc31c17eb41818435b6a7d3d3c637", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onProgressCapture", + "Caption": "onProgressCapture" + }, + { + "$ID": "e799b6218d844dbbb9da6d153d13257a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onRateChange", + "Caption": "onRateChange" + }, + { + "$ID": "df6f918ab6ea4c41942e0ce7b79e2629", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onRateChangeCapture", + "Caption": "onRateChangeCapture" + }, + { + "$ID": "538320405d9c40ce8b4bf5a7ee900833", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onReset", + "Caption": "onReset" + }, + { + "$ID": "e236d3bd8f684c108979f8add3ee800e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onResetCapture", + "Caption": "onResetCapture" + }, + { + "$ID": "e51537bfdbca4c16875071ec814a3859", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onScroll", + "Caption": "onScroll" + }, + { + "$ID": "87b93b666a4447889fb5ef64bfff137a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onScrollCapture", + "Caption": "onScrollCapture" + }, + { + "$ID": "ee4a824453fc46ec98f6248616eb96d4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSeeked", + "Caption": "onSeeked" + }, + { + "$ID": "0997e3c3f99d4b8db2230c27e1e227ca", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSeekedCapture", + "Caption": "onSeekedCapture" + }, + { + "$ID": "802856de81a4487e9a97c5dabd743dc9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSeeking", + "Caption": "onSeeking" + }, + { + "$ID": "d4871d1219d74d91ba89dc046d2f21fb", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSeekingCapture", + "Caption": "onSeekingCapture" + }, + { + "$ID": "d001f13bc00342da879b42cb35f11899", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSelect", + "Caption": "onSelect" + }, + { + "$ID": "31a3820422b349658879e65c8ed6d013", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSelectCapture", + "Caption": "onSelectCapture" + }, + { + "$ID": "a4139c3f2c8341d3906e10831dbf7cf2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onStalled", + "Caption": "onStalled" + }, + { + "$ID": "60e41587ac1a4dbca98388de8a923185", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onStalledCapture", + "Caption": "onStalledCapture" + }, + { + "$ID": "9d71276e1b8843b59b4a06d3f5c56128", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSubmit", + "Caption": "onSubmit" + }, + { + "$ID": "597680fc5f7a46ea90e6272c205fef45", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSubmitCapture", + "Caption": "onSubmitCapture" + }, + { + "$ID": "574f15cf92df41cb9c92325c1b1914d5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSuspend", + "Caption": "onSuspend" + }, + { + "$ID": "13049e7d4e9e47019907af2add329c4f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onSuspendCapture", + "Caption": "onSuspendCapture" + }, + { + "$ID": "46044b9025254e81b088027bb96d3f2c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTimeUpdate", + "Caption": "onTimeUpdate" + }, + { + "$ID": "236b2c595369468f9aad1e894aa070ac", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTimeUpdateCapture", + "Caption": "onTimeUpdateCapture" + }, + { + "$ID": "c3477e89c85f450abc94a653ed654ef3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchCancel", + "Caption": "onTouchCancel" + }, + { + "$ID": "76b8f7b37d4e48aab2c1a3f0bb4c6ec6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchCancelCapture", + "Caption": "onTouchCancelCapture" + }, + { + "$ID": "ed22a80a4b624fccb6102742802617ab", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchEnd", + "Caption": "onTouchEnd" + }, + { + "$ID": "d53f0d0863df4d748e199f12289ab63c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchEndCapture", + "Caption": "onTouchEndCapture" + }, + { + "$ID": "9f13011e85784500a6119a5e1c6d0472", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchMove", + "Caption": "onTouchMove" + }, + { + "$ID": "fab7eb0879f74523b3920c2776e76061", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchMoveCapture", + "Caption": "onTouchMoveCapture" + }, + { + "$ID": "7d4cda439aae45af9474bb93badba1d1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchStart", + "Caption": "onTouchStart" + }, + { + "$ID": "41108db7d4bc4eabbde83fcba0f0dea8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTouchStartCapture", + "Caption": "onTouchStartCapture" + }, + { + "$ID": "fa2da4c477f84c2ca19134f6d3b063ac", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTransitionEnd", + "Caption": "onTransitionEnd" + }, + { + "$ID": "a9df598244374c34a78a0f589c61acb5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onTransitionEndCapture", + "Caption": "onTransitionEndCapture" + }, + { + "$ID": "9e87c9a928b64a5d8eae12699ef760de", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onVolumeChange", + "Caption": "onVolumeChange" + }, + { + "$ID": "48aa847dab104f998d75a3146e25a8f3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onVolumeChangeCapture", + "Caption": "onVolumeChangeCapture" + }, + { + "$ID": "6c2df58cf00e442984c0935a50ff0c3e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onWaiting", + "Caption": "onWaiting" + }, + { + "$ID": "68b287a81a8140638e3520bb969d715d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onWaitingCapture", + "Caption": "onWaitingCapture" + }, + { + "$ID": "b1fef6c3a7084a6295cbae8a74caacb3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onWheel", + "Caption": "onWheel" + }, + { + "$ID": "6bc3b79927d74c7f89d73ecdc36ad496", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onWheelCapture", + "Caption": "onWheelCapture" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "8b662f7fb59e42598326e9dda4f0137d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Action", + "Category": "Event", + "Description": "", + "IsDefault": false, + "PropertyKey": "eventAction", + "ValueType": { + "$ID": "cf76d2c5d86e4094ae949987acc62d7e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "21284a2b8136403e9df08c672652d3c9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Action", + "Category": "Event", + "Description": "", + "IsDefault": false, + "PropertyKey": "eventActionRepeat", + "ValueType": { + "$ID": "167dd30119f9415481e9c1ab7e634874", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "../tagContentRepeatDataSource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "e73856204a5041e199b3fff8959ae043", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Stop propagation", + "Category": "Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "eventStopPropagation", + "ValueType": { + "$ID": "f09edd579b5d4c959c445bb2f528cb17", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "81d6ddcbbe3b46edb6df71e11048287b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Prevent default", + "Category": "Advanced", + "Description": "", + "IsDefault": false, + "PropertyKey": "eventPreventDefault", + "ValueType": { + "$ID": "4000c658ecda494d966da0301ceb2513", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "9c00d155cdfe41d1adb9803f939a26db", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Sanitization configuration", + "Category": "Advanced::HTML Sanitization", + "Description": "Configuration for HTML sanitization in JSON format. Leave blank for default.", + "IsDefault": false, + "PropertyKey": "sanitizationConfigFull", + "ValueType": { + "$ID": "7dbe171472494720a7d70bc012807799", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": true, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "", + "StudioProCategory": "", + "SupportedPlatform": "Web", + "WidgetDescription": "Displays custom HTML", + "WidgetId": "com.mendix.widget.web.htmlelement.HTMLElement", + "WidgetName": "HTML Element", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "7d959f4bcc834d7ab28516a917bf625f", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "6d59404bb0f249e9b91b81d01768ed0c", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "62ebe9c3314e49da894ffe8571bf648c", + "Value": { + "$ID": "b374963170754774bcdaae37dbd272c8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c3219a4e1b644441ae9190dc12880d85", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "div", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "de627189f12d44ff8544d485beca832e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f42d4913c72540f19e953b2be729c5d0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a667e0a50f7c45d3b24fb63a6d7817e0", + "Value": { + "$ID": "b20f28e2e8b247959c898ca1bf48b474", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3753d2aabc154ca6bcce2e92560369e7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "div", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0111ed2547cd419ba03f8db23e4be3e8", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bcef8290b06e49e287888a9e6bec5b40", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a710678d5c34478cba15ec23732c28b9", + "Value": { + "$ID": "9ebec4cddc204eb19bcb9941fd73c3d5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "06d25ca9f0514774b850d85f15d3d14d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d73a18adc15649f3beb06117a63acbe2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1016612efe5148078f010f6a256e7dd1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ad3d8d8e1bdf4ebe8ca7c986e8a14c0b", + "Value": { + "$ID": "bac9eca8c2d7435ba462df6a89d06ab5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6973f2727d1b4bbb892a526eba1761c2", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fd92cd4f02614494b02894f94b443268", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "39c75a7bb49745f8be1513b76aefe48f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "f708f35ab1a4411c9223d3ceef3729d7", + "Value": { + "$ID": "59fb8e000e7b4500930aca763c383b95", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "57965a8dd3ca4003a4a041796ed505ea", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "container", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "76a063ead93a4237a4c0dddc6f88dc81", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "95d7f2fc488c424690ca581123ea95de", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9fc1be7221e74c179ef5682a4b647dc9", + "Value": { + "$ID": "1cc7a1526d694147b3bd3e7a7fe76278", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4582c3f52e6d43768450f66b06781da0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "edca5b43e8644cd6a7babe04e334e543", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "edeb7acc383843cea5b36461d278f0a7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "298b6067ae484064ad7c2dde6c327b85", + "Value": { + "$ID": "baa41685d45f4ef29cab412037b76d83", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "bb0ac4fd603a422a9f2d6773f336a94b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "5de72ea0bb4a4366b2a27f221f012582", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6057d375583c4f4fae69d866d4b32de0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "da6bbe716fc44cbdb86bc362102f5817", + "Value": { + "$ID": "73141cc069504ddabcae9139549c9b3f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b2a868e06b704850b81b08f61833fe7a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c6876ed9e0984185807545c007358207", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f4916d98b2a541a39ddc51c6f7f1dc61", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "02c28e671b5544399939118564eadb48", + "Value": { + "$ID": "26c411b426274a0797a4aed94f54f70f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "70deb6593d5747908826239c99a0d108", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7bd9f6abb6a04e0ebce046651c3876f6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2d7d0d89debb410bb2d62b75df6a050a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "710f85e985524f17a0d53a1104518b2d", + "Value": { + "$ID": "c51bcbcf432c4dd2a52dfa1236ec113a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "386fd1b9905d4f2c84bcfbf30156d359", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f81a352a90ce40ee967742f44ec8d5c2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bd4c5d591faa4ff0869ffb2d98509990", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1411c33495a74f288e99278409d4199c", + "Value": { + "$ID": "5755a0e33b2f4589b63f56208af58d8e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2a0a3b3342ff4e358d4c2b12375dd2f1", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7b60fcc7cf0c447aa73c3bd0ff3db62c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8e4fd75859614216a4215b67d61afe43", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9c00d155cdfe41d1adb9803f939a26db", + "Value": { + "$ID": "c1bce4c4188f4103afcc206376a416d5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "9fcf09ac328b4f6eb469299c3f2a7035", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7dbe171472494720a7d70bc012807799", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "9eff0a9186c84b9f806909f4ce05074e" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/languageselector.json b/sdk/widgets/templates/mendix-11.6/languageselector.json new file mode 100644 index 00000000..fc62e87b --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/languageselector.json @@ -0,0 +1,614 @@ +{ + "widgetId": "com.mendix.widget.web.languageselector.LanguageSelector", + "name": "Language selector", + "version": "11.6.4", + "extractedFrom": "5348da5f-bef0-44ff-abbe-4d1364158f8a", + "type": { + "$ID": "48240cf99fad4691a8c3f54fd911770e", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/languageSelector", + "ObjectType": { + "$ID": "6347e118092b46e1a6a5eb838ef329ed", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "05feafd261b24295a376e30348869393", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "General::Languages", + "Description": "Recommended: Database data source with System.Language as entity.", + "IsDefault": false, + "PropertyKey": "languageOptions", + "ValueType": { + "$ID": "6633ecfa09e0433497781d69e2b51ecb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "ebc68c2ad5aa4eacb5417cc5639a1863", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Language caption", + "Category": "General::Languages", + "Description": "Recommended: $currentObject/Description.", + "IsDefault": false, + "PropertyKey": "languageCaption", + "ValueType": { + "$ID": "418907e112e64436a84a422c6dd64524", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "languageOptions", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": { + "$ID": "087fc6d252bc47779501778a22b9b8ef", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "da0d53f094fc45e89b344518ecec05cc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Menu position", + "Category": "General::General", + "Description": "The location of the menu relative to the current selected language (click area).", + "IsDefault": false, + "PropertyKey": "position", + "ValueType": { + "$ID": "bd10b1cb65dd4cec99e745c057a2da3b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "bottom", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "0798040cbcef47999232a54f48b02b91", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "left", + "Caption": "Left" + }, + { + "$ID": "1dcf1b7ab82846db9f1647835b862361", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "right", + "Caption": "Right" + }, + { + "$ID": "777afbb376794471a86e33918e7ad632", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "top", + "Caption": "Top" + }, + { + "$ID": "69ccf32469854a148c9876478fe28f02", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "bottom", + "Caption": "Bottom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "bc670b5465bc4230b800c91d86f45b22", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Open menu on", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "trigger", + "ValueType": { + "$ID": "2d7df91b2e4f4e0e9e1f396b673a82fa", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "click", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "c1d6c282314345568f05c6959e76fb89", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "click", + "Caption": "Click" + }, + { + "$ID": "b92225a0cf744022af338df99a51a259", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "hover", + "Caption": "Hover" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "c9a33da70cc44373a4f13da3bb201775", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Hide for single language", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "hideForSingle", + "ValueType": { + "$ID": "f683ce4a2c164b23960a258f29c959da", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "93060ff899854bee903edf598ac8bb7e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Label caption", + "Category": "Accessibility::Accessibility", + "Description": "Assistive technology will read this upon reaching the input element.", + "IsDefault": false, + "PropertyKey": "screenReaderLabelCaption", + "ValueType": { + "$ID": "da2843955a574165bb65817b022c979a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.languageselector.LanguageSelector", + "WidgetName": "Language selector", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "f520c6ac32d34ce5bbe02c9751e191ac", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "9a6f92c6c65d4a1680f896084a307cf5", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "05feafd261b24295a376e30348869393", + "Value": { + "$ID": "3266864c926c46b8b1456ef4fa99bfed", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "525c1ac4607e486da96076f54223070f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "6633ecfa09e0433497781d69e2b51ecb", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5e3a9fa2e21a46e9ad37654e9d42dd57", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ebc68c2ad5aa4eacb5417cc5639a1863", + "Value": { + "$ID": "6064ff39cd0e42cf873ad004cee1060f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f15459de79254b22973b6a830eb06668", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "418907e112e64436a84a422c6dd64524", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "44ae987c3b1d4fa89e736995ee5dbddb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "da0d53f094fc45e89b344518ecec05cc", + "Value": { + "$ID": "d05793fe02a040d48ba205000d2fca00", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "db7618670a6b4f36a612a018454d4d81", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "bottom", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "bd10b1cb65dd4cec99e745c057a2da3b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5b3bfe06796744bab341fb9d95d02311", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "bc670b5465bc4230b800c91d86f45b22", + "Value": { + "$ID": "aff75f1c379a4119b39dc525d0ab2209", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "585203e4f24b46769076cbfcf6fdf240", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "click", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "2d7df91b2e4f4e0e9e1f396b673a82fa", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f064b115eae84c49a63f59ee8a367b9c", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c9a33da70cc44373a4f13da3bb201775", + "Value": { + "$ID": "1ddca95edb9f4e28b46122831bdad726", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7f23f548b4004f92bf52313f80f3b20d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f683ce4a2c164b23960a258f29c959da", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c50f54ee83784623b2b7441b6540955b", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "93060ff899854bee903edf598ac8bb7e", + "Value": { + "$ID": "1fa5bb133ff8418f8e1a42dbde8005f8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ffd1fffae8404309b48f2116e96ada68", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "777d7d7cd44c45d1abe89ad8738c282a", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "1931aaa9f5d64b6bbc3859db75a15442", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "123f7b3050fa4559a4dd656c281b3dc1", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "da2843955a574165bb65817b022c979a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "6347e118092b46e1a6a5eb838ef329ed" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/maps.json b/sdk/widgets/templates/mendix-11.6/maps.json new file mode 100644 index 00000000..cccfe021 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/maps.json @@ -0,0 +1,3031 @@ +{ + "widgetId": "com.mendix.widget.custom.Maps.Maps", + "name": "Maps", + "version": "11.6.4", + "extractedFrom": "ad99db47-e255-4c75-a357-b4a640b8102d", + "type": { + "$ID": "e61e8793c7a94d25834a0f978312b045", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/maps", + "ObjectType": { + "$ID": "79d8d2282f5848d8ad35b780bc0d626d", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "c1627ee4cd764d80bbb304a2a64b19a3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advanced", + "ValueType": { + "$ID": "5062ba1991f14b2bb9a655b5840171d5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "96bb496725da4cbb80c39ecd84d3d57b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker", + "Category": "General::Markers", + "Description": "A list of static locations on the map.", + "IsDefault": false, + "PropertyKey": "markers", + "ValueType": { + "$ID": "c2c4645da38a4a5bad2e7865e33c7da6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "7e88d1ced1124310915c90c8b58fba37", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "e74c28433232473893b079f9fec0dde2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Location", + "Category": "Locations::Location", + "Description": "", + "IsDefault": false, + "PropertyKey": "locationType", + "ValueType": { + "$ID": "4e08ffb2193f45878205102161071c1a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "address", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "de5a5117db2745028cd5fe2e402da47d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "address", + "Caption": "Based on address" + }, + { + "$ID": "9b5c189ca0754ee2a917205ba07cbbe5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "latlng", + "Caption": "Based on latitude and longitude" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2f610d5da874430cb9a3c5b99770f08e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Address", + "Category": "Locations::Location", + "Description": "Address containing (a subset of) street, number, zipcode, city and country.", + "IsDefault": false, + "PropertyKey": "address", + "ValueType": { + "$ID": "89d2ef821da84894a74332596b298b2a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "4a1871948275470db6a562922106e436", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Latitude", + "Category": "Locations::Location", + "Description": "Decimal number from -90.0 to 90.0.", + "IsDefault": false, + "PropertyKey": "latitude", + "ValueType": { + "$ID": "095e918d8ebe4868b1af1eb68aa25346", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "44a2b1455b4947649206176361e5bef8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Longitude", + "Category": "Locations::Location", + "Description": "Decimal number from -180.0 to 180.0.", + "IsDefault": false, + "PropertyKey": "longitude", + "ValueType": { + "$ID": "5248445486544bfb98710db09c83703c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "283556f9c8a94f678dd8c389880fbd35", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Title", + "Category": "Locations::Location", + "Description": "Title displayed when clicking the marker.", + "IsDefault": false, + "PropertyKey": "title", + "ValueType": { + "$ID": "4c8515c6e07c4522b286144a714337dd", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "9fbb9d7549494d07a55b3a9aed708167", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "Locations::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClick", + "ValueType": { + "$ID": "9fcc18431d6a4eeaae1205f9b3f9093b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "a40f4f0eb7944204ad16975934c40ca4", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker style", + "Category": "Locations::Visualization", + "Description": "", + "IsDefault": false, + "PropertyKey": "markerStyle", + "ValueType": { + "$ID": "56fb8e9dcc7b4d41a3d76376fdbd1d3f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "default", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "8403f7729afd4bcb87904c9e0c40158c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "default", + "Caption": "Default" + }, + { + "$ID": "9f2daa9fb6634de6bab7ba831720f1e8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "image", + "Caption": "Image" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "6678dc68ff18466d83c76c55efea60c3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Image", + "Category": "Locations::Visualization", + "Description": "Image that replaces the default icon.", + "IsDefault": false, + "PropertyKey": "customMarker", + "ValueType": { + "$ID": "fe8dd0ac375e439980e93212ee6f0ce6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Image" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "efde290a2f9145d6bfa7acb2ade8a990", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker list", + "Category": "General::Markers", + "Description": "A list of markers showing dynamic locations on the map.", + "IsDefault": false, + "PropertyKey": "dynamicMarkers", + "ValueType": { + "$ID": "14d5bef75ec94db1995e8200dcb13e28", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "25cc64bda3c0419896de07f5eaca16bd", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "f2553e0260084d0b918475ec73b61bf7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "Locations::Location", + "Description": "", + "IsDefault": false, + "PropertyKey": "markersDS", + "ValueType": { + "$ID": "c750addd81fa4bfe8bf1dfe5b8819a23", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "acc98270cc024bcf80ba0b2c91154375", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Location", + "Category": "Locations::Location", + "Description": "", + "IsDefault": false, + "PropertyKey": "locationType", + "ValueType": { + "$ID": "9281c7c4146d44ba897571c8221b079b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "address", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "030f654f211c4791892a054697a6ce00", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "address", + "Caption": "Based on address" + }, + { + "$ID": "ec0b1ac3f25b449694a011e25feed4d3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "latlng", + "Caption": "Based on latitude and longitude" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "4b719379959e4defbb8c2bf003d2f857", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Address", + "Category": "Locations::Location", + "Description": "Address containing (a subset of) street, number, zipcode, city and country.", + "IsDefault": false, + "PropertyKey": "address", + "ValueType": { + "$ID": "ac417c9d9a754c278b02ba1d384873a8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "markersDS", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "6cb234f97b7748e4ad05c286f828339d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Latitude", + "Category": "Locations::Location", + "Description": "Decimal number from -90.0 to 90.0.", + "IsDefault": false, + "PropertyKey": "latitude", + "ValueType": { + "$ID": "2d74ea55bd1d4a15b4fac70072d82450", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "markersDS", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "fe2bdfeea0134d64aec3a3e39472d53d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Longitude", + "Category": "Locations::Location", + "Description": "Decimal number from -180.0 to 180.0.", + "IsDefault": false, + "PropertyKey": "longitude", + "ValueType": { + "$ID": "70f9675d7db249b49308f170f434b08c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "markersDS", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "ad0f39400dd14fde9d301de627238f8a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Title", + "Category": "Locations::Location", + "Description": "Title displayed when clicking the marker.", + "IsDefault": false, + "PropertyKey": "title", + "ValueType": { + "$ID": "893441c419fc4084972b9e7c15afe724", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "String" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "markersDS", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "c5203f159a99476c815d8c4e14f62ac6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "Locations::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClickAttribute", + "ValueType": { + "$ID": "f42c1d09b74644c78b43db7234bd5af0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "markersDS", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "68bf93cfb19947cfaaa17dca3bbebddc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Marker style", + "Category": "Locations::Visualization", + "Description": "", + "IsDefault": false, + "PropertyKey": "markerStyleDynamic", + "ValueType": { + "$ID": "4ff0d328eba84d7b8f29d2e36b2c2d5e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "default", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "b98c24a7b9054693af6cf61badccf526", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "default", + "Caption": "Default" + }, + { + "$ID": "2af857f04ad9453eb12cfe5091baf41c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "image", + "Caption": "Image" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "616ae72c74f64e23adede6010e90e0ef", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Image", + "Category": "Locations::Visualization", + "Description": "Image that replaces the default icon.", + "IsDefault": false, + "PropertyKey": "customMarkerDynamic", + "ValueType": { + "$ID": "7cf49c660afa49509d62442f7a485a18", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Image" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "b6136d0be7a340518187169ec00b465d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "API Key", + "Category": "General::Configurations", + "Description": "API Key for usage of the map through the selected provider.Google Maps - https://developers.google.com/maps/documentation/javascript/get-api-key Map Box - https://docs.mapbox.com/help/getting-started/access-tokens/ Here Maps - https://developer.here.com/tutorials/getting-here-credentials/", + "IsDefault": false, + "PropertyKey": "apiKey", + "ValueType": { + "$ID": "09be00d8f1224d1780e01f809cede4f1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "1c59d9d6a67047c5a40e6fc8b978a52d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "API Key", + "Category": "General::Configurations", + "Description": "API Key for usage of the map through the selected provider.Google Maps - https://developers.google.com/maps/documentation/javascript/get-api-key Map Box - https://docs.mapbox.com/help/getting-started/access-tokens/ Here Maps - https://developer.here.com/tutorials/getting-here-credentials/", + "IsDefault": false, + "PropertyKey": "apiKeyExp", + "ValueType": { + "$ID": "1d0ca1807b7a4c188901b1001a93d843", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "bb062c94387c42a0987fae1806890976", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "1fc75220f0094e6aacdbc7359d1763e0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Geo location API key", + "Category": "General::Configurations", + "Description": "Used to translate addresses to latitude and longitude. This API Key should be a Google Geocoding API Key found in https://developers.google.com/maps/documentation/geocoding/overview", + "IsDefault": false, + "PropertyKey": "geodecodeApiKey", + "ValueType": { + "$ID": "f0ba21e99e7a4956822a0af45241f80c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + }, + { + "$ID": "0d23929280b44d4b96f4fe2506565269", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Geo location API key", + "Category": "General::Configurations", + "Description": "Used to translate addresses to latitude and longitude. This API Key should be a Google Geocoding API Key found in https://developers.google.com/maps/documentation/geocoding/overview", + "IsDefault": false, + "PropertyKey": "geodecodeApiKeyExp", + "ValueType": { + "$ID": "01f318fdbcb74b3c96f4123991443967", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "82f6edf49ecd47d689df367f089a618b", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "3e446fd397b542f58292fdc09dd2fcdb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show current location marker", + "Category": "General::Configurations", + "Description": "Shows the user current location marker.", + "IsDefault": false, + "PropertyKey": "showCurrentLocation", + "ValueType": { + "$ID": "a28bc879e4c34593a3e6878c351f4ca9", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "3c9ebc02957344339dec23e766471396", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Drag", + "Category": "Controls::General", + "Description": "The center will move when end-users drag the map.", + "IsDefault": false, + "PropertyKey": "optionDrag", + "ValueType": { + "$ID": "fefaf6ed6f80470b8a6fcd9b8a9b7c94", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "f8bb3d60a7af4d9397360938fe798fb0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Scroll to zoom", + "Category": "Controls::General", + "Description": "The map is zoomed with a mouse scroll.", + "IsDefault": false, + "PropertyKey": "optionScroll", + "ValueType": { + "$ID": "e5662314569345b1803fb73d7c4ab430", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "935e370a95464770bf6ab8d29ed447ef", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Zoom", + "Category": "Controls::General", + "Description": "Show zoom controls [ + ] [ - ].", + "IsDefault": false, + "PropertyKey": "optionZoomControl", + "ValueType": { + "$ID": "b0b80411e3124191a92100cbe93e3db8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "618c187a7d9444cd99c058239bd1e44d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Attribution control", + "Category": "Controls::General", + "Description": "Add attributions to the map (credits).", + "IsDefault": false, + "PropertyKey": "attributionControl", + "ValueType": { + "$ID": "d5bb7676542f43388ccc3dfc718e552a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "4382be42783e472188087566985ea82e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Street view", + "Category": "Controls::General", + "Description": "Enables the Street View control.", + "IsDefault": false, + "PropertyKey": "optionStreetView", + "ValueType": { + "$ID": "4d014e7183f84350adf356e0841c93f1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "68761f13194f4fa78a91a933493dc79d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Map type", + "Category": "Controls::General", + "Description": "Enables switching between different map types.", + "IsDefault": false, + "PropertyKey": "mapTypeControl", + "ValueType": { + "$ID": "faa643358be24c8f9fc1e6a0c9931a99", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "74e1a477405a428aaa7c171040ded18d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Full screen", + "Category": "Controls::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "fullScreenControl", + "ValueType": { + "$ID": "4b80cff0ad2542da9471af0dde5a7ce0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "28459429a6c84171a985e7ab12ae5b15", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Rotate", + "Category": "Controls::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "rotateControl", + "ValueType": { + "$ID": "8aeac75979f441a9a859d2220a6987e4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "fbee14175814430081d1838607fe598c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width unit", + "Category": "Dimensions::Dimensions", + "Description": "Percentage: portion of parent size. Pixels: absolute amount of pixels.", + "IsDefault": false, + "PropertyKey": "widthUnit", + "ValueType": { + "$ID": "261f821d00864615bd250604183f8088", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "b987d91471794413b51dd88cd5e31a8a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "10f6e81523214840884bd69210154c90", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "a3891f06592d4eb2b4ab58a6708f135b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "width", + "ValueType": { + "$ID": "82e33d7c012e4890bfc90069f764f474", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "29dad9f049d8488d9baa6b6269152d87", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "fb10229a44ea4bf38317da9e0abcdeef", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentageOfWidth", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "6780c46a3a184c419198ac36ab0a43dd", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfWidth", + "Caption": "Percentage of width" + }, + { + "$ID": "63ccf957b54745138583ec889925be05", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + }, + { + "$ID": "14d71a46c95c42798788443e1322eeb6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfParent", + "Caption": "Percentage of parent" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "ea79bfe2b31c4624b96fd3ff0e65711e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "9a51e03cde754a299d811b1f2282a0ad", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "75", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "bf5c7591417440148511fc0f6bf85a45", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Zoom level", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "zoom", + "ValueType": { + "$ID": "8827712fc9334098bea294b6d9bb1e20", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "automatic", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "03d8de308c9a43c18fe7d68277bca9ec", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "automatic", + "Caption": "Automatic" + }, + { + "$ID": "4d0b99816dfa458a8a8ecce691b3433f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "world", + "Caption": "World" + }, + { + "$ID": "ff5ab1ff9fef4f039e97b566b718949c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "continent", + "Caption": "Continent" + }, + { + "$ID": "3b19e53d94e6405cb4a0289d9dbd3064", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "city", + "Caption": "City" + }, + { + "$ID": "42c9010bd63747a49250fd0eb0e55659", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "street", + "Caption": "Street" + }, + { + "$ID": "96f24b2db1ac40929aac0992aa07407b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "buildings", + "Caption": "Buildings" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "d5a6fb461ece46e3a3beee3b75828965", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Map provider", + "Category": "Advanced::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "mapProvider", + "ValueType": { + "$ID": "bd04a24174a645f8843b6dbcdeb2343f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "googleMaps", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "856dc481ceab479f896b5494ae630f86", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "googleMaps", + "Caption": "Google Maps" + }, + { + "$ID": "ff72b6e7008b47278342c4e8efaa9c79", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "openStreet", + "Caption": "Open street" + }, + { + "$ID": "53b11afb6ed148a7a7bdf684ec99c009", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "mapBox", + "Caption": "Map box" + }, + { + "$ID": "61b9e617077449678e1beced5793e54b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "hereMaps", + "Caption": "Here Maps" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "812fcdda6cfe4725825271a11ed4bf40", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Google MapId key", + "Category": "Advanced::General", + "Description": "Used to render and style the Google map. This MapId key from Google can be found in https://developers.google.com/maps/documentation/get-map-id", + "IsDefault": false, + "PropertyKey": "googleMapId", + "ValueType": { + "$ID": "d9b6b067fb74419d8c0884faffe79c30", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "String" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "Custom description please", + "WidgetId": "com.mendix.widget.custom.Maps.Maps", + "WidgetName": "Maps", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "58a5cd1f2d5e467abc707e6be92a3a33", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "d8b26ae66d1941a59db1c3831f1f9ed7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c1627ee4cd764d80bbb304a2a64b19a3", + "Value": { + "$ID": "873cd45e09e345139c82dfd9fcf9666b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2b6917c46b7044689bdbbca85571a374", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "5062ba1991f14b2bb9a655b5840171d5", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "cac2f8d11a03428ba337a170ff5c7d47", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "96bb496725da4cbb80c39ecd84d3d57b", + "Value": { + "$ID": "679a04c9167c40f585b0abd9ba63abc3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f6facb452e464f89af6b26ffdcc5194e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c2c4645da38a4a5bad2e7865e33c7da6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "459d7ba94dd342578e51ad58633ab5fc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "efde290a2f9145d6bfa7acb2ade8a990", + "Value": { + "$ID": "c3af2c36a80c4c179042a985eba3a7d2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ca7da29e37e04981ab10c8095c150b77", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "14d5bef75ec94db1995e8200dcb13e28", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "fce7ba1c5bf54a179fa30f9fe6d319f0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b6136d0be7a340518187169ec00b465d", + "Value": { + "$ID": "88c439a5bc16427981be6ea59ebd447c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "095cc27723b249fa9dfaadccf5f0a090", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "09be00d8f1224d1780e01f809cede4f1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d63e65f8e64e412586b8e03eedda78a4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1c59d9d6a67047c5a40e6fc8b978a52d", + "Value": { + "$ID": "a16aacdace1d4cd1ba517fdd4e330021", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6ec4c6fdebdb4bcbbb0f6e62f2fa3076", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1d0ca1807b7a4c188901b1001a93d843", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8e52a7f2c47e448f974b21208b760d34", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1fc75220f0094e6aacdbc7359d1763e0", + "Value": { + "$ID": "febbd63f50744fc59210a4472b7c2c04", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "db8934e222b24b5988b31c8558fa52fa", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f0ba21e99e7a4956822a0af45241f80c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "34144aa567c641a08d4bde4853900063", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0d23929280b44d4b96f4fe2506565269", + "Value": { + "$ID": "44afd7c7b0ec44d69e7791be17ee4b97", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6c862544dc4d4edfb69ba81675ad6b93", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "01f318fdbcb74b3c96f4123991443967", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "30ddcab2c7a241eb932c4bfa40571aa3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3e446fd397b542f58292fdc09dd2fcdb", + "Value": { + "$ID": "4c4ffb7f683045bf94949450ed80c5f5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "21ee2bcad0a7497daba365df4cf08c9e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a28bc879e4c34593a3e6878c351f4ca9", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ce061d692ef54fa180dfa9c87477032a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3c9ebc02957344339dec23e766471396", + "Value": { + "$ID": "de2c411932d54813812a1ce64a5a452a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "fbff272c0faf4036a59dfddc81b456b9", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fefaf6ed6f80470b8a6fcd9b8a9b7c94", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "327756d8691a47d7865493666198998a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "f8bb3d60a7af4d9397360938fe798fb0", + "Value": { + "$ID": "5b61a338ad02434ebb57a2ac7fe4103d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2b259e4b38454ff29dcc5c347869c56b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e5662314569345b1803fb73d7c4ab430", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6f21e41161af48e9a34e95f885fe022b", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "935e370a95464770bf6ab8d29ed447ef", + "Value": { + "$ID": "0a5817196d194b1ca122691adb7ebdd1", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "296c0a24acdb4bda8f869998d240573a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "b0b80411e3124191a92100cbe93e3db8", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "dc7a8a9e02e4463cbf55edf2cb3b5e0d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "618c187a7d9444cd99c058239bd1e44d", + "Value": { + "$ID": "3cdffcd747a04727ae996166d2056a1f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4c3759dfd7e44ac9948805d0182b4985", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d5bb7676542f43388ccc3dfc718e552a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "072b4f2734164a33be80fd49b7e72a1d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4382be42783e472188087566985ea82e", + "Value": { + "$ID": "0bcca54534254692a1073a675d453879", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "efb23c6dd57644bdb9c17012fb486b37", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4d014e7183f84350adf356e0841c93f1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6f981973417f4a9d8cb7413c589c1818", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "68761f13194f4fa78a91a933493dc79d", + "Value": { + "$ID": "e10daa96916f4c819e87a7420f49902b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5ea33f32520745639aa928b06edb1212", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "faa643358be24c8f9fc1e6a0c9931a99", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "49566206770540f6824dd4ef95190800", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "74e1a477405a428aaa7c171040ded18d", + "Value": { + "$ID": "09b4c2cb078f48dba7babe3614b11e5a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "37fd52c0684f4dcf851a97c533e5cfd6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4b80cff0ad2542da9471af0dde5a7ce0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "167982da695e4cbfaee56a39d7fad4ca", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "28459429a6c84171a985e7ab12ae5b15", + "Value": { + "$ID": "11420c33447f4f61a508964f8c6623f6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a98ccce1fc0e4f04bd8d8e5f1e1c4539", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8aeac75979f441a9a859d2220a6987e4", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d36253ff50744d638b7461e4ef34ec68", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fbee14175814430081d1838607fe598c", + "Value": { + "$ID": "2954c10af76c468bad0bfc79ca610f5b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ff23953a6720453f9d46c7f4d2b2e992", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "261f821d00864615bd250604183f8088", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4dea1608d3e2443183b4d78029f89eeb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a3891f06592d4eb2b4ab58a6708f135b", + "Value": { + "$ID": "ff3c9b05979549fb947c0297dd8a8c1a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7e51efb5db7b4a3dbb5855210cc9b89f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "82e33d7c012e4890bfc90069f764f474", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "725a05a65eef4ce69b525783e8d4c6ab", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "29dad9f049d8488d9baa6b6269152d87", + "Value": { + "$ID": "22af459b5b674def90d0c5476bd1d955", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "92ad3a9fbc18483596da8c79b59fe723", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentageOfWidth", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fb10229a44ea4bf38317da9e0abcdeef", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5cd516c4312e4496a31773ea22206db2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ea79bfe2b31c4624b96fd3ff0e65711e", + "Value": { + "$ID": "ac7baee8eb2947eba81ca4d5161b275a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7af7b8cfc6094269a55d7f0a9d120439", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "75", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9a51e03cde754a299d811b1f2282a0ad", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "842d39d790fe4524b7c749d67fe30fc9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "bf5c7591417440148511fc0f6bf85a45", + "Value": { + "$ID": "6386edcb8146497385e1f3a7624ac180", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0c2b524a98b141beb80076c41e8df8d8", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "automatic", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8827712fc9334098bea294b6d9bb1e20", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4a02dfe6d1a84c4a8ebedf850a1be72a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d5a6fb461ece46e3a3beee3b75828965", + "Value": { + "$ID": "20e1a8f6766746e8b28db4f4ca78f213", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4bafda33f5e4465e97b03394c4ba8120", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "googleMaps", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "bd04a24174a645f8843b6dbcdeb2343f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1a0d45137448496194cd7c37f68126c6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "812fcdda6cfe4725825271a11ed4bf40", + "Value": { + "$ID": "fd33d6922d1d495f941f2f4609876564", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "bca4d68734af4aa8ba2d2b90792eec81", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d9b6b067fb74419d8c0884faffe79c30", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "79d8d2282f5848d8ad35b780bc0d626d" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/popupmenu.json b/sdk/widgets/templates/mendix-11.6/popupmenu.json new file mode 100644 index 00000000..c769ea25 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/popupmenu.json @@ -0,0 +1,1349 @@ +{ + "widgetId": "com.mendix.widget.web.popupmenu.PopupMenu", + "name": "Pop-up menu", + "version": "11.6.4", + "extractedFrom": "27da14a9-0df5-498a-9f15-b4624717e35c", + "type": { + "$ID": "0cac2abf934d48fa8eb4ae0f94c9b7cb", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/popup-menu", + "ObjectType": { + "$ID": "cf31d21ff453452cb5631effe3a9c05f", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "41a6ba65dae14ca092478d58a89b1158", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advancedMode", + "ValueType": { + "$ID": "9b72a47cf16e4506b534639c3a51f41a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "5126887f54bb4b6685de3c7330cae40f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "The area to open or close the menu.", + "Category": "General::General", + "Description": "Responsible for toggling the Pop-up menu.", + "IsDefault": false, + "PropertyKey": "menuTrigger", + "ValueType": { + "$ID": "876dc39bc17448bb871802c41d8659e0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "a6bc7768d1884abdb25dbd24949c8240", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Menu items", + "Category": "General::General", + "Description": "The popup menu items.", + "IsDefault": false, + "PropertyKey": "basicItems", + "ValueType": { + "$ID": "27728cd05caf48ad9d799686c6d57caf", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "767fbdbf9841452fa3e8826b885d6707", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "7d3bf7cf5e3a4a3ca1211e9bd9394e68", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Item type", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "itemType", + "ValueType": { + "$ID": "33faa1b3567c4bf98b9bb6b86fa2ecd8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "item", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "103561643aee4cfc8362100c06bdda09", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "item", + "Caption": "Button" + }, + { + "$ID": "ffcefd8d46b04374859321f9e1060d61", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "divider", + "Caption": "Divider" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "4be4169aed47488d894950ecbf1859a7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Caption", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "caption", + "ValueType": { + "$ID": "d669f115aa364c5cb56200d238e3fc3d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "26530ca70c4d45bfba0636d969cda398", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Visible", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "visible", + "ValueType": { + "$ID": "f79ac389d124439490f06bed685e635f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "5ffc1f747eef43ecb931acdd7a3641df", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Boolean" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "6ecb53922a8444c1ba9286cf5c893cf0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click action", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "action", + "ValueType": { + "$ID": "2ce7a9d2b8c24b39a846abbe16422ea8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "db099962d64048adb51645b24b5261d6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Style", + "Category": "General", + "Description": "An extra class will be added: \"popupmenu-basic-item-[style]\"", + "IsDefault": false, + "PropertyKey": "styleClass", + "ValueType": { + "$ID": "451760b33c844c2ab664aaba250f4383", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "defaultStyle", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "2da850865f0646289798d89dc8f4e968", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "defaultStyle", + "Caption": "Default" + }, + { + "$ID": "2b67e562d7a84ff188b329728add016a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "inverseStyle", + "Caption": "Inverse" + }, + { + "$ID": "1049be2f7df84d4b89ff1c616b762bec", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "primaryStyle", + "Caption": "Primary" + }, + { + "$ID": "2bbb2408614545bbbadde1ac95e7d362", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "infoStyle", + "Caption": "Info" + }, + { + "$ID": "156f3ca569664233b31999cd844819c8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "successStyle", + "Caption": "Success" + }, + { + "$ID": "bca7d72f6f3446c3b38ffeb4dda3a125", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "warningStyle", + "Caption": "Warning" + }, + { + "$ID": "39775715b7844f1a90e8c4e0d27bd13b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dangerStyle", + "Caption": "Danger" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "5f8a0de7b3c44063b9e1a4457ca43258", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Menu items", + "Category": "General::General", + "Description": "The popup menu custom items. To make sure the popup closes correctly after a click, do not configure clickable widgets inside the placeholders. Use the action property of this widget.", + "IsDefault": false, + "PropertyKey": "customItems", + "ValueType": { + "$ID": "25be1209611741068dcf285cf25ac33e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": { + "$ID": "5d4b37a5f76f44248e2a18cab79c303a", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "a26aeba2a68043fbb1bb1164e00aba03", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "content", + "ValueType": { + "$ID": "f0a881c2ba894e41b20ab4897ef52200", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "ad0dee6461c7444499a06432bb26971d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Visible", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "visible", + "ValueType": { + "$ID": "0840323a40bd4d6a876e9b9652793ee7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "4be7b6650a134f2f8240026bdb871971", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Boolean" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "8afd7d5ea9f14c1d9262775517eec6be", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click action", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "action", + "ValueType": { + "$ID": "6849b6340cd54a1a84d1757c8259d0fb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + } + ] + }, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Object" + } + }, + { + "$ID": "0e2e3ab3467841f29358151494ac141f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Open on", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "trigger", + "ValueType": { + "$ID": "d66cf0302d7c48bd8ef0fe7349242d24", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "onclick", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "45fc31e7e6474595b355e618760da77c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onclick", + "Caption": "Click" + }, + { + "$ID": "99eb0ce34a0a43a3a13a2339dddee94a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onhover", + "Caption": "Hover" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "1128b00a0be3410e9e720591fa650a25", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Close on", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "hoverCloseOn", + "ValueType": { + "$ID": "cb1235ad2c6645c6ab58b9cdb331a08b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "onHoverLeave", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "af13f570ed444ca587a07c19fdcfdbd6", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onClickOutside", + "Caption": "Click outside" + }, + { + "$ID": "c2e57b6639e74f309753d3aed70b93f7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "onHoverLeave", + "Caption": "Hover leave" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2e0ec8383923421786ecdfe348b6c037", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Menu position", + "Category": "General::General", + "Description": "The location of the menu relative to the click area.", + "IsDefault": false, + "PropertyKey": "position", + "ValueType": { + "$ID": "f0ba32b0b7564d718b5feb2de7d17cf6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "bottom", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "6b3280dac8714d98b892c177702a9b74", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "left", + "Caption": "Left" + }, + { + "$ID": "5f32d28ee17542c4ab8b80ddd2e69b70", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "right", + "Caption": "Right" + }, + { + "$ID": "d0ccb3df28264cd6b4f28e9828d4275b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "top", + "Caption": "Top" + }, + { + "$ID": "cd83fe3c0e954092b1abd6063e8a7f98", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "bottom", + "Caption": "Bottom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "0947f24837dc4955b353f50e1fed2fb9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Clipping strategy", + "Category": "General::General", + "Description": "'Absolute' positions the floating element relative to its nearest positioned ancestor, while 'Fixed' breaks it out of any clipping ancestor.", + "IsDefault": false, + "PropertyKey": "clippingStrategy", + "ValueType": { + "$ID": "fa7fb44f25cc4eb6be1d01314ca26d0d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "absolute", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "9ae8b8b2f3dd4f48a01abf5c8bebd3e4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "absolute", + "Caption": "Absolute" + }, + { + "$ID": "9f9f071ac8ab4f199fe6cc7ccec57b84", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "fixed", + "Caption": "Fixed" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "6ad862c454614a41abf53d83a0ff9717", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show preview", + "Category": "General::Development", + "Description": "Use this to see a preview of the menu items while developing.", + "IsDefault": false, + "PropertyKey": "menuToggle", + "ValueType": { + "$ID": "71b85f07db4043fe857276118603b90f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Menus", + "StudioProCategory": "Menus & navigation", + "SupportedPlatform": "Web", + "WidgetDescription": "Displays a set of pre-defined items within the Pop-up menu", + "WidgetId": "com.mendix.widget.web.popupmenu.PopupMenu", + "WidgetName": "Pop-up menu", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "d13f245d7e3d432682e885da39ae2ee3", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "c9093e7dd8274bf1a0aa3979c81f6a0d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "41a6ba65dae14ca092478d58a89b1158", + "Value": { + "$ID": "a284fc347e5940749843e4a349b8a699", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7fd12fa5efa644aea9442d66ce3f84c6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9b72a47cf16e4506b534639c3a51f41a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "712232f4d86141ddba65ab0aaa76371d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5126887f54bb4b6685de3c7330cae40f", + "Value": { + "$ID": "1e62712e4b004d97be70966381be6cb6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7b9f6afd8bbb4f37a8a7ae23e2ec84d7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "876dc39bc17448bb871802c41d8659e0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b1aba17d3aa646a683bb29760b954641", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a6bc7768d1884abdb25dbd24949c8240", + "Value": { + "$ID": "351ce20dead048bcacb1043a6538dff0", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "87699400e8194302bc7f39ec304a3b15", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "27728cd05caf48ad9d799686c6d57caf", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "824e54b164004f4b9679a3a9f2627efa", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5f8a0de7b3c44063b9e1a4457ca43258", + "Value": { + "$ID": "7528ed2d77244e6d8a5f55ab45e637d6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a75653f7014e49c695f57454f050ff9a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "25be1209611741068dcf285cf25ac33e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "27b276c493874c1694ededc49f24c90b", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0e2e3ab3467841f29358151494ac141f", + "Value": { + "$ID": "6d3a25d0244645d097460466ab89aed0", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8005024a7b614ac5a35713c13c4ebcf7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "onclick", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d66cf0302d7c48bd8ef0fe7349242d24", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9dce354af2a44c389e07b79f7a996fd0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1128b00a0be3410e9e720591fa650a25", + "Value": { + "$ID": "ace1ab7ae5aa4a23bd0d8d6085335575", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "da035eb3d8234cb49e03b734827b8fe8", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "onHoverLeave", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cb1235ad2c6645c6ab58b9cdb331a08b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9fe4b2b0ff474988bdbdb4e3e56f95f3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2e0ec8383923421786ecdfe348b6c037", + "Value": { + "$ID": "b25532ae028946beb70f19df3f7dcf3e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d09ce8b62c7b40d99769a7ba70120c46", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "bottom", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f0ba32b0b7564d718b5feb2de7d17cf6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "008de3a462ef47ff969be21f45e032c6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0947f24837dc4955b353f50e1fed2fb9", + "Value": { + "$ID": "7e6576a1ad5c409aa4911ece1c75a5a4", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0d825db5820444df8fddbda6c6d50281", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "absolute", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fa7fb44f25cc4eb6be1d01314ca26d0d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9798754de1044ca0b3597489179aabc5", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6ad862c454614a41abf53d83a0ff9717", + "Value": { + "$ID": "d866d0accb3548f4b46adec8432d1150", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c62db20c11ca4d4bb4377a0384307f98", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "71b85f07db4043fe857276118603b90f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "cf31d21ff453452cb5631effe3a9c05f" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/progressbar.json b/sdk/widgets/templates/mendix-11.6/progressbar.json new file mode 100644 index 00000000..f73576db --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/progressbar.json @@ -0,0 +1,1441 @@ +{ + "widgetId": "com.mendix.widget.custom.progressbar.ProgressBar", + "name": "Progress Bar", + "version": "11.6.4", + "extractedFrom": "e4145eec-a60f-480d-a9be-f0635326cdce", + "type": { + "$ID": "944e6c9f7c1b4232bda7626b13f3306c", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/progress-bar", + "ObjectType": { + "$ID": "fde990a9f86b455292414b0840af5129", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "1e514eb4fa604332895d4dd71c695092", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "type", + "ValueType": { + "$ID": "41ccccd2636d45f1a42f1cfe21015f57", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "7a334344dec940949a824dbf66f8aa77", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "3bf8cc062efe46b5a746a59d2239b47e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "e22c6a9851a64bc7be7be65a64b51964", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2de0351bceb54d0ea5cb543b7f5b1ae2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticCurrentValue", + "ValueType": { + "$ID": "f0c8322957174e2ca1991e0df3485b84", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "50", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "6363b735ff5840e087baa1ccdb340841", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicCurrentValue", + "ValueType": { + "$ID": "c318c47b274d47eba1894a4ce11ccdd5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "ad3ea7c1b5854a41bc05f9872e4e659c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionCurrentValue", + "ValueType": { + "$ID": "8a1f337a6fb84022af59cf5167968555", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "9a93a4d0feae4d32b5c2f0f2b28a23e5", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "d6fb0a0e584646a499d6fb11ef590cee", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMinValue", + "ValueType": { + "$ID": "dad03323c6f54af8a087945f76b74457", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "faa9de725689408db0ae597bccfecef1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicMinValue", + "ValueType": { + "$ID": "f848ba13e6f14dffb61f509b32be21c3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "345748c40fd14f429fa6bbc1b8972088", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMinValue", + "ValueType": { + "$ID": "73e4e171386046ddbbe8b54e6428d903", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "d059ecdcff2c4c0c97e3dedc5b769f0e", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "483d1b946ccd435b8a0f8c9a10a747fe", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMaxValue", + "ValueType": { + "$ID": "72e692a291df41efa31421eb6dcc62b6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "cab55d0c44854dd8a130e22d98dd4a15", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicMaxValue", + "ValueType": { + "$ID": "672c807573374a1a9f5171f0ae9508ae", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "ddb641cc89be45bfab18cba7062eef25", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMaxValue", + "ValueType": { + "$ID": "228bd9f9aad54867bcf9fb3378a99551", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "314500999e7049e5a6dbe085ce8852a8", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "4f8b788e95e249d3bfe6fa32446c47c1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "1e5eef190ff942729f13de0f88e19265", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "ce23095f395d4fb892f363a78a7e7cd8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "General::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClick", + "ValueType": { + "$ID": "6e080a3c6f764c2e8c121d1340ddf4b0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "c81ab1d734d644e5bcf8bb632ea96400", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show label", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "showLabel", + "ValueType": { + "$ID": "d4e751d4c300495f88a643879b3b278d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "42b87d6da19c4d948e1fd2c978d323f0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Label type", + "Category": "Progress Label::Progress Label", + "Description": "Note: If the Size of the progress bar is set to \"Small\" in the Appearance tab, then text and percentage labels will be shown in a tooltip and custom labels will be ignored.", + "IsDefault": false, + "PropertyKey": "labelType", + "ValueType": { + "$ID": "f7be2ef4139f402182ea8f24ec3b191f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "c184c2e47516406c87b0f0e7be2d6af5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "d9d2491650774ed7a63bed38aa5e115f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "455e316459904de887d5947e10bf37b7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "a261aa8eb6344c919992eb5129c8b909", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Label text", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "labelText", + "ValueType": { + "$ID": "4970890363d4437083e63fa843c8c3f4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "c62372e449af4a299f42a2314f6af605", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom label", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "customLabel", + "ValueType": { + "$ID": "f615f936bbcf4a55b62b157fc510f3da", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "The widget lets you display a percentage as a bar", + "WidgetId": "com.mendix.widget.custom.progressbar.ProgressBar", + "WidgetName": "Progress Bar", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "f30664b9429e479592fc180c0beab22a", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "a845fc4f36ba4c67a2c60d172b68d61d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1e514eb4fa604332895d4dd71c695092", + "Value": { + "$ID": "e21d0099b55242888ff0f665fd1da180", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "eb6cbdd94e2d4c67b3bfd980ed9cd19a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "41ccccd2636d45f1a42f1cfe21015f57", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4634df7411c74513b1ad845033d15c5d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2de0351bceb54d0ea5cb543b7f5b1ae2", + "Value": { + "$ID": "3d924c1c8c5f43c3a186a50a29723021", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "084f97f1240944b2b9cbd087ce39e748", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "50", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f0c8322957174e2ca1991e0df3485b84", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a948bcd5e1ad4bb6897c628f9174d05d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6363b735ff5840e087baa1ccdb340841", + "Value": { + "$ID": "4686251ee5db455388c01c93f8b7c63b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c97d99dae5a94d2fb74561bd87123926", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c318c47b274d47eba1894a4ce11ccdd5", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "36f6d8f8019e47b882ee25e67f9847f0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ad3ea7c1b5854a41bc05f9872e4e659c", + "Value": { + "$ID": "868f7cfb76a945e6befc7273d46e9b1b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ad731613d3a14f46a823a8c9430908ce", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8a1f337a6fb84022af59cf5167968555", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d9543361c1e441b299eecbaa05887be8", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d6fb0a0e584646a499d6fb11ef590cee", + "Value": { + "$ID": "c21b2dd69c214378928baeb90a433e2b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "188ab117006d438588fb7c4faedb199f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "dad03323c6f54af8a087945f76b74457", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "42cdc990cb644055962a0b166e7c081d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "faa9de725689408db0ae597bccfecef1", + "Value": { + "$ID": "a3f41185563243ff86bf49b2a0675064", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5ceb2ab6b7e148269f44e6fceb382154", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f848ba13e6f14dffb61f509b32be21c3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "66be0df376aa43c3b5cab6ff0807e9fb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "345748c40fd14f429fa6bbc1b8972088", + "Value": { + "$ID": "4c3c60eb4305434d90221e27d7accc43", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e2eece22a5f64cef9a4ee25897e18d52", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "73e4e171386046ddbbe8b54e6428d903", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b04668346cff4edb8aabca81600a0f74", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "483d1b946ccd435b8a0f8c9a10a747fe", + "Value": { + "$ID": "14f64efbbf4343b8bc42038f534b3a20", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f9ee5e966aa844639b7b80bff72a4f61", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "72e692a291df41efa31421eb6dcc62b6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ffaf286e3e5a4b25ac5b2ff1dc3a8c07", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "cab55d0c44854dd8a130e22d98dd4a15", + "Value": { + "$ID": "d6244bca034c4ebf926926d2f999afc1", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "25a6bcaf3af344c58091fbd4393ba69d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "672c807573374a1a9f5171f0ae9508ae", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7a5c656dd02d4921b4e30a4e9ec0baf6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ddb641cc89be45bfab18cba7062eef25", + "Value": { + "$ID": "ccfb935783e04033b33b4abb07d9979c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "54e559686d104059803e2704662c6760", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "228bd9f9aad54867bcf9fb3378a99551", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1cf8ce170a3d4ce085c031887bfee7e9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ce23095f395d4fb892f363a78a7e7cd8", + "Value": { + "$ID": "ab88d9b40cd84edb834e782d815bd599", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b6043e5b826a4b70a9f70631697bcee3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "6e080a3c6f764c2e8c121d1340ddf4b0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "0edd152f744a4f21ab4a1714e551d4fd", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c81ab1d734d644e5bcf8bb632ea96400", + "Value": { + "$ID": "563eaa30d77b4060adfcc21d3ab561c6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c1d4cd8d21ae43ffa5e7f6c688a5d58b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d4e751d4c300495f88a643879b3b278d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6a8448fe207343f09aa3ec3073ff6a49", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "42b87d6da19c4d948e1fd2c978d323f0", + "Value": { + "$ID": "2293a78248864e8fbe2b282ef4838536", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b563093f08b24565ab3a3f445b880bb5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "text", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f7be2ef4139f402182ea8f24ec3b191f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d6f9c1ac07fe4df584d2486c89bf89a3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a261aa8eb6344c919992eb5129c8b909", + "Value": { + "$ID": "3295fe4bc1b64e9092bba87e40edd8bd", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "56983ceafb234e73bf33a404ad7949be", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4970890363d4437083e63fa843c8c3f4", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4848119a2cec4381b11fa6d6543303b0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c62372e449af4a299f42a2314f6af605", + "Value": { + "$ID": "b0ac100698654fcebc7f2b37c5d9f94a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8677d0af9129466899b92796b8269284", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f615f936bbcf4a55b62b157fc510f3da", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "fde990a9f86b455292414b0840af5129" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/progresscircle.json b/sdk/widgets/templates/mendix-11.6/progresscircle.json new file mode 100644 index 00000000..e59d5d2a --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/progresscircle.json @@ -0,0 +1,1441 @@ +{ + "widgetId": "com.mendix.widget.custom.progresscircle.ProgressCircle", + "name": "Progress circle", + "version": "11.6.4", + "extractedFrom": "14dbd39d-2ed6-41f0-97ab-0b8a7927de64", + "type": { + "$ID": "2eb90fcac5c2425294682f0d7e2484b2", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/progress-circle", + "ObjectType": { + "$ID": "ebbdb95e1b4c4c6fa9542519a449c1de", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "2ab3738ee661452186a42b3383f3ddc1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "type", + "ValueType": { + "$ID": "107b076be8f2482dbd15cf7788e2605f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "cf86fdb5d35641fa819c56c47243b325", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "f25b53b19d364b788eeb054b4c2536dc", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "9a7569215f794457944b70c385005045", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2c36c7fca55d40b38efd9aa8eab7bdec", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticCurrentValue", + "ValueType": { + "$ID": "e82cf05f3305400c826705a9d3fd4e9c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "50", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "40a381b5d4bc475f8c2d84b891bba1d5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicCurrentValue", + "ValueType": { + "$ID": "f43952dd54d043779993b1b7291eeb50", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "cb5acbb1c8a04f2c8be67cbc3aeb262b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Current value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionCurrentValue", + "ValueType": { + "$ID": "e08d4b98d9b84b56ab51315d6ae217e4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "1d0d60436dd34508a64c3e58b98f5414", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "e4240e167e9d4a10bc156109bbf15b90", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMinValue", + "ValueType": { + "$ID": "25ae8dda5aa746eabfb5762a4cc02c00", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "e0cfc04b97bc42d9ba4d437a0b0cfc84", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicMinValue", + "ValueType": { + "$ID": "deb7d9b5c4f94207a896f062ca61833a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "99f279020bb14510bf51667ad9cc3781", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMinValue", + "ValueType": { + "$ID": "cb0efd2f3475449fac18a2667c3b253f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "08505b17b3bc4df5b1c3f9366cd6ef7f", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "d20a8472d5734d3fa292bfbfd23d6fb2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMaxValue", + "ValueType": { + "$ID": "06616c9d49cc48198026f1a4800f2a0a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "3d554ef63e76405da46e6288bf4b7fdf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "dynamicMaxValue", + "ValueType": { + "$ID": "4dea4f2bb87d4e15a962ddd5a273aafe", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "d3d78addd4b14cfda7192abd6ce3f31b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMaxValue", + "ValueType": { + "$ID": "a152e3a0a4ab4cee96138084db2c1dbc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "6beb265e206748b1b1c663d71c052a7e", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "7093dd83e5424b1493d3cd0a2914be56", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "81e1746433674dcda8e285cc1d71fc3a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "83682c422de64ae0a2abcfeeef83b52e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "General::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClick", + "ValueType": { + "$ID": "0c2b78a5e5714c7d88074fb08f3af4c7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "e90a48a2241344ffb0fff5a058a24015", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show label", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "showLabel", + "ValueType": { + "$ID": "1f7af91ae1ce4295ad14f9fb71baf47d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "fc3e1c06e2b246d2a724895c91ce1a6a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Label type", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "labelType", + "ValueType": { + "$ID": "40686d0058af4743a1a40b293238a743", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "95dfc73dfff34fd783fde789efb41685", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "79e2afefde984a74bd633c959552dbac", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "db67623a299d4da9a2f1c6b38b6a1ec5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "ebc6572423304b53b0eccca9d7a2f2d2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Label text", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "labelText", + "ValueType": { + "$ID": "3686d1d3154042e6a6b5bfdc3967733c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "1ab4a2b500dd4fa8a6eef6362f14327a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom label", + "Category": "Progress Label::Progress Label", + "Description": "", + "IsDefault": false, + "PropertyKey": "customLabel", + "ValueType": { + "$ID": "006de2c006b44259b09ae2b7830cf545", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "Displays a progress in a circle", + "WidgetId": "com.mendix.widget.custom.progresscircle.ProgressCircle", + "WidgetName": "Progress circle", + "WidgetNeedsEntityContext": false, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "032defcb43a34a9eac1d009b50ae918b", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "b97478495eca46b5a2cbe6f6d428e303", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2ab3738ee661452186a42b3383f3ddc1", + "Value": { + "$ID": "62606c0886b0457ebf34228aa0f5dce3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "46979eeb5d36430ea99d309f94214695", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "107b076be8f2482dbd15cf7788e2605f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a3aa841cbb5c4d1da8aae6b3095bba8e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2c36c7fca55d40b38efd9aa8eab7bdec", + "Value": { + "$ID": "5559cce94a1d4a199d7e444a5d8fd862", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e97823a72e1146088e187217891241e3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "50", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e82cf05f3305400c826705a9d3fd4e9c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "24577a50b26a479e8d1f0c1308aa3669", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "40a381b5d4bc475f8c2d84b891bba1d5", + "Value": { + "$ID": "6bdf99b5c3d84cef811f49d0c0008592", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b616794d8b3e445fa5dad233c7274525", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f43952dd54d043779993b1b7291eeb50", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "963a477dddd044b09eb8c73ee71737c9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "cb5acbb1c8a04f2c8be67cbc3aeb262b", + "Value": { + "$ID": "dd25496562024f07a455791d59840fdb", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "17759c04fdf84b81af03b9259c180d8d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e08d4b98d9b84b56ab51315d6ae217e4", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "81027da277744d3fade60d08c6ce6658", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e4240e167e9d4a10bc156109bbf15b90", + "Value": { + "$ID": "cd08030a59b942a3b4b97b3d267a4987", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e28efafc74a5486893e150c230d126f9", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "25ae8dda5aa746eabfb5762a4cc02c00", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b471c2eb9af84e74b14518579c4b947d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e0cfc04b97bc42d9ba4d437a0b0cfc84", + "Value": { + "$ID": "17e4fae352204d51a838bf906dfc9165", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b7fa4ecea3034e52b9262303fd5d09cc", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "deb7d9b5c4f94207a896f062ca61833a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "cfe7a8899d274918b821bfa76496b415", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "99f279020bb14510bf51667ad9cc3781", + "Value": { + "$ID": "18b0618550e74489a7719ba340b1c99b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5266500fd2e04f318819f7ee2531e695", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cb0efd2f3475449fac18a2667c3b253f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "92fed44e35194b34aa3131638e72ba64", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d20a8472d5734d3fa292bfbfd23d6fb2", + "Value": { + "$ID": "83616bcf1c6144f38cfb7d538bc056de", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "60e19e5cec5a43b6a3165401e9716fb5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "06616c9d49cc48198026f1a4800f2a0a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5db59a13ae3e49b3ab48828ca276cfa6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3d554ef63e76405da46e6288bf4b7fdf", + "Value": { + "$ID": "7a33e458b587491bb553dd8b715411e2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1b547aff8bc14d8b94480ceffaea6e0f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4dea4f2bb87d4e15a962ddd5a273aafe", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ffd1030fec60496183234a9f5786c6a7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d3d78addd4b14cfda7192abd6ce3f31b", + "Value": { + "$ID": "6a1ecb96bec947b99948558ddf9051b3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "385c5e7337354655b7f0f716b10e270d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a152e3a0a4ab4cee96138084db2c1dbc", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d7a526b3f02c465aa4e2fce2c92c3913", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "83682c422de64ae0a2abcfeeef83b52e", + "Value": { + "$ID": "1ef5eef2eca24dc5a243de909357d104", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "789d4e8034ec4647b8b8c4647249b13b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0c2b78a5e5714c7d88074fb08f3af4c7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "614a3b8835bc465ba01fd3c70aa1ba85", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e90a48a2241344ffb0fff5a058a24015", + "Value": { + "$ID": "9c8407244b144208b39439fac4da07b3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ca038866d1a1421ea9ec2c7ed9e9e32e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1f7af91ae1ce4295ad14f9fb71baf47d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "68dfce8f5bfa42f38c8ce3cc576d9c93", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fc3e1c06e2b246d2a724895c91ce1a6a", + "Value": { + "$ID": "68730fb666fd440ea2a86f5e55d3e423", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2cf70ca00db74cf68510ee53b50db2e9", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "text", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "40686d0058af4743a1a40b293238a743", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ce4f9fb3683542829a737bd737e942c4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ebc6572423304b53b0eccca9d7a2f2d2", + "Value": { + "$ID": "027f403fd9774ffdbebc210157d24da2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "961bc1fbff134ee8a20c510187a276d7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3686d1d3154042e6a6b5bfdc3967733c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "20cad138eeff43959ccb203cd1f00b17", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1ab4a2b500dd4fa8a6eef6362f14327a", + "Value": { + "$ID": "be7a951a8e7141028a6a51d13f560aec", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b3fb327b068e424488152a148354178d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "006de2c006b44259b09ae2b7830cf545", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "ebbdb95e1b4c4c6fa9542519a449c1de" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/rangeslider.json b/sdk/widgets/templates/mendix-11.6/rangeslider.json new file mode 100644 index 00000000..27f10f5b --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/rangeslider.json @@ -0,0 +1,2645 @@ +{ + "widgetId": "com.mendix.widget.custom.RangeSlider.RangeSlider", + "name": "Range Slider", + "version": "11.6.4", + "extractedFrom": "4a968512-f88c-4148-9b0c-3e0c361ff04d", + "type": { + "$ID": "3ef28a01fc1f477382c8582336cb3153", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "", + "ObjectType": { + "$ID": "e2cc58fe74c94d28810bb7fb24561cc7", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "554ec4315ec245929352273932a89c3b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Lower bound attribute", + "Category": "General::Data source", + "Description": "The lower bound value on the slider", + "IsDefault": false, + "PropertyKey": "lowerBoundAttribute", + "ValueType": { + "$ID": "7ddfe9e2ed994fb693846b05486ec390", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "4d40c949191f48a7be90a0b0d68b6196", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Upper bound attribute", + "Category": "General::Data source", + "Description": "The upper bound value on the slider", + "IsDefault": false, + "PropertyKey": "upperBoundAttribute", + "ValueType": { + "$ID": "3ab0df4ea43a4605b5cc39442711eeed", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "5c85326a4d40481280a9d404528e0144", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advanced", + "ValueType": { + "$ID": "92d6938916c54fd082e893e22d92427d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "46ba53f1c6a7432a95bb0ce57a758689", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "minValueType", + "ValueType": { + "$ID": "3729aacdb4b74941a0957e01ef511017", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "01ccadea284d4a10a80efc8c3b583d61", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "96111ba405384d6c9ffd081870d1e8f4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "0ed866f9d5654e62afc6c81c0127e8ca", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "b02238afde6f49809a91ce4f8bea0d06", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMinimumValue", + "ValueType": { + "$ID": "b6fab1e61b5a4bb597862f0b28d2c627", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "68645c7548e54db2a680f8c3d0e29ced", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "minAttribute", + "ValueType": { + "$ID": "a3eb0a7c01b34349b96e5cdcd527b79e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "4424aa30958c4855bfbeb28c4b3454e1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMinimumValue", + "ValueType": { + "$ID": "ddc8d32eb1e34a0a9ae024f2301027ea", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "4aa1c645a2f14a4aba2e55baac3c8325", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "6f5e9fa2c60045bea9897d4f243bf73c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "maxValueType", + "ValueType": { + "$ID": "4b5ae9fe42f547b88ebcbe0bb93eaaec", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "345d7212c0a647e08d88fc00b8778ac9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "b1e9067977904a53b3df83388faad3ad", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "9078792f7b82482597105887d6818867", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "e325d43051d64b0b8447c57f15161fd5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "staticMaximumValue", + "ValueType": { + "$ID": "85adc388c8424978ac39a965f38cbb6b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "5142730aa3a141f79cebc2bb5d4b3bc3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "maxAttribute", + "ValueType": { + "$ID": "9959994b157d4623a631f024bee24833", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "1e6ad7c767944c3582e9a2191e98f386", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionMaximumValue", + "ValueType": { + "$ID": "65f20d1ed81d46dc8e0e6bd7bf0767c8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "9ea5f5100415436b9193d4b548c563b8", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "330fef525af74d639eba268a60365db5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "stepSizeType", + "ValueType": { + "$ID": "98af97293fce479690fbcf69f8eb07e2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "d01d092b3c1b4766943e984b59939b93", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "fa391f6df22c4d0e852fc05b4ec1cc14", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "002b53450d574455a17c9a266de74178", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "c896c97f7f8a44a3ad17a233ac90eb21", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "stepValue", + "ValueType": { + "$ID": "7eef723e9a144b0cbf7592ec39d40038", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "1", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "9b62bdaa50f343c89d72ee615e78e554", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "stepAttribute", + "ValueType": { + "$ID": "fb6506d8ebd241669b78ede1bf270f90", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "fd0f5896d6794d99bbf2d2df9f85ba3e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "expressionStepSize", + "ValueType": { + "$ID": "cf476108aaf14ea9b97d4069d5ea6347", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "d6efca05384a422e9c920812354577a7", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "0a4b77100f5d45e1b64de00d9146f0a0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "showTooltip", + "ValueType": { + "$ID": "c7d47ea71e714d6896b5ad7e78495a79", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "c5cf364875e2467cb7a7e0073be07115", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Lower bound tooltip type", + "Category": "General::General", + "Description": "By default tooltip shows current value. Choose 'Custom' to create your own template.", + "IsDefault": false, + "PropertyKey": "tooltipTypeLower", + "ValueType": { + "$ID": "ca53df30de394047ab012bf02941f3cd", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "value", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "ecf36d6cde1143759b2e1ff629535f1f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "value", + "Caption": "Value" + }, + { + "$ID": "138ae2ff5e3e45d1858a0e8f91ea63dc", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "customText", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "b344c50078e345de8e50905065d3a18f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "tooltipLower", + "ValueType": { + "$ID": "4ec00d853dac490fb586ae481424ef2a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "010da53cbf424383892220994429816d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Upper bound tooltip type", + "Category": "General::General", + "Description": "By default tooltip shows current value. Choose 'Custom' to create your own template.", + "IsDefault": false, + "PropertyKey": "tooltipTypeUpper", + "ValueType": { + "$ID": "259e78212ad54c22a9e1d802674886ad", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "value", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "fe7b60a2326848c5a5f11840f8e2306a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "value", + "Caption": "Value" + }, + { + "$ID": "81b90f6248734f188b1bead66a5707ef", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "customText", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "310c51d35fa1485baff199a21fa2e8a2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "tooltipUpper", + "ValueType": { + "$ID": "cc0c047bd9e643828eea559a2455108f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "83fe76da909e4bb4bb6228d11013965a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip always visible", + "Category": "General::General", + "Description": "When enabled tooltip is always visible to the user", + "IsDefault": false, + "PropertyKey": "tooltipAlwaysVisible", + "ValueType": { + "$ID": "26aa062192c4436ba64028ee21bb248f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "ab13e877cd3049a5baf80bd37b0d40f6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "Label", + "ValueType": { + "$ID": "934bde1943514ba584bd86fab1a68f1e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "c34733b7ec8340f2bea61806306cb684", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Editability", + "Description": "", + "IsDefault": false, + "PropertyKey": "Editability", + "ValueType": { + "$ID": "a8ccd4935b2c4a50a96e98b4797be4f2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "8a5acda206704d0a88e118aa6136ec8e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "3695694c4da64fee9b9d6ceec1830533", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "2911689cb2644e4d9fe8c47841e25572", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Number of markers", + "Category": "Track::Track", + "Description": "Marker ticks on the slider (visible when larger than 0)", + "IsDefault": false, + "PropertyKey": "noOfMarkers", + "ValueType": { + "$ID": "c205f26b4dc64ad7bf8e8155aef8b3dd", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "1", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "cd8a414fb6614e8885c56023a8d3f11a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Decimal places", + "Category": "Track::Track", + "Description": "Number of decimal places for marker values", + "IsDefault": false, + "PropertyKey": "decimalPlaces", + "ValueType": { + "$ID": "4ccbe005f0824547bc74ebabe9845679", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "2b283254046d48888e2a7c02d631c53e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Orientation", + "Category": "Track::Track", + "Description": "If orientation is 'Vertical', make sure that parent or slider itself has fixed height", + "IsDefault": false, + "PropertyKey": "orientation", + "ValueType": { + "$ID": "59f8eb1b03c1485ca4f16d2df33ef36c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "horizontal", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "49bb78f43d484d27a2913f293bd347a1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "horizontal", + "Caption": "Horizontal" + }, + { + "$ID": "ba5c432291304e7b900cde060fa63867", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "vertical", + "Caption": "Vertical" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "ec281d6e770345f58940cff2c3f3ed3e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Track::Track", + "Description": "", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "36216cf348b2421eb1ca3f2c33c98ced", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "dcfacae9da2444ffb0e715bfd582a2ae", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "9db20e1253034859bbe4c9d9c20ed52d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "a92660eee3fb4a1f8b2a01ccf688af09", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Track::Track", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "891f6ffc4117404f8df4030a8ccedbc1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "1a4be49805e947fb9680d235c64612b4", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On change", + "Category": "Events::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onChange", + "ValueType": { + "$ID": "632fbcaa462c46aba07e72d59606d7db", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Input Elements", + "StudioProCategory": "Input elements", + "SupportedPlatform": "Web", + "WidgetDescription": "Change range of values using a slider", + "WidgetId": "com.mendix.widget.custom.RangeSlider.RangeSlider", + "WidgetName": "Range Slider", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "cbba65d11c004925adcde3c1acb5d5db", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "1acb43e2c08440929185f890b8eb3e08", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "554ec4315ec245929352273932a89c3b", + "Value": { + "$ID": "903e8d3f7fc04ae499a51f87a89c136d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "03eea4e382934f9181c6c9a2fcdf687b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7ddfe9e2ed994fb693846b05486ec390", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "3422dd808ef941f9a78a03bf2d6643fc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4d40c949191f48a7be90a0b0d68b6196", + "Value": { + "$ID": "3cdeb75ba22a4db2a105393d9e03c396", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "51a4d7f8825747de907366ba77183fe4", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3ab0df4ea43a4605b5cc39442711eeed", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6a33bbe8f678415a9f2dc56014405c72", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5c85326a4d40481280a9d404528e0144", + "Value": { + "$ID": "07ac1d9ff59e4ea3bb75eba45c26207c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "534c0c16b1494bf18e67b66d4130afbc", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "92d6938916c54fd082e893e22d92427d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bc9a3fbbacaa4422bdbcf1cb466c2bc0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "46ba53f1c6a7432a95bb0ce57a758689", + "Value": { + "$ID": "e0c56940e31246998215be432de34241", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8422e8193c124e02b6870552b4a1c28c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3729aacdb4b74941a0957e01ef511017", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2ab0b61329124c35b625c0782e325018", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b02238afde6f49809a91ce4f8bea0d06", + "Value": { + "$ID": "359aff5887794a699c5d6f96eb564aaf", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c77fc70ee23c45078ae77c59d243205f", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "b6fab1e61b5a4bb597862f0b28d2c627", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2fdc5e5e944d4ce1bd491564ff6b59f6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "68645c7548e54db2a680f8c3d0e29ced", + "Value": { + "$ID": "24f76d54221145968e8695c6a05ab961", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e8a1aa5a669d408ebc03420b9d4d9477", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a3eb0a7c01b34349b96e5cdcd527b79e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4008a4a554764c7592012f144be25ae7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4424aa30958c4855bfbeb28c4b3454e1", + "Value": { + "$ID": "9aef5763f13c413982ca9ca7f7575f74", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "cc793f9985ae4d0bba7247371670c7df", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "ddc8d32eb1e34a0a9ae024f2301027ea", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b0fad1f32c7249ff9e92731e925b8f8e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6f5e9fa2c60045bea9897d4f243bf73c", + "Value": { + "$ID": "dc0352553bcb45afa94140c0922d85a8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "db7151c34c7e4131bf29710d8c2ccf0c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4b5ae9fe42f547b88ebcbe0bb93eaaec", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ba692c647f62483aa871ac06b427f9a2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e325d43051d64b0b8447c57f15161fd5", + "Value": { + "$ID": "7b4a9936bcc74628919729cb40b66475", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "10c83c0011654652ad66052ebea94c10", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "85adc388c8424978ac39a965f38cbb6b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f1e478413d7e43f7b707a3e5fdb26ff6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5142730aa3a141f79cebc2bb5d4b3bc3", + "Value": { + "$ID": "131d35c69e9c4a9fa05732220e45d549", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0af7838f2b144d91b2e67a18ca5a74eb", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9959994b157d4623a631f024bee24833", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b48dd8a49ab64a2c8b7b1cd49c60dad6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1e6ad7c767944c3582e9a2191e98f386", + "Value": { + "$ID": "b7b0e3d2609a4c6d82b84051b3ee55b4", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6857e33ba09240eca9e870fe0e145984", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "65f20d1ed81d46dc8e0e6bd7bf0767c8", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c07f1781e79140849cb1ee304fc5a7d1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "330fef525af74d639eba268a60365db5", + "Value": { + "$ID": "36876299f2cf46dc9bd1a45468714d1a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "20eb87a0e3b94d2090fa4f08ed096dc7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "98af97293fce479690fbcf69f8eb07e2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "92344fdd38e7477dbb1e82ccde8494fc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c896c97f7f8a44a3ad17a233ac90eb21", + "Value": { + "$ID": "a79276a77b294ea4b1ad58e6fbc5bc60", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b3c1a5a5a5514aeba25978f0e9014895", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "1", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7eef723e9a144b0cbf7592ec39d40038", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "fe9ae3e344724a4aad0747b509d2ebfa", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9b62bdaa50f343c89d72ee615e78e554", + "Value": { + "$ID": "87e2f3f1efde40d48f37e07e66952593", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3266b720fbf846a1beda336e26836f03", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fb6506d8ebd241669b78ede1bf270f90", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7c908ca175e14c239259b47b1de90c85", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fd0f5896d6794d99bbf2d2df9f85ba3e", + "Value": { + "$ID": "a61ca865c0ac45fc90473d078305058e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "04458b8a97fb48f2ab0e7d35e870acc0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cf476108aaf14ea9b97d4069d5ea6347", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a1027c63ad074f0d8e8a99c8066aaa03", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0a4b77100f5d45e1b64de00d9146f0a0", + "Value": { + "$ID": "0bd7b2359a584b3a90e2404a43694e16", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "63f8724be78a4a339c5f78093b577842", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c7d47ea71e714d6896b5ad7e78495a79", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5d61331e6e854b73b094e2f0a46fec5e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c5cf364875e2467cb7a7e0073be07115", + "Value": { + "$ID": "643315a84bf4451b98dd1bfdb01c1676", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "00fbe50e19f24c6ebd8789c7358b4006", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "value", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "ca53df30de394047ab012bf02941f3cd", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "782b04fb61234c03ab25f365e11fefd8", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b344c50078e345de8e50905065d3a18f", + "Value": { + "$ID": "84552986c0334d6f92ef66f9ec0f0b2b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e0770e0615a440658ed948d98efbe105", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4ec00d853dac490fb586ae481424ef2a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5303c529bb7249e4aed69e783f0bfb88", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "010da53cbf424383892220994429816d", + "Value": { + "$ID": "77e81d0f386c41e7893fc248078c95c6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "56e8b845ff2f4bf196775a3ecbeaaa4d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "value", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "259e78212ad54c22a9e1d802674886ad", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "72dc2c902b894f89abe0461db79995ec", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "310c51d35fa1485baff199a21fa2e8a2", + "Value": { + "$ID": "665dd01061b445a6a13c0f525f72b8d7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b63cfbc784c9433c9688dfe840975c40", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "cc0c047bd9e643828eea559a2455108f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "47c108b8197341d79ebe2d1ced21c556", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "83fe76da909e4bb4bb6228d11013965a", + "Value": { + "$ID": "880a501ef2794437bbb9e96f31a7de92", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1ec7d121a7654de3ad50b46ff6cf6868", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "26aa062192c4436ba64028ee21bb248f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a26c364d0a3d4e6bbb6b3fc83af95dd3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2911689cb2644e4d9fe8c47841e25572", + "Value": { + "$ID": "5412309138b24b95969d02a91100bf5c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "70848fc696334358bc449eedda9f7f4c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "1", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c205f26b4dc64ad7bf8e8155aef8b3dd", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e0f8f9b800a54716bd377c93a6d42f79", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "cd8a414fb6614e8885c56023a8d3f11a", + "Value": { + "$ID": "ee73be96e4ae49fc9a15dd85fc3ac5cd", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "89ef6bc26a824f339f70818bbeaa5a1a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4ccbe005f0824547bc74ebabe9845679", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "31def9ab3f4947b0abc7b48685919096", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2b283254046d48888e2a7c02d631c53e", + "Value": { + "$ID": "765ebef6f23444a79b216dd56dd104d6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e6d2290b2d4648e6b8a7c70a63df9768", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "horizontal", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "59f8eb1b03c1485ca4f16d2df33ef36c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a2d27a81574240ba9d3d9c737ce77334", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ec281d6e770345f58940cff2c3f3ed3e", + "Value": { + "$ID": "e81e0bad32e44d8fa97851862e7fa8e7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1f8b95accb8248adbd6bfff1416b0a40", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "36216cf348b2421eb1ca3f2c33c98ced", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f24db2bd41d542e9a35d2a23b33d940a", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a92660eee3fb4a1f8b2a01ccf688af09", + "Value": { + "$ID": "4298ce03ea3d47e19337f6f0da7beb2c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "346ed2285f0340b5867a2b9c105ee978", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "891f6ffc4117404f8df4030a8ccedbc1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c70de5699ba342e9a8a295bc4a93f84e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1a4be49805e947fb9680d235c64612b4", + "Value": { + "$ID": "b415cdda945b4f2b979b6b9a3a798e05", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "57ccfa31b4a44d9e86cc28970f3089f6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "632fbcaa462c46aba07e72d59606d7db", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "e2cc58fe74c94d28810bb7fb24561cc7" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/selectionhelper.json b/sdk/widgets/templates/mendix-11.6/selectionhelper.json new file mode 100644 index 00000000..90b4551a --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/selectionhelper.json @@ -0,0 +1,497 @@ +{ + "widgetId": "com.mendix.widget.web.selectionhelper.SelectionHelper", + "name": "Selection helper", + "version": "11.6.4", + "extractedFrom": "db6308e9-1668-4b9c-9362-396926b9be58", + "type": { + "$ID": "873c092cebf748da851343a09e88f45b", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/modules/gallery#selection-helper-widget", + "ObjectType": { + "$ID": "9e656c653ef342d3845454289b322274", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "4037e1c6c68d4e73b05b9b3a867426f9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Style", + "Category": "General", + "Description": "Custom enables placeholders for using widgets for the different states.", + "IsDefault": false, + "PropertyKey": "renderStyle", + "ValueType": { + "$ID": "d48a6b57e84742f2a9bb6ceb0aeafe25", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "checkbox", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "7ad644c4c05a46fe81fee3a832ea2d44", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "checkbox", + "Caption": "Check box" + }, + { + "$ID": "6579c8c4b06447daa247638b6ee5927c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "d7829790916f40aca6ef134f9edf0766", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Check box caption", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "checkboxCaption", + "ValueType": { + "$ID": "149877eae02848e9aa3d2ba6a1e6ef7f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "9649f6f5faae43b69ac24086fd9ce1d1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "All selected", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "customAllSelected", + "ValueType": { + "$ID": "7fb6b2bb41024f609ba68494223d0d62", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "48e2e7c08c8f47358e3d9d12744130a3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Some selected", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "customSomeSelected", + "ValueType": { + "$ID": "fcd058c1a9834a3da831dce7d604751b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "dc0ff7d1f6944af8a0e0d81ad8852c7a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "None selected", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "customNoneSelected", + "ValueType": { + "$ID": "36652ea8325147a6bad5d74f0e4d2239", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Data Controls", + "StudioProCategory": "Data controls", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.selectionhelper.SelectionHelper", + "WidgetName": "Selection helper", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "b42d0753072a49e895ff65a182234092", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "457c864d7e754c6faa9de43665e83083", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4037e1c6c68d4e73b05b9b3a867426f9", + "Value": { + "$ID": "7b26ad31e3a641e081a751f8126d5b4a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "9357181066c0428c861f8866416df4bf", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "checkbox", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d48a6b57e84742f2a9bb6ceb0aeafe25", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "5ca12cdcc96b47df82adfbec5846e4bc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d7829790916f40aca6ef134f9edf0766", + "Value": { + "$ID": "2bd7f1f1ce324c32bbbbfe9101e20800", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "41b170058a14431c853b4a769fc89e31", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "c6e21fe70f204a47a51b9a47f37f0ce5", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "a2b27af9d35c49e4aa187bd9b280ec90", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "c30b2d4e59944a54b5e655a017870541", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "149877eae02848e9aa3d2ba6a1e6ef7f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f8a490c0e07b45449d6b4e5b9f006979", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9649f6f5faae43b69ac24086fd9ce1d1", + "Value": { + "$ID": "0c0fe3f2dc1b47d5822100d6ffe81a43", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6d79b0f1557449979d73df56805538a7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7fb6b2bb41024f609ba68494223d0d62", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b1342d22e8ab4dd9b58d0ca0309d12ef", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "48e2e7c08c8f47358e3d9d12744130a3", + "Value": { + "$ID": "a4ec99c420c64b92b8236967505f76a0", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0b4161f0fedb47daa7d802ff5dbcd12b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fcd058c1a9834a3da831dce7d604751b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9b32f57d6ba8470897c2e9f30c5739cb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "dc0ff7d1f6944af8a0e0d81ad8852c7a", + "Value": { + "$ID": "dbec3df9cc73483c9f097bb71161cb0b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c9b5c7537dcc49a9abc088527b2f5332", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "36652ea8325147a6bad5d74f0e4d2239", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "9e656c653ef342d3845454289b322274" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/slider.json b/sdk/widgets/templates/mendix-11.6/slider.json new file mode 100644 index 00000000..46858142 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/slider.json @@ -0,0 +1,2372 @@ +{ + "widgetId": "com.mendix.widget.custom.slider.Slider", + "name": "Slider", + "version": "11.6.4", + "extractedFrom": "4e3b4136-5eec-4dcd-8d73-a35b2780f568", + "type": { + "$ID": "1cebcd49b4784d1bb7df56ead6a23852", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "", + "ObjectType": { + "$ID": "34982dee741746dba78ec516d879e64b", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "35fef95bbdcf43889f04602705c7ef75", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Value attribute", + "Category": "General::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "valueAttribute", + "ValueType": { + "$ID": "1e349f4b57ca4073ac440aade34e5c89", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "f810a14e29ae4150a63eae21367d7174", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advanced", + "ValueType": { + "$ID": "e7644006a32647089322604588c1d0d5", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "869bb41535c54405b0fbfbdb8d6e04f3", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "minValueType", + "ValueType": { + "$ID": "67eca3e1eeb5444582a56e16071d40c3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "b2874eb4b98e4b7b93f28f0bb4c7aa9b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "2f2915c85fc445848282a9140139a9fc", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "95242983e9f948df8574278122f5e295", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "1f4751df33a8448cbfb5a15aabe65e8f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "The minimum value of the slider.", + "IsDefault": false, + "PropertyKey": "staticMinimumValue", + "ValueType": { + "$ID": "79e246b8001e4c1daf97d0b152fc4c11", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "afb6a44c7cbd4f1e8ec78bcd9d6fffb7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "The minimum value of the slider.", + "IsDefault": false, + "PropertyKey": "minAttribute", + "ValueType": { + "$ID": "c64e95e54d594ed691ae52336031cfc6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Decimal", + "Integer", + "Long" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "1fbc6b692e4a4ba5b4c6eb75568ce0ef", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Minimum value", + "Category": "General::General", + "Description": "The minimum value of the slider.", + "IsDefault": false, + "PropertyKey": "expressionMinimumValue", + "ValueType": { + "$ID": "a308b1ad527f475badf313456be8bf9b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "753d69b97c9944589ddda0f2d3ab43c1", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "0eff64514f594e8eb9b1f6f323f02a4c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "maxValueType", + "ValueType": { + "$ID": "0045153c59b34939accce0c12a31040c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "eca9b1b245e4437fa49ff118563b1c5f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "3773f805a57d47989394c38c312bed2e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "30ab60bf76e248bb81e02743e216abcd", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "b035f99160b143a0b300a16db407b225", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "The maximum value of the slider.", + "IsDefault": false, + "PropertyKey": "staticMaximumValue", + "ValueType": { + "$ID": "861edef43b324c9ebd43da8db2fb8281", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "deccb8f618e149f89bb2196691e7c2ab", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "The maximum value of the slider.", + "IsDefault": false, + "PropertyKey": "maxAttribute", + "ValueType": { + "$ID": "fe8bbc121b2844d1977c2393cf89f06a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "45fe495d72454e94bfa69e2e23109806", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Maximum value", + "Category": "General::General", + "Description": "The maximum value of the slider.", + "IsDefault": false, + "PropertyKey": "expressionMaximumValue", + "ValueType": { + "$ID": "3f325bb0ebbf44c680a122b9a66ad8c1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "39668ff1e1be46859fb78d7b78864e39", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "c1a8a0fb09b64c2b9a57f9f4fba8a4a4", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "stepSizeType", + "ValueType": { + "$ID": "e7f4ca319aee4715bf46ded2d3011884", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "static", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "703ed7c25c024b27a64afcce12e563d4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "static", + "Caption": "Static" + }, + { + "$ID": "21aef542caac4d4dbc385c83720493d5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "e879bed1e4d2471d8f4c1870644cd956", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "930d4c830ca542f7bf4ca3a59880ddb6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "Value to be added or subtracted on each step the slider makes. Must be greater than zero, and max - min should be evenly divisible by the step value.", + "IsDefault": false, + "PropertyKey": "stepValue", + "ValueType": { + "$ID": "a68199998b66481aa0c729d1eb94c3c3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "1", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Decimal" + } + }, + { + "$ID": "aaad1c83d6b84ffeb6559b386d449358", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "Value to be added or subtracted on each step the slider makes. Must be greater than zero, and max - min should be evenly divisible by the step value.", + "IsDefault": false, + "PropertyKey": "stepAttribute", + "ValueType": { + "$ID": "2aeb530b852d4d95874ee117141c6831", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "ca30f6e05b1c423fb42511c8b3bd0b91", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Step size", + "Category": "General::General", + "Description": "Value to be added or subtracted on each step the slider makes. Must be greater than zero, and max - min should be evenly divisible by the step value.", + "IsDefault": false, + "PropertyKey": "expressionStepSize", + "ValueType": { + "$ID": "e31284698448401f9e2b6b4d62b3b2a4", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "0f065c4d736e4e36b9bb467772b23975", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "Decimal" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "6bb028d9aa9a44b5b5125566be472048", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "showTooltip", + "ValueType": { + "$ID": "112f76408933403aaf6f156e9418f824", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "8b030048dcdf41eb8e094add6b3232a9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip type", + "Category": "General::General", + "Description": "By default tooltip shows current value. Choose 'Custom' to create your own template.", + "IsDefault": false, + "PropertyKey": "tooltipType", + "ValueType": { + "$ID": "25af66a7b26a493086c6b7bc79aa21fa", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "value", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "5b4933e5aba541e2ad0630096fbc8524", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "value", + "Caption": "Current value" + }, + { + "$ID": "4f06e8c3c7144bd0bd4dfc1a976ed40b", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "customText", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "4f210c5eb81a4f1d8eeb295481c48998", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "tooltip", + "ValueType": { + "$ID": "2d0c63a8f90f4ab0a4a41f601b446bc9", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "df9a24f780ed4ecfb36166ef9138bd99", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip always visible", + "Category": "General::General", + "Description": "When enabled tooltip is always visible to the user", + "IsDefault": false, + "PropertyKey": "tooltipAlwaysVisible", + "ValueType": { + "$ID": "b28b5b44621b4af6a319318156f548b8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "d56d407ae65b46fba87951cbcc973491", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "Label", + "ValueType": { + "$ID": "863fdf607f264a1d826f8b899ce49705", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "05cd9b84dd044a15907c97a0a8ec8da9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Editability", + "Description": "", + "IsDefault": false, + "PropertyKey": "Editability", + "ValueType": { + "$ID": "ab0c0691fdb94a9eb0b72e913c7b64ab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "47fd1c80e8d44122acf2b583d7805790", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Visibility", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "1c8370fd1715484f9368a39cca9228a8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "da4383b726da4ab8aa34beebc76f62cd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Number of markers", + "Category": "Track::Track", + "Description": "The number of marker ticks that appear along the slider’s track. (Visible when larger than 0)", + "IsDefault": false, + "PropertyKey": "noOfMarkers", + "ValueType": { + "$ID": "61c39e3a48e64872abaa6f4d115b5ad2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "2", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "dff2979b8a5a4ba4bf13336ddba74982", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Decimal places", + "Category": "Track::Track", + "Description": "Number of decimal places for marker values", + "IsDefault": false, + "PropertyKey": "decimalPlaces", + "ValueType": { + "$ID": "5111d996d23b46ff80e1770e0f0d3290", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "0", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "6b3127ae80c94ccba05917cc8dcbf555", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Orientation", + "Category": "Track::Track", + "Description": "The orientation of the slider. If ‘Vertical’, make sure to set the either the height of the parent or slider to a fixed height.", + "IsDefault": false, + "PropertyKey": "orientation", + "ValueType": { + "$ID": "b3f7741b046942a3ac534ae99fddcbb1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "horizontal", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "8664026291c847c0b7b7d313617c0782", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "horizontal", + "Caption": "Horizontal" + }, + { + "$ID": "23530b2ffb11426b93027e248c313901", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "vertical", + "Caption": "Vertical" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "5814b1dd87a74ded8568f0697df3ceb7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Track::Track", + "Description": "", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "e6588cd2ddaa417eb7f42e95c3343a2c", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "58fc3f30ed5f4626981644232153adab", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "86367760b0c44d5ab71da51dfaa8b5eb", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "184cc73c595c4f7b800ac16f39cafd34", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Track::Track", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "a9d27309b2214be097dcc3d2918bba07", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "81540dfbce7147ddbbc46ddf1339e492", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On change", + "Category": "Events::Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onChange", + "ValueType": { + "$ID": "a85e2aecf2324c4eb977e878c7e4bfbf", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Input Elements", + "StudioProCategory": "Input elements", + "SupportedPlatform": "Web", + "WidgetDescription": "Change a number value using a slider", + "WidgetId": "com.mendix.widget.custom.slider.Slider", + "WidgetName": "Slider", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "174dd5cae14f4f8a88317781162d7683", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "a3f5a32b847743e78d23e54297c429d6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "35fef95bbdcf43889f04602705c7ef75", + "Value": { + "$ID": "4695c52f6653419d978b3ba27b785a9e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d2919263e1c5497dac6fbeef61e682fe", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1e349f4b57ca4073ac440aade34e5c89", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "24b630ba1c35497ea609d403077c8e11", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "f810a14e29ae4150a63eae21367d7174", + "Value": { + "$ID": "6f709a93fc5a40198d355a06f50993c6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4a07ee70fa9d4de3a341bfec08df9c57", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e7644006a32647089322604588c1d0d5", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6eb7f55eeebb4f38a9d800d1b1845458", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "869bb41535c54405b0fbfbdb8d6e04f3", + "Value": { + "$ID": "6d3650ed536c4e9db7b12d9961c3c3cf", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d01458c499ab4181bbff0dc1b833bb0b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "67eca3e1eeb5444582a56e16071d40c3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6da9e17060134da6b7c3ee90c80810e1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1f4751df33a8448cbfb5a15aabe65e8f", + "Value": { + "$ID": "df9ffb1c0cac490fbb930b191dafd4a3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4a6f9154ecbf43cba70ce860c58ca9be", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "79e246b8001e4c1daf97d0b152fc4c11", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "95c2b7b524ac47d892ebe95124177b19", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "afb6a44c7cbd4f1e8ec78bcd9d6fffb7", + "Value": { + "$ID": "80f0ac5aa62c44898fb0df0da694f1c6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0f9a06ab0f0c446085b832ef5adc30c1", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c64e95e54d594ed691ae52336031cfc6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ce261d3af3fe4324a370c9eee381294c", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1fbc6b692e4a4ba5b4c6eb75568ce0ef", + "Value": { + "$ID": "d196c7b0cf284d3a812d274f39a6fe7b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "107ef85d6d65495b8d069e42b5935d0e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a308b1ad527f475badf313456be8bf9b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bb06196eda064ef997ab5a089b49b933", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0eff64514f594e8eb9b1f6f323f02a4c", + "Value": { + "$ID": "cb14db00b1bc474b8896e90ec7357101", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "dcd92c15d2d945a4aaaf4b9e0be7949b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0045153c59b34939accce0c12a31040c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "56f1beebf4e049d88fbe57cf3fadf0d0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b035f99160b143a0b300a16db407b225", + "Value": { + "$ID": "bc94eb01b9e1401eb540074ea6a4e50a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "6a594b2e516e4bc79a72838e5cfd069d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "861edef43b324c9ebd43da8db2fb8281", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8e33888a8cbd4c868b0716291aa3dee4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "deccb8f618e149f89bb2196691e7c2ab", + "Value": { + "$ID": "b41a2897b43445299f1af2eac748dae4", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7105cd848dfd460d8b7e6f777f80ee02", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fe8bbc121b2844d1977c2393cf89f06a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "cc5c2082f8454564b0077d276b02e87c", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "45fe495d72454e94bfa69e2e23109806", + "Value": { + "$ID": "00b5f033a3794b77857481f50b83da3d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f7958d89b9cb4e5aa120468762af34bb", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3f325bb0ebbf44c680a122b9a66ad8c1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ee6bb35c899648d6b8bec224605dcda0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c1a8a0fb09b64c2b9a57f9f4fba8a4a4", + "Value": { + "$ID": "d2f6c190f8eb4ee68c8f08e81960bd8f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "51b9b67af85c40cba4966eac97741baf", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "static", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e7f4ca319aee4715bf46ded2d3011884", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b9ab130a016444a9aed78bf4d02985b8", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "930d4c830ca542f7bf4ca3a59880ddb6", + "Value": { + "$ID": "d8eebe3b98ad4165bc369b3c8d54ee64", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7f37d9e734ee4cd7ab7c5506f51ed28b", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "1", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a68199998b66481aa0c729d1eb94c3c3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "536573fa2f1d42909fbfffecb419c4c2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "aaad1c83d6b84ffeb6559b386d449358", + "Value": { + "$ID": "47c7937fdd3d43d9a357d1ab739d381e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f4583334535042eaa7d4d1e131eac61a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "2aeb530b852d4d95874ee117141c6831", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c3455db12fc74df4bdd6cd209ddd9401", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ca30f6e05b1c423fb42511c8b3bd0b91", + "Value": { + "$ID": "c863a9f476b647b7837c6656a75fec3d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "48b1d4a1d0884cefa38dffeead504485", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e31284698448401f9e2b6b4d62b3b2a4", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ba7a4590c37c44b597962fa8d1a22645", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6bb028d9aa9a44b5b5125566be472048", + "Value": { + "$ID": "e432d88898004cbe89a4ce01d77e2a93", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c2e14d49c26d4d908ce99ab031c41896", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "112f76408933403aaf6f156e9418f824", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "182e6be8a1fe4ad18edf21efc6365272", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "8b030048dcdf41eb8e094add6b3232a9", + "Value": { + "$ID": "d3ad0e652cda4a58b6aaa2e70b319390", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "fa220cbd5a1b46c5bda6e3005e6313d4", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "value", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "25af66a7b26a493086c6b7bc79aa21fa", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2fb2b758a260432ea9607f5f9a178ea3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4f210c5eb81a4f1d8eeb295481c48998", + "Value": { + "$ID": "03b293652d4f44ab9c7359167312874b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "929fbaeda39b45e5acbf7a5ea4c41f91", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "2d0c63a8f90f4ab0a4a41f601b446bc9", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b29c026ed4d2486cb668d0ca5103ff24", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "df9a24f780ed4ecfb36166ef9138bd99", + "Value": { + "$ID": "805345d4d6ce4a50b1504ac8f4ea4a63", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4d1f6bdc609a46a6b957d6248a5933e8", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "b28b5b44621b4af6a319318156f548b8", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "713f5d30ad4a4d7b90a81ad3edf76dc3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "da4383b726da4ab8aa34beebc76f62cd", + "Value": { + "$ID": "78ba6db01b374ff0bb6e63d8fcbdad09", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "a4b02a40f454403097c481b316ab0764", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "2", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "61c39e3a48e64872abaa6f4d115b5ad2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f064ddbb0ec34cc9849eacd9b052bdd6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "dff2979b8a5a4ba4bf13336ddba74982", + "Value": { + "$ID": "274faa0d9f67481e944e8ad4bcec305e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "9e8d9fc8d5a54346ad9a5595be2ca50e", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "0", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "5111d996d23b46ff80e1770e0f0d3290", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "4c092c2c4bc24327b5b6cfd58d0b1861", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "6b3127ae80c94ccba05917cc8dcbf555", + "Value": { + "$ID": "544e8a74924d4d3f94a8e64badac3573", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "66a6c980fc514480912f4fcf7eba6296", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "horizontal", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "b3f7741b046942a3ac534ae99fddcbb1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ded2e38f1e28485f90a06c8f333408f2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "5814b1dd87a74ded8568f0697df3ceb7", + "Value": { + "$ID": "bc1f5fa88cef4a0f9e18d8d9affe7877", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "cd5f7792975e4eac8ff3e6416f0f3da9", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "e6588cd2ddaa417eb7f42e95c3343a2c", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e9783ebed60945eea7ee28013a535af1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "184cc73c595c4f7b800ac16f39cafd34", + "Value": { + "$ID": "83e51c24fca641bd8731523a42a4ea76", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d82257e2045f4a9f80aa1dc9c0b937a5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a9d27309b2214be097dcc3d2918bba07", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "30880035ca054551b07b30ecfd6422f4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "81540dfbce7147ddbbc46ddf1339e492", + "Value": { + "$ID": "1898b36152b74cd9b0945cfcfd6fb2e7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e9e0405e0c8d4f3cab2ec52aa5f44ef7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a85e2aecf2324c4eb977e878c7e4bfbf", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "34982dee741746dba78ec516d879e64b" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/starrating.json b/sdk/widgets/templates/mendix-11.6/starrating.json new file mode 100644 index 00000000..e4f9364d --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/starrating.json @@ -0,0 +1,754 @@ +{ + "widgetId": "com.mendix.widget.custom.starrating.StarRating", + "name": "Rating", + "version": "11.6.4", + "extractedFrom": "9bc46bcf-8c41-4054-af2c-c4df94ada936", + "type": { + "$ID": "d338f3b4eb82412796dd827c1576cc9e", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/rating", + "ObjectType": { + "$ID": "324c7ea6f43447a4ab2774e456369d63", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "0c7a6e0a8a0d47af92a29325ed619d5d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Attribute", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "rateAttribute", + "ValueType": { + "$ID": "828e1423342d4967826177f2541d9dad", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Integer", + "Long", + "Decimal" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "4d7ce9c6cdb64510bb3f73e690a185e0", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Empty icon", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "emptyIcon", + "ValueType": { + "$ID": "4923f6d08fa845a8b611feac0103f280", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "eb87905fe3694c9c8e3fac8ffe5169cf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Selected icon", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "icon", + "ValueType": { + "$ID": "628adfc1d80a41d3890aca43afc8d6f0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "94f1bca690934a8f80554bb984335ed8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Amount", + "Category": "General", + "Description": "The number of rating icons", + "IsDefault": false, + "PropertyKey": "maximumStars", + "ValueType": { + "$ID": "4439b8230214425693951efae89f2726", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "5", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "79e40337bdac4edc97f26d20bb5c7ab8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Animation", + "Category": "General", + "Description": "", + "IsDefault": false, + "PropertyKey": "animation", + "ValueType": { + "$ID": "7a6a0b82ee8443eca2fdcffb8ad19069", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "995411fab6d64d199038efce1e785fed", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On change", + "Category": "Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onChange", + "ValueType": { + "$ID": "f4a676e686af45c7ac8ae455ac693162", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "277fce3514c34b4face8d19e3da291d5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "2a4ed057b7da454ca0d337907c3fc86b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "08d018adff5843e0accf403c51578ec4", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Editability", + "ValueType": { + "$ID": "3994e69597c44540a04dfda015cf48c2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "adb30d5b2caf4d07b02ea487b6ef96eb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Visibility", + "ValueType": { + "$ID": "25b0d32262f3482081a47d57542870ff", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "adc6e14a2d4b42d0ba45bb26a793c29e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "8a7c75575b1c4c4b940484c150274bda", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.custom.starrating.StarRating", + "WidgetName": "Rating", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "30eda0a8603545328df699af4c995ab3", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "23d801b020354f008ce4cf8a259a98ee", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0c7a6e0a8a0d47af92a29325ed619d5d", + "Value": { + "$ID": "083eb54283f3464894e427253e4457f7", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "615325777eb745cc9824751085c5c389", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "828e1423342d4967826177f2541d9dad", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f3e44eca78834d2cb5d7a1c6179db05f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4d7ce9c6cdb64510bb3f73e690a185e0", + "Value": { + "$ID": "471ad94515504a5582fb028c5ca71345", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "976b862a4b3f45aeb72d99812f2cc0d4", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4923f6d08fa845a8b611feac0103f280", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "849b3379a16a471680591d817f7119d4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "eb87905fe3694c9c8e3fac8ffe5169cf", + "Value": { + "$ID": "2df0c75221a942a7ae65c2cbab663afe", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7b211f2d8e004e9794822cdf66a56acb", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "628adfc1d80a41d3890aca43afc8d6f0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "edf2b3b2cb1840a0976c80b1f96751eb", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "94f1bca690934a8f80554bb984335ed8", + "Value": { + "$ID": "037f1494af3f42aa9e1baa6e457f8953", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5550190a6b2c480c95d9627c8a96e44c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "5", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4439b8230214425693951efae89f2726", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2406224f710b4b399a4d146b1e4f1b7f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "79e40337bdac4edc97f26d20bb5c7ab8", + "Value": { + "$ID": "928624557f8a4125bedc79e01faf6011", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "747228a3821b474abadae5d3b443bd08", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7a6a0b82ee8443eca2fdcffb8ad19069", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8759b210cf3c4084bcbb239e9bc79b45", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "995411fab6d64d199038efce1e785fed", + "Value": { + "$ID": "733794e8557a47d1860bbfa1f15c236d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3f7b897c1a17404cbfa590fc8defd1a0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f4a676e686af45c7ac8ae455ac693162", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "324c7ea6f43447a4ab2774e456369d63" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/switch.json b/sdk/widgets/templates/mendix-11.6/switch.json new file mode 100644 index 00000000..44812426 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/switch.json @@ -0,0 +1,308 @@ +{ + "widgetId": "com.mendix.widget.custom.switch.Switch", + "name": "Switch", + "version": "11.6.4", + "extractedFrom": "892d009e-9c56-4629-b179-b292824910a3", + "type": { + "$ID": "1ad0e353920b44328e14773dc2ba2902", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/switch", + "ObjectType": { + "$ID": "b43c23fec9844c698d1cceb8ce3514a1", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "cc448ca6125449d5b7b41227ec84a834", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Boolean attribute", + "Category": "General::Data source", + "Description": "Attribute to toggle", + "IsDefault": false, + "PropertyKey": "booleanAttribute", + "ValueType": { + "$ID": "97b5a9fe1d6f433aa58abf7959144ecf", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "Boolean" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "bc997a0a629d419f83f0ddedac356560", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On change", + "Category": "General::Actions", + "Description": "Action to be performed when the switch is toggled", + "IsDefault": false, + "PropertyKey": "action", + "ValueType": { + "$ID": "56f7e892e0f24491a818b0a2518bba57", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + }, + { + "$ID": "49908883689b45afbcb365500ca581b1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Label", + "ValueType": { + "$ID": "d4d7da4cbe234755b0aeb94e4fdb2598", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "f5af59bc6654412490540436834ee5a7", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Editability", + "ValueType": { + "$ID": "174b6a1359d74191bf18283b8bbbdd3b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Input Elements", + "StudioProCategory": "Input elements", + "SupportedPlatform": "Web", + "WidgetDescription": "Toggle a boolean attribute", + "WidgetId": "com.mendix.widget.custom.switch.Switch", + "WidgetName": "Switch", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "7c8f3e942f524df3b92c9c5106ff4947", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "a37265a280ac45539444e119435b7ee6", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "cc448ca6125449d5b7b41227ec84a834", + "Value": { + "$ID": "ea8893e5418547e7b808ced978aeab43", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ea87264a78f94cb4978ca8362b5a3ba6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "97b5a9fe1d6f433aa58abf7959144ecf", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c4b6129b5bd34338829eb1b42ddccedd", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "bc997a0a629d419f83f0ddedac356560", + "Value": { + "$ID": "c139ce93489b420186af33fa82404f61", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ab19832e6cb249eebb62ebc36e4aa338", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "56f7e892e0f24491a818b0a2518bba57", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "b43c23fec9844c698d1cceb8ce3514a1" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/timeline.json b/sdk/widgets/templates/mendix-11.6/timeline.json new file mode 100644 index 00000000..66f11bd5 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/timeline.json @@ -0,0 +1,1704 @@ +{ + "widgetId": "com.mendix.widget.web.timeline.Timeline", + "name": "Timeline", + "version": "11.6.4", + "extractedFrom": "b0fcf32a-15b8-4a68-949c-5bcc1fe3528e", + "type": { + "$ID": "184dc6d1946348f0bcc94d49447ee59b", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/timeline", + "ObjectType": { + "$ID": "1afa43c6e28d4253b9ac20742a5eb2f1", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "19d63ff9d7454e7d81ac52c6645c8f7d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "Data Source::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "data", + "ValueType": { + "$ID": "554693de7a1b42e9a9038465da569f37", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "afbbb63799d848a68070410350638574", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Title", + "Category": "Data Source::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "title", + "ValueType": { + "$ID": "e452f21c4ad041d89a37a07553f6aa67", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "b0de7994f431485899fd97c211d00fb9", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Description", + "Category": "Data Source::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "description", + "ValueType": { + "$ID": "269d023fc4d74501bc3cf0c3cef2bbd1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "d91075a0f05b40ad9005795bc396facb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Time Indication", + "Category": "Data Source::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "timeIndication", + "ValueType": { + "$ID": "c04031d8344f48c7ba9b862cf373168b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "ac9fcc6505014adc984bb8be49d203d8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Custom Visualization", + "Category": "General::General", + "Description": "Enables free to model timeline.", + "IsDefault": false, + "PropertyKey": "customVisualization", + "ValueType": { + "$ID": "ed5f9e316b28483bb5099ebef56aa71d", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "52df8592eb5c448e85b8a5a6d6213fe5", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Icon", + "Category": "General::General", + "Description": "If no icon is configured, a circle will be rendered.", + "IsDefault": false, + "PropertyKey": "icon", + "ValueType": { + "$ID": "d4ea496118b2464f89b84418aaef8786", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "a30c2f86a157461bb0783380db203e8d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Group Events", + "Category": "General::General", + "Description": "Shows a header between grouped events based on event date.", + "IsDefault": false, + "PropertyKey": "groupEvents", + "ValueType": { + "$ID": "a678e6ef7fa9433782f033d125d78134", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "7e4a7e0c5fbf4a3dbbaff59f0477ccf6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Group Attribute", + "Category": "General::General", + "Description": "Will be used for grouping events, as a group header value. If events have no date time value, use \"Unscheduled events placement\" to control rendering.", + "IsDefault": false, + "PropertyKey": "groupAttribute", + "ValueType": { + "$ID": "707ab4744b6d4215ba93114674dff2c0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1, + "DateTime" + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Attribute" + } + }, + { + "$ID": "31a289f2af42434aa70e0108c6836a00", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Group by", + "Category": "General::General", + "Description": "Group events based on day, month or year.", + "IsDefault": false, + "PropertyKey": "groupByKey", + "ValueType": { + "$ID": "fec33b23be2145e69bbdfbfa84866c7e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "day", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "4c8bae5cc7054624a53dd64346c7d9c4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "day", + "Caption": "Day" + }, + { + "$ID": "825309306698468498a3eac186709b6f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "month", + "Caption": "Month" + }, + { + "$ID": "752ce5198b6c4a499b95628ddb9168c9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "year", + "Caption": "Year" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "744a29d0e7674afea89f63013af79abd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Format", + "Category": "General::General", + "Description": "Format group header with current language's format", + "IsDefault": false, + "PropertyKey": "groupByDayOptions", + "ValueType": { + "$ID": "d4a933e4be40429b9ef881825ca0719e", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "dayName", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "aa7ba6ae3c4e43f59188de58f5baa683", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dayName", + "Caption": "Day name" + }, + { + "$ID": "bd54f4eb5ddb4fe795b0de62a474d1e5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dayMonth", + "Caption": "Day and month" + }, + { + "$ID": "1c9cc335229f4aa08671ea2db3ae18d4", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "fullDate", + "Caption": "Day, month, year" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "c4353ef6db284b958048c722dca3a330", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Format", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "groupByMonthOptions", + "ValueType": { + "$ID": "456763c70ddb4f04b258fdc85ec0dcd9", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "month", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "e630c817f2454ffbb81a7e10b31c82d7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "month", + "Caption": "Month" + }, + { + "$ID": "3f042476ec7344a88455a43149ee51ae", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "monthYear", + "Caption": "Month and year" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "855289ad870f49a086424828b07cc67c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Ungrouped events position", + "Category": "General::General", + "Description": "Position in the list of events without a date and time", + "IsDefault": false, + "PropertyKey": "ungroupedEventsPosition", + "ValueType": { + "$ID": "0ce4e9280e144a71840321977b2ebb1b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "end", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "321ab6be42db45a8bdf6ad9def7aef13", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "beginning", + "Caption": "Beginning of the timeline" + }, + { + "$ID": "936e7542844e4e9fa19acb7b27ea887f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "end", + "Caption": "End of the timeline" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "b39a617548134b0da0bc31ce45dd7714", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Icon", + "Category": "General::Custom", + "Description": "Content of the icon", + "IsDefault": false, + "PropertyKey": "customIcon", + "ValueType": { + "$ID": "f2b712fcdf224797823348a4037af1e2", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "2845b27254e042259f51a759688dec2a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Group header", + "Category": "General::Custom", + "Description": "Content of the group header", + "IsDefault": false, + "PropertyKey": "customGroupHeader", + "ValueType": { + "$ID": "38b632e0e5a54c3e9817c631d5f8ee4a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "9e2c30dd4f194a34be693b05e9e664cc", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Title", + "Category": "General::Custom", + "Description": "Content of the title", + "IsDefault": false, + "PropertyKey": "customTitle", + "ValueType": { + "$ID": "c85ec76495af4109ac7166ed74cbf5f0", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "913c748d93e643c0871e1b04d13b074f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Event time", + "Category": "General::Custom", + "Description": "Content of the event time", + "IsDefault": false, + "PropertyKey": "customEventDateTime", + "ValueType": { + "$ID": "19e1f012f2d547af8bd760def1488518", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "718d36da3de74138a5c64453f689af6c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Content", + "Category": "General::Custom", + "Description": "Content of the description", + "IsDefault": false, + "PropertyKey": "customDescription", + "ValueType": { + "$ID": "82f68cfb9aec4fe5bc83dd9f6f3abddc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "fbfe31150090487ea547bda1be5a12de", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "On click", + "Category": "Events", + "Description": "", + "IsDefault": false, + "PropertyKey": "onClick", + "ValueType": { + "$ID": "d2d9f58adeda477fad6dda67f4808b1b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "data", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Action" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "Shows vertical timeline with events", + "WidgetId": "com.mendix.widget.web.timeline.Timeline", + "WidgetName": "Timeline", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "614f17c9f8d14f9287c7c180038f7f18", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "f11314a5c3dc481ba225c867c104ca85", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "19d63ff9d7454e7d81ac52c6645c8f7d", + "Value": { + "$ID": "868d0aaae0a2463e8d9e4981dabab912", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5d91258183ab43d7a254589290233bbe", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "554693de7a1b42e9a9038465da569f37", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9562a8414a514e7292bbf95fea697a02", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "afbbb63799d848a68070410350638574", + "Value": { + "$ID": "a9e92aa4ac994363b42bbf783d0f7346", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "cd46a39b0c0c4abeaf7682b08cb3c725", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "55d1a398436e41dcbe92aa8493ba473b", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "30989a2062a3420d8a6ce0f5e6f1c8bf", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "ac46d7042f7e400b80f350c19c51da59", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "e452f21c4ad041d89a37a07553f6aa67", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "efa84cfa1ddd416ebd33101174c627b3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b0de7994f431485899fd97c211d00fb9", + "Value": { + "$ID": "c57d8291973746608df9d25942d9f770", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ac36b43b694b47428ef7c9261dea5acd", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "ad24c87db8394046b000da061ef1d653", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "77a0c7f0e2f1494aa2d66a3a7418d321", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "72f0ef1204664855b2072b45d8a62165", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "269d023fc4d74501bc3cf0c3cef2bbd1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8f461f13bd6d4b059713d8de18ff3bf7", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d91075a0f05b40ad9005795bc396facb", + "Value": { + "$ID": "e640103189e543f281eadd337a753e1b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1ac2fe0c0b3f45419af3bb2685cf1926", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "cc49b4db32104c9f900f0ac6195459dd", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "f0c7660714944424abb5aaf7407f2711", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "73799115b7e3467fadfa8623e9f92382", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "c04031d8344f48c7ba9b862cf373168b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a1390ac37199496d8acc52c7d87c0435", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ac9fcc6505014adc984bb8be49d203d8", + "Value": { + "$ID": "57057dc6b5004f078bca822dee976f18", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "b833cf27c4794cadb25cdc465de3764c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "ed5f9e316b28483bb5099ebef56aa71d", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d76f56781cfa422f81f7895e07e2f1c2", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "52df8592eb5c448e85b8a5a6d6213fe5", + "Value": { + "$ID": "8945d2755b0248f38197b232cb763566", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8518ee385ec145a4ac4c6fe6db1ea893", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d4ea496118b2464f89b84418aaef8786", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "3caf8007cb1440f18b4a5faba0227e63", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a30c2f86a157461bb0783380db203e8d", + "Value": { + "$ID": "b2c7fbbdb6424e11acb33cef3362be21", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "928757bc1e2f4bda91a66f00fd718164", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a678e6ef7fa9433782f033d125d78134", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2a7303925c864c67a9430f0be68a9a06", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "7e4a7e0c5fbf4a3dbbaff59f0477ccf6", + "Value": { + "$ID": "d2f7ce68b1e145d5a4b430f649305b51", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "90a2fa097a434d37810e0ad48201dd54", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "707ab4744b6d4215ba93114674dff2c0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "635c71ac786e42d4bf42e59c38b7a636", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "31a289f2af42434aa70e0108c6836a00", + "Value": { + "$ID": "f30c2df45aa54a25915a4df3db47b69b", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "22139a29618f49bd8345f0d66b9c3caf", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "day", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fec33b23be2145e69bbdfbfa84866c7e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "8cc62f2ffbb7450fbaad3395860071c0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "744a29d0e7674afea89f63013af79abd", + "Value": { + "$ID": "8df9465d2a434303a2eebe61d05bf5dc", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "d8090d8e46ff4672858b29bcf5b0dfca", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "dayName", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d4a933e4be40429b9ef881825ca0719e", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "de17e10486d44c6b894ea9482c62a1f9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "c4353ef6db284b958048c722dca3a330", + "Value": { + "$ID": "3d4a210d1a984813b9e024594fa7e9f3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "7be3685334ec42b7b779df44742866cf", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "month", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "456763c70ddb4f04b258fdc85ec0dcd9", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9c254a37a023454183bca02d303c46e4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "855289ad870f49a086424828b07cc67c", + "Value": { + "$ID": "65104003151141edb7635dc76891fb4a", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "553aed8874424b4b8e6cae83ac650aca", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "end", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "0ce4e9280e144a71840321977b2ebb1b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "31fcb0b40daf4dc7b59b63f0a9729def", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b39a617548134b0da0bc31ce45dd7714", + "Value": { + "$ID": "717ab523f88643558ca3ea23974daa1c", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "46fff1a1b0134c31952c0c2d092801f5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f2b712fcdf224797823348a4037af1e2", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "80fcb36b285149db8d66ff8c9cd17160", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2845b27254e042259f51a759688dec2a", + "Value": { + "$ID": "7a4c93c8aedc4cee899f95ed88a44f10", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "09c7fda9573246e0a139511614b7b8c3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "38b632e0e5a54c3e9817c631d5f8ee4a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "bc479c7a631a49e3bfa70cd4b6a3149d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "9e2c30dd4f194a34be693b05e9e664cc", + "Value": { + "$ID": "4b9ad1a5f1b343f4abe597a6d3aeb860", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0c2604fbf93f4916888bd3786cc7c16d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c85ec76495af4109ac7166ed74cbf5f0", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "3a15566d9251493e98d3dbffe557c089", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "913c748d93e643c0871e1b04d13b074f", + "Value": { + "$ID": "2f82d9cd8de74b8b8abd7dc75736ddbe", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "eddbe48dba034858b5d594ddb2a5ced0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "19e1f012f2d547af8bd760def1488518", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e2308ad668f84a64b530aa181f2b4f4b", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "718d36da3de74138a5c64453f689af6c", + "Value": { + "$ID": "a2fb8b30a7d64560b970570d58dcedb1", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "09b3fa71577a4a9fbebe5871a52f260d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "82f68cfb9aec4fe5bc83dd9f6f3abddc", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "404d47e9a8fa43c18d6ec9f1e1a5da06", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fbfe31150090487ea547bda1be5a12de", + "Value": { + "$ID": "03ae48b129fa4423bae45b7b28bcf3bf", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "2ee14dd2fa9149cbbcc94db5c89fa9cc", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "d2d9f58adeda477fad6dda67f4808b1b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "1afa43c6e28d4253b9ac20742a5eb2f1" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/tooltip.json b/sdk/widgets/templates/mendix-11.6/tooltip.json new file mode 100644 index 00000000..cfe9bca0 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/tooltip.json @@ -0,0 +1,729 @@ +{ + "widgetId": "com.mendix.widget.web.tooltip.Tooltip", + "name": "Tooltip", + "version": "11.6.4", + "extractedFrom": "4f015d39-33a2-4eb7-af2f-690843711c8b", + "type": { + "$ID": "560879b62ab84f138cd8614bc8baf444", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/tooltip", + "ObjectType": { + "$ID": "24ab3251545e4dc68fcb27cec359bd7b", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "a8b62c57b6904bb09d92476001b62465", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Trigger: place widgets here", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "trigger", + "ValueType": { + "$ID": "f35d6d9ae4394e258aa2df3eb4f116ca", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "951b5df1e633490284aad752ea0e929a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Render method", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "renderMethod", + "ValueType": { + "$ID": "f9c2984344e74e61b4fb4c6ec0a1ccab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "d034622ffb31449f9f035ddadc03a90d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "0113ff5262504cd680754b7b6106558f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "88fb6fc6d7494b95aac9ff432e15e0bb", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip content: place widgets here", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "htmlMessage", + "ValueType": { + "$ID": "3237602ef2394bc698b485ebe4ae9fab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "bf40f8b60ae1422eaaabbd8ef19706bd", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "textMessage", + "ValueType": { + "$ID": "6a30920dcd0e46ef87733da04bd36147", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "378a7fbb8b0d4049bdf043595d1b2d18", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Tooltip position", + "Category": "General::General", + "Description": "How to position the tooltip in relation to the trigger element - at the top, to the left, at the bottom or to the right.", + "IsDefault": false, + "PropertyKey": "tooltipPosition", + "ValueType": { + "$ID": "7b2c6334d9dd413e84fdc2d4a95293f7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "top", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "ee588bd6708c4fcda2d054f997ba4978", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "left", + "Caption": "Left" + }, + { + "$ID": "aa7b3580e1d94131a8322634750ec71a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "right", + "Caption": "Right" + }, + { + "$ID": "858291e8f2f54f0db5e4eca85180e580", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "top", + "Caption": "Top" + }, + { + "$ID": "0dafcac23fa9460389eaeebf3e95c33d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "bottom", + "Caption": "Bottom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "b8bf64d2d6a4433e8850cbecbdf71c39", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Arrow position", + "Category": "General::General", + "Description": "How to position the tooltip arrow in relation to the tooltip - at the start, in the center or at the end.", + "IsDefault": false, + "PropertyKey": "arrowPosition", + "ValueType": { + "$ID": "6883a5d76641496ca21e2c6d1421d481", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "none", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "1812b4df51864a92b6bf083869f5950c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "start", + "Caption": "Start" + }, + { + "$ID": "2c0c426d2a2c4467b9add444bfbd6ab1", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "none", + "Caption": "Center" + }, + { + "$ID": "dea4532597864417b5bf82cfd2057ec8", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "end", + "Caption": "End" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "268180791bd449d5aec5284e0c30f900", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Open on", + "Category": "General::General", + "Description": "How the tooltip is triggered - click, hover, hover and focus. On mobile device “hover” will be triggered on touch.", + "IsDefault": false, + "PropertyKey": "openOn", + "ValueType": { + "$ID": "7668899e43e441afb54cd99e240a14fe", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "hover", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "8fca70961cf34f99ac730434dc6b0ea2", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "click", + "Caption": "Click" + }, + { + "$ID": "750d81fb279f4555a627588c1b2aaa16", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "hover", + "Caption": "Hover" + }, + { + "$ID": "93cb392cc8b4477a93ae8798cedabb6f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "hoverFocus", + "Caption": "Hover,focus" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Display", + "StudioProCategory": "Display", + "SupportedPlatform": "Web", + "WidgetDescription": "", + "WidgetId": "com.mendix.widget.web.tooltip.Tooltip", + "WidgetName": "Tooltip", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "5bd0294363d64bf383e204ea27bcecdb", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "19a198bc0e3242a299686e25861749ab", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a8b62c57b6904bb09d92476001b62465", + "Value": { + "$ID": "ff66a7490c9344b2bbbd8bb36338ee7d", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "f84b057c38bb470480254f2730285feb", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f35d6d9ae4394e258aa2df3eb4f116ca", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "513690104e3542ff92d6d213dccf0e00", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "951b5df1e633490284aad752ea0e929a", + "Value": { + "$ID": "6449aa15738f4257b9a47de2b6f21055", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "596a40a2d0564af69ce31d514e88b7de", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "text", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f9c2984344e74e61b4fb4c6ec0a1ccab", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "53bea560af6e4f7d8954e04dd21224e3", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "88fb6fc6d7494b95aac9ff432e15e0bb", + "Value": { + "$ID": "f1fca24e44d54f639488ca65fea47923", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e32820d5494c475bab6907548ff893b0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "3237602ef2394bc698b485ebe4ae9fab", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e37892fc6e0c47a59d19724ff01bb19f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "bf40f8b60ae1422eaaabbd8ef19706bd", + "Value": { + "$ID": "e43ae59b81c6413eb788e17c7c6472cb", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "145a5e9cfd2b45a09af74f45cd3cefe2", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "0cdbcfbabd094852adc75e3f57ecb7e5", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "03a228b1f7c44188a1b976996fe44662", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "bef48141fc314b329559b46884830fa9", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "6a30920dcd0e46ef87733da04bd36147", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a4621a65469b4480a86bea98abeccc5c", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "378a7fbb8b0d4049bdf043595d1b2d18", + "Value": { + "$ID": "8c2183af27454709a6a46c9f90d136ce", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "323a1ef73e494bd18137ac3e2602db86", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "top", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7b2c6334d9dd413e84fdc2d4a95293f7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "16371353c99949b0b635502bfb2ce450", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "b8bf64d2d6a4433e8850cbecbdf71c39", + "Value": { + "$ID": "d2a610b0d7a74f6895c0b6127702ec6f", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4c97c1aeb76a4e5fbe09866de7b0ff29", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "none", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "6883a5d76641496ca21e2c6d1421d481", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "c7c65ed0ba6e4040ba678d5ba8890470", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "268180791bd449d5aec5284e0c30f900", + "Value": { + "$ID": "e7bd27a75474469c97826d2a90ede858", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "12e69531f29e4259a1fd514df46e9a08", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "hover", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7668899e43e441afb54cd99e240a14fe", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "24ab3251545e4dc68fcb27cec359bd7b" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/treenode.json b/sdk/widgets/templates/mendix-11.6/treenode.json new file mode 100644 index 00000000..0a47e61e --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/treenode.json @@ -0,0 +1,1301 @@ +{ + "widgetId": "com.mendix.widget.web.treenode.TreeNode", + "name": "Tree node", + "version": "11.6.4", + "extractedFrom": "8269c38f-fdb6-4fe0-a1e2-b41a065a3e84", + "type": { + "$ID": "9ec4732dd8b245609fc274a9af6df600", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/modules/tree-node", + "ObjectType": { + "$ID": "2359b983c2d34ab69b2673cf54c625a6", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "812a6c50e43144a3ba29f6eca89ac89d", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Enable advanced options", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "advancedMode", + "ValueType": { + "$ID": "f046c3367f734b0f98cc9aa76fdaddb3", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "e720a6d812a0401db3fc9487427c034e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Data source", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "datasource", + "ValueType": { + "$ID": "8f557050885843fb84833be8ddf63933", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": true, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "DataSource" + } + }, + { + "$ID": "0976e31159104a06a9b625989d6c80a6", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Header type", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerType", + "ValueType": { + "$ID": "57d870052fc8448b826002b78450747a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "text", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "9e4af120e116434bbbcf69e2d9f1b5af", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "text", + "Caption": "Text" + }, + { + "$ID": "90c0d6e2821e44cfa8ec7a3b52a497a7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "custom", + "Caption": "Custom" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "2ea7a94a96e548e2a0b6bff28d56aca4", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Open node when", + "Category": "General::General", + "Description": "Define which part of the node, when clicked, should open or close this node. \"Header is clicked\" means the whole header is clickable, while \"Icon is clicked\" means only the icon is used to switch node state.", + "IsDefault": false, + "PropertyKey": "openNodeOn", + "ValueType": { + "$ID": "c78583a36f204b0199a86230d6723015", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "headerClick", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "451523bee1db49638d34d62821828ed3", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "headerClick", + "Caption": "Header is clicked" + }, + { + "$ID": "dcdcf474cddb4573beec41acc6825d7c", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "iconClick", + "Caption": "Icon is clicked" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "3bfc7455b6c44fa4a8e6f21049a42c1a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Header", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerContent", + "ValueType": { + "$ID": "26d6848a9d734cc9b182d1f206216dab", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "datasource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "eef01afb0e134f04a16455945ed129f8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Header caption", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "headerCaption", + "ValueType": { + "$ID": "245d6f1d71f64be4b155d9829b4e8be8", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "datasource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "2b770a3842644aafb59e8689168b4137", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Has children", + "Category": "General::General", + "Description": "Indicate whether the node has children or is an end node. When set to yes, a composable region becomes available to define the child nodes.", + "IsDefault": false, + "PropertyKey": "hasChildren", + "ValueType": { + "$ID": "a66f96592f784b6f9116e52526cc8585", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "a6b6d6ca8f0644e38a65e0a1847ad82b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Start expanded", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "startExpanded", + "ValueType": { + "$ID": "559f136f576e423fb51ad0232c73e460", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "105e9cd41d234987bd8e97b597cbb7a2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Place other Tree nodes here", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "children", + "ValueType": { + "$ID": "80b3344487ff49c3b78f6195dc83a020", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "datasource", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Widgets" + } + }, + { + "$ID": "33e49b4d10f7479a8b5851ada50693b2", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Animate", + "Category": "General::General", + "Description": "", + "IsDefault": false, + "PropertyKey": "animate", + "ValueType": { + "$ID": "1eaf5c89e89648eeb5747802261c9249", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "63a7824cc65a4174a2c71af8a19dbb2e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "showIcon", + "ValueType": { + "$ID": "b84b0744edc3460990d0808e3d987bd1", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "left", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "805af42ce851481cb84e93e213d20352", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "left", + "Caption": "Left" + }, + { + "$ID": "d3409627a3714a2bbc130460efe69445", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "right", + "Caption": "Right" + }, + { + "$ID": "4ee386a0fbd94058a02004360aacd5f9", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "no", + "Caption": "No" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "83a859d9e1bb414ab284c8a170f53a63", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Expanded icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "expandedIcon", + "ValueType": { + "$ID": "a4ff1df26dd94e009bcae57999b77b5a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "e66b8be3deff48d6adbfa54f754d751c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Collapsed icon", + "Category": "Visualization::Icon", + "Description": "", + "IsDefault": false, + "PropertyKey": "collapsedIcon", + "ValueType": { + "$ID": "dbb81ee336f748cb88071648975a96a7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Icon" + } + }, + { + "$ID": "3223806ef7aa4b05904deec82e8b4c97", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Animate icon", + "Category": "Visualization::Icon", + "Description": "Animate the icon when the group is collapsing or expanding.", + "IsDefault": false, + "PropertyKey": "animateIcon", + "ValueType": { + "$ID": "fd99c1b606194d499cd2c63276ee49d6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Data Containers", + "StudioProCategory": "Data containers", + "SupportedPlatform": "Web", + "WidgetDescription": "Display a tree view structure", + "WidgetId": "com.mendix.widget.web.treenode.TreeNode", + "WidgetName": "Tree node", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "7af71c3c8ef54d359f05c101f17979a4", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "8f9ca7f275dc41b28733c29c239ebe10", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "812a6c50e43144a3ba29f6eca89ac89d", + "Value": { + "$ID": "852a439cc20b431aa776f2bb85d66d9e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "69952a53622d44bbb92aca1d44f4226d", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f046c3367f734b0f98cc9aa76fdaddb3", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "7eef13a0d8ce4f14ae469376a8dc808e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e720a6d812a0401db3fc9487427c034e", + "Value": { + "$ID": "505440b7aaa24f2faaf5aa0fa753de50", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "345a54bae2454357992ae8e4dfdb3864", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8f557050885843fb84833be8ddf63933", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "6115d4a79b4243beacf9662c7380afe0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0976e31159104a06a9b625989d6c80a6", + "Value": { + "$ID": "f6c0397b520f44a8a09d53d6a3d82c62", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "dc5e11b49a394144b7e16abde4315ef3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "text", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "57d870052fc8448b826002b78450747a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "24892a00843c4df3a8fc16dcd89453b4", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2ea7a94a96e548e2a0b6bff28d56aca4", + "Value": { + "$ID": "5deea0a38f204ff68770765b46acfad5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "4a9543cdb9b24685994ed8f3d808f63c", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "headerClick", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "c78583a36f204b0199a86230d6723015", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "20e8527d5caf493eb0966f537c9c4d74", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3bfc7455b6c44fa4a8e6f21049a42c1a", + "Value": { + "$ID": "7a7dc6f27dee4ed29622948bc979be06", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "bebbd5fe5aeb4d2b8066c80a4d10ac64", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "26d6848a9d734cc9b182d1f206216dab", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "b7c242eeed9d4708aa04734fb1d93e00", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "eef01afb0e134f04a16455945ed129f8", + "Value": { + "$ID": "97bbbaf341854244bcfb1c9937f85082", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1a271c1a3d224d22ae4bd8db35780649", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "98661c0b53e54684a378e45c4607f0f5", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "b8dbad92775b4ca48b88e98f56dc6a84", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "12c463b6f95540faa498f524b3ea16eb", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "245d6f1d71f64be4b155d9829b4e8be8", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1a8d4bdd0b094906952046a4989d6e24", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "2b770a3842644aafb59e8689168b4137", + "Value": { + "$ID": "9768c7a6cbc34fffac89e97a41c1e300", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "06a417e911fd439280c1b3e1952ae253", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a66f96592f784b6f9116e52526cc8585", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "cb7b8e2e39eb4aa19e099eb6d4c989af", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "a6b6d6ca8f0644e38a65e0a1847ad82b", + "Value": { + "$ID": "2c71f97e14de47dc93353777a8abd0fe", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "dfbdc8f1115e49c7b8a9d67127a723a3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "559f136f576e423fb51ad0232c73e460", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f17ede9f9d87462e9719ca938d63ac52", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "105e9cd41d234987bd8e97b597cbb7a2", + "Value": { + "$ID": "5a754b3e53f041ea838df33302e5b366", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5969a0a8765d486695986e39fb6d7acd", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "80b3344487ff49c3b78f6195dc83a020", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "eebddf5a3b614469ac721a6fb9c84ab1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "33e49b4d10f7479a8b5851ada50693b2", + "Value": { + "$ID": "841e353c78dc4fdc875f8a95c82dd3c2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "0a53a767e0834888a464b25fcbb21767", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1eaf5c89e89648eeb5747802261c9249", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e9649ea13d274c9d918b57e0a7a5ae5e", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "63a7824cc65a4174a2c71af8a19dbb2e", + "Value": { + "$ID": "fabd63ed1a924718b92e1b17b681350e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "5379b763077b4b96994d34ddd9db29e8", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "left", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "b84b0744edc3460990d0808e3d987bd1", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a99c84701aeb4a40a481499894486110", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "83a859d9e1bb414ab284c8a170f53a63", + "Value": { + "$ID": "fc81b419a0f1442a918d28d01faf02a9", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "40e42b94547d4fbba712022e203fdab4", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "a4ff1df26dd94e009bcae57999b77b5a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "2a284c057c294818a5d795a99408dc9d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "e66b8be3deff48d6adbfa54f754d751c", + "Value": { + "$ID": "e6fed53810b54b2b940f6cdb049251a8", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "aafd3c5e8b1147ddaa9b21a2abf91a4a", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "dbb81ee336f748cb88071648975a96a7", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "64fe988473a14249ba91c1b7606802a0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3223806ef7aa4b05904deec82e8b4c97", + "Value": { + "$ID": "82354034f3854d3b9a33292773f91ace", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e896bb159e6a49c4aeaaa397f32ddcf0", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "fd99c1b606194d499cd2c63276ee49d6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "2359b983c2d34ab69b2673cf54c625a6" + } +} \ No newline at end of file diff --git a/sdk/widgets/templates/mendix-11.6/videoplayer.json b/sdk/widgets/templates/mendix-11.6/videoplayer.json new file mode 100644 index 00000000..3c39fe73 --- /dev/null +++ b/sdk/widgets/templates/mendix-11.6/videoplayer.json @@ -0,0 +1,1577 @@ +{ + "widgetId": "com.mendix.widget.web.videoplayer.VideoPlayer", + "name": "Video Player", + "version": "11.6.4", + "extractedFrom": "6d434a2a-15a8-42b5-bd7b-8b995ee9855c", + "type": { + "$ID": "960bdb3d73df47febe94fccc62abd9c7", + "$Type": "CustomWidgets$CustomWidgetType", + "HelpUrl": "https://docs.mendix.com/appstore/widgets/video-player", + "ObjectType": { + "$ID": "94f0089cafee44ada4063ac4352077ae", + "$Type": "CustomWidgets$WidgetObjectType", + "PropertyTypes": [ + 2, + { + "$ID": "11e8f127b0594a7b8a38d28da013958f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Type", + "Category": "General::Data source", + "Description": "", + "IsDefault": false, + "PropertyKey": "type", + "ValueType": { + "$ID": "25c43c5eff884daf9c2c70adea183f80", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "dynamic", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "14bde80064dd462cb47def3fd200ca21", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "dynamic", + "Caption": "Dynamic" + }, + { + "$ID": "8566346d4ad942f996cfdcf9a55790a5", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "expression", + "Caption": "Expression" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "0497ba1d44c441b392431b9e1f329319", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Video URL", + "Category": "General::Data source", + "Description": "The web address of the video: YouTube, Vimeo, Dailymotion or MP4.", + "IsDefault": false, + "PropertyKey": "urlExpression", + "ValueType": { + "$ID": "9cb2c6eab3674170b1fd46bad3e59b7f", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "f8a7f246e3514c2b957392a73386f9b1", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "fa7e2fb0875a4d3c91167dc3189d6c21", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Poster URL", + "Category": "General::Data source", + "Description": "The web address of the poster image. A poster image is a custom preview image that will be shown in the player until the user starts the video.", + "IsDefault": false, + "PropertyKey": "posterExpression", + "ValueType": { + "$ID": "7979bcb095014e27a4f89155002bb652", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": { + "$ID": "3f6702f35e89484991a53d9359625112", + "$Type": "CustomWidgets$WidgetReturnType", + "AssignableTo": "", + "EntityProperty": "", + "IsList": false, + "Type": "String" + }, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Expression" + } + }, + { + "$ID": "ae1c3a4274c54b36bf580a1a04cd2641", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Video URL", + "Category": "General::Data source", + "Description": "The web address of the video: YouTube, Vimeo, Dailymotion or MP4.", + "IsDefault": false, + "PropertyKey": "videoUrl", + "ValueType": { + "$ID": "3118c87b0cf547f7a644f8f7a598f436", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "36ab38130da8481385a67a792a5f7f1e", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Poster URL", + "Category": "General::Data source", + "Description": "The web address of the poster image. A poster image is a custom preview image that will be shown in the player until the user starts the video.", + "IsDefault": false, + "PropertyKey": "posterUrl", + "ValueType": { + "$ID": "7d7679601a4d47aab1498351a8cb568a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "48a4ae823abc48e1b0baef0665463fe1", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "Name", + "ValueType": { + "$ID": "51b212b11461431590506bdb1d168bb7", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "aa409fe63e864c08b6db42f38572a509", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "", + "Category": "General::Common", + "Description": "", + "IsDefault": false, + "PropertyKey": "TabIndex", + "ValueType": { + "$ID": "d5186b298ef14fc29e766a1a7481766a", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "System" + } + }, + { + "$ID": "48d78e6f19d14dfebeccdd4cc1f58ad8", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Title", + "Category": "Accessibility::Accessibility", + "Description": "Describe the purpose of the video (e.g., 'Video tutorial on accessibility').", + "IsDefault": false, + "PropertyKey": "iframeTitle", + "ValueType": { + "$ID": "a1721abae4754a039fbdacdde79091ef", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": false, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "TextTemplate" + } + }, + { + "$ID": "8f3a0e561cb9434bb45ad8a48029352f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Auto start", + "Category": "Controls::Controls", + "Description": "Automatically start playing the video when the page loads.", + "IsDefault": false, + "PropertyKey": "autoStart", + "ValueType": { + "$ID": "7f72bdb3ff784995ba9d0cc5d0aa61e6", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "1b621081fbf44996b8a0fffb317ea630", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Show Controls", + "Category": "Controls::Controls", + "Description": "Display video controls (control bar, display icons, dock buttons). Available for YouTube, Dailymotion and external videos.", + "IsDefault": false, + "PropertyKey": "showControls", + "ValueType": { + "$ID": "f9c7e6b948c74412ba59f05a458d9bdc", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "true", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "ff5dbae552e446e284308eac8d8c809f", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Muted", + "Category": "Controls::Controls", + "Description": "Start the video on mute.", + "IsDefault": false, + "PropertyKey": "muted", + "ValueType": { + "$ID": "f08b8ea82ea44a2c9f0844bddda6bdeb", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "d48a99f07d254cf0b62608d8eef71e0c", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Loop", + "Category": "Controls::Controls", + "Description": "Loop the video after it finishes. Available for YouTube, Vimeo, and external videos.", + "IsDefault": false, + "PropertyKey": "loop", + "ValueType": { + "$ID": "1a552606355b41f9a96552f326f25b8b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "false", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Boolean" + } + }, + { + "$ID": "82910e871ec843d289828bd321d0265b", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width Unit", + "Category": "Dimensions::Dimensions", + "Description": "Percentage: portion of parent size. Pixels: absolute amount of pixels.", + "IsDefault": false, + "PropertyKey": "widthUnit", + "ValueType": { + "$ID": "be89bb4d2b0c432dabc322a250527c99", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "percentage", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "80579de54491416a8e96c928a2f8cd33", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentage", + "Caption": "Percentage" + }, + { + "$ID": "946ffd6fb26048f5a8df78ccd1c3975a", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "4d7bff0a1c1141dca7cfe41837fc5d13", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Width", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "width", + "ValueType": { + "$ID": "8f78562ba1f04ba5854cf7805123bf10", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "100", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + }, + { + "$ID": "317c47a22909457badcf57b393a7cbcf", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height unit", + "Category": "Dimensions::Dimensions", + "Description": "Aspect ratio: ratio of width to height. Percentage of parent: portion of parent height. Percentage of width: portion of the width. Pixels: absolute amount of pixels.", + "IsDefault": false, + "PropertyKey": "heightUnit", + "ValueType": { + "$ID": "74f5a395897941ba8026facb0d06a95b", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "aspectRatio", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "8691d286f2e54b249b4e105ef594f438", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "aspectRatio", + "Caption": "Aspect ratio" + }, + { + "$ID": "811d7193510d47579e63d5f29cc0e53e", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfParent", + "Caption": "Percentage of parent" + }, + { + "$ID": "9da26f1eff564a4dae1cb374af2eb471", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "percentageOfWidth", + "Caption": "Percentage of width" + }, + { + "$ID": "1090815ab2dc4653864d64a0e7a42da7", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "pixels", + "Caption": "Pixels" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "f122349ca9544663a55a8058ce1a070a", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Aspect ratio", + "Category": "Dimensions::Dimensions", + "Description": "16:9 (Widescreen, HD Video), 4:3 (Classic TV, Standard monitor), 3:2 (Classic film), 21:9 (Cinemascope), 1:1 (Square, Social media)", + "IsDefault": false, + "PropertyKey": "heightAspectRatio", + "ValueType": { + "$ID": "4f1b1332552e43eaa63ebc3c5ed15a60", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "sixteenByNine", + "EntityProperty": "", + "EnumerationValues": [ + 2, + { + "$ID": "36bcb0af439c48f686093d7ebaf788fe", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "sixteenByNine", + "Caption": "16:9" + }, + { + "$ID": "1a9d474b92914d6ba9cfc2206a5d9a66", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "fourByThree", + "Caption": "4:3" + }, + { + "$ID": "54a7b18502484356bc97a22132884f67", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "threeByTwo", + "Caption": "3:2" + }, + { + "$ID": "56b73b5b7a574394ae4014e9044ad34d", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "TwentyOneByNine", + "Caption": "21:9" + }, + { + "$ID": "afd2c0f1b5d345ab9c579a3f3210dd1f", + "$Type": "CustomWidgets$WidgetEnumerationValue", + "_Key": "oneByOne", + "Caption": "1:1" + } + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Enumeration" + } + }, + { + "$ID": "3440354b7f3d45cd9986c1f962d12275", + "$Type": "CustomWidgets$WidgetPropertyType", + "Caption": "Height", + "Category": "Dimensions::Dimensions", + "Description": "", + "IsDefault": false, + "PropertyKey": "height", + "ValueType": { + "$ID": "8af4ba7da8ae428f9a339b402037a4df", + "$Type": "CustomWidgets$WidgetValueType", + "ActionVariables": [ + 2 + ], + "AllowedTypes": [ + 1 + ], + "AllowNonPersistableEntities": false, + "AssociationTypes": [ + 1 + ], + "DataSourceProperty": "", + "DefaultType": "None", + "DefaultValue": "500", + "EntityProperty": "", + "EnumerationValues": [ + 2 + ], + "IsLinked": false, + "IsList": false, + "IsMetaData": false, + "IsPath": "No", + "Multiline": false, + "ObjectType": null, + "OnChangeProperty": "", + "ParameterIsList": false, + "PathType": "None", + "Required": true, + "ReturnType": null, + "SelectableObjectsProperty": "", + "SelectionTypes": [ + 1 + ], + "SetLabel": false, + "Translations": [ + 2 + ], + "Type": "Integer" + } + } + ] + }, + "OfflineCapable": true, + "StudioCategory": "Images, Videos & Files", + "StudioProCategory": "Images, videos & files", + "SupportedPlatform": "Web", + "WidgetDescription": "Shows a video from YouTube, Vimeo, Dailymotion and Mp4", + "WidgetId": "com.mendix.widget.web.videoplayer.VideoPlayer", + "WidgetName": "Video Player", + "WidgetNeedsEntityContext": true, + "WidgetPluginWidget": true + }, + "object": { + "$ID": "9d2bb15971974c0b91458673da63153c", + "$Type": "CustomWidgets$WidgetObject", + "Properties": [ + 2, + { + "$ID": "cb8e3d0003b14ad99cfe9e326bda0ce5", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "11e8f127b0594a7b8a38d28da013958f", + "Value": { + "$ID": "9c62b7c2e0c848a184d481b205e210f2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c55c8faa38674913967d068b7744b5ea", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "dynamic", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "25c43c5eff884daf9c2c70adea183f80", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "9137ae1ef6004c96a9e4359d3bed5581", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "0497ba1d44c441b392431b9e1f329319", + "Value": { + "$ID": "365180513a8247eeab3a6782bb10dd54", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "869f01fc31ba4b86beffbb8511e423b8", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "9cb2c6eab3674170b1fd46bad3e59b7f", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d00fe1c049eb4df98a168a78e10b439d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "fa7e2fb0875a4d3c91167dc3189d6c21", + "Value": { + "$ID": "235a2088907c42d482629ddd400ed0bf", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "29619f22839842d2aa42eba0c88267ad", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7979bcb095014e27a4f89155002bb652", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "05e1475639af4d648f2e48ec09f0622d", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ae1c3a4274c54b36bf580a1a04cd2641", + "Value": { + "$ID": "bbf0f503a32b4e8ebb7d340a6309a6b6", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c31c517db76c43e080ee1429229eabc7", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "79da05ea7b7c48fb933bb1c2fc3e87c2", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "87844948ac794aa989e69eecbf5f9fb3", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "5aa75603ecd74b4594bb4735fe2b214d", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "3118c87b0cf547f7a644f8f7a598f436", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "23e047ed0f05482095d90b4c387b3c2f", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "36ab38130da8481385a67a792a5f7f1e", + "Value": { + "$ID": "bbde214adb934bad9f05b4909b852104", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "964abadaf6994983b91bdc3f051e3be1", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "d8bd6652cf784cae960962e771840921", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "4dd685d1ea6c4f12bcc0cdc987e2449a", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "4acee6fd49b7425288a89b4b21d64da3", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "7d7679601a4d47aab1498351a8cb568a", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f76c397208ca4d9ab52e6df36794bfe5", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "48d78e6f19d14dfebeccdd4cc1f58ad8", + "Value": { + "$ID": "9308dc794a6a438b9e7f6cdbe942bd85", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "1873a1a4d7764e8cae4c9d85d940ed30", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": { + "$ID": "6af77669debd4d0db1ac55507cfe2876", + "$Type": "Forms$ClientTemplate", + "Fallback": { + "$ID": "1b193955ec1b4b55960c40a8111b8d1d", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + }, + "Parameters": [ + 2 + ], + "Template": { + "$ID": "710b08c271804730bea0a7c8b1401a03", + "$Type": "Texts$Text", + "Items": [ + 3 + ] + } + }, + "TranslatableValue": null, + "TypePointer": "a1721abae4754a039fbdacdde79091ef", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "a650cfac67a94fafae345b8c43a28909", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "8f3a0e561cb9434bb45ad8a48029352f", + "Value": { + "$ID": "5e6c8927a30a4a5c8e8c3e38695829d1", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "84038bc3e4234a5cae6c97c1353efda5", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "7f72bdb3ff784995ba9d0cc5d0aa61e6", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "d751301e1fe244e2b3e26eade586f468", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "1b621081fbf44996b8a0fffb317ea630", + "Value": { + "$ID": "20aef47a1b6e490e88bb873baea46ba4", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "ad366d6be3d24fab8eca5f5694bc9a96", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "true", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f9c7e6b948c74412ba59f05a458d9bdc", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "f9367b94e78a47d3a88d1d397efd11a9", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "ff5dbae552e446e284308eac8d8c809f", + "Value": { + "$ID": "32edab3e533f40d18d4258ce77473bb3", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8f0c5a46886f4453bcb731823c01dfef", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "f08b8ea82ea44a2c9f0844bddda6bdeb", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "1641556b01174399aac2fa86280a5102", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "d48a99f07d254cf0b62608d8eef71e0c", + "Value": { + "$ID": "817235e78c2f42e5b46c43fea5deb67e", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "949ee74ce7194f4a90d6e007eab1bdd6", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "false", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "1a552606355b41f9a96552f326f25b8b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ee111b5b49054b14b1c4d35ec58327b0", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "82910e871ec843d289828bd321d0265b", + "Value": { + "$ID": "40ecfca0cfc646ee9faa4147c4d56420", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "69d9a7d1c7d04a87aa98a83665f5a2b3", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "percentage", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "be89bb4d2b0c432dabc322a250527c99", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "ddb4943c3b674aff84b9fcc01beee4bc", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "4d7bff0a1c1141dca7cfe41837fc5d13", + "Value": { + "$ID": "fb1b2ae207164edf97ca35b145ebe1ef", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "c2f080f7a08749299f417465d89b7acb", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "100", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8f78562ba1f04ba5854cf7805123bf10", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "e0320096cf954d2b92b795ad85b24b12", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "317c47a22909457badcf57b393a7cbcf", + "Value": { + "$ID": "09c74b4499ca4b3a992b4080897ea9d2", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "e496220879fb443e893578f10890ce58", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "aspectRatio", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "74f5a395897941ba8026facb0d06a95b", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "69a875906e604db198db1b7806687be1", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "f122349ca9544663a55a8058ce1a070a", + "Value": { + "$ID": "7f1d84232a4c455c88df0d9a56f2d303", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "8f432a0ce3ff41f997ccf6cfb1656f24", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "sixteenByNine", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "4f1b1332552e43eaa63ebc3c5ed15a60", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + }, + { + "$ID": "34c8700214bf4164a74f853e18d60359", + "$Type": "CustomWidgets$WidgetProperty", + "TypePointer": "3440354b7f3d45cd9986c1f962d12275", + "Value": { + "$ID": "7e2ead1cca7c489bba90ebb9fcf708c5", + "$Type": "CustomWidgets$WidgetValue", + "Action": { + "$ID": "3c37767501c943b0ad34466e99b34728", + "$Type": "Forms$NoAction", + "DisabledDuringExecution": true + }, + "AttributeRef": null, + "DataSource": null, + "EntityRef": null, + "Expression": "", + "Form": "", + "Icon": null, + "Image": "", + "Microflow": "", + "Nanoflow": "", + "Objects": [ + 2 + ], + "PrimitiveValue": "500", + "Selection": "None", + "SourceVariable": null, + "TextTemplate": null, + "TranslatableValue": null, + "TypePointer": "8af4ba7da8ae428f9a339b402037a4df", + "Widgets": [ + 2 + ], + "XPathConstraint": "" + } + } + ], + "TypePointer": "94f0089cafee44ada4063ac4352077ae" + } +} \ No newline at end of file