From 11c2641c7de26e8c54d6396246522677181c418c Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 12:32:53 -0700 Subject: [PATCH 01/10] add stats agg functions and insert snippet rules Signed-off-by: Paul Sebastian --- .../antlr/opensearch_ppl/code_completion.ts | 18 ++++++++++++++++-- .../public/antlr/opensearch_ppl/constants.ts | 16 ++++++++++++++++ .../providers/query_suggestion_provider.ts | 1 + .../public/ui/query_editor/query_editor.tsx | 1 + 4 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 src/plugins/data/public/antlr/opensearch_ppl/constants.ts diff --git a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts index 9ca2cf4f40fe..e91cdb6f7090 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts @@ -15,6 +15,7 @@ import { fetchFieldSuggestions, parseQuery } from '../shared/utils'; import { openSearchPplAutocompleteData } from './opensearch_ppl_autocomplete'; import { QuerySuggestion, QuerySuggestionGetFnArgs } from '../../autocomplete'; import { SuggestionItemDetailsTags } from '../shared/constants'; +import { PPL_AGGREGATE_FUNTIONS } from './constants'; export const getSuggestions = async ({ selectionStart, @@ -35,14 +36,27 @@ export const getSuggestions = async ({ const finalSuggestions: QuerySuggestion[] = []; if (suggestions.suggestColumns) { - finalSuggestions.push(...fetchFieldSuggestions(indexPattern)); + finalSuggestions.push(...fetchFieldSuggestions(indexPattern, (f: any) => `${f} `)); + } + + if (suggestions.suggestAggregateFunctions) { + finalSuggestions.push( + ...PPL_AGGREGATE_FUNTIONS.map((af) => ({ + text: `${af}()`, + type: monaco.languages.CompletionItemKind.Function, + insertText: af + '(${1:expr}) ', + detail: SuggestionItemDetailsTags.AggregateFunction, + insertTextRules: monaco.languages.CompletionItemInsertTextRule.InsertAsSnippet, + })) + ); } // Fill in PPL keywords if (suggestions.suggestKeywords?.length) { finalSuggestions.push( ...suggestions.suggestKeywords.map((sk) => ({ - text: sk.value, + text: sk.value.toLowerCase(), + insertText: `${sk.value.toLowerCase()} `, type: monaco.languages.CompletionItemKind.Keyword, detail: SuggestionItemDetailsTags.Keyword, })) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/constants.ts b/src/plugins/data/public/antlr/opensearch_ppl/constants.ts new file mode 100644 index 000000000000..3f84ddd36cf5 --- /dev/null +++ b/src/plugins/data/public/antlr/opensearch_ppl/constants.ts @@ -0,0 +1,16 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +export const PPL_AGGREGATE_FUNTIONS = [ + 'avg', + 'count', + 'sum', + 'min', + 'max', + 'var_samp', + 'var_pop', + 'stddev_samp', + 'stddev_pop', +]; diff --git a/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts b/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts index aebb4087d9db..546c5589de04 100644 --- a/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts +++ b/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts @@ -79,6 +79,7 @@ export interface MonacoCompatibleQuerySuggestion text: string; detail: string; insertText?: string; + insertTextRules?: monaco.languages.CompletionItemInsertTextRule; replacePosition?: monaco.Range; } diff --git a/src/plugins/data/public/ui/query_editor/query_editor.tsx b/src/plugins/data/public/ui/query_editor/query_editor.tsx index 0abe9796bbf9..5be8b53bcbb9 100644 --- a/src/plugins/data/public/ui/query_editor/query_editor.tsx +++ b/src/plugins/data/public/ui/query_editor/query_editor.tsx @@ -307,6 +307,7 @@ export default class QueryEditorUI extends Component { label: s.text, kind: s.type as monaco.languages.CompletionItemKind, insertText: s.insertText ?? s.text, + insertTextRules: s.insertTextRules ?? undefined, range: s.replacePosition ?? defaultRange, detail: s.detail, command: { id: 'editor.action.triggerSuggest', title: 'Trigger Next Suggestion' }, From 222469bab625769fe0dcb553ad1b19a82aa589d2 Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 13:53:30 -0700 Subject: [PATCH 02/10] allow table suggestions with table name Signed-off-by: Paul Sebastian --- .../.generated/OpenSearchPPLLexer.ts | 2 +- .../.generated/OpenSearchPPLParser.interp | 2 +- .../.generated/OpenSearchPPLParser.ts | 2376 ++++++++--------- .../.generated/OpenSearchPPLParserVisitor.ts | 10 +- .../antlr/opensearch_ppl/code_completion.ts | 13 +- .../grammar/OpenSearchPPLParser.g4 | 6 +- .../opensearch_ppl_autocomplete.ts | 4 + .../data/public/antlr/shared/constants.ts | 1 + 8 files changed, 1177 insertions(+), 1237 deletions(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLLexer.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLLexer.ts index d9fb44016e20..554bd90f22fd 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLLexer.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLLexer.ts @@ -1,4 +1,4 @@ -// Generated from ./src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLLexer.g4 by ANTLR 4.13.1 +// Generated from grammar/OpenSearchPPLLexer.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; import { Token } from "antlr4ng"; diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp index 03d97e71ca14..2105928d0be5 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp @@ -794,4 +794,4 @@ keywordsCanBeId atn: -[4, 1, 336, 1160, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 3, 6, 274, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 280, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 285, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 298, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 306, 8, 11, 10, 11, 12, 11, 309, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 315, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 320, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 325, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 330, 8, 12, 10, 12, 12, 12, 333, 9, 12, 1, 12, 3, 12, 336, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 341, 8, 12, 1, 13, 1, 13, 3, 13, 345, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 351, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 356, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 365, 8, 15, 10, 15, 12, 15, 368, 9, 15, 1, 16, 1, 16, 3, 16, 372, 8, 16, 1, 16, 1, 16, 3, 16, 376, 8, 16, 1, 17, 1, 17, 3, 17, 380, 8, 17, 1, 17, 1, 17, 3, 17, 384, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 389, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 401, 8, 21, 10, 21, 12, 21, 404, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 414, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 420, 8, 24, 10, 24, 12, 24, 423, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 434, 8, 25, 1, 26, 1, 26, 5, 26, 438, 8, 26, 10, 26, 12, 26, 441, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 479, 8, 27, 1, 28, 1, 28, 5, 28, 483, 8, 28, 10, 28, 12, 28, 486, 9, 28, 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, 30, 1, 30, 1, 30, 3, 30, 504, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 509, 8, 31, 10, 31, 12, 31, 512, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 530, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 535, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 543, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 550, 8, 37, 10, 37, 12, 37, 553, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 562, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 579, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 588, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 603, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 611, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 618, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 624, 8, 45, 10, 45, 12, 45, 627, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 637, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 649, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 657, 8, 47, 10, 47, 12, 47, 660, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 666, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 679, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 688, 8, 52, 10, 52, 12, 52, 691, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 701, 8, 53, 10, 53, 12, 53, 704, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 711, 8, 53, 10, 53, 12, 53, 714, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 720, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 730, 8, 56, 10, 56, 12, 56, 733, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 738, 8, 57, 10, 57, 12, 57, 741, 9, 57, 1, 58, 3, 58, 744, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 769, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 802, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 810, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 815, 8, 67, 10, 67, 12, 67, 818, 9, 67, 3, 67, 820, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 825, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 843, 8, 71, 1, 72, 1, 72, 3, 72, 847, 8, 72, 1, 73, 1, 73, 3, 73, 851, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 857, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 882, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 910, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 943, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 952, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 957, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 966, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 985, 8, 106, 10, 106, 12, 106, 988, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 995, 8, 107, 10, 107, 12, 107, 998, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 1003, 8, 108, 10, 108, 12, 108, 1006, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 1011, 8, 109, 10, 109, 12, 109, 1014, 9, 109, 1, 110, 3, 110, 1017, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1026, 8, 110, 1, 111, 3, 111, 1029, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1036, 8, 112, 10, 112, 12, 112, 1039, 9, 112, 1, 112, 3, 112, 1042, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1056, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1158, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1318, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 284, 1, 0, 0, 0, 14, 286, 1, 0, 0, 0, 16, 289, 1, 0, 0, 0, 18, 292, 1, 0, 0, 0, 20, 295, 1, 0, 0, 0, 22, 301, 1, 0, 0, 0, 24, 310, 1, 0, 0, 0, 26, 342, 1, 0, 0, 0, 28, 357, 1, 0, 0, 0, 30, 360, 1, 0, 0, 0, 32, 369, 1, 0, 0, 0, 34, 377, 1, 0, 0, 0, 36, 385, 1, 0, 0, 0, 38, 390, 1, 0, 0, 0, 40, 394, 1, 0, 0, 0, 42, 398, 1, 0, 0, 0, 44, 413, 1, 0, 0, 0, 46, 415, 1, 0, 0, 0, 48, 417, 1, 0, 0, 0, 50, 433, 1, 0, 0, 0, 52, 435, 1, 0, 0, 0, 54, 478, 1, 0, 0, 0, 56, 480, 1, 0, 0, 0, 58, 487, 1, 0, 0, 0, 60, 503, 1, 0, 0, 0, 62, 505, 1, 0, 0, 0, 64, 513, 1, 0, 0, 0, 66, 517, 1, 0, 0, 0, 68, 529, 1, 0, 0, 0, 70, 531, 1, 0, 0, 0, 72, 536, 1, 0, 0, 0, 74, 546, 1, 0, 0, 0, 76, 554, 1, 0, 0, 0, 78, 558, 1, 0, 0, 0, 80, 578, 1, 0, 0, 0, 82, 580, 1, 0, 0, 0, 84, 582, 1, 0, 0, 0, 86, 591, 1, 0, 0, 0, 88, 602, 1, 0, 0, 0, 90, 610, 1, 0, 0, 0, 92, 636, 1, 0, 0, 0, 94, 648, 1, 0, 0, 0, 96, 665, 1, 0, 0, 0, 98, 667, 1, 0, 0, 0, 100, 674, 1, 0, 0, 0, 102, 678, 1, 0, 0, 0, 104, 680, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 719, 1, 0, 0, 0, 110, 721, 1, 0, 0, 0, 112, 726, 1, 0, 0, 0, 114, 734, 1, 0, 0, 0, 116, 743, 1, 0, 0, 0, 118, 768, 1, 0, 0, 0, 120, 770, 1, 0, 0, 0, 122, 772, 1, 0, 0, 0, 124, 774, 1, 0, 0, 0, 126, 779, 1, 0, 0, 0, 128, 786, 1, 0, 0, 0, 130, 801, 1, 0, 0, 0, 132, 809, 1, 0, 0, 0, 134, 819, 1, 0, 0, 0, 136, 824, 1, 0, 0, 0, 138, 828, 1, 0, 0, 0, 140, 832, 1, 0, 0, 0, 142, 842, 1, 0, 0, 0, 144, 846, 1, 0, 0, 0, 146, 850, 1, 0, 0, 0, 148, 852, 1, 0, 0, 0, 150, 856, 1, 0, 0, 0, 152, 881, 1, 0, 0, 0, 154, 883, 1, 0, 0, 0, 156, 885, 1, 0, 0, 0, 158, 887, 1, 0, 0, 0, 160, 894, 1, 0, 0, 0, 162, 896, 1, 0, 0, 0, 164, 903, 1, 0, 0, 0, 166, 905, 1, 0, 0, 0, 168, 909, 1, 0, 0, 0, 170, 911, 1, 0, 0, 0, 172, 920, 1, 0, 0, 0, 174, 922, 1, 0, 0, 0, 176, 924, 1, 0, 0, 0, 178, 926, 1, 0, 0, 0, 180, 928, 1, 0, 0, 0, 182, 930, 1, 0, 0, 0, 184, 932, 1, 0, 0, 0, 186, 934, 1, 0, 0, 0, 188, 942, 1, 0, 0, 0, 190, 944, 1, 0, 0, 0, 192, 948, 1, 0, 0, 0, 194, 951, 1, 0, 0, 0, 196, 956, 1, 0, 0, 0, 198, 960, 1, 0, 0, 0, 200, 965, 1, 0, 0, 0, 202, 967, 1, 0, 0, 0, 204, 970, 1, 0, 0, 0, 206, 973, 1, 0, 0, 0, 208, 976, 1, 0, 0, 0, 210, 978, 1, 0, 0, 0, 212, 980, 1, 0, 0, 0, 214, 991, 1, 0, 0, 0, 216, 999, 1, 0, 0, 0, 218, 1007, 1, 0, 0, 0, 220, 1025, 1, 0, 0, 0, 222, 1028, 1, 0, 0, 0, 224, 1055, 1, 0, 0, 0, 226, 1157, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 285, 3, 60, 30, 0, 272, 274, 5, 2, 0, 0, 273, 272, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 276, 3, 60, 30, 0, 276, 277, 3, 90, 45, 0, 277, 285, 1, 0, 0, 0, 278, 280, 5, 2, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 282, 3, 90, 45, 0, 282, 283, 3, 60, 30, 0, 283, 285, 1, 0, 0, 0, 284, 269, 1, 0, 0, 0, 284, 273, 1, 0, 0, 0, 284, 279, 1, 0, 0, 0, 285, 13, 1, 0, 0, 0, 286, 287, 5, 3, 0, 0, 287, 288, 3, 62, 31, 0, 288, 15, 1, 0, 0, 0, 289, 290, 5, 4, 0, 0, 290, 291, 5, 33, 0, 0, 291, 17, 1, 0, 0, 0, 292, 293, 5, 6, 0, 0, 293, 294, 3, 90, 45, 0, 294, 19, 1, 0, 0, 0, 295, 297, 5, 7, 0, 0, 296, 298, 7, 0, 0, 0, 297, 296, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 300, 3, 112, 56, 0, 300, 21, 1, 0, 0, 0, 301, 302, 5, 8, 0, 0, 302, 307, 3, 64, 32, 0, 303, 304, 5, 110, 0, 0, 304, 306, 3, 64, 32, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 23, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 314, 5, 9, 0, 0, 311, 312, 5, 42, 0, 0, 312, 313, 5, 112, 0, 0, 313, 315, 3, 194, 97, 0, 314, 311, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 319, 1, 0, 0, 0, 316, 317, 5, 43, 0, 0, 317, 318, 5, 112, 0, 0, 318, 320, 3, 198, 99, 0, 319, 316, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 324, 1, 0, 0, 0, 321, 322, 5, 44, 0, 0, 322, 323, 5, 112, 0, 0, 323, 325, 3, 192, 96, 0, 324, 321, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 331, 3, 78, 39, 0, 327, 328, 5, 110, 0, 0, 328, 330, 3, 78, 39, 0, 329, 327, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 335, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 336, 3, 68, 34, 0, 335, 334, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 340, 1, 0, 0, 0, 337, 338, 5, 41, 0, 0, 338, 339, 5, 112, 0, 0, 339, 341, 3, 198, 99, 0, 340, 337, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 25, 1, 0, 0, 0, 342, 344, 5, 10, 0, 0, 343, 345, 3, 194, 97, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 350, 3, 112, 56, 0, 347, 348, 5, 39, 0, 0, 348, 349, 5, 112, 0, 0, 349, 351, 3, 198, 99, 0, 350, 347, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 355, 1, 0, 0, 0, 352, 353, 5, 40, 0, 0, 353, 354, 5, 112, 0, 0, 354, 356, 3, 198, 99, 0, 355, 352, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 27, 1, 0, 0, 0, 357, 358, 5, 11, 0, 0, 358, 359, 3, 74, 37, 0, 359, 29, 1, 0, 0, 0, 360, 361, 5, 12, 0, 0, 361, 366, 3, 76, 38, 0, 362, 363, 5, 110, 0, 0, 363, 365, 3, 76, 38, 0, 364, 362, 1, 0, 0, 0, 365, 368, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 31, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 369, 371, 5, 13, 0, 0, 370, 372, 3, 194, 97, 0, 371, 370, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 374, 5, 5, 0, 0, 374, 376, 3, 194, 97, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 33, 1, 0, 0, 0, 377, 379, 5, 14, 0, 0, 378, 380, 3, 194, 97, 0, 379, 378, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 383, 3, 112, 56, 0, 382, 384, 3, 66, 33, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 35, 1, 0, 0, 0, 385, 386, 5, 15, 0, 0, 386, 388, 3, 112, 56, 0, 387, 389, 3, 66, 33, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 37, 1, 0, 0, 0, 390, 391, 5, 20, 0, 0, 391, 392, 3, 88, 44, 0, 392, 393, 3, 192, 96, 0, 393, 39, 1, 0, 0, 0, 394, 395, 5, 16, 0, 0, 395, 396, 3, 88, 44, 0, 396, 397, 3, 192, 96, 0, 397, 41, 1, 0, 0, 0, 398, 402, 5, 22, 0, 0, 399, 401, 3, 44, 22, 0, 400, 399, 1, 0, 0, 0, 401, 404, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 405, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 406, 3, 88, 44, 0, 406, 43, 1, 0, 0, 0, 407, 408, 5, 23, 0, 0, 408, 409, 5, 112, 0, 0, 409, 414, 3, 192, 96, 0, 410, 411, 5, 21, 0, 0, 411, 412, 5, 112, 0, 0, 412, 414, 3, 192, 96, 0, 413, 407, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 414, 45, 1, 0, 0, 0, 415, 416, 7, 1, 0, 0, 416, 47, 1, 0, 0, 0, 417, 421, 5, 24, 0, 0, 418, 420, 3, 50, 25, 0, 419, 418, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 49, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 5, 45, 0, 0, 425, 426, 5, 112, 0, 0, 426, 434, 3, 194, 97, 0, 427, 428, 5, 46, 0, 0, 428, 429, 5, 112, 0, 0, 429, 434, 3, 194, 97, 0, 430, 431, 5, 47, 0, 0, 431, 432, 5, 112, 0, 0, 432, 434, 3, 192, 96, 0, 433, 424, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 434, 51, 1, 0, 0, 0, 435, 439, 5, 25, 0, 0, 436, 438, 3, 54, 27, 0, 437, 436, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 53, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 443, 5, 48, 0, 0, 443, 444, 5, 112, 0, 0, 444, 479, 3, 194, 97, 0, 445, 446, 5, 49, 0, 0, 446, 447, 5, 112, 0, 0, 447, 479, 3, 194, 97, 0, 448, 449, 5, 50, 0, 0, 449, 450, 5, 112, 0, 0, 450, 479, 3, 194, 97, 0, 451, 452, 5, 51, 0, 0, 452, 453, 5, 112, 0, 0, 453, 479, 3, 194, 97, 0, 454, 455, 5, 52, 0, 0, 455, 456, 5, 112, 0, 0, 456, 479, 3, 196, 98, 0, 457, 458, 5, 53, 0, 0, 458, 459, 5, 112, 0, 0, 459, 479, 3, 196, 98, 0, 460, 461, 5, 54, 0, 0, 461, 462, 5, 112, 0, 0, 462, 479, 3, 192, 96, 0, 463, 464, 5, 55, 0, 0, 464, 465, 5, 112, 0, 0, 465, 479, 3, 192, 96, 0, 466, 467, 5, 215, 0, 0, 467, 468, 5, 112, 0, 0, 468, 479, 3, 192, 96, 0, 469, 470, 5, 56, 0, 0, 470, 471, 5, 112, 0, 0, 471, 479, 3, 192, 96, 0, 472, 473, 5, 57, 0, 0, 473, 474, 5, 112, 0, 0, 474, 479, 3, 194, 97, 0, 475, 476, 5, 58, 0, 0, 476, 477, 5, 112, 0, 0, 477, 479, 3, 196, 98, 0, 478, 442, 1, 0, 0, 0, 478, 445, 1, 0, 0, 0, 478, 448, 1, 0, 0, 0, 478, 451, 1, 0, 0, 0, 478, 454, 1, 0, 0, 0, 478, 457, 1, 0, 0, 0, 478, 460, 1, 0, 0, 0, 478, 463, 1, 0, 0, 0, 478, 466, 1, 0, 0, 0, 478, 469, 1, 0, 0, 0, 478, 472, 1, 0, 0, 0, 478, 475, 1, 0, 0, 0, 479, 55, 1, 0, 0, 0, 480, 484, 5, 26, 0, 0, 481, 483, 3, 58, 29, 0, 482, 481, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 57, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 3, 220, 110, 0, 488, 489, 5, 112, 0, 0, 489, 490, 3, 188, 94, 0, 490, 59, 1, 0, 0, 0, 491, 492, 5, 29, 0, 0, 492, 493, 5, 112, 0, 0, 493, 504, 3, 62, 31, 0, 494, 495, 5, 30, 0, 0, 495, 496, 5, 112, 0, 0, 496, 504, 3, 62, 31, 0, 497, 498, 5, 29, 0, 0, 498, 499, 5, 112, 0, 0, 499, 504, 3, 110, 55, 0, 500, 501, 5, 30, 0, 0, 501, 502, 5, 112, 0, 0, 502, 504, 3, 110, 55, 0, 503, 491, 1, 0, 0, 0, 503, 494, 1, 0, 0, 0, 503, 497, 1, 0, 0, 0, 503, 500, 1, 0, 0, 0, 504, 61, 1, 0, 0, 0, 505, 510, 3, 108, 54, 0, 506, 507, 5, 110, 0, 0, 507, 509, 3, 108, 54, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 63, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 514, 3, 122, 61, 0, 514, 515, 5, 27, 0, 0, 515, 516, 3, 122, 61, 0, 516, 65, 1, 0, 0, 0, 517, 518, 5, 28, 0, 0, 518, 519, 3, 112, 56, 0, 519, 67, 1, 0, 0, 0, 520, 521, 5, 28, 0, 0, 521, 530, 3, 112, 56, 0, 522, 523, 5, 28, 0, 0, 523, 530, 3, 70, 35, 0, 524, 525, 5, 28, 0, 0, 525, 526, 3, 70, 35, 0, 526, 527, 5, 110, 0, 0, 527, 528, 3, 112, 56, 0, 528, 530, 1, 0, 0, 0, 529, 520, 1, 0, 0, 0, 529, 522, 1, 0, 0, 0, 529, 524, 1, 0, 0, 0, 530, 69, 1, 0, 0, 0, 531, 534, 3, 72, 36, 0, 532, 533, 5, 27, 0, 0, 533, 535, 3, 214, 107, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 71, 1, 0, 0, 0, 536, 537, 5, 320, 0, 0, 537, 538, 5, 125, 0, 0, 538, 539, 3, 120, 60, 0, 539, 540, 5, 110, 0, 0, 540, 542, 3, 188, 94, 0, 541, 543, 3, 210, 105, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 5, 126, 0, 0, 545, 73, 1, 0, 0, 0, 546, 551, 3, 116, 58, 0, 547, 548, 5, 110, 0, 0, 548, 550, 3, 116, 58, 0, 549, 547, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 75, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 554, 555, 3, 120, 60, 0, 555, 556, 5, 112, 0, 0, 556, 557, 3, 88, 44, 0, 557, 77, 1, 0, 0, 0, 558, 561, 3, 80, 40, 0, 559, 560, 5, 27, 0, 0, 560, 562, 3, 122, 61, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 79, 1, 0, 0, 0, 563, 564, 3, 82, 41, 0, 564, 565, 5, 125, 0, 0, 565, 566, 3, 94, 47, 0, 566, 567, 5, 126, 0, 0, 567, 579, 1, 0, 0, 0, 568, 569, 5, 136, 0, 0, 569, 570, 5, 125, 0, 0, 570, 579, 5, 126, 0, 0, 571, 572, 7, 2, 0, 0, 572, 573, 5, 125, 0, 0, 573, 574, 3, 94, 47, 0, 574, 575, 5, 126, 0, 0, 575, 579, 1, 0, 0, 0, 576, 579, 3, 86, 43, 0, 577, 579, 3, 84, 42, 0, 578, 563, 1, 0, 0, 0, 578, 568, 1, 0, 0, 0, 578, 571, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 577, 1, 0, 0, 0, 579, 81, 1, 0, 0, 0, 580, 581, 7, 3, 0, 0, 581, 83, 1, 0, 0, 0, 582, 583, 5, 155, 0, 0, 583, 584, 5, 125, 0, 0, 584, 587, 3, 120, 60, 0, 585, 586, 5, 110, 0, 0, 586, 588, 3, 194, 97, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 5, 126, 0, 0, 590, 85, 1, 0, 0, 0, 591, 592, 5, 154, 0, 0, 592, 593, 5, 114, 0, 0, 593, 594, 3, 194, 97, 0, 594, 595, 5, 113, 0, 0, 595, 596, 5, 125, 0, 0, 596, 597, 3, 120, 60, 0, 597, 598, 5, 126, 0, 0, 598, 87, 1, 0, 0, 0, 599, 603, 3, 90, 45, 0, 600, 603, 3, 92, 46, 0, 601, 603, 3, 94, 47, 0, 602, 599, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 601, 1, 0, 0, 0, 603, 89, 1, 0, 0, 0, 604, 605, 6, 45, -1, 0, 605, 611, 3, 92, 46, 0, 606, 607, 5, 61, 0, 0, 607, 611, 3, 90, 45, 6, 608, 611, 3, 100, 50, 0, 609, 611, 3, 102, 51, 0, 610, 604, 1, 0, 0, 0, 610, 606, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 625, 1, 0, 0, 0, 612, 613, 10, 5, 0, 0, 613, 614, 5, 62, 0, 0, 614, 624, 3, 90, 45, 6, 615, 617, 10, 4, 0, 0, 616, 618, 5, 63, 0, 0, 617, 616, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 624, 3, 90, 45, 5, 620, 621, 10, 3, 0, 0, 621, 622, 5, 64, 0, 0, 622, 624, 3, 90, 45, 4, 623, 612, 1, 0, 0, 0, 623, 615, 1, 0, 0, 0, 623, 620, 1, 0, 0, 0, 624, 627, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 91, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 3, 94, 47, 0, 629, 630, 3, 182, 91, 0, 630, 631, 3, 94, 47, 0, 631, 637, 1, 0, 0, 0, 632, 633, 3, 94, 47, 0, 633, 634, 5, 60, 0, 0, 634, 635, 3, 212, 106, 0, 635, 637, 1, 0, 0, 0, 636, 628, 1, 0, 0, 0, 636, 632, 1, 0, 0, 0, 637, 93, 1, 0, 0, 0, 638, 639, 6, 47, -1, 0, 639, 649, 3, 96, 48, 0, 640, 649, 3, 98, 49, 0, 641, 649, 3, 162, 81, 0, 642, 649, 3, 158, 79, 0, 643, 649, 3, 170, 85, 0, 644, 645, 5, 125, 0, 0, 645, 646, 3, 94, 47, 0, 646, 647, 5, 126, 0, 0, 647, 649, 1, 0, 0, 0, 648, 638, 1, 0, 0, 0, 648, 640, 1, 0, 0, 0, 648, 641, 1, 0, 0, 0, 648, 642, 1, 0, 0, 0, 648, 643, 1, 0, 0, 0, 648, 644, 1, 0, 0, 0, 649, 658, 1, 0, 0, 0, 650, 651, 10, 8, 0, 0, 651, 652, 7, 4, 0, 0, 652, 657, 3, 94, 47, 9, 653, 654, 10, 7, 0, 0, 654, 655, 7, 0, 0, 0, 655, 657, 3, 94, 47, 8, 656, 650, 1, 0, 0, 0, 656, 653, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 95, 1, 0, 0, 0, 660, 658, 1, 0, 0, 0, 661, 666, 3, 124, 62, 0, 662, 666, 3, 126, 63, 0, 663, 666, 3, 120, 60, 0, 664, 666, 3, 188, 94, 0, 665, 661, 1, 0, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 97, 1, 0, 0, 0, 667, 668, 3, 180, 90, 0, 668, 669, 5, 125, 0, 0, 669, 670, 3, 136, 68, 0, 670, 671, 5, 60, 0, 0, 671, 672, 3, 136, 68, 0, 672, 673, 5, 126, 0, 0, 673, 99, 1, 0, 0, 0, 674, 675, 3, 128, 64, 0, 675, 101, 1, 0, 0, 0, 676, 679, 3, 104, 52, 0, 677, 679, 3, 106, 53, 0, 678, 676, 1, 0, 0, 0, 678, 677, 1, 0, 0, 0, 679, 103, 1, 0, 0, 0, 680, 681, 3, 184, 92, 0, 681, 682, 5, 125, 0, 0, 682, 683, 3, 146, 73, 0, 683, 684, 5, 110, 0, 0, 684, 689, 3, 148, 74, 0, 685, 686, 5, 110, 0, 0, 686, 688, 3, 138, 69, 0, 687, 685, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 693, 5, 126, 0, 0, 693, 105, 1, 0, 0, 0, 694, 695, 3, 186, 93, 0, 695, 696, 5, 125, 0, 0, 696, 697, 5, 127, 0, 0, 697, 702, 3, 142, 71, 0, 698, 699, 5, 110, 0, 0, 699, 701, 3, 142, 71, 0, 700, 698, 1, 0, 0, 0, 701, 704, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 705, 1, 0, 0, 0, 704, 702, 1, 0, 0, 0, 705, 706, 5, 128, 0, 0, 706, 707, 5, 110, 0, 0, 707, 712, 3, 148, 74, 0, 708, 709, 5, 110, 0, 0, 709, 711, 3, 138, 69, 0, 710, 708, 1, 0, 0, 0, 711, 714, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 715, 716, 5, 126, 0, 0, 716, 107, 1, 0, 0, 0, 717, 720, 3, 216, 108, 0, 718, 720, 5, 332, 0, 0, 719, 717, 1, 0, 0, 0, 719, 718, 1, 0, 0, 0, 720, 109, 1, 0, 0, 0, 721, 722, 3, 214, 107, 0, 722, 723, 5, 125, 0, 0, 723, 724, 3, 134, 67, 0, 724, 725, 5, 126, 0, 0, 725, 111, 1, 0, 0, 0, 726, 731, 3, 120, 60, 0, 727, 728, 5, 110, 0, 0, 728, 730, 3, 120, 60, 0, 729, 727, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 113, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 739, 3, 122, 61, 0, 735, 736, 5, 110, 0, 0, 736, 738, 3, 122, 61, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 115, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 7, 0, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 3, 118, 59, 0, 746, 117, 1, 0, 0, 0, 747, 769, 3, 120, 60, 0, 748, 749, 5, 35, 0, 0, 749, 750, 5, 125, 0, 0, 750, 751, 3, 120, 60, 0, 751, 752, 5, 126, 0, 0, 752, 769, 1, 0, 0, 0, 753, 754, 5, 36, 0, 0, 754, 755, 5, 125, 0, 0, 755, 756, 3, 120, 60, 0, 756, 757, 5, 126, 0, 0, 757, 769, 1, 0, 0, 0, 758, 759, 5, 37, 0, 0, 759, 760, 5, 125, 0, 0, 760, 761, 3, 120, 60, 0, 761, 762, 5, 126, 0, 0, 762, 769, 1, 0, 0, 0, 763, 764, 5, 38, 0, 0, 764, 765, 5, 125, 0, 0, 765, 766, 3, 120, 60, 0, 766, 767, 5, 126, 0, 0, 767, 769, 1, 0, 0, 0, 768, 747, 1, 0, 0, 0, 768, 748, 1, 0, 0, 0, 768, 753, 1, 0, 0, 0, 768, 758, 1, 0, 0, 0, 768, 763, 1, 0, 0, 0, 769, 119, 1, 0, 0, 0, 770, 771, 3, 214, 107, 0, 771, 121, 1, 0, 0, 0, 772, 773, 3, 218, 109, 0, 773, 123, 1, 0, 0, 0, 774, 775, 3, 132, 66, 0, 775, 776, 5, 125, 0, 0, 776, 777, 3, 134, 67, 0, 777, 778, 5, 126, 0, 0, 778, 125, 1, 0, 0, 0, 779, 780, 5, 274, 0, 0, 780, 781, 5, 125, 0, 0, 781, 782, 3, 88, 44, 0, 782, 783, 5, 27, 0, 0, 783, 784, 3, 130, 65, 0, 784, 785, 5, 126, 0, 0, 785, 127, 1, 0, 0, 0, 786, 787, 3, 174, 87, 0, 787, 788, 5, 125, 0, 0, 788, 789, 3, 134, 67, 0, 789, 790, 5, 126, 0, 0, 790, 129, 1, 0, 0, 0, 791, 802, 5, 212, 0, 0, 792, 802, 5, 241, 0, 0, 793, 802, 5, 243, 0, 0, 794, 802, 5, 102, 0, 0, 795, 802, 5, 103, 0, 0, 796, 802, 5, 104, 0, 0, 797, 802, 5, 105, 0, 0, 798, 802, 5, 106, 0, 0, 799, 802, 5, 107, 0, 0, 800, 802, 5, 108, 0, 0, 801, 791, 1, 0, 0, 0, 801, 792, 1, 0, 0, 0, 801, 793, 1, 0, 0, 0, 801, 794, 1, 0, 0, 0, 801, 795, 1, 0, 0, 0, 801, 796, 1, 0, 0, 0, 801, 797, 1, 0, 0, 0, 801, 798, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 800, 1, 0, 0, 0, 802, 131, 1, 0, 0, 0, 803, 810, 3, 152, 76, 0, 804, 810, 3, 156, 78, 0, 805, 810, 3, 178, 89, 0, 806, 810, 3, 174, 87, 0, 807, 810, 3, 176, 88, 0, 808, 810, 3, 180, 90, 0, 809, 803, 1, 0, 0, 0, 809, 804, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 809, 806, 1, 0, 0, 0, 809, 807, 1, 0, 0, 0, 809, 808, 1, 0, 0, 0, 810, 133, 1, 0, 0, 0, 811, 816, 3, 136, 68, 0, 812, 813, 5, 110, 0, 0, 813, 815, 3, 136, 68, 0, 814, 812, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 811, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 135, 1, 0, 0, 0, 821, 822, 3, 220, 110, 0, 822, 823, 5, 112, 0, 0, 823, 825, 1, 0, 0, 0, 824, 821, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 3, 94, 47, 0, 827, 137, 1, 0, 0, 0, 828, 829, 3, 140, 70, 0, 829, 830, 5, 112, 0, 0, 830, 831, 3, 150, 75, 0, 831, 139, 1, 0, 0, 0, 832, 833, 7, 5, 0, 0, 833, 141, 1, 0, 0, 0, 834, 843, 3, 146, 73, 0, 835, 836, 3, 146, 73, 0, 836, 837, 3, 144, 72, 0, 837, 843, 1, 0, 0, 0, 838, 839, 3, 146, 73, 0, 839, 840, 5, 134, 0, 0, 840, 841, 3, 144, 72, 0, 841, 843, 1, 0, 0, 0, 842, 834, 1, 0, 0, 0, 842, 835, 1, 0, 0, 0, 842, 838, 1, 0, 0, 0, 843, 143, 1, 0, 0, 0, 844, 847, 3, 194, 97, 0, 845, 847, 3, 196, 98, 0, 846, 844, 1, 0, 0, 0, 846, 845, 1, 0, 0, 0, 847, 145, 1, 0, 0, 0, 848, 851, 3, 214, 107, 0, 849, 851, 3, 192, 96, 0, 850, 848, 1, 0, 0, 0, 850, 849, 1, 0, 0, 0, 851, 147, 1, 0, 0, 0, 852, 853, 3, 150, 75, 0, 853, 149, 1, 0, 0, 0, 854, 857, 3, 214, 107, 0, 855, 857, 3, 188, 94, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 151, 1, 0, 0, 0, 858, 882, 5, 172, 0, 0, 859, 882, 5, 173, 0, 0, 860, 882, 5, 174, 0, 0, 861, 882, 5, 175, 0, 0, 862, 882, 5, 176, 0, 0, 863, 882, 5, 177, 0, 0, 864, 882, 5, 178, 0, 0, 865, 882, 5, 179, 0, 0, 866, 882, 5, 180, 0, 0, 867, 882, 5, 181, 0, 0, 868, 882, 5, 182, 0, 0, 869, 882, 5, 183, 0, 0, 870, 882, 5, 184, 0, 0, 871, 882, 5, 185, 0, 0, 872, 882, 5, 186, 0, 0, 873, 882, 5, 188, 0, 0, 874, 882, 5, 189, 0, 0, 875, 882, 5, 190, 0, 0, 876, 882, 5, 191, 0, 0, 877, 882, 5, 192, 0, 0, 878, 882, 5, 193, 0, 0, 879, 882, 5, 194, 0, 0, 880, 882, 3, 154, 77, 0, 881, 858, 1, 0, 0, 0, 881, 859, 1, 0, 0, 0, 881, 860, 1, 0, 0, 0, 881, 861, 1, 0, 0, 0, 881, 862, 1, 0, 0, 0, 881, 863, 1, 0, 0, 0, 881, 864, 1, 0, 0, 0, 881, 865, 1, 0, 0, 0, 881, 866, 1, 0, 0, 0, 881, 867, 1, 0, 0, 0, 881, 868, 1, 0, 0, 0, 881, 869, 1, 0, 0, 0, 881, 870, 1, 0, 0, 0, 881, 871, 1, 0, 0, 0, 881, 872, 1, 0, 0, 0, 881, 873, 1, 0, 0, 0, 881, 874, 1, 0, 0, 0, 881, 875, 1, 0, 0, 0, 881, 876, 1, 0, 0, 0, 881, 877, 1, 0, 0, 0, 881, 878, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 880, 1, 0, 0, 0, 882, 153, 1, 0, 0, 0, 883, 884, 7, 6, 0, 0, 884, 155, 1, 0, 0, 0, 885, 886, 7, 7, 0, 0, 886, 157, 1, 0, 0, 0, 887, 888, 5, 226, 0, 0, 888, 889, 5, 125, 0, 0, 889, 890, 3, 160, 80, 0, 890, 891, 5, 110, 0, 0, 891, 892, 3, 136, 68, 0, 892, 893, 5, 126, 0, 0, 893, 159, 1, 0, 0, 0, 894, 895, 7, 8, 0, 0, 895, 161, 1, 0, 0, 0, 896, 897, 5, 223, 0, 0, 897, 898, 5, 125, 0, 0, 898, 899, 3, 168, 84, 0, 899, 900, 5, 5, 0, 0, 900, 901, 3, 136, 68, 0, 901, 902, 5, 126, 0, 0, 902, 163, 1, 0, 0, 0, 903, 904, 7, 9, 0, 0, 904, 165, 1, 0, 0, 0, 905, 906, 7, 10, 0, 0, 906, 167, 1, 0, 0, 0, 907, 910, 3, 164, 82, 0, 908, 910, 3, 166, 83, 0, 909, 907, 1, 0, 0, 0, 909, 908, 1, 0, 0, 0, 910, 169, 1, 0, 0, 0, 911, 912, 3, 172, 86, 0, 912, 913, 5, 125, 0, 0, 913, 914, 3, 164, 82, 0, 914, 915, 5, 110, 0, 0, 915, 916, 3, 136, 68, 0, 916, 917, 5, 110, 0, 0, 917, 918, 3, 136, 68, 0, 918, 919, 5, 126, 0, 0, 919, 171, 1, 0, 0, 0, 920, 921, 7, 11, 0, 0, 921, 173, 1, 0, 0, 0, 922, 923, 7, 12, 0, 0, 923, 175, 1, 0, 0, 0, 924, 925, 5, 281, 0, 0, 925, 177, 1, 0, 0, 0, 926, 927, 7, 13, 0, 0, 927, 179, 1, 0, 0, 0, 928, 929, 5, 187, 0, 0, 929, 181, 1, 0, 0, 0, 930, 931, 7, 14, 0, 0, 931, 183, 1, 0, 0, 0, 932, 933, 7, 15, 0, 0, 933, 185, 1, 0, 0, 0, 934, 935, 7, 16, 0, 0, 935, 187, 1, 0, 0, 0, 936, 943, 3, 190, 95, 0, 937, 943, 3, 192, 96, 0, 938, 943, 3, 194, 97, 0, 939, 943, 3, 196, 98, 0, 940, 943, 3, 198, 99, 0, 941, 943, 3, 200, 100, 0, 942, 936, 1, 0, 0, 0, 942, 937, 1, 0, 0, 0, 942, 938, 1, 0, 0, 0, 942, 939, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 941, 1, 0, 0, 0, 943, 189, 1, 0, 0, 0, 944, 945, 5, 81, 0, 0, 945, 946, 3, 94, 47, 0, 946, 947, 3, 208, 104, 0, 947, 191, 1, 0, 0, 0, 948, 949, 7, 17, 0, 0, 949, 193, 1, 0, 0, 0, 950, 952, 7, 0, 0, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 5, 330, 0, 0, 954, 195, 1, 0, 0, 0, 955, 957, 7, 0, 0, 0, 956, 955, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 5, 331, 0, 0, 959, 197, 1, 0, 0, 0, 960, 961, 7, 18, 0, 0, 961, 199, 1, 0, 0, 0, 962, 966, 3, 202, 101, 0, 963, 966, 3, 204, 102, 0, 964, 966, 3, 206, 103, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 201, 1, 0, 0, 0, 967, 968, 5, 212, 0, 0, 968, 969, 3, 192, 96, 0, 969, 203, 1, 0, 0, 0, 970, 971, 5, 241, 0, 0, 971, 972, 3, 192, 96, 0, 972, 205, 1, 0, 0, 0, 973, 974, 5, 243, 0, 0, 974, 975, 3, 192, 96, 0, 975, 207, 1, 0, 0, 0, 976, 977, 7, 19, 0, 0, 977, 209, 1, 0, 0, 0, 978, 979, 7, 20, 0, 0, 979, 211, 1, 0, 0, 0, 980, 981, 5, 125, 0, 0, 981, 986, 3, 188, 94, 0, 982, 983, 5, 110, 0, 0, 983, 985, 3, 188, 94, 0, 984, 982, 1, 0, 0, 0, 985, 988, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 989, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 989, 990, 5, 126, 0, 0, 990, 213, 1, 0, 0, 0, 991, 996, 3, 220, 110, 0, 992, 993, 5, 111, 0, 0, 993, 995, 3, 220, 110, 0, 994, 992, 1, 0, 0, 0, 995, 998, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 215, 1, 0, 0, 0, 998, 996, 1, 0, 0, 0, 999, 1004, 3, 222, 111, 0, 1000, 1001, 5, 111, 0, 0, 1001, 1003, 3, 220, 110, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1006, 1, 0, 0, 0, 1004, 1002, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 217, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1007, 1012, 3, 224, 112, 0, 1008, 1009, 5, 111, 0, 0, 1009, 1011, 3, 224, 112, 0, 1010, 1008, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 219, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1015, 1017, 5, 111, 0, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1026, 5, 328, 0, 0, 1019, 1020, 5, 131, 0, 0, 1020, 1021, 3, 220, 110, 0, 1021, 1022, 5, 131, 0, 0, 1022, 1026, 1, 0, 0, 0, 1023, 1026, 5, 335, 0, 0, 1024, 1026, 3, 226, 113, 0, 1025, 1016, 1, 0, 0, 0, 1025, 1019, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1025, 1024, 1, 0, 0, 0, 1026, 221, 1, 0, 0, 0, 1027, 1029, 5, 329, 0, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 3, 220, 110, 0, 1031, 223, 1, 0, 0, 0, 1032, 1037, 3, 220, 110, 0, 1033, 1034, 5, 122, 0, 0, 1034, 1036, 3, 220, 110, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1039, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1041, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1040, 1042, 5, 122, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1056, 1, 0, 0, 0, 1043, 1044, 5, 129, 0, 0, 1044, 1045, 3, 224, 112, 0, 1045, 1046, 5, 129, 0, 0, 1046, 1056, 1, 0, 0, 0, 1047, 1048, 5, 130, 0, 0, 1048, 1049, 3, 224, 112, 0, 1049, 1050, 5, 130, 0, 0, 1050, 1056, 1, 0, 0, 0, 1051, 1052, 5, 131, 0, 0, 1052, 1053, 3, 224, 112, 0, 1053, 1054, 5, 131, 0, 0, 1054, 1056, 1, 0, 0, 0, 1055, 1032, 1, 0, 0, 0, 1055, 1043, 1, 0, 0, 0, 1055, 1047, 1, 0, 0, 0, 1055, 1051, 1, 0, 0, 0, 1056, 225, 1, 0, 0, 0, 1057, 1158, 5, 31, 0, 0, 1058, 1158, 3, 210, 105, 0, 1059, 1158, 5, 320, 0, 0, 1060, 1158, 3, 132, 66, 0, 1061, 1158, 3, 140, 70, 0, 1062, 1158, 3, 208, 104, 0, 1063, 1158, 3, 156, 78, 0, 1064, 1158, 3, 178, 89, 0, 1065, 1158, 3, 152, 76, 0, 1066, 1158, 3, 180, 90, 0, 1067, 1158, 5, 2, 0, 0, 1068, 1158, 5, 3, 0, 0, 1069, 1158, 5, 4, 0, 0, 1070, 1158, 5, 5, 0, 0, 1071, 1158, 5, 6, 0, 0, 1072, 1158, 5, 7, 0, 0, 1073, 1158, 5, 8, 0, 0, 1074, 1158, 5, 9, 0, 0, 1075, 1158, 5, 10, 0, 0, 1076, 1158, 5, 11, 0, 0, 1077, 1158, 5, 12, 0, 0, 1078, 1158, 5, 13, 0, 0, 1079, 1158, 5, 14, 0, 0, 1080, 1158, 5, 15, 0, 0, 1081, 1158, 5, 16, 0, 0, 1082, 1158, 5, 17, 0, 0, 1083, 1158, 5, 18, 0, 0, 1084, 1158, 5, 19, 0, 0, 1085, 1158, 5, 20, 0, 0, 1086, 1158, 5, 21, 0, 0, 1087, 1158, 5, 22, 0, 0, 1088, 1158, 5, 23, 0, 0, 1089, 1158, 5, 24, 0, 0, 1090, 1158, 5, 25, 0, 0, 1091, 1158, 5, 26, 0, 0, 1092, 1158, 5, 29, 0, 0, 1093, 1158, 5, 30, 0, 0, 1094, 1158, 5, 32, 0, 0, 1095, 1158, 5, 33, 0, 0, 1096, 1158, 5, 34, 0, 0, 1097, 1158, 5, 36, 0, 0, 1098, 1158, 5, 37, 0, 0, 1099, 1158, 5, 38, 0, 0, 1100, 1158, 5, 39, 0, 0, 1101, 1158, 5, 40, 0, 0, 1102, 1158, 5, 41, 0, 0, 1103, 1158, 5, 42, 0, 0, 1104, 1158, 5, 43, 0, 0, 1105, 1158, 5, 44, 0, 0, 1106, 1158, 5, 45, 0, 0, 1107, 1158, 5, 46, 0, 0, 1108, 1158, 5, 47, 0, 0, 1109, 1158, 5, 48, 0, 0, 1110, 1158, 5, 49, 0, 0, 1111, 1158, 5, 50, 0, 0, 1112, 1158, 5, 51, 0, 0, 1113, 1158, 5, 52, 0, 0, 1114, 1158, 5, 53, 0, 0, 1115, 1158, 5, 54, 0, 0, 1116, 1158, 5, 55, 0, 0, 1117, 1158, 5, 56, 0, 0, 1118, 1158, 5, 57, 0, 0, 1119, 1158, 5, 58, 0, 0, 1120, 1158, 5, 135, 0, 0, 1121, 1158, 5, 136, 0, 0, 1122, 1158, 5, 137, 0, 0, 1123, 1158, 5, 138, 0, 0, 1124, 1158, 5, 139, 0, 0, 1125, 1158, 5, 140, 0, 0, 1126, 1158, 5, 141, 0, 0, 1127, 1158, 5, 142, 0, 0, 1128, 1158, 5, 143, 0, 0, 1129, 1158, 5, 144, 0, 0, 1130, 1158, 5, 145, 0, 0, 1131, 1158, 5, 146, 0, 0, 1132, 1158, 5, 147, 0, 0, 1133, 1158, 5, 148, 0, 0, 1134, 1158, 5, 149, 0, 0, 1135, 1158, 5, 150, 0, 0, 1136, 1158, 5, 151, 0, 0, 1137, 1158, 5, 152, 0, 0, 1138, 1158, 5, 153, 0, 0, 1139, 1158, 5, 154, 0, 0, 1140, 1158, 5, 155, 0, 0, 1141, 1158, 5, 156, 0, 0, 1142, 1158, 5, 157, 0, 0, 1143, 1158, 5, 158, 0, 0, 1144, 1158, 5, 159, 0, 0, 1145, 1158, 5, 160, 0, 0, 1146, 1158, 5, 161, 0, 0, 1147, 1158, 5, 162, 0, 0, 1148, 1158, 5, 163, 0, 0, 1149, 1158, 5, 164, 0, 0, 1150, 1158, 5, 165, 0, 0, 1151, 1158, 5, 166, 0, 0, 1152, 1158, 5, 167, 0, 0, 1153, 1158, 5, 168, 0, 0, 1154, 1158, 5, 169, 0, 0, 1155, 1158, 5, 170, 0, 0, 1156, 1158, 5, 171, 0, 0, 1157, 1057, 1, 0, 0, 0, 1157, 1058, 1, 0, 0, 0, 1157, 1059, 1, 0, 0, 0, 1157, 1060, 1, 0, 0, 0, 1157, 1061, 1, 0, 0, 0, 1157, 1062, 1, 0, 0, 0, 1157, 1063, 1, 0, 0, 0, 1157, 1064, 1, 0, 0, 0, 1157, 1065, 1, 0, 0, 0, 1157, 1066, 1, 0, 0, 0, 1157, 1067, 1, 0, 0, 0, 1157, 1068, 1, 0, 0, 0, 1157, 1069, 1, 0, 0, 0, 1157, 1070, 1, 0, 0, 0, 1157, 1071, 1, 0, 0, 0, 1157, 1072, 1, 0, 0, 0, 1157, 1073, 1, 0, 0, 0, 1157, 1074, 1, 0, 0, 0, 1157, 1075, 1, 0, 0, 0, 1157, 1076, 1, 0, 0, 0, 1157, 1077, 1, 0, 0, 0, 1157, 1078, 1, 0, 0, 0, 1157, 1079, 1, 0, 0, 0, 1157, 1080, 1, 0, 0, 0, 1157, 1081, 1, 0, 0, 0, 1157, 1082, 1, 0, 0, 0, 1157, 1083, 1, 0, 0, 0, 1157, 1084, 1, 0, 0, 0, 1157, 1085, 1, 0, 0, 0, 1157, 1086, 1, 0, 0, 0, 1157, 1087, 1, 0, 0, 0, 1157, 1088, 1, 0, 0, 0, 1157, 1089, 1, 0, 0, 0, 1157, 1090, 1, 0, 0, 0, 1157, 1091, 1, 0, 0, 0, 1157, 1092, 1, 0, 0, 0, 1157, 1093, 1, 0, 0, 0, 1157, 1094, 1, 0, 0, 0, 1157, 1095, 1, 0, 0, 0, 1157, 1096, 1, 0, 0, 0, 1157, 1097, 1, 0, 0, 0, 1157, 1098, 1, 0, 0, 0, 1157, 1099, 1, 0, 0, 0, 1157, 1100, 1, 0, 0, 0, 1157, 1101, 1, 0, 0, 0, 1157, 1102, 1, 0, 0, 0, 1157, 1103, 1, 0, 0, 0, 1157, 1104, 1, 0, 0, 0, 1157, 1105, 1, 0, 0, 0, 1157, 1106, 1, 0, 0, 0, 1157, 1107, 1, 0, 0, 0, 1157, 1108, 1, 0, 0, 0, 1157, 1109, 1, 0, 0, 0, 1157, 1110, 1, 0, 0, 0, 1157, 1111, 1, 0, 0, 0, 1157, 1112, 1, 0, 0, 0, 1157, 1113, 1, 0, 0, 0, 1157, 1114, 1, 0, 0, 0, 1157, 1115, 1, 0, 0, 0, 1157, 1116, 1, 0, 0, 0, 1157, 1117, 1, 0, 0, 0, 1157, 1118, 1, 0, 0, 0, 1157, 1119, 1, 0, 0, 0, 1157, 1120, 1, 0, 0, 0, 1157, 1121, 1, 0, 0, 0, 1157, 1122, 1, 0, 0, 0, 1157, 1123, 1, 0, 0, 0, 1157, 1124, 1, 0, 0, 0, 1157, 1125, 1, 0, 0, 0, 1157, 1126, 1, 0, 0, 0, 1157, 1127, 1, 0, 0, 0, 1157, 1128, 1, 0, 0, 0, 1157, 1129, 1, 0, 0, 0, 1157, 1130, 1, 0, 0, 0, 1157, 1131, 1, 0, 0, 0, 1157, 1132, 1, 0, 0, 0, 1157, 1133, 1, 0, 0, 0, 1157, 1134, 1, 0, 0, 0, 1157, 1135, 1, 0, 0, 0, 1157, 1136, 1, 0, 0, 0, 1157, 1137, 1, 0, 0, 0, 1157, 1138, 1, 0, 0, 0, 1157, 1139, 1, 0, 0, 0, 1157, 1140, 1, 0, 0, 0, 1157, 1141, 1, 0, 0, 0, 1157, 1142, 1, 0, 0, 0, 1157, 1143, 1, 0, 0, 0, 1157, 1144, 1, 0, 0, 0, 1157, 1145, 1, 0, 0, 0, 1157, 1146, 1, 0, 0, 0, 1157, 1147, 1, 0, 0, 0, 1157, 1148, 1, 0, 0, 0, 1157, 1149, 1, 0, 0, 0, 1157, 1150, 1, 0, 0, 0, 1157, 1151, 1, 0, 0, 0, 1157, 1152, 1, 0, 0, 0, 1157, 1153, 1, 0, 0, 0, 1157, 1154, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 227, 1, 0, 0, 0, 86, 229, 242, 248, 266, 269, 273, 279, 284, 297, 307, 314, 319, 324, 331, 335, 340, 344, 350, 355, 366, 371, 375, 379, 383, 388, 402, 413, 421, 433, 439, 478, 484, 503, 510, 529, 534, 542, 551, 561, 578, 587, 602, 610, 617, 623, 625, 636, 648, 656, 658, 665, 678, 689, 702, 712, 719, 731, 739, 743, 768, 801, 809, 816, 819, 824, 842, 846, 850, 856, 881, 909, 942, 951, 956, 965, 986, 996, 1004, 1012, 1016, 1025, 1028, 1037, 1041, 1055, 1157] \ No newline at end of file +[4, 1, 336, 1148, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 3, 6, 274, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 279, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 292, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 300, 8, 11, 10, 11, 12, 11, 303, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 309, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 314, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 319, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 324, 8, 12, 10, 12, 12, 12, 327, 9, 12, 1, 12, 3, 12, 330, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 335, 8, 12, 1, 13, 1, 13, 3, 13, 339, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 345, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 350, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 359, 8, 15, 10, 15, 12, 15, 362, 9, 15, 1, 16, 1, 16, 3, 16, 366, 8, 16, 1, 16, 1, 16, 3, 16, 370, 8, 16, 1, 17, 1, 17, 3, 17, 374, 8, 17, 1, 17, 1, 17, 3, 17, 378, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 383, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 395, 8, 21, 10, 21, 12, 21, 398, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 408, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 414, 8, 24, 10, 24, 12, 24, 417, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 428, 8, 25, 1, 26, 1, 26, 5, 26, 432, 8, 26, 10, 26, 12, 26, 435, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 473, 8, 27, 1, 28, 1, 28, 5, 28, 477, 8, 28, 10, 28, 12, 28, 480, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 492, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 497, 8, 31, 10, 31, 12, 31, 500, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 518, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 523, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 531, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 538, 8, 37, 10, 37, 12, 37, 541, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 550, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 567, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 576, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 591, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 599, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 606, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 612, 8, 45, 10, 45, 12, 45, 615, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 625, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 637, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 645, 8, 47, 10, 47, 12, 47, 648, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 654, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 667, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 676, 8, 52, 10, 52, 12, 52, 679, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 689, 8, 53, 10, 53, 12, 53, 692, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 699, 8, 53, 10, 53, 12, 53, 702, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 708, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 718, 8, 56, 10, 56, 12, 56, 721, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 726, 8, 57, 10, 57, 12, 57, 729, 9, 57, 1, 58, 3, 58, 732, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 757, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 790, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 798, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 803, 8, 67, 10, 67, 12, 67, 806, 9, 67, 3, 67, 808, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 813, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 831, 8, 71, 1, 72, 1, 72, 3, 72, 835, 8, 72, 1, 73, 1, 73, 3, 73, 839, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 845, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 870, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 898, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 931, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 940, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 945, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 954, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 973, 8, 106, 10, 106, 12, 106, 976, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 983, 8, 107, 10, 107, 12, 107, 986, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 991, 8, 108, 10, 108, 12, 108, 994, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 999, 8, 109, 10, 109, 12, 109, 1002, 9, 109, 1, 110, 3, 110, 1005, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1014, 8, 110, 1, 111, 3, 111, 1017, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1024, 8, 112, 10, 112, 12, 112, 1027, 9, 112, 1, 112, 3, 112, 1030, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1044, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1146, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1302, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 278, 1, 0, 0, 0, 14, 280, 1, 0, 0, 0, 16, 283, 1, 0, 0, 0, 18, 286, 1, 0, 0, 0, 20, 289, 1, 0, 0, 0, 22, 295, 1, 0, 0, 0, 24, 304, 1, 0, 0, 0, 26, 336, 1, 0, 0, 0, 28, 351, 1, 0, 0, 0, 30, 354, 1, 0, 0, 0, 32, 363, 1, 0, 0, 0, 34, 371, 1, 0, 0, 0, 36, 379, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 388, 1, 0, 0, 0, 42, 392, 1, 0, 0, 0, 44, 407, 1, 0, 0, 0, 46, 409, 1, 0, 0, 0, 48, 411, 1, 0, 0, 0, 50, 427, 1, 0, 0, 0, 52, 429, 1, 0, 0, 0, 54, 472, 1, 0, 0, 0, 56, 474, 1, 0, 0, 0, 58, 481, 1, 0, 0, 0, 60, 491, 1, 0, 0, 0, 62, 493, 1, 0, 0, 0, 64, 501, 1, 0, 0, 0, 66, 505, 1, 0, 0, 0, 68, 517, 1, 0, 0, 0, 70, 519, 1, 0, 0, 0, 72, 524, 1, 0, 0, 0, 74, 534, 1, 0, 0, 0, 76, 542, 1, 0, 0, 0, 78, 546, 1, 0, 0, 0, 80, 566, 1, 0, 0, 0, 82, 568, 1, 0, 0, 0, 84, 570, 1, 0, 0, 0, 86, 579, 1, 0, 0, 0, 88, 590, 1, 0, 0, 0, 90, 598, 1, 0, 0, 0, 92, 624, 1, 0, 0, 0, 94, 636, 1, 0, 0, 0, 96, 653, 1, 0, 0, 0, 98, 655, 1, 0, 0, 0, 100, 662, 1, 0, 0, 0, 102, 666, 1, 0, 0, 0, 104, 668, 1, 0, 0, 0, 106, 682, 1, 0, 0, 0, 108, 707, 1, 0, 0, 0, 110, 709, 1, 0, 0, 0, 112, 714, 1, 0, 0, 0, 114, 722, 1, 0, 0, 0, 116, 731, 1, 0, 0, 0, 118, 756, 1, 0, 0, 0, 120, 758, 1, 0, 0, 0, 122, 760, 1, 0, 0, 0, 124, 762, 1, 0, 0, 0, 126, 767, 1, 0, 0, 0, 128, 774, 1, 0, 0, 0, 130, 789, 1, 0, 0, 0, 132, 797, 1, 0, 0, 0, 134, 807, 1, 0, 0, 0, 136, 812, 1, 0, 0, 0, 138, 816, 1, 0, 0, 0, 140, 820, 1, 0, 0, 0, 142, 830, 1, 0, 0, 0, 144, 834, 1, 0, 0, 0, 146, 838, 1, 0, 0, 0, 148, 840, 1, 0, 0, 0, 150, 844, 1, 0, 0, 0, 152, 869, 1, 0, 0, 0, 154, 871, 1, 0, 0, 0, 156, 873, 1, 0, 0, 0, 158, 875, 1, 0, 0, 0, 160, 882, 1, 0, 0, 0, 162, 884, 1, 0, 0, 0, 164, 891, 1, 0, 0, 0, 166, 893, 1, 0, 0, 0, 168, 897, 1, 0, 0, 0, 170, 899, 1, 0, 0, 0, 172, 908, 1, 0, 0, 0, 174, 910, 1, 0, 0, 0, 176, 912, 1, 0, 0, 0, 178, 914, 1, 0, 0, 0, 180, 916, 1, 0, 0, 0, 182, 918, 1, 0, 0, 0, 184, 920, 1, 0, 0, 0, 186, 922, 1, 0, 0, 0, 188, 930, 1, 0, 0, 0, 190, 932, 1, 0, 0, 0, 192, 936, 1, 0, 0, 0, 194, 939, 1, 0, 0, 0, 196, 944, 1, 0, 0, 0, 198, 948, 1, 0, 0, 0, 200, 953, 1, 0, 0, 0, 202, 955, 1, 0, 0, 0, 204, 958, 1, 0, 0, 0, 206, 961, 1, 0, 0, 0, 208, 964, 1, 0, 0, 0, 210, 966, 1, 0, 0, 0, 212, 968, 1, 0, 0, 0, 214, 979, 1, 0, 0, 0, 216, 987, 1, 0, 0, 0, 218, 995, 1, 0, 0, 0, 220, 1013, 1, 0, 0, 0, 222, 1016, 1, 0, 0, 0, 224, 1043, 1, 0, 0, 0, 226, 1145, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 279, 3, 60, 30, 0, 272, 274, 5, 2, 0, 0, 273, 272, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 276, 3, 60, 30, 0, 276, 277, 3, 90, 45, 0, 277, 279, 1, 0, 0, 0, 278, 269, 1, 0, 0, 0, 278, 273, 1, 0, 0, 0, 279, 13, 1, 0, 0, 0, 280, 281, 5, 3, 0, 0, 281, 282, 3, 62, 31, 0, 282, 15, 1, 0, 0, 0, 283, 284, 5, 4, 0, 0, 284, 285, 5, 33, 0, 0, 285, 17, 1, 0, 0, 0, 286, 287, 5, 6, 0, 0, 287, 288, 3, 90, 45, 0, 288, 19, 1, 0, 0, 0, 289, 291, 5, 7, 0, 0, 290, 292, 7, 0, 0, 0, 291, 290, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 294, 3, 112, 56, 0, 294, 21, 1, 0, 0, 0, 295, 296, 5, 8, 0, 0, 296, 301, 3, 64, 32, 0, 297, 298, 5, 110, 0, 0, 298, 300, 3, 64, 32, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 23, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 308, 5, 9, 0, 0, 305, 306, 5, 42, 0, 0, 306, 307, 5, 112, 0, 0, 307, 309, 3, 194, 97, 0, 308, 305, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 313, 1, 0, 0, 0, 310, 311, 5, 43, 0, 0, 311, 312, 5, 112, 0, 0, 312, 314, 3, 198, 99, 0, 313, 310, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 318, 1, 0, 0, 0, 315, 316, 5, 44, 0, 0, 316, 317, 5, 112, 0, 0, 317, 319, 3, 192, 96, 0, 318, 315, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 325, 3, 78, 39, 0, 321, 322, 5, 110, 0, 0, 322, 324, 3, 78, 39, 0, 323, 321, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 330, 3, 68, 34, 0, 329, 328, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 334, 1, 0, 0, 0, 331, 332, 5, 41, 0, 0, 332, 333, 5, 112, 0, 0, 333, 335, 3, 198, 99, 0, 334, 331, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 25, 1, 0, 0, 0, 336, 338, 5, 10, 0, 0, 337, 339, 3, 194, 97, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 344, 3, 112, 56, 0, 341, 342, 5, 39, 0, 0, 342, 343, 5, 112, 0, 0, 343, 345, 3, 198, 99, 0, 344, 341, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 349, 1, 0, 0, 0, 346, 347, 5, 40, 0, 0, 347, 348, 5, 112, 0, 0, 348, 350, 3, 198, 99, 0, 349, 346, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 27, 1, 0, 0, 0, 351, 352, 5, 11, 0, 0, 352, 353, 3, 74, 37, 0, 353, 29, 1, 0, 0, 0, 354, 355, 5, 12, 0, 0, 355, 360, 3, 76, 38, 0, 356, 357, 5, 110, 0, 0, 357, 359, 3, 76, 38, 0, 358, 356, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 31, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 363, 365, 5, 13, 0, 0, 364, 366, 3, 194, 97, 0, 365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 368, 5, 5, 0, 0, 368, 370, 3, 194, 97, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 33, 1, 0, 0, 0, 371, 373, 5, 14, 0, 0, 372, 374, 3, 194, 97, 0, 373, 372, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 377, 3, 112, 56, 0, 376, 378, 3, 66, 33, 0, 377, 376, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 35, 1, 0, 0, 0, 379, 380, 5, 15, 0, 0, 380, 382, 3, 112, 56, 0, 381, 383, 3, 66, 33, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 37, 1, 0, 0, 0, 384, 385, 5, 20, 0, 0, 385, 386, 3, 88, 44, 0, 386, 387, 3, 192, 96, 0, 387, 39, 1, 0, 0, 0, 388, 389, 5, 16, 0, 0, 389, 390, 3, 88, 44, 0, 390, 391, 3, 192, 96, 0, 391, 41, 1, 0, 0, 0, 392, 396, 5, 22, 0, 0, 393, 395, 3, 44, 22, 0, 394, 393, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 399, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 400, 3, 88, 44, 0, 400, 43, 1, 0, 0, 0, 401, 402, 5, 23, 0, 0, 402, 403, 5, 112, 0, 0, 403, 408, 3, 192, 96, 0, 404, 405, 5, 21, 0, 0, 405, 406, 5, 112, 0, 0, 406, 408, 3, 192, 96, 0, 407, 401, 1, 0, 0, 0, 407, 404, 1, 0, 0, 0, 408, 45, 1, 0, 0, 0, 409, 410, 7, 1, 0, 0, 410, 47, 1, 0, 0, 0, 411, 415, 5, 24, 0, 0, 412, 414, 3, 50, 25, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 49, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 45, 0, 0, 419, 420, 5, 112, 0, 0, 420, 428, 3, 194, 97, 0, 421, 422, 5, 46, 0, 0, 422, 423, 5, 112, 0, 0, 423, 428, 3, 194, 97, 0, 424, 425, 5, 47, 0, 0, 425, 426, 5, 112, 0, 0, 426, 428, 3, 192, 96, 0, 427, 418, 1, 0, 0, 0, 427, 421, 1, 0, 0, 0, 427, 424, 1, 0, 0, 0, 428, 51, 1, 0, 0, 0, 429, 433, 5, 25, 0, 0, 430, 432, 3, 54, 27, 0, 431, 430, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 53, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 436, 437, 5, 48, 0, 0, 437, 438, 5, 112, 0, 0, 438, 473, 3, 194, 97, 0, 439, 440, 5, 49, 0, 0, 440, 441, 5, 112, 0, 0, 441, 473, 3, 194, 97, 0, 442, 443, 5, 50, 0, 0, 443, 444, 5, 112, 0, 0, 444, 473, 3, 194, 97, 0, 445, 446, 5, 51, 0, 0, 446, 447, 5, 112, 0, 0, 447, 473, 3, 194, 97, 0, 448, 449, 5, 52, 0, 0, 449, 450, 5, 112, 0, 0, 450, 473, 3, 196, 98, 0, 451, 452, 5, 53, 0, 0, 452, 453, 5, 112, 0, 0, 453, 473, 3, 196, 98, 0, 454, 455, 5, 54, 0, 0, 455, 456, 5, 112, 0, 0, 456, 473, 3, 192, 96, 0, 457, 458, 5, 55, 0, 0, 458, 459, 5, 112, 0, 0, 459, 473, 3, 192, 96, 0, 460, 461, 5, 215, 0, 0, 461, 462, 5, 112, 0, 0, 462, 473, 3, 192, 96, 0, 463, 464, 5, 56, 0, 0, 464, 465, 5, 112, 0, 0, 465, 473, 3, 192, 96, 0, 466, 467, 5, 57, 0, 0, 467, 468, 5, 112, 0, 0, 468, 473, 3, 194, 97, 0, 469, 470, 5, 58, 0, 0, 470, 471, 5, 112, 0, 0, 471, 473, 3, 196, 98, 0, 472, 436, 1, 0, 0, 0, 472, 439, 1, 0, 0, 0, 472, 442, 1, 0, 0, 0, 472, 445, 1, 0, 0, 0, 472, 448, 1, 0, 0, 0, 472, 451, 1, 0, 0, 0, 472, 454, 1, 0, 0, 0, 472, 457, 1, 0, 0, 0, 472, 460, 1, 0, 0, 0, 472, 463, 1, 0, 0, 0, 472, 466, 1, 0, 0, 0, 472, 469, 1, 0, 0, 0, 473, 55, 1, 0, 0, 0, 474, 478, 5, 26, 0, 0, 475, 477, 3, 58, 29, 0, 476, 475, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 57, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 482, 3, 220, 110, 0, 482, 483, 5, 112, 0, 0, 483, 484, 3, 188, 94, 0, 484, 59, 1, 0, 0, 0, 485, 486, 5, 29, 0, 0, 486, 487, 5, 112, 0, 0, 487, 492, 3, 62, 31, 0, 488, 489, 5, 30, 0, 0, 489, 490, 5, 112, 0, 0, 490, 492, 3, 62, 31, 0, 491, 485, 1, 0, 0, 0, 491, 488, 1, 0, 0, 0, 492, 61, 1, 0, 0, 0, 493, 498, 3, 108, 54, 0, 494, 495, 5, 110, 0, 0, 495, 497, 3, 108, 54, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 63, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 502, 3, 122, 61, 0, 502, 503, 5, 27, 0, 0, 503, 504, 3, 122, 61, 0, 504, 65, 1, 0, 0, 0, 505, 506, 5, 28, 0, 0, 506, 507, 3, 112, 56, 0, 507, 67, 1, 0, 0, 0, 508, 509, 5, 28, 0, 0, 509, 518, 3, 112, 56, 0, 510, 511, 5, 28, 0, 0, 511, 518, 3, 70, 35, 0, 512, 513, 5, 28, 0, 0, 513, 514, 3, 70, 35, 0, 514, 515, 5, 110, 0, 0, 515, 516, 3, 112, 56, 0, 516, 518, 1, 0, 0, 0, 517, 508, 1, 0, 0, 0, 517, 510, 1, 0, 0, 0, 517, 512, 1, 0, 0, 0, 518, 69, 1, 0, 0, 0, 519, 522, 3, 72, 36, 0, 520, 521, 5, 27, 0, 0, 521, 523, 3, 214, 107, 0, 522, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 71, 1, 0, 0, 0, 524, 525, 5, 320, 0, 0, 525, 526, 5, 125, 0, 0, 526, 527, 3, 120, 60, 0, 527, 528, 5, 110, 0, 0, 528, 530, 3, 188, 94, 0, 529, 531, 3, 210, 105, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 126, 0, 0, 533, 73, 1, 0, 0, 0, 534, 539, 3, 116, 58, 0, 535, 536, 5, 110, 0, 0, 536, 538, 3, 116, 58, 0, 537, 535, 1, 0, 0, 0, 538, 541, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 75, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 542, 543, 3, 120, 60, 0, 543, 544, 5, 112, 0, 0, 544, 545, 3, 88, 44, 0, 545, 77, 1, 0, 0, 0, 546, 549, 3, 80, 40, 0, 547, 548, 5, 27, 0, 0, 548, 550, 3, 122, 61, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 79, 1, 0, 0, 0, 551, 552, 3, 82, 41, 0, 552, 553, 5, 125, 0, 0, 553, 554, 3, 94, 47, 0, 554, 555, 5, 126, 0, 0, 555, 567, 1, 0, 0, 0, 556, 557, 5, 136, 0, 0, 557, 558, 5, 125, 0, 0, 558, 567, 5, 126, 0, 0, 559, 560, 7, 2, 0, 0, 560, 561, 5, 125, 0, 0, 561, 562, 3, 94, 47, 0, 562, 563, 5, 126, 0, 0, 563, 567, 1, 0, 0, 0, 564, 567, 3, 86, 43, 0, 565, 567, 3, 84, 42, 0, 566, 551, 1, 0, 0, 0, 566, 556, 1, 0, 0, 0, 566, 559, 1, 0, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 81, 1, 0, 0, 0, 568, 569, 7, 3, 0, 0, 569, 83, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 125, 0, 0, 572, 575, 3, 120, 60, 0, 573, 574, 5, 110, 0, 0, 574, 576, 3, 194, 97, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 126, 0, 0, 578, 85, 1, 0, 0, 0, 579, 580, 5, 154, 0, 0, 580, 581, 5, 114, 0, 0, 581, 582, 3, 194, 97, 0, 582, 583, 5, 113, 0, 0, 583, 584, 5, 125, 0, 0, 584, 585, 3, 120, 60, 0, 585, 586, 5, 126, 0, 0, 586, 87, 1, 0, 0, 0, 587, 591, 3, 90, 45, 0, 588, 591, 3, 92, 46, 0, 589, 591, 3, 94, 47, 0, 590, 587, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 589, 1, 0, 0, 0, 591, 89, 1, 0, 0, 0, 592, 593, 6, 45, -1, 0, 593, 599, 3, 92, 46, 0, 594, 595, 5, 61, 0, 0, 595, 599, 3, 90, 45, 6, 596, 599, 3, 100, 50, 0, 597, 599, 3, 102, 51, 0, 598, 592, 1, 0, 0, 0, 598, 594, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 598, 597, 1, 0, 0, 0, 599, 613, 1, 0, 0, 0, 600, 601, 10, 5, 0, 0, 601, 602, 5, 62, 0, 0, 602, 612, 3, 90, 45, 6, 603, 605, 10, 4, 0, 0, 604, 606, 5, 63, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 612, 3, 90, 45, 5, 608, 609, 10, 3, 0, 0, 609, 610, 5, 64, 0, 0, 610, 612, 3, 90, 45, 4, 611, 600, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 611, 608, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 91, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 3, 94, 47, 0, 617, 618, 3, 182, 91, 0, 618, 619, 3, 94, 47, 0, 619, 625, 1, 0, 0, 0, 620, 621, 3, 94, 47, 0, 621, 622, 5, 60, 0, 0, 622, 623, 3, 212, 106, 0, 623, 625, 1, 0, 0, 0, 624, 616, 1, 0, 0, 0, 624, 620, 1, 0, 0, 0, 625, 93, 1, 0, 0, 0, 626, 627, 6, 47, -1, 0, 627, 637, 3, 96, 48, 0, 628, 637, 3, 98, 49, 0, 629, 637, 3, 162, 81, 0, 630, 637, 3, 158, 79, 0, 631, 637, 3, 170, 85, 0, 632, 633, 5, 125, 0, 0, 633, 634, 3, 94, 47, 0, 634, 635, 5, 126, 0, 0, 635, 637, 1, 0, 0, 0, 636, 626, 1, 0, 0, 0, 636, 628, 1, 0, 0, 0, 636, 629, 1, 0, 0, 0, 636, 630, 1, 0, 0, 0, 636, 631, 1, 0, 0, 0, 636, 632, 1, 0, 0, 0, 637, 646, 1, 0, 0, 0, 638, 639, 10, 8, 0, 0, 639, 640, 7, 4, 0, 0, 640, 645, 3, 94, 47, 9, 641, 642, 10, 7, 0, 0, 642, 643, 7, 0, 0, 0, 643, 645, 3, 94, 47, 8, 644, 638, 1, 0, 0, 0, 644, 641, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 95, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 654, 3, 124, 62, 0, 650, 654, 3, 126, 63, 0, 651, 654, 3, 120, 60, 0, 652, 654, 3, 188, 94, 0, 653, 649, 1, 0, 0, 0, 653, 650, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, 0, 0, 654, 97, 1, 0, 0, 0, 655, 656, 3, 180, 90, 0, 656, 657, 5, 125, 0, 0, 657, 658, 3, 136, 68, 0, 658, 659, 5, 60, 0, 0, 659, 660, 3, 136, 68, 0, 660, 661, 5, 126, 0, 0, 661, 99, 1, 0, 0, 0, 662, 663, 3, 128, 64, 0, 663, 101, 1, 0, 0, 0, 664, 667, 3, 104, 52, 0, 665, 667, 3, 106, 53, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 103, 1, 0, 0, 0, 668, 669, 3, 184, 92, 0, 669, 670, 5, 125, 0, 0, 670, 671, 3, 146, 73, 0, 671, 672, 5, 110, 0, 0, 672, 677, 3, 148, 74, 0, 673, 674, 5, 110, 0, 0, 674, 676, 3, 138, 69, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 5, 126, 0, 0, 681, 105, 1, 0, 0, 0, 682, 683, 3, 186, 93, 0, 683, 684, 5, 125, 0, 0, 684, 685, 5, 127, 0, 0, 685, 690, 3, 142, 71, 0, 686, 687, 5, 110, 0, 0, 687, 689, 3, 142, 71, 0, 688, 686, 1, 0, 0, 0, 689, 692, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 693, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 694, 5, 128, 0, 0, 694, 695, 5, 110, 0, 0, 695, 700, 3, 148, 74, 0, 696, 697, 5, 110, 0, 0, 697, 699, 3, 138, 69, 0, 698, 696, 1, 0, 0, 0, 699, 702, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 703, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 703, 704, 5, 126, 0, 0, 704, 107, 1, 0, 0, 0, 705, 708, 3, 216, 108, 0, 706, 708, 5, 332, 0, 0, 707, 705, 1, 0, 0, 0, 707, 706, 1, 0, 0, 0, 708, 109, 1, 0, 0, 0, 709, 710, 3, 214, 107, 0, 710, 711, 5, 125, 0, 0, 711, 712, 3, 134, 67, 0, 712, 713, 5, 126, 0, 0, 713, 111, 1, 0, 0, 0, 714, 719, 3, 120, 60, 0, 715, 716, 5, 110, 0, 0, 716, 718, 3, 120, 60, 0, 717, 715, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 113, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 727, 3, 122, 61, 0, 723, 724, 5, 110, 0, 0, 724, 726, 3, 122, 61, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 115, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 732, 7, 0, 0, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 3, 118, 59, 0, 734, 117, 1, 0, 0, 0, 735, 757, 3, 120, 60, 0, 736, 737, 5, 35, 0, 0, 737, 738, 5, 125, 0, 0, 738, 739, 3, 120, 60, 0, 739, 740, 5, 126, 0, 0, 740, 757, 1, 0, 0, 0, 741, 742, 5, 36, 0, 0, 742, 743, 5, 125, 0, 0, 743, 744, 3, 120, 60, 0, 744, 745, 5, 126, 0, 0, 745, 757, 1, 0, 0, 0, 746, 747, 5, 37, 0, 0, 747, 748, 5, 125, 0, 0, 748, 749, 3, 120, 60, 0, 749, 750, 5, 126, 0, 0, 750, 757, 1, 0, 0, 0, 751, 752, 5, 38, 0, 0, 752, 753, 5, 125, 0, 0, 753, 754, 3, 120, 60, 0, 754, 755, 5, 126, 0, 0, 755, 757, 1, 0, 0, 0, 756, 735, 1, 0, 0, 0, 756, 736, 1, 0, 0, 0, 756, 741, 1, 0, 0, 0, 756, 746, 1, 0, 0, 0, 756, 751, 1, 0, 0, 0, 757, 119, 1, 0, 0, 0, 758, 759, 3, 214, 107, 0, 759, 121, 1, 0, 0, 0, 760, 761, 3, 218, 109, 0, 761, 123, 1, 0, 0, 0, 762, 763, 3, 132, 66, 0, 763, 764, 5, 125, 0, 0, 764, 765, 3, 134, 67, 0, 765, 766, 5, 126, 0, 0, 766, 125, 1, 0, 0, 0, 767, 768, 5, 274, 0, 0, 768, 769, 5, 125, 0, 0, 769, 770, 3, 88, 44, 0, 770, 771, 5, 27, 0, 0, 771, 772, 3, 130, 65, 0, 772, 773, 5, 126, 0, 0, 773, 127, 1, 0, 0, 0, 774, 775, 3, 174, 87, 0, 775, 776, 5, 125, 0, 0, 776, 777, 3, 134, 67, 0, 777, 778, 5, 126, 0, 0, 778, 129, 1, 0, 0, 0, 779, 790, 5, 212, 0, 0, 780, 790, 5, 241, 0, 0, 781, 790, 5, 243, 0, 0, 782, 790, 5, 102, 0, 0, 783, 790, 5, 103, 0, 0, 784, 790, 5, 104, 0, 0, 785, 790, 5, 105, 0, 0, 786, 790, 5, 106, 0, 0, 787, 790, 5, 107, 0, 0, 788, 790, 5, 108, 0, 0, 789, 779, 1, 0, 0, 0, 789, 780, 1, 0, 0, 0, 789, 781, 1, 0, 0, 0, 789, 782, 1, 0, 0, 0, 789, 783, 1, 0, 0, 0, 789, 784, 1, 0, 0, 0, 789, 785, 1, 0, 0, 0, 789, 786, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 788, 1, 0, 0, 0, 790, 131, 1, 0, 0, 0, 791, 798, 3, 152, 76, 0, 792, 798, 3, 156, 78, 0, 793, 798, 3, 178, 89, 0, 794, 798, 3, 174, 87, 0, 795, 798, 3, 176, 88, 0, 796, 798, 3, 180, 90, 0, 797, 791, 1, 0, 0, 0, 797, 792, 1, 0, 0, 0, 797, 793, 1, 0, 0, 0, 797, 794, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 796, 1, 0, 0, 0, 798, 133, 1, 0, 0, 0, 799, 804, 3, 136, 68, 0, 800, 801, 5, 110, 0, 0, 801, 803, 3, 136, 68, 0, 802, 800, 1, 0, 0, 0, 803, 806, 1, 0, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 799, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 135, 1, 0, 0, 0, 809, 810, 3, 220, 110, 0, 810, 811, 5, 112, 0, 0, 811, 813, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 3, 94, 47, 0, 815, 137, 1, 0, 0, 0, 816, 817, 3, 140, 70, 0, 817, 818, 5, 112, 0, 0, 818, 819, 3, 150, 75, 0, 819, 139, 1, 0, 0, 0, 820, 821, 7, 5, 0, 0, 821, 141, 1, 0, 0, 0, 822, 831, 3, 146, 73, 0, 823, 824, 3, 146, 73, 0, 824, 825, 3, 144, 72, 0, 825, 831, 1, 0, 0, 0, 826, 827, 3, 146, 73, 0, 827, 828, 5, 134, 0, 0, 828, 829, 3, 144, 72, 0, 829, 831, 1, 0, 0, 0, 830, 822, 1, 0, 0, 0, 830, 823, 1, 0, 0, 0, 830, 826, 1, 0, 0, 0, 831, 143, 1, 0, 0, 0, 832, 835, 3, 194, 97, 0, 833, 835, 3, 196, 98, 0, 834, 832, 1, 0, 0, 0, 834, 833, 1, 0, 0, 0, 835, 145, 1, 0, 0, 0, 836, 839, 3, 214, 107, 0, 837, 839, 3, 192, 96, 0, 838, 836, 1, 0, 0, 0, 838, 837, 1, 0, 0, 0, 839, 147, 1, 0, 0, 0, 840, 841, 3, 150, 75, 0, 841, 149, 1, 0, 0, 0, 842, 845, 3, 214, 107, 0, 843, 845, 3, 188, 94, 0, 844, 842, 1, 0, 0, 0, 844, 843, 1, 0, 0, 0, 845, 151, 1, 0, 0, 0, 846, 870, 5, 172, 0, 0, 847, 870, 5, 173, 0, 0, 848, 870, 5, 174, 0, 0, 849, 870, 5, 175, 0, 0, 850, 870, 5, 176, 0, 0, 851, 870, 5, 177, 0, 0, 852, 870, 5, 178, 0, 0, 853, 870, 5, 179, 0, 0, 854, 870, 5, 180, 0, 0, 855, 870, 5, 181, 0, 0, 856, 870, 5, 182, 0, 0, 857, 870, 5, 183, 0, 0, 858, 870, 5, 184, 0, 0, 859, 870, 5, 185, 0, 0, 860, 870, 5, 186, 0, 0, 861, 870, 5, 188, 0, 0, 862, 870, 5, 189, 0, 0, 863, 870, 5, 190, 0, 0, 864, 870, 5, 191, 0, 0, 865, 870, 5, 192, 0, 0, 866, 870, 5, 193, 0, 0, 867, 870, 5, 194, 0, 0, 868, 870, 3, 154, 77, 0, 869, 846, 1, 0, 0, 0, 869, 847, 1, 0, 0, 0, 869, 848, 1, 0, 0, 0, 869, 849, 1, 0, 0, 0, 869, 850, 1, 0, 0, 0, 869, 851, 1, 0, 0, 0, 869, 852, 1, 0, 0, 0, 869, 853, 1, 0, 0, 0, 869, 854, 1, 0, 0, 0, 869, 855, 1, 0, 0, 0, 869, 856, 1, 0, 0, 0, 869, 857, 1, 0, 0, 0, 869, 858, 1, 0, 0, 0, 869, 859, 1, 0, 0, 0, 869, 860, 1, 0, 0, 0, 869, 861, 1, 0, 0, 0, 869, 862, 1, 0, 0, 0, 869, 863, 1, 0, 0, 0, 869, 864, 1, 0, 0, 0, 869, 865, 1, 0, 0, 0, 869, 866, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 870, 153, 1, 0, 0, 0, 871, 872, 7, 6, 0, 0, 872, 155, 1, 0, 0, 0, 873, 874, 7, 7, 0, 0, 874, 157, 1, 0, 0, 0, 875, 876, 5, 226, 0, 0, 876, 877, 5, 125, 0, 0, 877, 878, 3, 160, 80, 0, 878, 879, 5, 110, 0, 0, 879, 880, 3, 136, 68, 0, 880, 881, 5, 126, 0, 0, 881, 159, 1, 0, 0, 0, 882, 883, 7, 8, 0, 0, 883, 161, 1, 0, 0, 0, 884, 885, 5, 223, 0, 0, 885, 886, 5, 125, 0, 0, 886, 887, 3, 168, 84, 0, 887, 888, 5, 5, 0, 0, 888, 889, 3, 136, 68, 0, 889, 890, 5, 126, 0, 0, 890, 163, 1, 0, 0, 0, 891, 892, 7, 9, 0, 0, 892, 165, 1, 0, 0, 0, 893, 894, 7, 10, 0, 0, 894, 167, 1, 0, 0, 0, 895, 898, 3, 164, 82, 0, 896, 898, 3, 166, 83, 0, 897, 895, 1, 0, 0, 0, 897, 896, 1, 0, 0, 0, 898, 169, 1, 0, 0, 0, 899, 900, 3, 172, 86, 0, 900, 901, 5, 125, 0, 0, 901, 902, 3, 164, 82, 0, 902, 903, 5, 110, 0, 0, 903, 904, 3, 136, 68, 0, 904, 905, 5, 110, 0, 0, 905, 906, 3, 136, 68, 0, 906, 907, 5, 126, 0, 0, 907, 171, 1, 0, 0, 0, 908, 909, 7, 11, 0, 0, 909, 173, 1, 0, 0, 0, 910, 911, 7, 12, 0, 0, 911, 175, 1, 0, 0, 0, 912, 913, 5, 281, 0, 0, 913, 177, 1, 0, 0, 0, 914, 915, 7, 13, 0, 0, 915, 179, 1, 0, 0, 0, 916, 917, 5, 187, 0, 0, 917, 181, 1, 0, 0, 0, 918, 919, 7, 14, 0, 0, 919, 183, 1, 0, 0, 0, 920, 921, 7, 15, 0, 0, 921, 185, 1, 0, 0, 0, 922, 923, 7, 16, 0, 0, 923, 187, 1, 0, 0, 0, 924, 931, 3, 190, 95, 0, 925, 931, 3, 192, 96, 0, 926, 931, 3, 194, 97, 0, 927, 931, 3, 196, 98, 0, 928, 931, 3, 198, 99, 0, 929, 931, 3, 200, 100, 0, 930, 924, 1, 0, 0, 0, 930, 925, 1, 0, 0, 0, 930, 926, 1, 0, 0, 0, 930, 927, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 929, 1, 0, 0, 0, 931, 189, 1, 0, 0, 0, 932, 933, 5, 81, 0, 0, 933, 934, 3, 94, 47, 0, 934, 935, 3, 208, 104, 0, 935, 191, 1, 0, 0, 0, 936, 937, 7, 17, 0, 0, 937, 193, 1, 0, 0, 0, 938, 940, 7, 0, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 5, 330, 0, 0, 942, 195, 1, 0, 0, 0, 943, 945, 7, 0, 0, 0, 944, 943, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 5, 331, 0, 0, 947, 197, 1, 0, 0, 0, 948, 949, 7, 18, 0, 0, 949, 199, 1, 0, 0, 0, 950, 954, 3, 202, 101, 0, 951, 954, 3, 204, 102, 0, 952, 954, 3, 206, 103, 0, 953, 950, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 952, 1, 0, 0, 0, 954, 201, 1, 0, 0, 0, 955, 956, 5, 212, 0, 0, 956, 957, 3, 192, 96, 0, 957, 203, 1, 0, 0, 0, 958, 959, 5, 241, 0, 0, 959, 960, 3, 192, 96, 0, 960, 205, 1, 0, 0, 0, 961, 962, 5, 243, 0, 0, 962, 963, 3, 192, 96, 0, 963, 207, 1, 0, 0, 0, 964, 965, 7, 19, 0, 0, 965, 209, 1, 0, 0, 0, 966, 967, 7, 20, 0, 0, 967, 211, 1, 0, 0, 0, 968, 969, 5, 125, 0, 0, 969, 974, 3, 188, 94, 0, 970, 971, 5, 110, 0, 0, 971, 973, 3, 188, 94, 0, 972, 970, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 977, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 126, 0, 0, 978, 213, 1, 0, 0, 0, 979, 984, 3, 220, 110, 0, 980, 981, 5, 111, 0, 0, 981, 983, 3, 220, 110, 0, 982, 980, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 215, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 987, 992, 3, 222, 111, 0, 988, 989, 5, 111, 0, 0, 989, 991, 3, 220, 110, 0, 990, 988, 1, 0, 0, 0, 991, 994, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 217, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 995, 1000, 3, 224, 112, 0, 996, 997, 5, 111, 0, 0, 997, 999, 3, 224, 112, 0, 998, 996, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 219, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 5, 111, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1014, 5, 328, 0, 0, 1007, 1008, 5, 131, 0, 0, 1008, 1009, 3, 220, 110, 0, 1009, 1010, 5, 131, 0, 0, 1010, 1014, 1, 0, 0, 0, 1011, 1014, 5, 335, 0, 0, 1012, 1014, 3, 226, 113, 0, 1013, 1004, 1, 0, 0, 0, 1013, 1007, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1012, 1, 0, 0, 0, 1014, 221, 1, 0, 0, 0, 1015, 1017, 5, 329, 0, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 3, 220, 110, 0, 1019, 223, 1, 0, 0, 0, 1020, 1025, 3, 220, 110, 0, 1021, 1022, 5, 122, 0, 0, 1022, 1024, 3, 220, 110, 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, 1029, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1030, 5, 122, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1044, 1, 0, 0, 0, 1031, 1032, 5, 129, 0, 0, 1032, 1033, 3, 224, 112, 0, 1033, 1034, 5, 129, 0, 0, 1034, 1044, 1, 0, 0, 0, 1035, 1036, 5, 130, 0, 0, 1036, 1037, 3, 224, 112, 0, 1037, 1038, 5, 130, 0, 0, 1038, 1044, 1, 0, 0, 0, 1039, 1040, 5, 131, 0, 0, 1040, 1041, 3, 224, 112, 0, 1041, 1042, 5, 131, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 1020, 1, 0, 0, 0, 1043, 1031, 1, 0, 0, 0, 1043, 1035, 1, 0, 0, 0, 1043, 1039, 1, 0, 0, 0, 1044, 225, 1, 0, 0, 0, 1045, 1146, 5, 31, 0, 0, 1046, 1146, 3, 210, 105, 0, 1047, 1146, 5, 320, 0, 0, 1048, 1146, 3, 132, 66, 0, 1049, 1146, 3, 140, 70, 0, 1050, 1146, 3, 208, 104, 0, 1051, 1146, 3, 156, 78, 0, 1052, 1146, 3, 178, 89, 0, 1053, 1146, 3, 152, 76, 0, 1054, 1146, 3, 180, 90, 0, 1055, 1146, 5, 2, 0, 0, 1056, 1146, 5, 3, 0, 0, 1057, 1146, 5, 4, 0, 0, 1058, 1146, 5, 5, 0, 0, 1059, 1146, 5, 6, 0, 0, 1060, 1146, 5, 7, 0, 0, 1061, 1146, 5, 8, 0, 0, 1062, 1146, 5, 9, 0, 0, 1063, 1146, 5, 10, 0, 0, 1064, 1146, 5, 11, 0, 0, 1065, 1146, 5, 12, 0, 0, 1066, 1146, 5, 13, 0, 0, 1067, 1146, 5, 14, 0, 0, 1068, 1146, 5, 15, 0, 0, 1069, 1146, 5, 16, 0, 0, 1070, 1146, 5, 17, 0, 0, 1071, 1146, 5, 18, 0, 0, 1072, 1146, 5, 19, 0, 0, 1073, 1146, 5, 20, 0, 0, 1074, 1146, 5, 21, 0, 0, 1075, 1146, 5, 22, 0, 0, 1076, 1146, 5, 23, 0, 0, 1077, 1146, 5, 24, 0, 0, 1078, 1146, 5, 25, 0, 0, 1079, 1146, 5, 26, 0, 0, 1080, 1146, 5, 29, 0, 0, 1081, 1146, 5, 30, 0, 0, 1082, 1146, 5, 32, 0, 0, 1083, 1146, 5, 33, 0, 0, 1084, 1146, 5, 34, 0, 0, 1085, 1146, 5, 36, 0, 0, 1086, 1146, 5, 37, 0, 0, 1087, 1146, 5, 38, 0, 0, 1088, 1146, 5, 39, 0, 0, 1089, 1146, 5, 40, 0, 0, 1090, 1146, 5, 41, 0, 0, 1091, 1146, 5, 42, 0, 0, 1092, 1146, 5, 43, 0, 0, 1093, 1146, 5, 44, 0, 0, 1094, 1146, 5, 45, 0, 0, 1095, 1146, 5, 46, 0, 0, 1096, 1146, 5, 47, 0, 0, 1097, 1146, 5, 48, 0, 0, 1098, 1146, 5, 49, 0, 0, 1099, 1146, 5, 50, 0, 0, 1100, 1146, 5, 51, 0, 0, 1101, 1146, 5, 52, 0, 0, 1102, 1146, 5, 53, 0, 0, 1103, 1146, 5, 54, 0, 0, 1104, 1146, 5, 55, 0, 0, 1105, 1146, 5, 56, 0, 0, 1106, 1146, 5, 57, 0, 0, 1107, 1146, 5, 58, 0, 0, 1108, 1146, 5, 135, 0, 0, 1109, 1146, 5, 136, 0, 0, 1110, 1146, 5, 137, 0, 0, 1111, 1146, 5, 138, 0, 0, 1112, 1146, 5, 139, 0, 0, 1113, 1146, 5, 140, 0, 0, 1114, 1146, 5, 141, 0, 0, 1115, 1146, 5, 142, 0, 0, 1116, 1146, 5, 143, 0, 0, 1117, 1146, 5, 144, 0, 0, 1118, 1146, 5, 145, 0, 0, 1119, 1146, 5, 146, 0, 0, 1120, 1146, 5, 147, 0, 0, 1121, 1146, 5, 148, 0, 0, 1122, 1146, 5, 149, 0, 0, 1123, 1146, 5, 150, 0, 0, 1124, 1146, 5, 151, 0, 0, 1125, 1146, 5, 152, 0, 0, 1126, 1146, 5, 153, 0, 0, 1127, 1146, 5, 154, 0, 0, 1128, 1146, 5, 155, 0, 0, 1129, 1146, 5, 156, 0, 0, 1130, 1146, 5, 157, 0, 0, 1131, 1146, 5, 158, 0, 0, 1132, 1146, 5, 159, 0, 0, 1133, 1146, 5, 160, 0, 0, 1134, 1146, 5, 161, 0, 0, 1135, 1146, 5, 162, 0, 0, 1136, 1146, 5, 163, 0, 0, 1137, 1146, 5, 164, 0, 0, 1138, 1146, 5, 165, 0, 0, 1139, 1146, 5, 166, 0, 0, 1140, 1146, 5, 167, 0, 0, 1141, 1146, 5, 168, 0, 0, 1142, 1146, 5, 169, 0, 0, 1143, 1146, 5, 170, 0, 0, 1144, 1146, 5, 171, 0, 0, 1145, 1045, 1, 0, 0, 0, 1145, 1046, 1, 0, 0, 0, 1145, 1047, 1, 0, 0, 0, 1145, 1048, 1, 0, 0, 0, 1145, 1049, 1, 0, 0, 0, 1145, 1050, 1, 0, 0, 0, 1145, 1051, 1, 0, 0, 0, 1145, 1052, 1, 0, 0, 0, 1145, 1053, 1, 0, 0, 0, 1145, 1054, 1, 0, 0, 0, 1145, 1055, 1, 0, 0, 0, 1145, 1056, 1, 0, 0, 0, 1145, 1057, 1, 0, 0, 0, 1145, 1058, 1, 0, 0, 0, 1145, 1059, 1, 0, 0, 0, 1145, 1060, 1, 0, 0, 0, 1145, 1061, 1, 0, 0, 0, 1145, 1062, 1, 0, 0, 0, 1145, 1063, 1, 0, 0, 0, 1145, 1064, 1, 0, 0, 0, 1145, 1065, 1, 0, 0, 0, 1145, 1066, 1, 0, 0, 0, 1145, 1067, 1, 0, 0, 0, 1145, 1068, 1, 0, 0, 0, 1145, 1069, 1, 0, 0, 0, 1145, 1070, 1, 0, 0, 0, 1145, 1071, 1, 0, 0, 0, 1145, 1072, 1, 0, 0, 0, 1145, 1073, 1, 0, 0, 0, 1145, 1074, 1, 0, 0, 0, 1145, 1075, 1, 0, 0, 0, 1145, 1076, 1, 0, 0, 0, 1145, 1077, 1, 0, 0, 0, 1145, 1078, 1, 0, 0, 0, 1145, 1079, 1, 0, 0, 0, 1145, 1080, 1, 0, 0, 0, 1145, 1081, 1, 0, 0, 0, 1145, 1082, 1, 0, 0, 0, 1145, 1083, 1, 0, 0, 0, 1145, 1084, 1, 0, 0, 0, 1145, 1085, 1, 0, 0, 0, 1145, 1086, 1, 0, 0, 0, 1145, 1087, 1, 0, 0, 0, 1145, 1088, 1, 0, 0, 0, 1145, 1089, 1, 0, 0, 0, 1145, 1090, 1, 0, 0, 0, 1145, 1091, 1, 0, 0, 0, 1145, 1092, 1, 0, 0, 0, 1145, 1093, 1, 0, 0, 0, 1145, 1094, 1, 0, 0, 0, 1145, 1095, 1, 0, 0, 0, 1145, 1096, 1, 0, 0, 0, 1145, 1097, 1, 0, 0, 0, 1145, 1098, 1, 0, 0, 0, 1145, 1099, 1, 0, 0, 0, 1145, 1100, 1, 0, 0, 0, 1145, 1101, 1, 0, 0, 0, 1145, 1102, 1, 0, 0, 0, 1145, 1103, 1, 0, 0, 0, 1145, 1104, 1, 0, 0, 0, 1145, 1105, 1, 0, 0, 0, 1145, 1106, 1, 0, 0, 0, 1145, 1107, 1, 0, 0, 0, 1145, 1108, 1, 0, 0, 0, 1145, 1109, 1, 0, 0, 0, 1145, 1110, 1, 0, 0, 0, 1145, 1111, 1, 0, 0, 0, 1145, 1112, 1, 0, 0, 0, 1145, 1113, 1, 0, 0, 0, 1145, 1114, 1, 0, 0, 0, 1145, 1115, 1, 0, 0, 0, 1145, 1116, 1, 0, 0, 0, 1145, 1117, 1, 0, 0, 0, 1145, 1118, 1, 0, 0, 0, 1145, 1119, 1, 0, 0, 0, 1145, 1120, 1, 0, 0, 0, 1145, 1121, 1, 0, 0, 0, 1145, 1122, 1, 0, 0, 0, 1145, 1123, 1, 0, 0, 0, 1145, 1124, 1, 0, 0, 0, 1145, 1125, 1, 0, 0, 0, 1145, 1126, 1, 0, 0, 0, 1145, 1127, 1, 0, 0, 0, 1145, 1128, 1, 0, 0, 0, 1145, 1129, 1, 0, 0, 0, 1145, 1130, 1, 0, 0, 0, 1145, 1131, 1, 0, 0, 0, 1145, 1132, 1, 0, 0, 0, 1145, 1133, 1, 0, 0, 0, 1145, 1134, 1, 0, 0, 0, 1145, 1135, 1, 0, 0, 0, 1145, 1136, 1, 0, 0, 0, 1145, 1137, 1, 0, 0, 0, 1145, 1138, 1, 0, 0, 0, 1145, 1139, 1, 0, 0, 0, 1145, 1140, 1, 0, 0, 0, 1145, 1141, 1, 0, 0, 0, 1145, 1142, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1144, 1, 0, 0, 0, 1146, 227, 1, 0, 0, 0, 85, 229, 242, 248, 266, 269, 273, 278, 291, 301, 308, 313, 318, 325, 329, 334, 338, 344, 349, 360, 365, 369, 373, 377, 382, 396, 407, 415, 427, 433, 472, 478, 491, 498, 517, 522, 530, 539, 549, 566, 575, 590, 598, 605, 611, 613, 624, 636, 644, 646, 653, 666, 677, 690, 700, 707, 719, 727, 731, 756, 789, 797, 804, 807, 812, 830, 834, 838, 844, 869, 897, 930, 939, 944, 953, 974, 984, 992, 1000, 1004, 1013, 1016, 1025, 1029, 1043, 1145] \ No newline at end of file diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts index a3fa6b2219d1..fe2c7edae4ce 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts @@ -1,4 +1,4 @@ -// Generated from ./src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 by ANTLR 4.13.1 +// Generated from grammar/OpenSearchPPLParser.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; import { Token } from "antlr4ng"; @@ -643,7 +643,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.state = 229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 671088631) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 4294967291) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 274743299) !== 0) || ((((_la - 131)) & ~0x1F) === 0 && ((1 << (_la - 131)) & 4294967281) !== 0) || ((((_la - 163)) & ~0x1F) === 0 && ((1 << (_la - 163)) & 4294967295) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 4294967295) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 4294967295) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 4294967291) !== 0) || ((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 4294967295) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 7615) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1610612764) !== 0)) { { this.state = 228; this.pplStatement(); @@ -759,28 +759,32 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.state = 248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case OpenSearchPPLParser.SEARCH: + case OpenSearchPPLParser.SOURCE: + case OpenSearchPPLParser.INDEX: this.enterOuterAlt(localContext, 1); { this.state = 245; this.searchCommand(); } break; - case 2: + case OpenSearchPPLParser.DESCRIBE: this.enterOuterAlt(localContext, 2); { this.state = 246; this.describeCommand(); } break; - case 3: + case OpenSearchPPLParser.SHOW: this.enterOuterAlt(localContext, 3); { this.state = 247; this.showDataSourcesCommand(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -937,9 +941,9 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 12, OpenSearchPPLParser.RULE_searchCommand); let _la: number; try { - this.state = 284; + this.state = 278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: localContext = new SearchFromContext(localContext); this.enterOuterAlt(localContext, 1); @@ -978,26 +982,6 @@ export class OpenSearchPPLParser extends antlr.Parser { this.logicalExpression(0); } break; - case 3: - localContext = new SearchFilterFromContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 279; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { - case 1: - { - this.state = 278; - this.match(OpenSearchPPLParser.SEARCH); - } - break; - } - this.state = 281; - this.logicalExpression(0); - this.state = 282; - this.fromClause(); - } - break; } } catch (re) { @@ -1019,9 +1003,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 286; + this.state = 280; this.match(OpenSearchPPLParser.DESCRIBE); - this.state = 287; + this.state = 281; this.tableSourceClause(); } } @@ -1044,9 +1028,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 289; + this.state = 283; this.match(OpenSearchPPLParser.SHOW); - this.state = 290; + this.state = 284; this.match(OpenSearchPPLParser.DATASOURCES); } } @@ -1069,9 +1053,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 292; + this.state = 286; this.match(OpenSearchPPLParser.WHERE); - this.state = 293; + this.state = 287; this.logicalExpression(0); } } @@ -1095,14 +1079,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 295; + this.state = 289; this.match(OpenSearchPPLParser.FIELDS); - this.state = 297; + this.state = 291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 296; + this.state = 290; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -1114,7 +1098,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 299; + this.state = 293; this.fieldList(); } } @@ -1138,23 +1122,23 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 301; + this.state = 295; this.match(OpenSearchPPLParser.RENAME); - this.state = 302; + this.state = 296; this.renameClasue(); - this.state = 307; + this.state = 301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 303; + this.state = 297; this.match(OpenSearchPPLParser.COMMA); - this.state = 304; + this.state = 298; this.renameClasue(); } } - this.state = 309; + this.state = 303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1180,88 +1164,88 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 310; + this.state = 304; this.match(OpenSearchPPLParser.STATS); - this.state = 314; + this.state = 308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 311; + this.state = 305; this.match(OpenSearchPPLParser.PARTITIONS); - this.state = 312; + this.state = 306; this.match(OpenSearchPPLParser.EQUAL); - this.state = 313; + this.state = 307; localContext._partitions = this.integerLiteral(); } } - this.state = 319; + this.state = 313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 316; + this.state = 310; this.match(OpenSearchPPLParser.ALLNUM); - this.state = 317; + this.state = 311; this.match(OpenSearchPPLParser.EQUAL); - this.state = 318; + this.state = 312; localContext._allnum = this.booleanLiteral(); } } - this.state = 324; + this.state = 318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 321; + this.state = 315; this.match(OpenSearchPPLParser.DELIM); - this.state = 322; + this.state = 316; this.match(OpenSearchPPLParser.EQUAL); - this.state = 323; + this.state = 317; localContext._delim = this.stringLiteral(); } } - this.state = 326; + this.state = 320; this.statsAggTerm(); - this.state = 331; + this.state = 325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 327; + this.state = 321; this.match(OpenSearchPPLParser.COMMA); - this.state = 328; + this.state = 322; this.statsAggTerm(); } } - this.state = 333; + this.state = 327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 335; + this.state = 329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 334; + this.state = 328; this.statsByClause(); } } - this.state = 340; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 337; + this.state = 331; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); - this.state = 338; + this.state = 332; this.match(OpenSearchPPLParser.EQUAL); - this.state = 339; + this.state = 333; localContext._dedupsplit = this.booleanLiteral(); } } @@ -1288,44 +1272,44 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 342; + this.state = 336; this.match(OpenSearchPPLParser.DEDUP); - this.state = 344; + this.state = 338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 343; + this.state = 337; localContext._number_ = this.integerLiteral(); } } - this.state = 346; + this.state = 340; this.fieldList(); - this.state = 350; + this.state = 344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 347; + this.state = 341; this.match(OpenSearchPPLParser.KEEPEMPTY); - this.state = 348; + this.state = 342; this.match(OpenSearchPPLParser.EQUAL); - this.state = 349; + this.state = 343; localContext._keepempty = this.booleanLiteral(); } } - this.state = 355; + this.state = 349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40) { { - this.state = 352; + this.state = 346; this.match(OpenSearchPPLParser.CONSECUTIVE); - this.state = 353; + this.state = 347; this.match(OpenSearchPPLParser.EQUAL); - this.state = 354; + this.state = 348; localContext._consecutive = this.booleanLiteral(); } } @@ -1351,9 +1335,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 357; + this.state = 351; this.match(OpenSearchPPLParser.SORT); - this.state = 358; + this.state = 352; this.sortbyClause(); } } @@ -1377,23 +1361,23 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 360; + this.state = 354; this.match(OpenSearchPPLParser.EVAL); - this.state = 361; + this.state = 355; this.evalClause(); - this.state = 366; + this.state = 360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 362; + this.state = 356; this.match(OpenSearchPPLParser.COMMA); - this.state = 363; + this.state = 357; this.evalClause(); } } - this.state = 368; + this.state = 362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1419,26 +1403,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 369; + this.state = 363; this.match(OpenSearchPPLParser.HEAD); - this.state = 371; + this.state = 365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 370; + this.state = 364; localContext._number_ = this.integerLiteral(); } } - this.state = 375; + this.state = 369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 373; + this.state = 367; this.match(OpenSearchPPLParser.FROM); - this.state = 374; + this.state = 368; localContext._from_ = this.integerLiteral(); } } @@ -1465,26 +1449,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 377; + this.state = 371; this.match(OpenSearchPPLParser.TOP); - this.state = 379; + this.state = 373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 378; + this.state = 372; localContext._number_ = this.integerLiteral(); } } - this.state = 381; + this.state = 375; this.fieldList(); - this.state = 383; + this.state = 377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 382; + this.state = 376; this.byClause(); } } @@ -1511,16 +1495,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 385; + this.state = 379; this.match(OpenSearchPPLParser.RARE); - this.state = 386; + this.state = 380; this.fieldList(); - this.state = 388; + this.state = 382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 387; + this.state = 381; this.byClause(); } } @@ -1546,14 +1530,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 390; + this.state = 384; this.match(OpenSearchPPLParser.GROK); { - this.state = 391; + this.state = 385; localContext._source_field = this.expression(); } { - this.state = 392; + this.state = 386; localContext._pattern = this.stringLiteral(); } } @@ -1577,14 +1561,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 394; + this.state = 388; this.match(OpenSearchPPLParser.PARSE); { - this.state = 395; + this.state = 389; localContext._source_field = this.expression(); } { - this.state = 396; + this.state = 390; localContext._pattern = this.stringLiteral(); } } @@ -1609,26 +1593,26 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 398; + this.state = 392; this.match(OpenSearchPPLParser.PATTERNS); - this.state = 402; + this.state = 396; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 25, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 24, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 399; + this.state = 393; this.patternsParameter(); } } } - this.state = 404; + this.state = 398; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 25, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 24, this.context); } { - this.state = 405; + this.state = 399; localContext._source_field = this.expression(); } } @@ -1650,18 +1634,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PatternsParameterContext(this.context, this.state); this.enterRule(localContext, 44, OpenSearchPPLParser.RULE_patternsParameter); try { - this.state = 413; + this.state = 407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.NEW_FIELD: this.enterOuterAlt(localContext, 1); { { - this.state = 407; + this.state = 401; this.match(OpenSearchPPLParser.NEW_FIELD); - this.state = 408; + this.state = 402; this.match(OpenSearchPPLParser.EQUAL); - this.state = 409; + this.state = 403; localContext._new_field = this.stringLiteral(); } } @@ -1670,11 +1654,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 410; + this.state = 404; this.match(OpenSearchPPLParser.PATTERN); - this.state = 411; + this.state = 405; this.match(OpenSearchPPLParser.EQUAL); - this.state = 412; + this.state = 406; localContext._pattern = this.stringLiteral(); } } @@ -1703,7 +1687,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 415; + this.state = 409; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 19)) { this.errorHandler.recoverInline(this); @@ -1734,19 +1718,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 411; this.match(OpenSearchPPLParser.KMEANS); - this.state = 421; + this.state = 415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 7) !== 0)) { { { - this.state = 418; + this.state = 412; this.kmeansParameter(); } } - this.state = 423; + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1769,18 +1753,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KmeansParameterContext(this.context, this.state); this.enterRule(localContext, 50, OpenSearchPPLParser.RULE_kmeansParameter); try { - this.state = 433; + this.state = 427; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.CENTROIDS: this.enterOuterAlt(localContext, 1); { { - this.state = 424; + this.state = 418; this.match(OpenSearchPPLParser.CENTROIDS); - this.state = 425; + this.state = 419; this.match(OpenSearchPPLParser.EQUAL); - this.state = 426; + this.state = 420; localContext._centroids = this.integerLiteral(); } } @@ -1789,11 +1773,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 427; + this.state = 421; this.match(OpenSearchPPLParser.ITERATIONS); - this.state = 428; + this.state = 422; this.match(OpenSearchPPLParser.EQUAL); - this.state = 429; + this.state = 423; localContext._iterations = this.integerLiteral(); } } @@ -1802,11 +1786,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 430; + this.state = 424; this.match(OpenSearchPPLParser.DISTANCE_TYPE); - this.state = 431; + this.state = 425; this.match(OpenSearchPPLParser.EQUAL); - this.state = 432; + this.state = 426; localContext._distance_type = this.stringLiteral(); } } @@ -1835,19 +1819,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 435; + this.state = 429; this.match(OpenSearchPPLParser.AD); - this.state = 439; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & 2047) !== 0) || _la === 215) { { { - this.state = 436; + this.state = 430; this.adParameter(); } } - this.state = 441; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1870,18 +1854,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new AdParameterContext(this.context, this.state); this.enterRule(localContext, 54, OpenSearchPPLParser.RULE_adParameter); try { - this.state = 478; + this.state = 472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.NUMBER_OF_TREES: this.enterOuterAlt(localContext, 1); { { - this.state = 442; + this.state = 436; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); - this.state = 443; + this.state = 437; this.match(OpenSearchPPLParser.EQUAL); - this.state = 444; + this.state = 438; localContext._number_of_trees = this.integerLiteral(); } } @@ -1890,11 +1874,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 445; + this.state = 439; this.match(OpenSearchPPLParser.SHINGLE_SIZE); - this.state = 446; + this.state = 440; this.match(OpenSearchPPLParser.EQUAL); - this.state = 447; + this.state = 441; localContext._shingle_size = this.integerLiteral(); } } @@ -1903,11 +1887,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 448; + this.state = 442; this.match(OpenSearchPPLParser.SAMPLE_SIZE); - this.state = 449; + this.state = 443; this.match(OpenSearchPPLParser.EQUAL); - this.state = 450; + this.state = 444; localContext._sample_size = this.integerLiteral(); } } @@ -1916,11 +1900,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 4); { { - this.state = 451; + this.state = 445; this.match(OpenSearchPPLParser.OUTPUT_AFTER); - this.state = 452; + this.state = 446; this.match(OpenSearchPPLParser.EQUAL); - this.state = 453; + this.state = 447; localContext._output_after = this.integerLiteral(); } } @@ -1929,11 +1913,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 5); { { - this.state = 454; + this.state = 448; this.match(OpenSearchPPLParser.TIME_DECAY); - this.state = 455; + this.state = 449; this.match(OpenSearchPPLParser.EQUAL); - this.state = 456; + this.state = 450; localContext._time_decay = this.decimalLiteral(); } } @@ -1942,11 +1926,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 6); { { - this.state = 457; + this.state = 451; this.match(OpenSearchPPLParser.ANOMALY_RATE); - this.state = 458; + this.state = 452; this.match(OpenSearchPPLParser.EQUAL); - this.state = 459; + this.state = 453; localContext._anomaly_rate = this.decimalLiteral(); } } @@ -1955,11 +1939,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 7); { { - this.state = 460; + this.state = 454; this.match(OpenSearchPPLParser.CATEGORY_FIELD); - this.state = 461; + this.state = 455; this.match(OpenSearchPPLParser.EQUAL); - this.state = 462; + this.state = 456; localContext._category_field = this.stringLiteral(); } } @@ -1968,11 +1952,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 8); { { - this.state = 463; + this.state = 457; this.match(OpenSearchPPLParser.TIME_FIELD); - this.state = 464; + this.state = 458; this.match(OpenSearchPPLParser.EQUAL); - this.state = 465; + this.state = 459; localContext._time_field = this.stringLiteral(); } } @@ -1981,11 +1965,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 9); { { - this.state = 466; + this.state = 460; this.match(OpenSearchPPLParser.DATE_FORMAT); - this.state = 467; + this.state = 461; this.match(OpenSearchPPLParser.EQUAL); - this.state = 468; + this.state = 462; localContext._date_format = this.stringLiteral(); } } @@ -1994,11 +1978,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 10); { { - this.state = 469; + this.state = 463; this.match(OpenSearchPPLParser.TIME_ZONE); - this.state = 470; + this.state = 464; this.match(OpenSearchPPLParser.EQUAL); - this.state = 471; + this.state = 465; localContext._time_zone = this.stringLiteral(); } } @@ -2007,11 +1991,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 11); { { - this.state = 472; + this.state = 466; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); - this.state = 473; + this.state = 467; this.match(OpenSearchPPLParser.EQUAL); - this.state = 474; + this.state = 468; localContext._training_data_size = this.integerLiteral(); } } @@ -2020,11 +2004,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 12); { { - this.state = 475; + this.state = 469; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); - this.state = 476; + this.state = 470; this.match(OpenSearchPPLParser.EQUAL); - this.state = 477; + this.state = 471; localContext._anomaly_score_threshold = this.decimalLiteral(); } } @@ -2053,19 +2037,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 474; this.match(OpenSearchPPLParser.ML); - this.state = 484; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 2147475455) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 4279238657) !== 0) || ((((_la - 143)) & ~0x1F) === 0 && ((1 << (_la - 143)) & 4294967295) !== 0) || ((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 4294967295) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 4294377471) !== 0) || ((((_la - 239)) & ~0x1F) === 0 && ((1 << (_la - 239)) & 4290772895) !== 0) || ((((_la - 271)) & ~0x1F) === 0 && ((1 << (_la - 271)) & 4294707191) !== 0) || ((((_la - 303)) & ~0x1F) === 0 && ((1 << (_la - 303)) & 67108863) !== 0) || _la === 335) { { { - this.state = 481; + this.state = 475; this.mlArg(); } } - this.state = 486; + this.state = 480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2091,11 +2075,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 487; + this.state = 481; localContext._argName = this.ident(); - this.state = 488; + this.state = 482; this.match(OpenSearchPPLParser.EQUAL); - this.state = 489; + this.state = 483; localContext._argValue = this.literalValue(); } } @@ -2117,53 +2101,33 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new FromClauseContext(this.context, this.state); this.enterRule(localContext, 60, OpenSearchPPLParser.RULE_fromClause); try { - this.state = 503; + this.state = 491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case OpenSearchPPLParser.SOURCE: this.enterOuterAlt(localContext, 1); { - this.state = 491; + this.state = 485; this.match(OpenSearchPPLParser.SOURCE); - this.state = 492; + this.state = 486; this.match(OpenSearchPPLParser.EQUAL); - this.state = 493; + this.state = 487; this.tableSourceClause(); } break; - case 2: + case OpenSearchPPLParser.INDEX: this.enterOuterAlt(localContext, 2); { - this.state = 494; + this.state = 488; this.match(OpenSearchPPLParser.INDEX); - this.state = 495; + this.state = 489; this.match(OpenSearchPPLParser.EQUAL); - this.state = 496; + this.state = 490; this.tableSourceClause(); } break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 497; - this.match(OpenSearchPPLParser.SOURCE); - this.state = 498; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 499; - this.tableFunction(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 500; - this.match(OpenSearchPPLParser.INDEX); - this.state = 501; - this.match(OpenSearchPPLParser.EQUAL); - this.state = 502; - this.tableFunction(); - } - break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -2186,21 +2150,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 505; + this.state = 493; this.tableSource(); - this.state = 510; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 506; + this.state = 494; this.match(OpenSearchPPLParser.COMMA); - this.state = 507; + this.state = 495; this.tableSource(); } } - this.state = 512; + this.state = 500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2225,11 +2189,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 513; + this.state = 501; localContext._orignalField = this.wcFieldExpression(); - this.state = 514; + this.state = 502; this.match(OpenSearchPPLParser.AS); - this.state = 515; + this.state = 503; localContext._renamedField = this.wcFieldExpression(); } } @@ -2252,9 +2216,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 517; + this.state = 505; this.match(OpenSearchPPLParser.BY); - this.state = 518; + this.state = 506; this.fieldList(); } } @@ -2275,37 +2239,37 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new StatsByClauseContext(this.context, this.state); this.enterRule(localContext, 68, OpenSearchPPLParser.RULE_statsByClause); try { - this.state = 529; + this.state = 517; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 520; + this.state = 508; this.match(OpenSearchPPLParser.BY); - this.state = 521; + this.state = 509; this.fieldList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 522; + this.state = 510; this.match(OpenSearchPPLParser.BY); - this.state = 523; + this.state = 511; this.bySpanClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 524; + this.state = 512; this.match(OpenSearchPPLParser.BY); - this.state = 525; + this.state = 513; this.bySpanClause(); - this.state = 526; + this.state = 514; this.match(OpenSearchPPLParser.COMMA); - this.state = 527; + this.state = 515; this.fieldList(); } break; @@ -2331,16 +2295,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 531; + this.state = 519; this.spanClause(); - this.state = 534; + this.state = 522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 532; + this.state = 520; this.match(OpenSearchPPLParser.AS); - this.state = 533; + this.state = 521; localContext._alias = this.qualifiedName(); } } @@ -2367,27 +2331,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 536; + this.state = 524; this.match(OpenSearchPPLParser.SPAN); - this.state = 537; + this.state = 525; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 538; + this.state = 526; this.fieldExpression(); - this.state = 539; + this.state = 527; this.match(OpenSearchPPLParser.COMMA); - this.state = 540; + this.state = 528; localContext._value = this.literalValue(); - this.state = 542; + this.state = 530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0)) { { - this.state = 541; + this.state = 529; localContext._unit = this.timespanUnit(); } } - this.state = 544; + this.state = 532; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2411,21 +2375,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 546; + this.state = 534; this.sortField(); - this.state = 551; + this.state = 539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 547; + this.state = 535; this.match(OpenSearchPPLParser.COMMA); - this.state = 548; + this.state = 536; this.sortField(); } } - this.state = 553; + this.state = 541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2450,11 +2414,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 554; + this.state = 542; this.fieldExpression(); - this.state = 555; + this.state = 543; this.match(OpenSearchPPLParser.EQUAL); - this.state = 556; + this.state = 544; this.expression(); } } @@ -2478,16 +2442,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 558; + this.state = 546; this.statsFunction(); - this.state = 561; + this.state = 549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 559; + this.state = 547; this.match(OpenSearchPPLParser.AS); - this.state = 560; + this.state = 548; localContext._alias = this.wcFieldExpression(); } } @@ -2512,20 +2476,20 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 80, OpenSearchPPLParser.RULE_statsFunction); let _la: number; try { - this.state = 578; + this.state = 566; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: localContext = new StatsFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 563; + this.state = 551; this.statsFunctionName(); - this.state = 564; + this.state = 552; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 565; + this.state = 553; this.valueExpression(0); - this.state = 566; + this.state = 554; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2533,11 +2497,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new CountAllFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 568; + this.state = 556; this.match(OpenSearchPPLParser.COUNT); - this.state = 569; + this.state = 557; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 570; + this.state = 558; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2545,7 +2509,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new DistinctCountFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 571; + this.state = 559; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -2554,11 +2518,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 572; + this.state = 560; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 573; + this.state = 561; this.valueExpression(0); - this.state = 574; + this.state = 562; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2566,7 +2530,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PercentileAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 576; + this.state = 564; this.percentileAggFunction(); } break; @@ -2574,7 +2538,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TakeAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 577; + this.state = 565; this.takeAggFunction(); } break; @@ -2600,7 +2564,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 580; + this.state = 568; _la = this.tokenStream.LA(1); if(!(((((_la - 135)) & ~0x1F) === 0 && ((1 << (_la - 135)) & 500003) !== 0))) { this.errorHandler.recoverInline(this); @@ -2631,25 +2595,25 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 582; + this.state = 570; this.match(OpenSearchPPLParser.TAKE); - this.state = 583; + this.state = 571; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 584; + this.state = 572; this.fieldExpression(); - this.state = 587; + this.state = 575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 585; + this.state = 573; this.match(OpenSearchPPLParser.COMMA); - this.state = 586; + this.state = 574; localContext._size = this.integerLiteral(); } } - this.state = 589; + this.state = 577; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2672,19 +2636,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 591; + this.state = 579; this.match(OpenSearchPPLParser.PERCENTILE); - this.state = 592; + this.state = 580; this.match(OpenSearchPPLParser.LESS); - this.state = 593; + this.state = 581; localContext._value = this.integerLiteral(); - this.state = 594; + this.state = 582; this.match(OpenSearchPPLParser.GREATER); - this.state = 595; + this.state = 583; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 596; + this.state = 584; localContext._aggField = this.fieldExpression(); - this.state = 597; + this.state = 585; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2705,27 +2669,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ExpressionContext(this.context, this.state); this.enterRule(localContext, 88, OpenSearchPPLParser.RULE_expression); try { - this.state = 602; + this.state = 590; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 599; + this.state = 587; this.logicalExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 600; + this.state = 588; this.comparisonExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 601; + this.state = 589; this.valueExpression(0); } break; @@ -2763,16 +2727,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 610; + this.state = 598; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { localContext = new ComparsionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 605; + this.state = 593; this.comparisonExpression(); } break; @@ -2781,9 +2745,9 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 606; + this.state = 594; this.match(OpenSearchPPLParser.NOT); - this.state = 607; + this.state = 595; this.logicalExpression(6); } break; @@ -2792,7 +2756,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BooleanExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 608; + this.state = 596; this.booleanExpression(); } break; @@ -2801,15 +2765,15 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new RelevanceExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 609; + this.state = 597; this.relevanceExpression(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 625; + this.state = 613; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -2817,21 +2781,21 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 623; + this.state = 611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { localContext = new LogicalOrContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalOrContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 612; + this.state = 600; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 613; + this.state = 601; this.match(OpenSearchPPLParser.OR); - this.state = 614; + this.state = 602; (localContext as LogicalOrContext)._right = this.logicalExpression(6); } break; @@ -2840,21 +2804,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalAndContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalAndContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 615; + this.state = 603; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 617; + this.state = 605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 616; + this.state = 604; this.match(OpenSearchPPLParser.AND); } } - this.state = 619; + this.state = 607; (localContext as LogicalAndContext)._right = this.logicalExpression(5); } break; @@ -2863,22 +2827,22 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalXorContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalXorContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 620; + this.state = 608; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 621; + this.state = 609; this.match(OpenSearchPPLParser.XOR); - this.state = 622; + this.state = 610; (localContext as LogicalXorContext)._right = this.logicalExpression(4); } break; } } } - this.state = 627; + this.state = 615; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } } } @@ -2899,18 +2863,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ComparisonExpressionContext(this.context, this.state); this.enterRule(localContext, 92, OpenSearchPPLParser.RULE_comparisonExpression); try { - this.state = 636; + this.state = 624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: localContext = new CompareExprContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 628; + this.state = 616; (localContext as CompareExprContext)._left = this.valueExpression(0); - this.state = 629; + this.state = 617; this.comparisonOperator(); - this.state = 630; + this.state = 618; (localContext as CompareExprContext)._right = this.valueExpression(0); } break; @@ -2918,11 +2882,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new InExprContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 632; + this.state = 620; this.valueExpression(0); - this.state = 633; + this.state = 621; this.match(OpenSearchPPLParser.IN); - this.state = 634; + this.state = 622; this.valueList(); } break; @@ -2960,16 +2924,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 648; + this.state = 636; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 639; + this.state = 627; this.primaryExpression(); } break; @@ -2978,7 +2942,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 640; + this.state = 628; this.positionFunction(); } break; @@ -2987,7 +2951,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 641; + this.state = 629; this.extractFunction(); } break; @@ -2996,7 +2960,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 642; + this.state = 630; this.getFormatFunction(); } break; @@ -3005,7 +2969,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TimestampFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 643; + this.state = 631; this.timestampFunction(); } break; @@ -3014,19 +2978,19 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ParentheticValueExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 644; + this.state = 632; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 645; + this.state = 633; this.valueExpression(0); - this.state = 646; + this.state = 634; this.match(OpenSearchPPLParser.RT_PRTHS); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 658; + this.state = 646; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 49, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 48, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -3034,19 +2998,19 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 656; + this.state = 644; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 650; + this.state = 638; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 651; + this.state = 639; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 7) !== 0))) { @@ -3056,7 +3020,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 652; + this.state = 640; (localContext as BinaryArithmeticContext)._right = this.valueExpression(9); } break; @@ -3065,11 +3029,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 653; + this.state = 641; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 654; + this.state = 642; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { @@ -3079,16 +3043,16 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 655; + this.state = 643; (localContext as BinaryArithmeticContext)._right = this.valueExpression(8); } break; } } } - this.state = 660; + this.state = 648; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 49, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 48, this.context); } } } @@ -3109,34 +3073,34 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PrimaryExpressionContext(this.context, this.state); this.enterRule(localContext, 96, OpenSearchPPLParser.RULE_primaryExpression); try { - this.state = 665; + this.state = 653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 661; + this.state = 649; this.evalFunctionCall(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 662; + this.state = 650; this.dataTypeFunctionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 663; + this.state = 651; this.fieldExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 664; + this.state = 652; this.literalValue(); } break; @@ -3161,17 +3125,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 667; + this.state = 655; this.positionFunctionName(); - this.state = 668; + this.state = 656; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 669; + this.state = 657; this.functionArg(); - this.state = 670; + this.state = 658; this.match(OpenSearchPPLParser.IN); - this.state = 671; + this.state = 659; this.functionArg(); - this.state = 672; + this.state = 660; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3194,7 +3158,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 674; + this.state = 662; this.booleanFunctionCall(); } } @@ -3215,7 +3179,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceExpressionContext(this.context, this.state); this.enterRule(localContext, 102, OpenSearchPPLParser.RULE_relevanceExpression); try { - this.state = 678; + this.state = 666; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.MATCH: @@ -3224,7 +3188,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.MATCH_BOOL_PREFIX: this.enterOuterAlt(localContext, 1); { - this.state = 676; + this.state = 664; this.singleFieldRelevanceFunction(); } break; @@ -3233,7 +3197,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.QUERY_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 677; + this.state = 665; this.multiFieldRelevanceFunction(); } break; @@ -3261,33 +3225,33 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 680; + this.state = 668; this.singleFieldRelevanceFunctionName(); - this.state = 681; + this.state = 669; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 682; + this.state = 670; localContext._field = this.relevanceField(); - this.state = 683; + this.state = 671; this.match(OpenSearchPPLParser.COMMA); - this.state = 684; + this.state = 672; localContext._query = this.relevanceQuery(); - this.state = 689; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 685; + this.state = 673; this.match(OpenSearchPPLParser.COMMA); - this.state = 686; + this.state = 674; this.relevanceArg(); } } - this.state = 691; + this.state = 679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 692; + this.state = 680; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3311,53 +3275,53 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 694; + this.state = 682; this.multiFieldRelevanceFunctionName(); - this.state = 695; + this.state = 683; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 696; + this.state = 684; this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 697; + this.state = 685; localContext._field = this.relevanceFieldAndWeight(); - this.state = 702; + this.state = 690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 698; + this.state = 686; this.match(OpenSearchPPLParser.COMMA); - this.state = 699; + this.state = 687; localContext._field = this.relevanceFieldAndWeight(); } } - this.state = 704; + this.state = 692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 705; + this.state = 693; this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 706; + this.state = 694; this.match(OpenSearchPPLParser.COMMA); - this.state = 707; + this.state = 695; localContext._query = this.relevanceQuery(); - this.state = 712; + this.state = 700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 708; + this.state = 696; this.match(OpenSearchPPLParser.COMMA); - this.state = 709; + this.state = 697; this.relevanceArg(); } } - this.state = 714; + this.state = 702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 715; + this.state = 703; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3378,7 +3342,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new TableSourceContext(this.context, this.state); this.enterRule(localContext, 108, OpenSearchPPLParser.RULE_tableSource); try { - this.state = 719; + this.state = 707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.SEARCH: @@ -3652,14 +3616,14 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 717; + this.state = 705; this.tableQualifiedName(); } break; case OpenSearchPPLParser.ID_DATE_SUFFIX: this.enterOuterAlt(localContext, 2); { - this.state = 718; + this.state = 706; this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); } break; @@ -3686,13 +3650,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 721; + this.state = 709; this.qualifiedName(); - this.state = 722; + this.state = 710; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 723; + this.state = 711; this.functionArgs(); - this.state = 724; + this.state = 712; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3716,21 +3680,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 726; + this.state = 714; this.fieldExpression(); - this.state = 731; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 727; + this.state = 715; this.match(OpenSearchPPLParser.COMMA); - this.state = 728; + this.state = 716; this.fieldExpression(); } } - this.state = 733; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3756,21 +3720,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 734; + this.state = 722; this.wcFieldExpression(); - this.state = 739; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 735; + this.state = 723; this.match(OpenSearchPPLParser.COMMA); - this.state = 736; + this.state = 724; this.wcFieldExpression(); } } - this.state = 741; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3796,12 +3760,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 742; + this.state = 730; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -3813,7 +3777,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 745; + this.state = 733; this.sortFieldExpression(); } } @@ -3834,65 +3798,65 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new SortFieldExpressionContext(this.context, this.state); this.enterRule(localContext, 118, OpenSearchPPLParser.RULE_sortFieldExpression); try { - this.state = 768; + this.state = 756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 735; this.fieldExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 748; + this.state = 736; this.match(OpenSearchPPLParser.AUTO); - this.state = 749; + this.state = 737; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 750; + this.state = 738; this.fieldExpression(); - this.state = 751; + this.state = 739; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 753; + this.state = 741; this.match(OpenSearchPPLParser.STR); - this.state = 754; + this.state = 742; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 755; + this.state = 743; this.fieldExpression(); - this.state = 756; + this.state = 744; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 758; + this.state = 746; this.match(OpenSearchPPLParser.IP); - this.state = 759; + this.state = 747; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 760; + this.state = 748; this.fieldExpression(); - this.state = 761; + this.state = 749; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 763; + this.state = 751; this.match(OpenSearchPPLParser.NUM); - this.state = 764; + this.state = 752; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 765; + this.state = 753; this.fieldExpression(); - this.state = 766; + this.state = 754; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -3917,7 +3881,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 770; + this.state = 758; this.qualifiedName(); } } @@ -3940,7 +3904,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 772; + this.state = 760; this.wcQualifiedName(); } } @@ -3963,13 +3927,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 774; + this.state = 762; this.evalFunctionName(); - this.state = 775; + this.state = 763; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 776; + this.state = 764; this.functionArgs(); - this.state = 777; + this.state = 765; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3992,17 +3956,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 779; + this.state = 767; this.match(OpenSearchPPLParser.CAST); - this.state = 780; + this.state = 768; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 781; + this.state = 769; this.expression(); - this.state = 782; + this.state = 770; this.match(OpenSearchPPLParser.AS); - this.state = 783; + this.state = 771; this.convertedDataType(); - this.state = 784; + this.state = 772; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4025,13 +3989,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 774; this.conditionFunctionBase(); - this.state = 787; + this.state = 775; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 788; + this.state = 776; this.functionArgs(); - this.state = 789; + this.state = 777; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4052,76 +4016,76 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ConvertedDataTypeContext(this.context, this.state); this.enterRule(localContext, 130, OpenSearchPPLParser.RULE_convertedDataType); try { - this.state = 801; + this.state = 789; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 791; + this.state = 779; localContext._typeName = this.match(OpenSearchPPLParser.DATE); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 792; + this.state = 780; localContext._typeName = this.match(OpenSearchPPLParser.TIME); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 793; + this.state = 781; localContext._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); } break; case OpenSearchPPLParser.INT: this.enterOuterAlt(localContext, 4); { - this.state = 794; + this.state = 782; localContext._typeName = this.match(OpenSearchPPLParser.INT); } break; case OpenSearchPPLParser.INTEGER: this.enterOuterAlt(localContext, 5); { - this.state = 795; + this.state = 783; localContext._typeName = this.match(OpenSearchPPLParser.INTEGER); } break; case OpenSearchPPLParser.DOUBLE: this.enterOuterAlt(localContext, 6); { - this.state = 796; + this.state = 784; localContext._typeName = this.match(OpenSearchPPLParser.DOUBLE); } break; case OpenSearchPPLParser.LONG: this.enterOuterAlt(localContext, 7); { - this.state = 797; + this.state = 785; localContext._typeName = this.match(OpenSearchPPLParser.LONG); } break; case OpenSearchPPLParser.FLOAT: this.enterOuterAlt(localContext, 8); { - this.state = 798; + this.state = 786; localContext._typeName = this.match(OpenSearchPPLParser.FLOAT); } break; case OpenSearchPPLParser.STRING: this.enterOuterAlt(localContext, 9); { - this.state = 799; + this.state = 787; localContext._typeName = this.match(OpenSearchPPLParser.STRING); } break; case OpenSearchPPLParser.BOOLEAN: this.enterOuterAlt(localContext, 10); { - this.state = 800; + this.state = 788; localContext._typeName = this.match(OpenSearchPPLParser.BOOLEAN); } break; @@ -4146,7 +4110,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new EvalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 132, OpenSearchPPLParser.RULE_evalFunctionName); try { - this.state = 809; + this.state = 797; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: @@ -4183,7 +4147,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 1); { - this.state = 803; + this.state = 791; this.mathematicalFunctionName(); } break; @@ -4254,7 +4218,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEARWEEK: this.enterOuterAlt(localContext, 2); { - this.state = 804; + this.state = 792; this.dateTimeFunctionName(); } break; @@ -4277,7 +4241,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.REVERSE: this.enterOuterAlt(localContext, 3); { - this.state = 805; + this.state = 793; this.textFunctionName(); } break; @@ -4289,21 +4253,21 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.IF: this.enterOuterAlt(localContext, 4); { - this.state = 806; + this.state = 794; this.conditionFunctionBase(); } break; case OpenSearchPPLParser.TYPEOF: this.enterOuterAlt(localContext, 5); { - this.state = 807; + this.state = 795; this.systemFunctionName(); } break; case OpenSearchPPLParser.POSITION: this.enterOuterAlt(localContext, 6); { - this.state = 808; + this.state = 796; this.positionFunctionName(); } break; @@ -4331,26 +4295,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 819; + this.state = 807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 4294967291) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 274743299) !== 0) || ((((_la - 131)) & ~0x1F) === 0 && ((1 << (_la - 131)) & 4294967281) !== 0) || ((((_la - 163)) & ~0x1F) === 0 && ((1 << (_la - 163)) & 4294967295) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 4294967295) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 4294967295) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 3229614075) !== 0) || ((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 4294967295) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 7615) !== 0)) { { - this.state = 811; + this.state = 799; this.functionArg(); - this.state = 816; + this.state = 804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 812; + this.state = 800; this.match(OpenSearchPPLParser.COMMA); - this.state = 813; + this.state = 801; this.functionArg(); } } - this.state = 818; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4378,19 +4342,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 824; + this.state = 812; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 821; + this.state = 809; this.ident(); - this.state = 822; + this.state = 810; this.match(OpenSearchPPLParser.EQUAL); } break; } - this.state = 826; + this.state = 814; this.valueExpression(0); } } @@ -4413,11 +4377,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 828; + this.state = 816; this.relevanceArgName(); - this.state = 829; + this.state = 817; this.match(OpenSearchPPLParser.EQUAL); - this.state = 830; + this.state = 818; this.relevanceArgValue(); } } @@ -4441,7 +4405,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 832; + this.state = 820; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 56 || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 2147483647) !== 0))) { this.errorHandler.recoverInline(this); @@ -4469,33 +4433,33 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldAndWeightContext(this.context, this.state); this.enterRule(localContext, 142, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); try { - this.state = 842; + this.state = 830; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 834; + this.state = 822; localContext._field = this.relevanceField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 835; + this.state = 823; localContext._field = this.relevanceField(); - this.state = 836; + this.state = 824; localContext._weight = this.relevanceFieldWeight(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 838; + this.state = 826; localContext._field = this.relevanceField(); - this.state = 839; + this.state = 827; this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 840; + this.state = 828; localContext._weight = this.relevanceFieldWeight(); } break; @@ -4518,20 +4482,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldWeightContext(this.context, this.state); this.enterRule(localContext, 144, OpenSearchPPLParser.RULE_relevanceFieldWeight); try { - this.state = 846; + this.state = 834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 844; + this.state = 832; this.integerLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 845; + this.state = 833; this.decimalLiteral(); } break; @@ -4554,7 +4518,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldContext(this.context, this.state); this.enterRule(localContext, 146, OpenSearchPPLParser.RULE_relevanceField); try { - this.state = 850; + this.state = 838; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.SEARCH: @@ -4827,7 +4791,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 848; + this.state = 836; this.qualifiedName(); } break; @@ -4835,7 +4799,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 849; + this.state = 837; this.stringLiteral(); } break; @@ -4862,7 +4826,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 852; + this.state = 840; this.relevanceArgValue(); } } @@ -4883,20 +4847,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceArgValueContext(this.context, this.state); this.enterRule(localContext, 150, OpenSearchPPLParser.RULE_relevanceArgValue); try { - this.state = 856; + this.state = 844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 854; + this.state = 842; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 855; + this.state = 843; this.literalValue(); } break; @@ -4919,160 +4883,160 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new MathematicalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 152, OpenSearchPPLParser.RULE_mathematicalFunctionName); try { - this.state = 881; + this.state = 869; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: this.enterOuterAlt(localContext, 1); { - this.state = 858; + this.state = 846; this.match(OpenSearchPPLParser.ABS); } break; case OpenSearchPPLParser.CBRT: this.enterOuterAlt(localContext, 2); { - this.state = 859; + this.state = 847; this.match(OpenSearchPPLParser.CBRT); } break; case OpenSearchPPLParser.CEIL: this.enterOuterAlt(localContext, 3); { - this.state = 860; + this.state = 848; this.match(OpenSearchPPLParser.CEIL); } break; case OpenSearchPPLParser.CEILING: this.enterOuterAlt(localContext, 4); { - this.state = 861; + this.state = 849; this.match(OpenSearchPPLParser.CEILING); } break; case OpenSearchPPLParser.CONV: this.enterOuterAlt(localContext, 5); { - this.state = 862; + this.state = 850; this.match(OpenSearchPPLParser.CONV); } break; case OpenSearchPPLParser.CRC32: this.enterOuterAlt(localContext, 6); { - this.state = 863; + this.state = 851; this.match(OpenSearchPPLParser.CRC32); } break; case OpenSearchPPLParser.E: this.enterOuterAlt(localContext, 7); { - this.state = 864; + this.state = 852; this.match(OpenSearchPPLParser.E); } break; case OpenSearchPPLParser.EXP: this.enterOuterAlt(localContext, 8); { - this.state = 865; + this.state = 853; this.match(OpenSearchPPLParser.EXP); } break; case OpenSearchPPLParser.FLOOR: this.enterOuterAlt(localContext, 9); { - this.state = 866; + this.state = 854; this.match(OpenSearchPPLParser.FLOOR); } break; case OpenSearchPPLParser.LN: this.enterOuterAlt(localContext, 10); { - this.state = 867; + this.state = 855; this.match(OpenSearchPPLParser.LN); } break; case OpenSearchPPLParser.LOG: this.enterOuterAlt(localContext, 11); { - this.state = 868; + this.state = 856; this.match(OpenSearchPPLParser.LOG); } break; case OpenSearchPPLParser.LOG10: this.enterOuterAlt(localContext, 12); { - this.state = 869; + this.state = 857; this.match(OpenSearchPPLParser.LOG10); } break; case OpenSearchPPLParser.LOG2: this.enterOuterAlt(localContext, 13); { - this.state = 870; + this.state = 858; this.match(OpenSearchPPLParser.LOG2); } break; case OpenSearchPPLParser.MOD: this.enterOuterAlt(localContext, 14); { - this.state = 871; + this.state = 859; this.match(OpenSearchPPLParser.MOD); } break; case OpenSearchPPLParser.PI: this.enterOuterAlt(localContext, 15); { - this.state = 872; + this.state = 860; this.match(OpenSearchPPLParser.PI); } break; case OpenSearchPPLParser.POW: this.enterOuterAlt(localContext, 16); { - this.state = 873; + this.state = 861; this.match(OpenSearchPPLParser.POW); } break; case OpenSearchPPLParser.POWER: this.enterOuterAlt(localContext, 17); { - this.state = 874; + this.state = 862; this.match(OpenSearchPPLParser.POWER); } break; case OpenSearchPPLParser.RAND: this.enterOuterAlt(localContext, 18); { - this.state = 875; + this.state = 863; this.match(OpenSearchPPLParser.RAND); } break; case OpenSearchPPLParser.ROUND: this.enterOuterAlt(localContext, 19); { - this.state = 876; + this.state = 864; this.match(OpenSearchPPLParser.ROUND); } break; case OpenSearchPPLParser.SIGN: this.enterOuterAlt(localContext, 20); { - this.state = 877; + this.state = 865; this.match(OpenSearchPPLParser.SIGN); } break; case OpenSearchPPLParser.SQRT: this.enterOuterAlt(localContext, 21); { - this.state = 878; + this.state = 866; this.match(OpenSearchPPLParser.SQRT); } break; case OpenSearchPPLParser.TRUNCATE: this.enterOuterAlt(localContext, 22); { - this.state = 879; + this.state = 867; this.match(OpenSearchPPLParser.TRUNCATE); } break; @@ -5088,7 +5052,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 23); { - this.state = 880; + this.state = 868; this.trigonometricFunctionName(); } break; @@ -5116,7 +5080,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 883; + this.state = 871; _la = this.tokenStream.LA(1); if(!(((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -5147,7 +5111,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 885; + this.state = 873; _la = this.tokenStream.LA(1); if(!(((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 1038960967) !== 0) || ((((_la - 205)) & ~0x1F) === 0 && ((1 << (_la - 205)) & 4292607999) !== 0) || ((((_la - 237)) & ~0x1F) === 0 && ((1 << (_la - 237)) & 523903) !== 0))) { this.errorHandler.recoverInline(this); @@ -5177,17 +5141,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 887; + this.state = 875; this.match(OpenSearchPPLParser.GET_FORMAT); - this.state = 888; + this.state = 876; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 889; + this.state = 877; this.getFormatType(); - this.state = 890; + this.state = 878; this.match(OpenSearchPPLParser.COMMA); - this.state = 891; + this.state = 879; this.functionArg(); - this.state = 892; + this.state = 880; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5211,7 +5175,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 894; + this.state = 882; _la = this.tokenStream.LA(1); if(!(_la === 69 || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 2684354561) !== 0))) { this.errorHandler.recoverInline(this); @@ -5241,17 +5205,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 896; + this.state = 884; this.match(OpenSearchPPLParser.EXTRACT); - this.state = 897; + this.state = 885; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 898; + this.state = 886; this.datetimePart(); - this.state = 899; + this.state = 887; this.match(OpenSearchPPLParser.FROM); - this.state = 900; + this.state = 888; this.functionArg(); - this.state = 901; + this.state = 889; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5275,7 +5239,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 903; + this.state = 891; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174608449) !== 0))) { this.errorHandler.recoverInline(this); @@ -5306,7 +5270,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 905; + this.state = 893; _la = this.tokenStream.LA(1); if(!(((((_la - 71)) & ~0x1F) === 0 && ((1 << (_la - 71)) & 138560215) !== 0))) { this.errorHandler.recoverInline(this); @@ -5334,7 +5298,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimePartContext(this.context, this.state); this.enterRule(localContext, 168, OpenSearchPPLParser.RULE_datetimePart); try { - this.state = 909; + this.state = 897; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DAY: @@ -5348,7 +5312,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR: this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 895; this.simpleDateTimePart(); } break; @@ -5365,7 +5329,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR_MONTH: this.enterOuterAlt(localContext, 2); { - this.state = 908; + this.state = 896; this.complexDateTimePart(); } break; @@ -5392,21 +5356,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 899; this.timestampFunctionName(); - this.state = 912; + this.state = 900; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 913; + this.state = 901; this.simpleDateTimePart(); - this.state = 914; + this.state = 902; this.match(OpenSearchPPLParser.COMMA); - this.state = 915; + this.state = 903; localContext._firstArg = this.functionArg(); - this.state = 916; + this.state = 904; this.match(OpenSearchPPLParser.COMMA); - this.state = 917; + this.state = 905; localContext._secondArg = this.functionArg(); - this.state = 918; + this.state = 906; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5430,7 +5394,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 920; + this.state = 908; _la = this.tokenStream.LA(1); if(!(_la === 244 || _la === 245)) { this.errorHandler.recoverInline(this); @@ -5461,7 +5425,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 922; + this.state = 910; _la = this.tokenStream.LA(1); if(!(((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5491,7 +5455,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 924; + this.state = 912; this.match(OpenSearchPPLParser.TYPEOF); } } @@ -5515,7 +5479,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 926; + this.state = 914; _la = this.tokenStream.LA(1); if(!(((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 262111) !== 0))) { this.errorHandler.recoverInline(this); @@ -5545,7 +5509,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 928; + this.state = 916; this.match(OpenSearchPPLParser.POSITION); } } @@ -5569,7 +5533,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 930; + this.state = 918; _la = this.tokenStream.LA(1); if(!(_la === 67 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5600,7 +5564,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 932; + this.state = 920; _la = this.tokenStream.LA(1); if(!(((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -5631,7 +5595,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 934; + this.state = 922; _la = this.tokenStream.LA(1); if(!(((((_la - 286)) & ~0x1F) === 0 && ((1 << (_la - 286)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -5659,48 +5623,48 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new LiteralValueContext(this.context, this.state); this.enterRule(localContext, 188, OpenSearchPPLParser.RULE_literalValue); try { - this.state = 942; + this.state = 930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 936; + this.state = 924; this.intervalLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 937; + this.state = 925; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 938; + this.state = 926; this.integerLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 939; + this.state = 927; this.decimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 940; + this.state = 928; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 941; + this.state = 929; this.datetimeLiteral(); } break; @@ -5725,11 +5689,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 944; + this.state = 932; this.match(OpenSearchPPLParser.INTERVAL); - this.state = 945; + this.state = 933; this.valueExpression(0); - this.state = 946; + this.state = 934; this.intervalUnit(); } } @@ -5753,7 +5717,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; + this.state = 936; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -5784,12 +5748,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 951; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 950; + this.state = 938; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5801,7 +5765,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 953; + this.state = 941; this.match(OpenSearchPPLParser.INTEGER_LITERAL); } } @@ -5825,12 +5789,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 956; + this.state = 944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 955; + this.state = 943; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5842,7 +5806,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 958; + this.state = 946; this.match(OpenSearchPPLParser.DECIMAL_LITERAL); } } @@ -5866,7 +5830,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 948; _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 66)) { this.errorHandler.recoverInline(this); @@ -5894,27 +5858,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimeLiteralContext(this.context, this.state); this.enterRule(localContext, 200, OpenSearchPPLParser.RULE_datetimeLiteral); try { - this.state = 965; + this.state = 953; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 962; + this.state = 950; this.dateLiteral(); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 963; + this.state = 951; this.timeLiteral(); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 964; + this.state = 952; this.timestampLiteral(); } break; @@ -5941,9 +5905,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 967; + this.state = 955; this.match(OpenSearchPPLParser.DATE); - this.state = 968; + this.state = 956; localContext._date = this.stringLiteral(); } } @@ -5966,9 +5930,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 970; + this.state = 958; this.match(OpenSearchPPLParser.TIME); - this.state = 971; + this.state = 959; localContext._time = this.stringLiteral(); } } @@ -5991,9 +5955,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 973; + this.state = 961; this.match(OpenSearchPPLParser.TIMESTAMP); - this.state = 974; + this.state = 962; localContext._timestamp = this.stringLiteral(); } } @@ -6017,7 +5981,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 964; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 451728879) !== 0))) { this.errorHandler.recoverInline(this); @@ -6048,7 +6012,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 978; + this.state = 966; _la = this.tokenStream.LA(1); if(!(_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -6079,27 +6043,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 980; + this.state = 968; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 981; + this.state = 969; this.literalValue(); - this.state = 986; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 982; + this.state = 970; this.match(OpenSearchPPLParser.COMMA); - this.state = 983; + this.state = 971; this.literalValue(); } } - this.state = 988; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 989; + this.state = 977; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -6124,25 +6088,25 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 991; + this.state = 979; this.ident(); - this.state = 996; + this.state = 984; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 992; + this.state = 980; this.match(OpenSearchPPLParser.DOT); - this.state = 993; + this.state = 981; this.ident(); } } } - this.state = 998; + this.state = 986; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); } } } @@ -6167,25 +6131,25 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsTableQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 987; this.tableIdent(); - this.state = 1004; + this.state = 992; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 77, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1000; + this.state = 988; this.match(OpenSearchPPLParser.DOT); - this.state = 1001; + this.state = 989; this.ident(); } } } - this.state = 1006; + this.state = 994; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 77, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); } } } @@ -6210,21 +6174,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsWildcardQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1007; + this.state = 995; this.wildcard(); - this.state = 1012; + this.state = 1000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 111) { { { - this.state = 1008; + this.state = 996; this.match(OpenSearchPPLParser.DOT); - this.state = 1009; + this.state = 997; this.wildcard(); } } - this.state = 1014; + this.state = 1002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6248,42 +6212,42 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 220, OpenSearchPPLParser.RULE_ident); let _la: number; try { - this.state = 1025; + this.state = 1013; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DOT: case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 1016; + this.state = 1004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 1015; + this.state = 1003; this.match(OpenSearchPPLParser.DOT); } } - this.state = 1018; + this.state = 1006; this.match(OpenSearchPPLParser.ID); } break; case OpenSearchPPLParser.BACKTICK: this.enterOuterAlt(localContext, 2); { - this.state = 1019; + this.state = 1007; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1020; + this.state = 1008; this.ident(); - this.state = 1021; + this.state = 1009; this.match(OpenSearchPPLParser.BACKTICK); } break; case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 3); { - this.state = 1023; + this.state = 1011; this.match(OpenSearchPPLParser.BQUOTA_STRING); } break; @@ -6553,7 +6517,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.Y: this.enterOuterAlt(localContext, 4); { - this.state = 1024; + this.state = 1012; this.keywordsCanBeId(); } break; @@ -6581,17 +6545,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1028; + this.state = 1016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1027; + this.state = 1015; this.match(OpenSearchPPLParser.CLUSTER); } } - this.state = 1030; + this.state = 1018; this.ident(); } } @@ -6614,38 +6578,38 @@ export class OpenSearchPPLParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1055; + this.state = 1043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1032; + this.state = 1020; this.ident(); - this.state = 1037; + this.state = 1025; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 82, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 81, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1033; + this.state = 1021; this.match(OpenSearchPPLParser.MODULE); - this.state = 1034; + this.state = 1022; this.ident(); } } } - this.state = 1039; + this.state = 1027; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 82, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 81, this.context); } - this.state = 1041; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1040; + this.state = 1028; this.match(OpenSearchPPLParser.MODULE); } } @@ -6655,33 +6619,33 @@ export class OpenSearchPPLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1043; + this.state = 1031; this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 1044; + this.state = 1032; this.wildcard(); - this.state = 1045; + this.state = 1033; this.match(OpenSearchPPLParser.SINGLE_QUOTE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1047; + this.state = 1035; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 1048; + this.state = 1036; this.wildcard(); - this.state = 1049; + this.state = 1037; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1051; + this.state = 1039; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1052; + this.state = 1040; this.wildcard(); - this.state = 1053; + this.state = 1041; this.match(OpenSearchPPLParser.BACKTICK); } break; @@ -6704,706 +6668,706 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KeywordsCanBeIdContext(this.context, this.state); this.enterRule(localContext, 226, OpenSearchPPLParser.RULE_keywordsCanBeId); try { - this.state = 1157; + this.state = 1145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1057; + this.state = 1045; this.match(OpenSearchPPLParser.D); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1058; + this.state = 1046; this.timespanUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1059; + this.state = 1047; this.match(OpenSearchPPLParser.SPAN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1060; + this.state = 1048; this.evalFunctionName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1061; + this.state = 1049; this.relevanceArgName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1062; + this.state = 1050; this.intervalUnit(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1063; + this.state = 1051; this.dateTimeFunctionName(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1064; + this.state = 1052; this.textFunctionName(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1065; + this.state = 1053; this.mathematicalFunctionName(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1066; + this.state = 1054; this.positionFunctionName(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1067; + this.state = 1055; this.match(OpenSearchPPLParser.SEARCH); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1068; + this.state = 1056; this.match(OpenSearchPPLParser.DESCRIBE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1069; + this.state = 1057; this.match(OpenSearchPPLParser.SHOW); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1070; + this.state = 1058; this.match(OpenSearchPPLParser.FROM); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1071; + this.state = 1059; this.match(OpenSearchPPLParser.WHERE); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1072; + this.state = 1060; this.match(OpenSearchPPLParser.FIELDS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1073; + this.state = 1061; this.match(OpenSearchPPLParser.RENAME); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1074; + this.state = 1062; this.match(OpenSearchPPLParser.STATS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1075; + this.state = 1063; this.match(OpenSearchPPLParser.DEDUP); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1076; + this.state = 1064; this.match(OpenSearchPPLParser.SORT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1077; + this.state = 1065; this.match(OpenSearchPPLParser.EVAL); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1078; + this.state = 1066; this.match(OpenSearchPPLParser.HEAD); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1079; + this.state = 1067; this.match(OpenSearchPPLParser.TOP); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1080; + this.state = 1068; this.match(OpenSearchPPLParser.RARE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1081; + this.state = 1069; this.match(OpenSearchPPLParser.PARSE); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1082; + this.state = 1070; this.match(OpenSearchPPLParser.METHOD); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1083; + this.state = 1071; this.match(OpenSearchPPLParser.REGEX); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1084; + this.state = 1072; this.match(OpenSearchPPLParser.PUNCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1085; + this.state = 1073; this.match(OpenSearchPPLParser.GROK); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1086; + this.state = 1074; this.match(OpenSearchPPLParser.PATTERN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1087; + this.state = 1075; this.match(OpenSearchPPLParser.PATTERNS); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1088; + this.state = 1076; this.match(OpenSearchPPLParser.NEW_FIELD); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1089; + this.state = 1077; this.match(OpenSearchPPLParser.KMEANS); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1090; + this.state = 1078; this.match(OpenSearchPPLParser.AD); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1091; + this.state = 1079; this.match(OpenSearchPPLParser.ML); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1092; + this.state = 1080; this.match(OpenSearchPPLParser.SOURCE); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1093; + this.state = 1081; this.match(OpenSearchPPLParser.INDEX); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1094; + this.state = 1082; this.match(OpenSearchPPLParser.DESC); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1095; + this.state = 1083; this.match(OpenSearchPPLParser.DATASOURCES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1096; + this.state = 1084; this.match(OpenSearchPPLParser.SORTBY); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1097; + this.state = 1085; this.match(OpenSearchPPLParser.STR); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1098; + this.state = 1086; this.match(OpenSearchPPLParser.IP); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1099; + this.state = 1087; this.match(OpenSearchPPLParser.NUM); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1100; + this.state = 1088; this.match(OpenSearchPPLParser.KEEPEMPTY); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1101; + this.state = 1089; this.match(OpenSearchPPLParser.CONSECUTIVE); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1102; + this.state = 1090; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1103; + this.state = 1091; this.match(OpenSearchPPLParser.PARTITIONS); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1104; + this.state = 1092; this.match(OpenSearchPPLParser.ALLNUM); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1105; + this.state = 1093; this.match(OpenSearchPPLParser.DELIM); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1106; + this.state = 1094; this.match(OpenSearchPPLParser.CENTROIDS); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1107; + this.state = 1095; this.match(OpenSearchPPLParser.ITERATIONS); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1108; + this.state = 1096; this.match(OpenSearchPPLParser.DISTANCE_TYPE); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1109; + this.state = 1097; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1110; + this.state = 1098; this.match(OpenSearchPPLParser.SHINGLE_SIZE); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1111; + this.state = 1099; this.match(OpenSearchPPLParser.SAMPLE_SIZE); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1112; + this.state = 1100; this.match(OpenSearchPPLParser.OUTPUT_AFTER); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1113; + this.state = 1101; this.match(OpenSearchPPLParser.TIME_DECAY); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1114; + this.state = 1102; this.match(OpenSearchPPLParser.ANOMALY_RATE); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1115; + this.state = 1103; this.match(OpenSearchPPLParser.CATEGORY_FIELD); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1116; + this.state = 1104; this.match(OpenSearchPPLParser.TIME_FIELD); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1117; + this.state = 1105; this.match(OpenSearchPPLParser.TIME_ZONE); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1118; + this.state = 1106; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1119; + this.state = 1107; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1120; + this.state = 1108; this.match(OpenSearchPPLParser.AVG); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1121; + this.state = 1109; this.match(OpenSearchPPLParser.COUNT); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1122; + this.state = 1110; this.match(OpenSearchPPLParser.DISTINCT_COUNT); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1123; + this.state = 1111; this.match(OpenSearchPPLParser.ESTDC); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1124; + this.state = 1112; this.match(OpenSearchPPLParser.ESTDC_ERROR); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1125; + this.state = 1113; this.match(OpenSearchPPLParser.MAX); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1126; + this.state = 1114; this.match(OpenSearchPPLParser.MEAN); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1127; + this.state = 1115; this.match(OpenSearchPPLParser.MEDIAN); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1128; + this.state = 1116; this.match(OpenSearchPPLParser.MIN); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1129; + this.state = 1117; this.match(OpenSearchPPLParser.MODE); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1130; + this.state = 1118; this.match(OpenSearchPPLParser.RANGE); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1131; + this.state = 1119; this.match(OpenSearchPPLParser.STDEV); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1132; + this.state = 1120; this.match(OpenSearchPPLParser.STDEVP); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1133; + this.state = 1121; this.match(OpenSearchPPLParser.SUM); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1134; + this.state = 1122; this.match(OpenSearchPPLParser.SUMSQ); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1135; + this.state = 1123; this.match(OpenSearchPPLParser.VAR_SAMP); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1136; + this.state = 1124; this.match(OpenSearchPPLParser.VAR_POP); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1137; + this.state = 1125; this.match(OpenSearchPPLParser.STDDEV_SAMP); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1138; + this.state = 1126; this.match(OpenSearchPPLParser.STDDEV_POP); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1139; + this.state = 1127; this.match(OpenSearchPPLParser.PERCENTILE); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1140; + this.state = 1128; this.match(OpenSearchPPLParser.TAKE); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1141; + this.state = 1129; this.match(OpenSearchPPLParser.FIRST); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1142; + this.state = 1130; this.match(OpenSearchPPLParser.LAST); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1143; + this.state = 1131; this.match(OpenSearchPPLParser.LIST); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1144; + this.state = 1132; this.match(OpenSearchPPLParser.VALUES); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1145; + this.state = 1133; this.match(OpenSearchPPLParser.EARLIEST); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1146; + this.state = 1134; this.match(OpenSearchPPLParser.EARLIEST_TIME); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1147; + this.state = 1135; this.match(OpenSearchPPLParser.LATEST); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1148; + this.state = 1136; this.match(OpenSearchPPLParser.LATEST_TIME); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1149; + this.state = 1137; this.match(OpenSearchPPLParser.PER_DAY); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1150; + this.state = 1138; this.match(OpenSearchPPLParser.PER_HOUR); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1151; + this.state = 1139; this.match(OpenSearchPPLParser.PER_MINUTE); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1152; + this.state = 1140; this.match(OpenSearchPPLParser.PER_SECOND); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1153; + this.state = 1141; this.match(OpenSearchPPLParser.RATE); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1154; + this.state = 1142; this.match(OpenSearchPPLParser.SPARKLINE); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1155; + this.state = 1143; this.match(OpenSearchPPLParser.C); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1156; + this.state = 1144; this.match(OpenSearchPPLParser.DC); } break; @@ -7454,7 +7418,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,336,1160,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, + 4,1,336,1148,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, @@ -7475,75 +7439,74 @@ export class OpenSearchPPLParser extends antlr.Parser { 8,0,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,3,5,3,241,8,3,10,3,12,3,244, 9,3,1,4,1,4,1,4,3,4,249,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, 1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,267,8,5,1,6,3,6,270,8,6,1,6,1,6, - 3,6,274,8,6,1,6,1,6,1,6,1,6,3,6,280,8,6,1,6,1,6,1,6,3,6,285,8,6, - 1,7,1,7,1,7,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,3,10,298,8,10,1,10, - 1,10,1,11,1,11,1,11,1,11,5,11,306,8,11,10,11,12,11,309,9,11,1,12, - 1,12,1,12,1,12,3,12,315,8,12,1,12,1,12,1,12,3,12,320,8,12,1,12,1, - 12,1,12,3,12,325,8,12,1,12,1,12,1,12,5,12,330,8,12,10,12,12,12,333, - 9,12,1,12,3,12,336,8,12,1,12,1,12,1,12,3,12,341,8,12,1,13,1,13,3, - 13,345,8,13,1,13,1,13,1,13,1,13,3,13,351,8,13,1,13,1,13,1,13,3,13, - 356,8,13,1,14,1,14,1,14,1,15,1,15,1,15,1,15,5,15,365,8,15,10,15, - 12,15,368,9,15,1,16,1,16,3,16,372,8,16,1,16,1,16,3,16,376,8,16,1, - 17,1,17,3,17,380,8,17,1,17,1,17,3,17,384,8,17,1,18,1,18,1,18,3,18, - 389,8,18,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21,5,21, - 401,8,21,10,21,12,21,404,9,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22, - 1,22,3,22,414,8,22,1,23,1,23,1,24,1,24,5,24,420,8,24,10,24,12,24, - 423,9,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,3,25,434,8, - 25,1,26,1,26,5,26,438,8,26,10,26,12,26,441,9,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,27,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,27,1,27,1,27,1,27,1, - 27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,479,8,27,1,28,1,28,5,28,483, - 8,28,10,28,12,28,486,9,28,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,30,1,30,1,30,3,30,504,8,30,1,31,1,31, - 1,31,5,31,509,8,31,10,31,12,31,512,9,31,1,32,1,32,1,32,1,32,1,33, - 1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,530, - 8,34,1,35,1,35,1,35,3,35,535,8,35,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,543,8,36,1,36,1,36,1,37,1,37,1,37,5,37,550,8,37,10,37,12,37, - 553,9,37,1,38,1,38,1,38,1,38,1,39,1,39,1,39,3,39,562,8,39,1,40,1, - 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1, - 40,3,40,579,8,40,1,41,1,41,1,42,1,42,1,42,1,42,1,42,3,42,588,8,42, - 1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44, - 3,44,603,8,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45,611,8,45,1,45,1, - 45,1,45,1,45,1,45,3,45,618,8,45,1,45,1,45,1,45,1,45,5,45,624,8,45, - 10,45,12,45,627,9,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46, - 637,8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47, - 649,8,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,657,8,47,10,47,12,47, - 660,9,47,1,48,1,48,1,48,1,48,3,48,666,8,48,1,49,1,49,1,49,1,49,1, - 49,1,49,1,49,1,50,1,50,1,51,1,51,3,51,679,8,51,1,52,1,52,1,52,1, - 52,1,52,1,52,1,52,5,52,688,8,52,10,52,12,52,691,9,52,1,52,1,52,1, - 53,1,53,1,53,1,53,1,53,1,53,5,53,701,8,53,10,53,12,53,704,9,53,1, - 53,1,53,1,53,1,53,1,53,5,53,711,8,53,10,53,12,53,714,9,53,1,53,1, - 53,1,54,1,54,3,54,720,8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1, - 56,5,56,730,8,56,10,56,12,56,733,9,56,1,57,1,57,1,57,5,57,738,8, - 57,10,57,12,57,741,9,57,1,58,3,58,744,8,58,1,58,1,58,1,59,1,59,1, - 59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,1,59,1,59,3,59,769,8,59,1,60,1,60,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,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, - 65,3,65,802,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3,66,810,8,66,1,67, - 1,67,1,67,5,67,815,8,67,10,67,12,67,818,9,67,3,67,820,8,67,1,68, - 1,68,1,68,3,68,825,8,68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,843,8,71,1,72,1,72, - 3,72,847,8,72,1,73,1,73,3,73,851,8,73,1,74,1,74,1,75,1,75,3,75,857, - 8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,882, - 8,76,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80, - 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84, - 1,84,3,84,910,8,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92, - 1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3,94,943,8,94,1,95, - 1,95,1,95,1,95,1,96,1,96,1,97,3,97,952,8,97,1,97,1,97,1,98,3,98, - 957,8,98,1,98,1,98,1,99,1,99,1,100,1,100,1,100,3,100,966,8,100,1, - 101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1,103,1,104,1,104, - 1,105,1,105,1,106,1,106,1,106,1,106,5,106,985,8,106,10,106,12,106, - 988,9,106,1,106,1,106,1,107,1,107,1,107,5,107,995,8,107,10,107,12, - 107,998,9,107,1,108,1,108,1,108,5,108,1003,8,108,10,108,12,108,1006, - 9,108,1,109,1,109,1,109,5,109,1011,8,109,10,109,12,109,1014,9,109, - 1,110,3,110,1017,8,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110, - 3,110,1026,8,110,1,111,3,111,1029,8,111,1,111,1,111,1,112,1,112, - 1,112,5,112,1036,8,112,10,112,12,112,1039,9,112,1,112,3,112,1042, - 8,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,112,1,112,3,112,1056,8,112,1,113,1,113,1,113,1,113,1,113,1,113, + 3,6,274,8,6,1,6,1,6,1,6,3,6,279,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,9, + 1,9,1,9,1,10,1,10,3,10,292,8,10,1,10,1,10,1,11,1,11,1,11,1,11,5, + 11,300,8,11,10,11,12,11,303,9,11,1,12,1,12,1,12,1,12,3,12,309,8, + 12,1,12,1,12,1,12,3,12,314,8,12,1,12,1,12,1,12,3,12,319,8,12,1,12, + 1,12,1,12,5,12,324,8,12,10,12,12,12,327,9,12,1,12,3,12,330,8,12, + 1,12,1,12,1,12,3,12,335,8,12,1,13,1,13,3,13,339,8,13,1,13,1,13,1, + 13,1,13,3,13,345,8,13,1,13,1,13,1,13,3,13,350,8,13,1,14,1,14,1,14, + 1,15,1,15,1,15,1,15,5,15,359,8,15,10,15,12,15,362,9,15,1,16,1,16, + 3,16,366,8,16,1,16,1,16,3,16,370,8,16,1,17,1,17,3,17,374,8,17,1, + 17,1,17,3,17,378,8,17,1,18,1,18,1,18,3,18,383,8,18,1,19,1,19,1,19, + 1,19,1,20,1,20,1,20,1,20,1,21,1,21,5,21,395,8,21,10,21,12,21,398, + 9,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,3,22,408,8,22,1,23, + 1,23,1,24,1,24,5,24,414,8,24,10,24,12,24,417,9,24,1,25,1,25,1,25, + 1,25,1,25,1,25,1,25,1,25,1,25,3,25,428,8,25,1,26,1,26,5,26,432,8, + 26,10,26,12,26,435,9,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,27,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,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27, + 1,27,1,27,3,27,473,8,27,1,28,1,28,5,28,477,8,28,10,28,12,28,480, + 9,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,3,30,492, + 8,30,1,31,1,31,1,31,5,31,497,8,31,10,31,12,31,500,9,31,1,32,1,32, + 1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 1,34,3,34,518,8,34,1,35,1,35,1,35,3,35,523,8,35,1,36,1,36,1,36,1, + 36,1,36,1,36,3,36,531,8,36,1,36,1,36,1,37,1,37,1,37,5,37,538,8,37, + 10,37,12,37,541,9,37,1,38,1,38,1,38,1,38,1,39,1,39,1,39,3,39,550, + 8,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40, + 1,40,1,40,1,40,3,40,567,8,40,1,41,1,41,1,42,1,42,1,42,1,42,1,42, + 3,42,576,8,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43, + 1,44,1,44,1,44,3,44,591,8,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45, + 599,8,45,1,45,1,45,1,45,1,45,1,45,3,45,606,8,45,1,45,1,45,1,45,1, + 45,5,45,612,8,45,10,45,12,45,615,9,45,1,46,1,46,1,46,1,46,1,46,1, + 46,1,46,1,46,3,46,625,8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,3,47,637,8,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,645, + 8,47,10,47,12,47,648,9,47,1,48,1,48,1,48,1,48,3,48,654,8,48,1,49, + 1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,51,1,51,3,51,667,8,51, + 1,52,1,52,1,52,1,52,1,52,1,52,1,52,5,52,676,8,52,10,52,12,52,679, + 9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,5,53,689,8,53,10,53, + 12,53,692,9,53,1,53,1,53,1,53,1,53,1,53,5,53,699,8,53,10,53,12,53, + 702,9,53,1,53,1,53,1,54,1,54,3,54,708,8,54,1,55,1,55,1,55,1,55,1, + 55,1,56,1,56,1,56,5,56,718,8,56,10,56,12,56,721,9,56,1,57,1,57,1, + 57,5,57,726,8,57,10,57,12,57,729,9,57,1,58,3,58,732,8,58,1,58,1, + 58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, + 59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,757,8,59,1,60,1, + 60,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, + 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,65,3,65,790,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3, + 66,798,8,66,1,67,1,67,1,67,5,67,803,8,67,10,67,12,67,806,9,67,3, + 67,808,8,67,1,68,1,68,1,68,3,68,813,8,68,1,68,1,68,1,69,1,69,1,69, + 1,69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,831, + 8,71,1,72,1,72,3,72,835,8,72,1,73,1,73,3,73,839,8,73,1,74,1,74,1, + 75,1,75,3,75,845,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, + 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, + 76,1,76,3,76,870,8,76,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1, + 79,1,79,1,79,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1, + 82,1,83,1,83,1,84,1,84,3,84,898,8,84,1,85,1,85,1,85,1,85,1,85,1, + 85,1,85,1,85,1,85,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1, + 90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3, + 94,931,8,94,1,95,1,95,1,95,1,95,1,96,1,96,1,97,3,97,940,8,97,1,97, + 1,97,1,98,3,98,945,8,98,1,98,1,98,1,99,1,99,1,100,1,100,1,100,3, + 100,954,8,100,1,101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1, + 103,1,104,1,104,1,105,1,105,1,106,1,106,1,106,1,106,5,106,973,8, + 106,10,106,12,106,976,9,106,1,106,1,106,1,107,1,107,1,107,5,107, + 983,8,107,10,107,12,107,986,9,107,1,108,1,108,1,108,5,108,991,8, + 108,10,108,12,108,994,9,108,1,109,1,109,1,109,5,109,999,8,109,10, + 109,12,109,1002,9,109,1,110,3,110,1005,8,110,1,110,1,110,1,110,1, + 110,1,110,1,110,1,110,3,110,1014,8,110,1,111,3,111,1017,8,111,1, + 111,1,111,1,112,1,112,1,112,5,112,1024,8,112,10,112,12,112,1027, + 9,112,1,112,3,112,1030,8,112,1,112,1,112,1,112,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,3,112,1044,8,112,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, @@ -7552,378 +7515,374 @@ export class OpenSearchPPLParser extends antlr.Parser { 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, - 1,113,1,113,1,113,1,113,1,113,1,113,3,113,1158,8,113,1,113,0,2,90, - 94,114,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,0,21,1,0,118,119,1,0,18,19,2,0,137,137,171,171, - 5,0,135,136,140,140,143,143,148,148,150,153,1,0,120,122,3,0,7,7, - 56,56,289,319,1,0,195,204,13,0,68,70,74,74,76,76,79,79,82,82,84, - 84,86,87,89,92,94,97,205,222,224,225,227,243,246,255,4,0,69,69,212, - 212,241,241,243,243,8,0,70,70,76,76,82,82,84,84,89,89,91,92,95,95, - 97,97,8,0,71,73,75,75,77,78,80,80,85,85,88,88,93,93,98,98,1,0,244, - 245,1,0,275,280,2,0,256,260,262,273,2,0,67,67,112,117,1,0,282,285, - 1,0,286,288,1,0,333,334,1,0,65,66,9,0,70,73,75,78,80,80,82,82,84, - 85,88,89,91,93,95,95,97,98,9,0,31,31,70,70,76,76,83,84,89,89,91, - 92,95,95,97,97,321,327,1318,0,229,1,0,0,0,2,233,1,0,0,0,4,235,1, - 0,0,0,6,237,1,0,0,0,8,248,1,0,0,0,10,266,1,0,0,0,12,284,1,0,0,0, - 14,286,1,0,0,0,16,289,1,0,0,0,18,292,1,0,0,0,20,295,1,0,0,0,22,301, - 1,0,0,0,24,310,1,0,0,0,26,342,1,0,0,0,28,357,1,0,0,0,30,360,1,0, - 0,0,32,369,1,0,0,0,34,377,1,0,0,0,36,385,1,0,0,0,38,390,1,0,0,0, - 40,394,1,0,0,0,42,398,1,0,0,0,44,413,1,0,0,0,46,415,1,0,0,0,48,417, - 1,0,0,0,50,433,1,0,0,0,52,435,1,0,0,0,54,478,1,0,0,0,56,480,1,0, - 0,0,58,487,1,0,0,0,60,503,1,0,0,0,62,505,1,0,0,0,64,513,1,0,0,0, - 66,517,1,0,0,0,68,529,1,0,0,0,70,531,1,0,0,0,72,536,1,0,0,0,74,546, - 1,0,0,0,76,554,1,0,0,0,78,558,1,0,0,0,80,578,1,0,0,0,82,580,1,0, - 0,0,84,582,1,0,0,0,86,591,1,0,0,0,88,602,1,0,0,0,90,610,1,0,0,0, - 92,636,1,0,0,0,94,648,1,0,0,0,96,665,1,0,0,0,98,667,1,0,0,0,100, - 674,1,0,0,0,102,678,1,0,0,0,104,680,1,0,0,0,106,694,1,0,0,0,108, - 719,1,0,0,0,110,721,1,0,0,0,112,726,1,0,0,0,114,734,1,0,0,0,116, - 743,1,0,0,0,118,768,1,0,0,0,120,770,1,0,0,0,122,772,1,0,0,0,124, - 774,1,0,0,0,126,779,1,0,0,0,128,786,1,0,0,0,130,801,1,0,0,0,132, - 809,1,0,0,0,134,819,1,0,0,0,136,824,1,0,0,0,138,828,1,0,0,0,140, - 832,1,0,0,0,142,842,1,0,0,0,144,846,1,0,0,0,146,850,1,0,0,0,148, - 852,1,0,0,0,150,856,1,0,0,0,152,881,1,0,0,0,154,883,1,0,0,0,156, - 885,1,0,0,0,158,887,1,0,0,0,160,894,1,0,0,0,162,896,1,0,0,0,164, - 903,1,0,0,0,166,905,1,0,0,0,168,909,1,0,0,0,170,911,1,0,0,0,172, - 920,1,0,0,0,174,922,1,0,0,0,176,924,1,0,0,0,178,926,1,0,0,0,180, - 928,1,0,0,0,182,930,1,0,0,0,184,932,1,0,0,0,186,934,1,0,0,0,188, - 942,1,0,0,0,190,944,1,0,0,0,192,948,1,0,0,0,194,951,1,0,0,0,196, - 956,1,0,0,0,198,960,1,0,0,0,200,965,1,0,0,0,202,967,1,0,0,0,204, - 970,1,0,0,0,206,973,1,0,0,0,208,976,1,0,0,0,210,978,1,0,0,0,212, - 980,1,0,0,0,214,991,1,0,0,0,216,999,1,0,0,0,218,1007,1,0,0,0,220, - 1025,1,0,0,0,222,1028,1,0,0,0,224,1055,1,0,0,0,226,1157,1,0,0,0, - 228,230,3,2,1,0,229,228,1,0,0,0,229,230,1,0,0,0,230,231,1,0,0,0, - 231,232,5,0,0,1,232,1,1,0,0,0,233,234,3,4,2,0,234,3,1,0,0,0,235, - 236,3,6,3,0,236,5,1,0,0,0,237,242,3,8,4,0,238,239,5,109,0,0,239, - 241,3,10,5,0,240,238,1,0,0,0,241,244,1,0,0,0,242,240,1,0,0,0,242, - 243,1,0,0,0,243,7,1,0,0,0,244,242,1,0,0,0,245,249,3,12,6,0,246,249, - 3,14,7,0,247,249,3,16,8,0,248,245,1,0,0,0,248,246,1,0,0,0,248,247, - 1,0,0,0,249,9,1,0,0,0,250,267,3,18,9,0,251,267,3,20,10,0,252,267, - 3,22,11,0,253,267,3,24,12,0,254,267,3,26,13,0,255,267,3,28,14,0, - 256,267,3,30,15,0,257,267,3,32,16,0,258,267,3,34,17,0,259,267,3, - 36,18,0,260,267,3,38,19,0,261,267,3,40,20,0,262,267,3,42,21,0,263, - 267,3,48,24,0,264,267,3,52,26,0,265,267,3,56,28,0,266,250,1,0,0, - 0,266,251,1,0,0,0,266,252,1,0,0,0,266,253,1,0,0,0,266,254,1,0,0, - 0,266,255,1,0,0,0,266,256,1,0,0,0,266,257,1,0,0,0,266,258,1,0,0, - 0,266,259,1,0,0,0,266,260,1,0,0,0,266,261,1,0,0,0,266,262,1,0,0, - 0,266,263,1,0,0,0,266,264,1,0,0,0,266,265,1,0,0,0,267,11,1,0,0,0, - 268,270,5,2,0,0,269,268,1,0,0,0,269,270,1,0,0,0,270,271,1,0,0,0, - 271,285,3,60,30,0,272,274,5,2,0,0,273,272,1,0,0,0,273,274,1,0,0, - 0,274,275,1,0,0,0,275,276,3,60,30,0,276,277,3,90,45,0,277,285,1, - 0,0,0,278,280,5,2,0,0,279,278,1,0,0,0,279,280,1,0,0,0,280,281,1, - 0,0,0,281,282,3,90,45,0,282,283,3,60,30,0,283,285,1,0,0,0,284,269, - 1,0,0,0,284,273,1,0,0,0,284,279,1,0,0,0,285,13,1,0,0,0,286,287,5, - 3,0,0,287,288,3,62,31,0,288,15,1,0,0,0,289,290,5,4,0,0,290,291,5, - 33,0,0,291,17,1,0,0,0,292,293,5,6,0,0,293,294,3,90,45,0,294,19,1, - 0,0,0,295,297,5,7,0,0,296,298,7,0,0,0,297,296,1,0,0,0,297,298,1, - 0,0,0,298,299,1,0,0,0,299,300,3,112,56,0,300,21,1,0,0,0,301,302, - 5,8,0,0,302,307,3,64,32,0,303,304,5,110,0,0,304,306,3,64,32,0,305, - 303,1,0,0,0,306,309,1,0,0,0,307,305,1,0,0,0,307,308,1,0,0,0,308, - 23,1,0,0,0,309,307,1,0,0,0,310,314,5,9,0,0,311,312,5,42,0,0,312, - 313,5,112,0,0,313,315,3,194,97,0,314,311,1,0,0,0,314,315,1,0,0,0, - 315,319,1,0,0,0,316,317,5,43,0,0,317,318,5,112,0,0,318,320,3,198, - 99,0,319,316,1,0,0,0,319,320,1,0,0,0,320,324,1,0,0,0,321,322,5,44, - 0,0,322,323,5,112,0,0,323,325,3,192,96,0,324,321,1,0,0,0,324,325, - 1,0,0,0,325,326,1,0,0,0,326,331,3,78,39,0,327,328,5,110,0,0,328, - 330,3,78,39,0,329,327,1,0,0,0,330,333,1,0,0,0,331,329,1,0,0,0,331, - 332,1,0,0,0,332,335,1,0,0,0,333,331,1,0,0,0,334,336,3,68,34,0,335, - 334,1,0,0,0,335,336,1,0,0,0,336,340,1,0,0,0,337,338,5,41,0,0,338, - 339,5,112,0,0,339,341,3,198,99,0,340,337,1,0,0,0,340,341,1,0,0,0, - 341,25,1,0,0,0,342,344,5,10,0,0,343,345,3,194,97,0,344,343,1,0,0, - 0,344,345,1,0,0,0,345,346,1,0,0,0,346,350,3,112,56,0,347,348,5,39, - 0,0,348,349,5,112,0,0,349,351,3,198,99,0,350,347,1,0,0,0,350,351, - 1,0,0,0,351,355,1,0,0,0,352,353,5,40,0,0,353,354,5,112,0,0,354,356, - 3,198,99,0,355,352,1,0,0,0,355,356,1,0,0,0,356,27,1,0,0,0,357,358, - 5,11,0,0,358,359,3,74,37,0,359,29,1,0,0,0,360,361,5,12,0,0,361,366, - 3,76,38,0,362,363,5,110,0,0,363,365,3,76,38,0,364,362,1,0,0,0,365, - 368,1,0,0,0,366,364,1,0,0,0,366,367,1,0,0,0,367,31,1,0,0,0,368,366, - 1,0,0,0,369,371,5,13,0,0,370,372,3,194,97,0,371,370,1,0,0,0,371, - 372,1,0,0,0,372,375,1,0,0,0,373,374,5,5,0,0,374,376,3,194,97,0,375, - 373,1,0,0,0,375,376,1,0,0,0,376,33,1,0,0,0,377,379,5,14,0,0,378, - 380,3,194,97,0,379,378,1,0,0,0,379,380,1,0,0,0,380,381,1,0,0,0,381, - 383,3,112,56,0,382,384,3,66,33,0,383,382,1,0,0,0,383,384,1,0,0,0, - 384,35,1,0,0,0,385,386,5,15,0,0,386,388,3,112,56,0,387,389,3,66, - 33,0,388,387,1,0,0,0,388,389,1,0,0,0,389,37,1,0,0,0,390,391,5,20, - 0,0,391,392,3,88,44,0,392,393,3,192,96,0,393,39,1,0,0,0,394,395, - 5,16,0,0,395,396,3,88,44,0,396,397,3,192,96,0,397,41,1,0,0,0,398, - 402,5,22,0,0,399,401,3,44,22,0,400,399,1,0,0,0,401,404,1,0,0,0,402, - 400,1,0,0,0,402,403,1,0,0,0,403,405,1,0,0,0,404,402,1,0,0,0,405, - 406,3,88,44,0,406,43,1,0,0,0,407,408,5,23,0,0,408,409,5,112,0,0, - 409,414,3,192,96,0,410,411,5,21,0,0,411,412,5,112,0,0,412,414,3, - 192,96,0,413,407,1,0,0,0,413,410,1,0,0,0,414,45,1,0,0,0,415,416, - 7,1,0,0,416,47,1,0,0,0,417,421,5,24,0,0,418,420,3,50,25,0,419,418, - 1,0,0,0,420,423,1,0,0,0,421,419,1,0,0,0,421,422,1,0,0,0,422,49,1, - 0,0,0,423,421,1,0,0,0,424,425,5,45,0,0,425,426,5,112,0,0,426,434, - 3,194,97,0,427,428,5,46,0,0,428,429,5,112,0,0,429,434,3,194,97,0, - 430,431,5,47,0,0,431,432,5,112,0,0,432,434,3,192,96,0,433,424,1, - 0,0,0,433,427,1,0,0,0,433,430,1,0,0,0,434,51,1,0,0,0,435,439,5,25, - 0,0,436,438,3,54,27,0,437,436,1,0,0,0,438,441,1,0,0,0,439,437,1, - 0,0,0,439,440,1,0,0,0,440,53,1,0,0,0,441,439,1,0,0,0,442,443,5,48, - 0,0,443,444,5,112,0,0,444,479,3,194,97,0,445,446,5,49,0,0,446,447, - 5,112,0,0,447,479,3,194,97,0,448,449,5,50,0,0,449,450,5,112,0,0, - 450,479,3,194,97,0,451,452,5,51,0,0,452,453,5,112,0,0,453,479,3, - 194,97,0,454,455,5,52,0,0,455,456,5,112,0,0,456,479,3,196,98,0,457, - 458,5,53,0,0,458,459,5,112,0,0,459,479,3,196,98,0,460,461,5,54,0, - 0,461,462,5,112,0,0,462,479,3,192,96,0,463,464,5,55,0,0,464,465, - 5,112,0,0,465,479,3,192,96,0,466,467,5,215,0,0,467,468,5,112,0,0, - 468,479,3,192,96,0,469,470,5,56,0,0,470,471,5,112,0,0,471,479,3, - 192,96,0,472,473,5,57,0,0,473,474,5,112,0,0,474,479,3,194,97,0,475, - 476,5,58,0,0,476,477,5,112,0,0,477,479,3,196,98,0,478,442,1,0,0, - 0,478,445,1,0,0,0,478,448,1,0,0,0,478,451,1,0,0,0,478,454,1,0,0, - 0,478,457,1,0,0,0,478,460,1,0,0,0,478,463,1,0,0,0,478,466,1,0,0, - 0,478,469,1,0,0,0,478,472,1,0,0,0,478,475,1,0,0,0,479,55,1,0,0,0, - 480,484,5,26,0,0,481,483,3,58,29,0,482,481,1,0,0,0,483,486,1,0,0, - 0,484,482,1,0,0,0,484,485,1,0,0,0,485,57,1,0,0,0,486,484,1,0,0,0, - 487,488,3,220,110,0,488,489,5,112,0,0,489,490,3,188,94,0,490,59, - 1,0,0,0,491,492,5,29,0,0,492,493,5,112,0,0,493,504,3,62,31,0,494, - 495,5,30,0,0,495,496,5,112,0,0,496,504,3,62,31,0,497,498,5,29,0, - 0,498,499,5,112,0,0,499,504,3,110,55,0,500,501,5,30,0,0,501,502, - 5,112,0,0,502,504,3,110,55,0,503,491,1,0,0,0,503,494,1,0,0,0,503, - 497,1,0,0,0,503,500,1,0,0,0,504,61,1,0,0,0,505,510,3,108,54,0,506, - 507,5,110,0,0,507,509,3,108,54,0,508,506,1,0,0,0,509,512,1,0,0,0, - 510,508,1,0,0,0,510,511,1,0,0,0,511,63,1,0,0,0,512,510,1,0,0,0,513, - 514,3,122,61,0,514,515,5,27,0,0,515,516,3,122,61,0,516,65,1,0,0, - 0,517,518,5,28,0,0,518,519,3,112,56,0,519,67,1,0,0,0,520,521,5,28, - 0,0,521,530,3,112,56,0,522,523,5,28,0,0,523,530,3,70,35,0,524,525, - 5,28,0,0,525,526,3,70,35,0,526,527,5,110,0,0,527,528,3,112,56,0, - 528,530,1,0,0,0,529,520,1,0,0,0,529,522,1,0,0,0,529,524,1,0,0,0, - 530,69,1,0,0,0,531,534,3,72,36,0,532,533,5,27,0,0,533,535,3,214, - 107,0,534,532,1,0,0,0,534,535,1,0,0,0,535,71,1,0,0,0,536,537,5,320, - 0,0,537,538,5,125,0,0,538,539,3,120,60,0,539,540,5,110,0,0,540,542, - 3,188,94,0,541,543,3,210,105,0,542,541,1,0,0,0,542,543,1,0,0,0,543, - 544,1,0,0,0,544,545,5,126,0,0,545,73,1,0,0,0,546,551,3,116,58,0, - 547,548,5,110,0,0,548,550,3,116,58,0,549,547,1,0,0,0,550,553,1,0, - 0,0,551,549,1,0,0,0,551,552,1,0,0,0,552,75,1,0,0,0,553,551,1,0,0, - 0,554,555,3,120,60,0,555,556,5,112,0,0,556,557,3,88,44,0,557,77, - 1,0,0,0,558,561,3,80,40,0,559,560,5,27,0,0,560,562,3,122,61,0,561, - 559,1,0,0,0,561,562,1,0,0,0,562,79,1,0,0,0,563,564,3,82,41,0,564, - 565,5,125,0,0,565,566,3,94,47,0,566,567,5,126,0,0,567,579,1,0,0, - 0,568,569,5,136,0,0,569,570,5,125,0,0,570,579,5,126,0,0,571,572, - 7,2,0,0,572,573,5,125,0,0,573,574,3,94,47,0,574,575,5,126,0,0,575, - 579,1,0,0,0,576,579,3,86,43,0,577,579,3,84,42,0,578,563,1,0,0,0, - 578,568,1,0,0,0,578,571,1,0,0,0,578,576,1,0,0,0,578,577,1,0,0,0, - 579,81,1,0,0,0,580,581,7,3,0,0,581,83,1,0,0,0,582,583,5,155,0,0, - 583,584,5,125,0,0,584,587,3,120,60,0,585,586,5,110,0,0,586,588,3, - 194,97,0,587,585,1,0,0,0,587,588,1,0,0,0,588,589,1,0,0,0,589,590, - 5,126,0,0,590,85,1,0,0,0,591,592,5,154,0,0,592,593,5,114,0,0,593, - 594,3,194,97,0,594,595,5,113,0,0,595,596,5,125,0,0,596,597,3,120, - 60,0,597,598,5,126,0,0,598,87,1,0,0,0,599,603,3,90,45,0,600,603, - 3,92,46,0,601,603,3,94,47,0,602,599,1,0,0,0,602,600,1,0,0,0,602, - 601,1,0,0,0,603,89,1,0,0,0,604,605,6,45,-1,0,605,611,3,92,46,0,606, - 607,5,61,0,0,607,611,3,90,45,6,608,611,3,100,50,0,609,611,3,102, - 51,0,610,604,1,0,0,0,610,606,1,0,0,0,610,608,1,0,0,0,610,609,1,0, - 0,0,611,625,1,0,0,0,612,613,10,5,0,0,613,614,5,62,0,0,614,624,3, - 90,45,6,615,617,10,4,0,0,616,618,5,63,0,0,617,616,1,0,0,0,617,618, - 1,0,0,0,618,619,1,0,0,0,619,624,3,90,45,5,620,621,10,3,0,0,621,622, - 5,64,0,0,622,624,3,90,45,4,623,612,1,0,0,0,623,615,1,0,0,0,623,620, - 1,0,0,0,624,627,1,0,0,0,625,623,1,0,0,0,625,626,1,0,0,0,626,91,1, - 0,0,0,627,625,1,0,0,0,628,629,3,94,47,0,629,630,3,182,91,0,630,631, - 3,94,47,0,631,637,1,0,0,0,632,633,3,94,47,0,633,634,5,60,0,0,634, - 635,3,212,106,0,635,637,1,0,0,0,636,628,1,0,0,0,636,632,1,0,0,0, - 637,93,1,0,0,0,638,639,6,47,-1,0,639,649,3,96,48,0,640,649,3,98, - 49,0,641,649,3,162,81,0,642,649,3,158,79,0,643,649,3,170,85,0,644, - 645,5,125,0,0,645,646,3,94,47,0,646,647,5,126,0,0,647,649,1,0,0, - 0,648,638,1,0,0,0,648,640,1,0,0,0,648,641,1,0,0,0,648,642,1,0,0, - 0,648,643,1,0,0,0,648,644,1,0,0,0,649,658,1,0,0,0,650,651,10,8,0, - 0,651,652,7,4,0,0,652,657,3,94,47,9,653,654,10,7,0,0,654,655,7,0, - 0,0,655,657,3,94,47,8,656,650,1,0,0,0,656,653,1,0,0,0,657,660,1, - 0,0,0,658,656,1,0,0,0,658,659,1,0,0,0,659,95,1,0,0,0,660,658,1,0, - 0,0,661,666,3,124,62,0,662,666,3,126,63,0,663,666,3,120,60,0,664, - 666,3,188,94,0,665,661,1,0,0,0,665,662,1,0,0,0,665,663,1,0,0,0,665, - 664,1,0,0,0,666,97,1,0,0,0,667,668,3,180,90,0,668,669,5,125,0,0, - 669,670,3,136,68,0,670,671,5,60,0,0,671,672,3,136,68,0,672,673,5, - 126,0,0,673,99,1,0,0,0,674,675,3,128,64,0,675,101,1,0,0,0,676,679, - 3,104,52,0,677,679,3,106,53,0,678,676,1,0,0,0,678,677,1,0,0,0,679, - 103,1,0,0,0,680,681,3,184,92,0,681,682,5,125,0,0,682,683,3,146,73, - 0,683,684,5,110,0,0,684,689,3,148,74,0,685,686,5,110,0,0,686,688, - 3,138,69,0,687,685,1,0,0,0,688,691,1,0,0,0,689,687,1,0,0,0,689,690, - 1,0,0,0,690,692,1,0,0,0,691,689,1,0,0,0,692,693,5,126,0,0,693,105, - 1,0,0,0,694,695,3,186,93,0,695,696,5,125,0,0,696,697,5,127,0,0,697, - 702,3,142,71,0,698,699,5,110,0,0,699,701,3,142,71,0,700,698,1,0, - 0,0,701,704,1,0,0,0,702,700,1,0,0,0,702,703,1,0,0,0,703,705,1,0, - 0,0,704,702,1,0,0,0,705,706,5,128,0,0,706,707,5,110,0,0,707,712, - 3,148,74,0,708,709,5,110,0,0,709,711,3,138,69,0,710,708,1,0,0,0, - 711,714,1,0,0,0,712,710,1,0,0,0,712,713,1,0,0,0,713,715,1,0,0,0, - 714,712,1,0,0,0,715,716,5,126,0,0,716,107,1,0,0,0,717,720,3,216, - 108,0,718,720,5,332,0,0,719,717,1,0,0,0,719,718,1,0,0,0,720,109, - 1,0,0,0,721,722,3,214,107,0,722,723,5,125,0,0,723,724,3,134,67,0, - 724,725,5,126,0,0,725,111,1,0,0,0,726,731,3,120,60,0,727,728,5,110, - 0,0,728,730,3,120,60,0,729,727,1,0,0,0,730,733,1,0,0,0,731,729,1, - 0,0,0,731,732,1,0,0,0,732,113,1,0,0,0,733,731,1,0,0,0,734,739,3, - 122,61,0,735,736,5,110,0,0,736,738,3,122,61,0,737,735,1,0,0,0,738, - 741,1,0,0,0,739,737,1,0,0,0,739,740,1,0,0,0,740,115,1,0,0,0,741, - 739,1,0,0,0,742,744,7,0,0,0,743,742,1,0,0,0,743,744,1,0,0,0,744, - 745,1,0,0,0,745,746,3,118,59,0,746,117,1,0,0,0,747,769,3,120,60, - 0,748,749,5,35,0,0,749,750,5,125,0,0,750,751,3,120,60,0,751,752, - 5,126,0,0,752,769,1,0,0,0,753,754,5,36,0,0,754,755,5,125,0,0,755, - 756,3,120,60,0,756,757,5,126,0,0,757,769,1,0,0,0,758,759,5,37,0, - 0,759,760,5,125,0,0,760,761,3,120,60,0,761,762,5,126,0,0,762,769, - 1,0,0,0,763,764,5,38,0,0,764,765,5,125,0,0,765,766,3,120,60,0,766, - 767,5,126,0,0,767,769,1,0,0,0,768,747,1,0,0,0,768,748,1,0,0,0,768, - 753,1,0,0,0,768,758,1,0,0,0,768,763,1,0,0,0,769,119,1,0,0,0,770, - 771,3,214,107,0,771,121,1,0,0,0,772,773,3,218,109,0,773,123,1,0, - 0,0,774,775,3,132,66,0,775,776,5,125,0,0,776,777,3,134,67,0,777, - 778,5,126,0,0,778,125,1,0,0,0,779,780,5,274,0,0,780,781,5,125,0, - 0,781,782,3,88,44,0,782,783,5,27,0,0,783,784,3,130,65,0,784,785, - 5,126,0,0,785,127,1,0,0,0,786,787,3,174,87,0,787,788,5,125,0,0,788, - 789,3,134,67,0,789,790,5,126,0,0,790,129,1,0,0,0,791,802,5,212,0, - 0,792,802,5,241,0,0,793,802,5,243,0,0,794,802,5,102,0,0,795,802, - 5,103,0,0,796,802,5,104,0,0,797,802,5,105,0,0,798,802,5,106,0,0, - 799,802,5,107,0,0,800,802,5,108,0,0,801,791,1,0,0,0,801,792,1,0, - 0,0,801,793,1,0,0,0,801,794,1,0,0,0,801,795,1,0,0,0,801,796,1,0, - 0,0,801,797,1,0,0,0,801,798,1,0,0,0,801,799,1,0,0,0,801,800,1,0, - 0,0,802,131,1,0,0,0,803,810,3,152,76,0,804,810,3,156,78,0,805,810, - 3,178,89,0,806,810,3,174,87,0,807,810,3,176,88,0,808,810,3,180,90, - 0,809,803,1,0,0,0,809,804,1,0,0,0,809,805,1,0,0,0,809,806,1,0,0, - 0,809,807,1,0,0,0,809,808,1,0,0,0,810,133,1,0,0,0,811,816,3,136, - 68,0,812,813,5,110,0,0,813,815,3,136,68,0,814,812,1,0,0,0,815,818, - 1,0,0,0,816,814,1,0,0,0,816,817,1,0,0,0,817,820,1,0,0,0,818,816, - 1,0,0,0,819,811,1,0,0,0,819,820,1,0,0,0,820,135,1,0,0,0,821,822, - 3,220,110,0,822,823,5,112,0,0,823,825,1,0,0,0,824,821,1,0,0,0,824, - 825,1,0,0,0,825,826,1,0,0,0,826,827,3,94,47,0,827,137,1,0,0,0,828, - 829,3,140,70,0,829,830,5,112,0,0,830,831,3,150,75,0,831,139,1,0, - 0,0,832,833,7,5,0,0,833,141,1,0,0,0,834,843,3,146,73,0,835,836,3, - 146,73,0,836,837,3,144,72,0,837,843,1,0,0,0,838,839,3,146,73,0,839, - 840,5,134,0,0,840,841,3,144,72,0,841,843,1,0,0,0,842,834,1,0,0,0, - 842,835,1,0,0,0,842,838,1,0,0,0,843,143,1,0,0,0,844,847,3,194,97, - 0,845,847,3,196,98,0,846,844,1,0,0,0,846,845,1,0,0,0,847,145,1,0, - 0,0,848,851,3,214,107,0,849,851,3,192,96,0,850,848,1,0,0,0,850,849, - 1,0,0,0,851,147,1,0,0,0,852,853,3,150,75,0,853,149,1,0,0,0,854,857, - 3,214,107,0,855,857,3,188,94,0,856,854,1,0,0,0,856,855,1,0,0,0,857, - 151,1,0,0,0,858,882,5,172,0,0,859,882,5,173,0,0,860,882,5,174,0, - 0,861,882,5,175,0,0,862,882,5,176,0,0,863,882,5,177,0,0,864,882, - 5,178,0,0,865,882,5,179,0,0,866,882,5,180,0,0,867,882,5,181,0,0, - 868,882,5,182,0,0,869,882,5,183,0,0,870,882,5,184,0,0,871,882,5, - 185,0,0,872,882,5,186,0,0,873,882,5,188,0,0,874,882,5,189,0,0,875, - 882,5,190,0,0,876,882,5,191,0,0,877,882,5,192,0,0,878,882,5,193, - 0,0,879,882,5,194,0,0,880,882,3,154,77,0,881,858,1,0,0,0,881,859, - 1,0,0,0,881,860,1,0,0,0,881,861,1,0,0,0,881,862,1,0,0,0,881,863, - 1,0,0,0,881,864,1,0,0,0,881,865,1,0,0,0,881,866,1,0,0,0,881,867, - 1,0,0,0,881,868,1,0,0,0,881,869,1,0,0,0,881,870,1,0,0,0,881,871, - 1,0,0,0,881,872,1,0,0,0,881,873,1,0,0,0,881,874,1,0,0,0,881,875, - 1,0,0,0,881,876,1,0,0,0,881,877,1,0,0,0,881,878,1,0,0,0,881,879, - 1,0,0,0,881,880,1,0,0,0,882,153,1,0,0,0,883,884,7,6,0,0,884,155, - 1,0,0,0,885,886,7,7,0,0,886,157,1,0,0,0,887,888,5,226,0,0,888,889, - 5,125,0,0,889,890,3,160,80,0,890,891,5,110,0,0,891,892,3,136,68, - 0,892,893,5,126,0,0,893,159,1,0,0,0,894,895,7,8,0,0,895,161,1,0, - 0,0,896,897,5,223,0,0,897,898,5,125,0,0,898,899,3,168,84,0,899,900, - 5,5,0,0,900,901,3,136,68,0,901,902,5,126,0,0,902,163,1,0,0,0,903, - 904,7,9,0,0,904,165,1,0,0,0,905,906,7,10,0,0,906,167,1,0,0,0,907, - 910,3,164,82,0,908,910,3,166,83,0,909,907,1,0,0,0,909,908,1,0,0, - 0,910,169,1,0,0,0,911,912,3,172,86,0,912,913,5,125,0,0,913,914,3, - 164,82,0,914,915,5,110,0,0,915,916,3,136,68,0,916,917,5,110,0,0, - 917,918,3,136,68,0,918,919,5,126,0,0,919,171,1,0,0,0,920,921,7,11, - 0,0,921,173,1,0,0,0,922,923,7,12,0,0,923,175,1,0,0,0,924,925,5,281, - 0,0,925,177,1,0,0,0,926,927,7,13,0,0,927,179,1,0,0,0,928,929,5,187, - 0,0,929,181,1,0,0,0,930,931,7,14,0,0,931,183,1,0,0,0,932,933,7,15, - 0,0,933,185,1,0,0,0,934,935,7,16,0,0,935,187,1,0,0,0,936,943,3,190, - 95,0,937,943,3,192,96,0,938,943,3,194,97,0,939,943,3,196,98,0,940, - 943,3,198,99,0,941,943,3,200,100,0,942,936,1,0,0,0,942,937,1,0,0, - 0,942,938,1,0,0,0,942,939,1,0,0,0,942,940,1,0,0,0,942,941,1,0,0, - 0,943,189,1,0,0,0,944,945,5,81,0,0,945,946,3,94,47,0,946,947,3,208, - 104,0,947,191,1,0,0,0,948,949,7,17,0,0,949,193,1,0,0,0,950,952,7, - 0,0,0,951,950,1,0,0,0,951,952,1,0,0,0,952,953,1,0,0,0,953,954,5, - 330,0,0,954,195,1,0,0,0,955,957,7,0,0,0,956,955,1,0,0,0,956,957, - 1,0,0,0,957,958,1,0,0,0,958,959,5,331,0,0,959,197,1,0,0,0,960,961, - 7,18,0,0,961,199,1,0,0,0,962,966,3,202,101,0,963,966,3,204,102,0, - 964,966,3,206,103,0,965,962,1,0,0,0,965,963,1,0,0,0,965,964,1,0, - 0,0,966,201,1,0,0,0,967,968,5,212,0,0,968,969,3,192,96,0,969,203, - 1,0,0,0,970,971,5,241,0,0,971,972,3,192,96,0,972,205,1,0,0,0,973, - 974,5,243,0,0,974,975,3,192,96,0,975,207,1,0,0,0,976,977,7,19,0, - 0,977,209,1,0,0,0,978,979,7,20,0,0,979,211,1,0,0,0,980,981,5,125, - 0,0,981,986,3,188,94,0,982,983,5,110,0,0,983,985,3,188,94,0,984, - 982,1,0,0,0,985,988,1,0,0,0,986,984,1,0,0,0,986,987,1,0,0,0,987, - 989,1,0,0,0,988,986,1,0,0,0,989,990,5,126,0,0,990,213,1,0,0,0,991, - 996,3,220,110,0,992,993,5,111,0,0,993,995,3,220,110,0,994,992,1, - 0,0,0,995,998,1,0,0,0,996,994,1,0,0,0,996,997,1,0,0,0,997,215,1, - 0,0,0,998,996,1,0,0,0,999,1004,3,222,111,0,1000,1001,5,111,0,0,1001, - 1003,3,220,110,0,1002,1000,1,0,0,0,1003,1006,1,0,0,0,1004,1002,1, - 0,0,0,1004,1005,1,0,0,0,1005,217,1,0,0,0,1006,1004,1,0,0,0,1007, - 1012,3,224,112,0,1008,1009,5,111,0,0,1009,1011,3,224,112,0,1010, - 1008,1,0,0,0,1011,1014,1,0,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0, - 0,1013,219,1,0,0,0,1014,1012,1,0,0,0,1015,1017,5,111,0,0,1016,1015, - 1,0,0,0,1016,1017,1,0,0,0,1017,1018,1,0,0,0,1018,1026,5,328,0,0, - 1019,1020,5,131,0,0,1020,1021,3,220,110,0,1021,1022,5,131,0,0,1022, - 1026,1,0,0,0,1023,1026,5,335,0,0,1024,1026,3,226,113,0,1025,1016, - 1,0,0,0,1025,1019,1,0,0,0,1025,1023,1,0,0,0,1025,1024,1,0,0,0,1026, - 221,1,0,0,0,1027,1029,5,329,0,0,1028,1027,1,0,0,0,1028,1029,1,0, - 0,0,1029,1030,1,0,0,0,1030,1031,3,220,110,0,1031,223,1,0,0,0,1032, - 1037,3,220,110,0,1033,1034,5,122,0,0,1034,1036,3,220,110,0,1035, - 1033,1,0,0,0,1036,1039,1,0,0,0,1037,1035,1,0,0,0,1037,1038,1,0,0, - 0,1038,1041,1,0,0,0,1039,1037,1,0,0,0,1040,1042,5,122,0,0,1041,1040, - 1,0,0,0,1041,1042,1,0,0,0,1042,1056,1,0,0,0,1043,1044,5,129,0,0, - 1044,1045,3,224,112,0,1045,1046,5,129,0,0,1046,1056,1,0,0,0,1047, - 1048,5,130,0,0,1048,1049,3,224,112,0,1049,1050,5,130,0,0,1050,1056, - 1,0,0,0,1051,1052,5,131,0,0,1052,1053,3,224,112,0,1053,1054,5,131, - 0,0,1054,1056,1,0,0,0,1055,1032,1,0,0,0,1055,1043,1,0,0,0,1055,1047, - 1,0,0,0,1055,1051,1,0,0,0,1056,225,1,0,0,0,1057,1158,5,31,0,0,1058, - 1158,3,210,105,0,1059,1158,5,320,0,0,1060,1158,3,132,66,0,1061,1158, - 3,140,70,0,1062,1158,3,208,104,0,1063,1158,3,156,78,0,1064,1158, - 3,178,89,0,1065,1158,3,152,76,0,1066,1158,3,180,90,0,1067,1158,5, - 2,0,0,1068,1158,5,3,0,0,1069,1158,5,4,0,0,1070,1158,5,5,0,0,1071, - 1158,5,6,0,0,1072,1158,5,7,0,0,1073,1158,5,8,0,0,1074,1158,5,9,0, - 0,1075,1158,5,10,0,0,1076,1158,5,11,0,0,1077,1158,5,12,0,0,1078, - 1158,5,13,0,0,1079,1158,5,14,0,0,1080,1158,5,15,0,0,1081,1158,5, - 16,0,0,1082,1158,5,17,0,0,1083,1158,5,18,0,0,1084,1158,5,19,0,0, - 1085,1158,5,20,0,0,1086,1158,5,21,0,0,1087,1158,5,22,0,0,1088,1158, - 5,23,0,0,1089,1158,5,24,0,0,1090,1158,5,25,0,0,1091,1158,5,26,0, - 0,1092,1158,5,29,0,0,1093,1158,5,30,0,0,1094,1158,5,32,0,0,1095, - 1158,5,33,0,0,1096,1158,5,34,0,0,1097,1158,5,36,0,0,1098,1158,5, - 37,0,0,1099,1158,5,38,0,0,1100,1158,5,39,0,0,1101,1158,5,40,0,0, - 1102,1158,5,41,0,0,1103,1158,5,42,0,0,1104,1158,5,43,0,0,1105,1158, - 5,44,0,0,1106,1158,5,45,0,0,1107,1158,5,46,0,0,1108,1158,5,47,0, - 0,1109,1158,5,48,0,0,1110,1158,5,49,0,0,1111,1158,5,50,0,0,1112, - 1158,5,51,0,0,1113,1158,5,52,0,0,1114,1158,5,53,0,0,1115,1158,5, - 54,0,0,1116,1158,5,55,0,0,1117,1158,5,56,0,0,1118,1158,5,57,0,0, - 1119,1158,5,58,0,0,1120,1158,5,135,0,0,1121,1158,5,136,0,0,1122, - 1158,5,137,0,0,1123,1158,5,138,0,0,1124,1158,5,139,0,0,1125,1158, - 5,140,0,0,1126,1158,5,141,0,0,1127,1158,5,142,0,0,1128,1158,5,143, - 0,0,1129,1158,5,144,0,0,1130,1158,5,145,0,0,1131,1158,5,146,0,0, - 1132,1158,5,147,0,0,1133,1158,5,148,0,0,1134,1158,5,149,0,0,1135, - 1158,5,150,0,0,1136,1158,5,151,0,0,1137,1158,5,152,0,0,1138,1158, - 5,153,0,0,1139,1158,5,154,0,0,1140,1158,5,155,0,0,1141,1158,5,156, - 0,0,1142,1158,5,157,0,0,1143,1158,5,158,0,0,1144,1158,5,159,0,0, - 1145,1158,5,160,0,0,1146,1158,5,161,0,0,1147,1158,5,162,0,0,1148, - 1158,5,163,0,0,1149,1158,5,164,0,0,1150,1158,5,165,0,0,1151,1158, - 5,166,0,0,1152,1158,5,167,0,0,1153,1158,5,168,0,0,1154,1158,5,169, - 0,0,1155,1158,5,170,0,0,1156,1158,5,171,0,0,1157,1057,1,0,0,0,1157, - 1058,1,0,0,0,1157,1059,1,0,0,0,1157,1060,1,0,0,0,1157,1061,1,0,0, - 0,1157,1062,1,0,0,0,1157,1063,1,0,0,0,1157,1064,1,0,0,0,1157,1065, - 1,0,0,0,1157,1066,1,0,0,0,1157,1067,1,0,0,0,1157,1068,1,0,0,0,1157, - 1069,1,0,0,0,1157,1070,1,0,0,0,1157,1071,1,0,0,0,1157,1072,1,0,0, - 0,1157,1073,1,0,0,0,1157,1074,1,0,0,0,1157,1075,1,0,0,0,1157,1076, - 1,0,0,0,1157,1077,1,0,0,0,1157,1078,1,0,0,0,1157,1079,1,0,0,0,1157, - 1080,1,0,0,0,1157,1081,1,0,0,0,1157,1082,1,0,0,0,1157,1083,1,0,0, - 0,1157,1084,1,0,0,0,1157,1085,1,0,0,0,1157,1086,1,0,0,0,1157,1087, - 1,0,0,0,1157,1088,1,0,0,0,1157,1089,1,0,0,0,1157,1090,1,0,0,0,1157, - 1091,1,0,0,0,1157,1092,1,0,0,0,1157,1093,1,0,0,0,1157,1094,1,0,0, - 0,1157,1095,1,0,0,0,1157,1096,1,0,0,0,1157,1097,1,0,0,0,1157,1098, - 1,0,0,0,1157,1099,1,0,0,0,1157,1100,1,0,0,0,1157,1101,1,0,0,0,1157, - 1102,1,0,0,0,1157,1103,1,0,0,0,1157,1104,1,0,0,0,1157,1105,1,0,0, - 0,1157,1106,1,0,0,0,1157,1107,1,0,0,0,1157,1108,1,0,0,0,1157,1109, - 1,0,0,0,1157,1110,1,0,0,0,1157,1111,1,0,0,0,1157,1112,1,0,0,0,1157, - 1113,1,0,0,0,1157,1114,1,0,0,0,1157,1115,1,0,0,0,1157,1116,1,0,0, - 0,1157,1117,1,0,0,0,1157,1118,1,0,0,0,1157,1119,1,0,0,0,1157,1120, - 1,0,0,0,1157,1121,1,0,0,0,1157,1122,1,0,0,0,1157,1123,1,0,0,0,1157, - 1124,1,0,0,0,1157,1125,1,0,0,0,1157,1126,1,0,0,0,1157,1127,1,0,0, - 0,1157,1128,1,0,0,0,1157,1129,1,0,0,0,1157,1130,1,0,0,0,1157,1131, - 1,0,0,0,1157,1132,1,0,0,0,1157,1133,1,0,0,0,1157,1134,1,0,0,0,1157, - 1135,1,0,0,0,1157,1136,1,0,0,0,1157,1137,1,0,0,0,1157,1138,1,0,0, - 0,1157,1139,1,0,0,0,1157,1140,1,0,0,0,1157,1141,1,0,0,0,1157,1142, - 1,0,0,0,1157,1143,1,0,0,0,1157,1144,1,0,0,0,1157,1145,1,0,0,0,1157, - 1146,1,0,0,0,1157,1147,1,0,0,0,1157,1148,1,0,0,0,1157,1149,1,0,0, - 0,1157,1150,1,0,0,0,1157,1151,1,0,0,0,1157,1152,1,0,0,0,1157,1153, - 1,0,0,0,1157,1154,1,0,0,0,1157,1155,1,0,0,0,1157,1156,1,0,0,0,1158, - 227,1,0,0,0,86,229,242,248,266,269,273,279,284,297,307,314,319,324, - 331,335,340,344,350,355,366,371,375,379,383,388,402,413,421,433, - 439,478,484,503,510,529,534,542,551,561,578,587,602,610,617,623, - 625,636,648,656,658,665,678,689,702,712,719,731,739,743,768,801, - 809,816,819,824,842,846,850,856,881,909,942,951,956,965,986,996, - 1004,1012,1016,1025,1028,1037,1041,1055,1157 + 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,3,113, + 1146,8,113,1,113,0,2,90,94,114,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,0,21,1,0,118,119,1,0, + 18,19,2,0,137,137,171,171,5,0,135,136,140,140,143,143,148,148,150, + 153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195,204,13,0,68,70,74, + 74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205,222,224,225,227, + 243,246,255,4,0,69,69,212,212,241,241,243,243,8,0,70,70,76,76,82, + 82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75,77,78,80,80,85, + 85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0,256,260,262,273, + 2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333,334,1,0,65,66, + 9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95,97,98,9,0,31, + 31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327,1302,0,229, + 1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248,1,0,0,0, + 10,266,1,0,0,0,12,278,1,0,0,0,14,280,1,0,0,0,16,283,1,0,0,0,18,286, + 1,0,0,0,20,289,1,0,0,0,22,295,1,0,0,0,24,304,1,0,0,0,26,336,1,0, + 0,0,28,351,1,0,0,0,30,354,1,0,0,0,32,363,1,0,0,0,34,371,1,0,0,0, + 36,379,1,0,0,0,38,384,1,0,0,0,40,388,1,0,0,0,42,392,1,0,0,0,44,407, + 1,0,0,0,46,409,1,0,0,0,48,411,1,0,0,0,50,427,1,0,0,0,52,429,1,0, + 0,0,54,472,1,0,0,0,56,474,1,0,0,0,58,481,1,0,0,0,60,491,1,0,0,0, + 62,493,1,0,0,0,64,501,1,0,0,0,66,505,1,0,0,0,68,517,1,0,0,0,70,519, + 1,0,0,0,72,524,1,0,0,0,74,534,1,0,0,0,76,542,1,0,0,0,78,546,1,0, + 0,0,80,566,1,0,0,0,82,568,1,0,0,0,84,570,1,0,0,0,86,579,1,0,0,0, + 88,590,1,0,0,0,90,598,1,0,0,0,92,624,1,0,0,0,94,636,1,0,0,0,96,653, + 1,0,0,0,98,655,1,0,0,0,100,662,1,0,0,0,102,666,1,0,0,0,104,668,1, + 0,0,0,106,682,1,0,0,0,108,707,1,0,0,0,110,709,1,0,0,0,112,714,1, + 0,0,0,114,722,1,0,0,0,116,731,1,0,0,0,118,756,1,0,0,0,120,758,1, + 0,0,0,122,760,1,0,0,0,124,762,1,0,0,0,126,767,1,0,0,0,128,774,1, + 0,0,0,130,789,1,0,0,0,132,797,1,0,0,0,134,807,1,0,0,0,136,812,1, + 0,0,0,138,816,1,0,0,0,140,820,1,0,0,0,142,830,1,0,0,0,144,834,1, + 0,0,0,146,838,1,0,0,0,148,840,1,0,0,0,150,844,1,0,0,0,152,869,1, + 0,0,0,154,871,1,0,0,0,156,873,1,0,0,0,158,875,1,0,0,0,160,882,1, + 0,0,0,162,884,1,0,0,0,164,891,1,0,0,0,166,893,1,0,0,0,168,897,1, + 0,0,0,170,899,1,0,0,0,172,908,1,0,0,0,174,910,1,0,0,0,176,912,1, + 0,0,0,178,914,1,0,0,0,180,916,1,0,0,0,182,918,1,0,0,0,184,920,1, + 0,0,0,186,922,1,0,0,0,188,930,1,0,0,0,190,932,1,0,0,0,192,936,1, + 0,0,0,194,939,1,0,0,0,196,944,1,0,0,0,198,948,1,0,0,0,200,953,1, + 0,0,0,202,955,1,0,0,0,204,958,1,0,0,0,206,961,1,0,0,0,208,964,1, + 0,0,0,210,966,1,0,0,0,212,968,1,0,0,0,214,979,1,0,0,0,216,987,1, + 0,0,0,218,995,1,0,0,0,220,1013,1,0,0,0,222,1016,1,0,0,0,224,1043, + 1,0,0,0,226,1145,1,0,0,0,228,230,3,2,1,0,229,228,1,0,0,0,229,230, + 1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0,0,0,233,234,3, + 4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0,237,242,3,8,4, + 0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0,0,241,244,1,0, + 0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0,244,242,1,0,0, + 0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8,0,248,245,1,0, + 0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0,250,267,3,18,9, + 0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24,12,0,254,267, + 3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267,3,32,16,0, + 258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0,261,267,3, + 40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3,52,26,0,265, + 267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252,1,0,0,0,266, + 253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256,1,0,0,0,266, + 257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260,1,0,0,0,266, + 261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264,1,0,0,0,266, + 265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1,0,0,0,269,270, + 1,0,0,0,270,271,1,0,0,0,271,279,3,60,30,0,272,274,5,2,0,0,273,272, + 1,0,0,0,273,274,1,0,0,0,274,275,1,0,0,0,275,276,3,60,30,0,276,277, + 3,90,45,0,277,279,1,0,0,0,278,269,1,0,0,0,278,273,1,0,0,0,279,13, + 1,0,0,0,280,281,5,3,0,0,281,282,3,62,31,0,282,15,1,0,0,0,283,284, + 5,4,0,0,284,285,5,33,0,0,285,17,1,0,0,0,286,287,5,6,0,0,287,288, + 3,90,45,0,288,19,1,0,0,0,289,291,5,7,0,0,290,292,7,0,0,0,291,290, + 1,0,0,0,291,292,1,0,0,0,292,293,1,0,0,0,293,294,3,112,56,0,294,21, + 1,0,0,0,295,296,5,8,0,0,296,301,3,64,32,0,297,298,5,110,0,0,298, + 300,3,64,32,0,299,297,1,0,0,0,300,303,1,0,0,0,301,299,1,0,0,0,301, + 302,1,0,0,0,302,23,1,0,0,0,303,301,1,0,0,0,304,308,5,9,0,0,305,306, + 5,42,0,0,306,307,5,112,0,0,307,309,3,194,97,0,308,305,1,0,0,0,308, + 309,1,0,0,0,309,313,1,0,0,0,310,311,5,43,0,0,311,312,5,112,0,0,312, + 314,3,198,99,0,313,310,1,0,0,0,313,314,1,0,0,0,314,318,1,0,0,0,315, + 316,5,44,0,0,316,317,5,112,0,0,317,319,3,192,96,0,318,315,1,0,0, + 0,318,319,1,0,0,0,319,320,1,0,0,0,320,325,3,78,39,0,321,322,5,110, + 0,0,322,324,3,78,39,0,323,321,1,0,0,0,324,327,1,0,0,0,325,323,1, + 0,0,0,325,326,1,0,0,0,326,329,1,0,0,0,327,325,1,0,0,0,328,330,3, + 68,34,0,329,328,1,0,0,0,329,330,1,0,0,0,330,334,1,0,0,0,331,332, + 5,41,0,0,332,333,5,112,0,0,333,335,3,198,99,0,334,331,1,0,0,0,334, + 335,1,0,0,0,335,25,1,0,0,0,336,338,5,10,0,0,337,339,3,194,97,0,338, + 337,1,0,0,0,338,339,1,0,0,0,339,340,1,0,0,0,340,344,3,112,56,0,341, + 342,5,39,0,0,342,343,5,112,0,0,343,345,3,198,99,0,344,341,1,0,0, + 0,344,345,1,0,0,0,345,349,1,0,0,0,346,347,5,40,0,0,347,348,5,112, + 0,0,348,350,3,198,99,0,349,346,1,0,0,0,349,350,1,0,0,0,350,27,1, + 0,0,0,351,352,5,11,0,0,352,353,3,74,37,0,353,29,1,0,0,0,354,355, + 5,12,0,0,355,360,3,76,38,0,356,357,5,110,0,0,357,359,3,76,38,0,358, + 356,1,0,0,0,359,362,1,0,0,0,360,358,1,0,0,0,360,361,1,0,0,0,361, + 31,1,0,0,0,362,360,1,0,0,0,363,365,5,13,0,0,364,366,3,194,97,0,365, + 364,1,0,0,0,365,366,1,0,0,0,366,369,1,0,0,0,367,368,5,5,0,0,368, + 370,3,194,97,0,369,367,1,0,0,0,369,370,1,0,0,0,370,33,1,0,0,0,371, + 373,5,14,0,0,372,374,3,194,97,0,373,372,1,0,0,0,373,374,1,0,0,0, + 374,375,1,0,0,0,375,377,3,112,56,0,376,378,3,66,33,0,377,376,1,0, + 0,0,377,378,1,0,0,0,378,35,1,0,0,0,379,380,5,15,0,0,380,382,3,112, + 56,0,381,383,3,66,33,0,382,381,1,0,0,0,382,383,1,0,0,0,383,37,1, + 0,0,0,384,385,5,20,0,0,385,386,3,88,44,0,386,387,3,192,96,0,387, + 39,1,0,0,0,388,389,5,16,0,0,389,390,3,88,44,0,390,391,3,192,96,0, + 391,41,1,0,0,0,392,396,5,22,0,0,393,395,3,44,22,0,394,393,1,0,0, + 0,395,398,1,0,0,0,396,394,1,0,0,0,396,397,1,0,0,0,397,399,1,0,0, + 0,398,396,1,0,0,0,399,400,3,88,44,0,400,43,1,0,0,0,401,402,5,23, + 0,0,402,403,5,112,0,0,403,408,3,192,96,0,404,405,5,21,0,0,405,406, + 5,112,0,0,406,408,3,192,96,0,407,401,1,0,0,0,407,404,1,0,0,0,408, + 45,1,0,0,0,409,410,7,1,0,0,410,47,1,0,0,0,411,415,5,24,0,0,412,414, + 3,50,25,0,413,412,1,0,0,0,414,417,1,0,0,0,415,413,1,0,0,0,415,416, + 1,0,0,0,416,49,1,0,0,0,417,415,1,0,0,0,418,419,5,45,0,0,419,420, + 5,112,0,0,420,428,3,194,97,0,421,422,5,46,0,0,422,423,5,112,0,0, + 423,428,3,194,97,0,424,425,5,47,0,0,425,426,5,112,0,0,426,428,3, + 192,96,0,427,418,1,0,0,0,427,421,1,0,0,0,427,424,1,0,0,0,428,51, + 1,0,0,0,429,433,5,25,0,0,430,432,3,54,27,0,431,430,1,0,0,0,432,435, + 1,0,0,0,433,431,1,0,0,0,433,434,1,0,0,0,434,53,1,0,0,0,435,433,1, + 0,0,0,436,437,5,48,0,0,437,438,5,112,0,0,438,473,3,194,97,0,439, + 440,5,49,0,0,440,441,5,112,0,0,441,473,3,194,97,0,442,443,5,50,0, + 0,443,444,5,112,0,0,444,473,3,194,97,0,445,446,5,51,0,0,446,447, + 5,112,0,0,447,473,3,194,97,0,448,449,5,52,0,0,449,450,5,112,0,0, + 450,473,3,196,98,0,451,452,5,53,0,0,452,453,5,112,0,0,453,473,3, + 196,98,0,454,455,5,54,0,0,455,456,5,112,0,0,456,473,3,192,96,0,457, + 458,5,55,0,0,458,459,5,112,0,0,459,473,3,192,96,0,460,461,5,215, + 0,0,461,462,5,112,0,0,462,473,3,192,96,0,463,464,5,56,0,0,464,465, + 5,112,0,0,465,473,3,192,96,0,466,467,5,57,0,0,467,468,5,112,0,0, + 468,473,3,194,97,0,469,470,5,58,0,0,470,471,5,112,0,0,471,473,3, + 196,98,0,472,436,1,0,0,0,472,439,1,0,0,0,472,442,1,0,0,0,472,445, + 1,0,0,0,472,448,1,0,0,0,472,451,1,0,0,0,472,454,1,0,0,0,472,457, + 1,0,0,0,472,460,1,0,0,0,472,463,1,0,0,0,472,466,1,0,0,0,472,469, + 1,0,0,0,473,55,1,0,0,0,474,478,5,26,0,0,475,477,3,58,29,0,476,475, + 1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0,478,479,1,0,0,0,479,57,1, + 0,0,0,480,478,1,0,0,0,481,482,3,220,110,0,482,483,5,112,0,0,483, + 484,3,188,94,0,484,59,1,0,0,0,485,486,5,29,0,0,486,487,5,112,0,0, + 487,492,3,62,31,0,488,489,5,30,0,0,489,490,5,112,0,0,490,492,3,62, + 31,0,491,485,1,0,0,0,491,488,1,0,0,0,492,61,1,0,0,0,493,498,3,108, + 54,0,494,495,5,110,0,0,495,497,3,108,54,0,496,494,1,0,0,0,497,500, + 1,0,0,0,498,496,1,0,0,0,498,499,1,0,0,0,499,63,1,0,0,0,500,498,1, + 0,0,0,501,502,3,122,61,0,502,503,5,27,0,0,503,504,3,122,61,0,504, + 65,1,0,0,0,505,506,5,28,0,0,506,507,3,112,56,0,507,67,1,0,0,0,508, + 509,5,28,0,0,509,518,3,112,56,0,510,511,5,28,0,0,511,518,3,70,35, + 0,512,513,5,28,0,0,513,514,3,70,35,0,514,515,5,110,0,0,515,516,3, + 112,56,0,516,518,1,0,0,0,517,508,1,0,0,0,517,510,1,0,0,0,517,512, + 1,0,0,0,518,69,1,0,0,0,519,522,3,72,36,0,520,521,5,27,0,0,521,523, + 3,214,107,0,522,520,1,0,0,0,522,523,1,0,0,0,523,71,1,0,0,0,524,525, + 5,320,0,0,525,526,5,125,0,0,526,527,3,120,60,0,527,528,5,110,0,0, + 528,530,3,188,94,0,529,531,3,210,105,0,530,529,1,0,0,0,530,531,1, + 0,0,0,531,532,1,0,0,0,532,533,5,126,0,0,533,73,1,0,0,0,534,539,3, + 116,58,0,535,536,5,110,0,0,536,538,3,116,58,0,537,535,1,0,0,0,538, + 541,1,0,0,0,539,537,1,0,0,0,539,540,1,0,0,0,540,75,1,0,0,0,541,539, + 1,0,0,0,542,543,3,120,60,0,543,544,5,112,0,0,544,545,3,88,44,0,545, + 77,1,0,0,0,546,549,3,80,40,0,547,548,5,27,0,0,548,550,3,122,61,0, + 549,547,1,0,0,0,549,550,1,0,0,0,550,79,1,0,0,0,551,552,3,82,41,0, + 552,553,5,125,0,0,553,554,3,94,47,0,554,555,5,126,0,0,555,567,1, + 0,0,0,556,557,5,136,0,0,557,558,5,125,0,0,558,567,5,126,0,0,559, + 560,7,2,0,0,560,561,5,125,0,0,561,562,3,94,47,0,562,563,5,126,0, + 0,563,567,1,0,0,0,564,567,3,86,43,0,565,567,3,84,42,0,566,551,1, + 0,0,0,566,556,1,0,0,0,566,559,1,0,0,0,566,564,1,0,0,0,566,565,1, + 0,0,0,567,81,1,0,0,0,568,569,7,3,0,0,569,83,1,0,0,0,570,571,5,155, + 0,0,571,572,5,125,0,0,572,575,3,120,60,0,573,574,5,110,0,0,574,576, + 3,194,97,0,575,573,1,0,0,0,575,576,1,0,0,0,576,577,1,0,0,0,577,578, + 5,126,0,0,578,85,1,0,0,0,579,580,5,154,0,0,580,581,5,114,0,0,581, + 582,3,194,97,0,582,583,5,113,0,0,583,584,5,125,0,0,584,585,3,120, + 60,0,585,586,5,126,0,0,586,87,1,0,0,0,587,591,3,90,45,0,588,591, + 3,92,46,0,589,591,3,94,47,0,590,587,1,0,0,0,590,588,1,0,0,0,590, + 589,1,0,0,0,591,89,1,0,0,0,592,593,6,45,-1,0,593,599,3,92,46,0,594, + 595,5,61,0,0,595,599,3,90,45,6,596,599,3,100,50,0,597,599,3,102, + 51,0,598,592,1,0,0,0,598,594,1,0,0,0,598,596,1,0,0,0,598,597,1,0, + 0,0,599,613,1,0,0,0,600,601,10,5,0,0,601,602,5,62,0,0,602,612,3, + 90,45,6,603,605,10,4,0,0,604,606,5,63,0,0,605,604,1,0,0,0,605,606, + 1,0,0,0,606,607,1,0,0,0,607,612,3,90,45,5,608,609,10,3,0,0,609,610, + 5,64,0,0,610,612,3,90,45,4,611,600,1,0,0,0,611,603,1,0,0,0,611,608, + 1,0,0,0,612,615,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614,91,1, + 0,0,0,615,613,1,0,0,0,616,617,3,94,47,0,617,618,3,182,91,0,618,619, + 3,94,47,0,619,625,1,0,0,0,620,621,3,94,47,0,621,622,5,60,0,0,622, + 623,3,212,106,0,623,625,1,0,0,0,624,616,1,0,0,0,624,620,1,0,0,0, + 625,93,1,0,0,0,626,627,6,47,-1,0,627,637,3,96,48,0,628,637,3,98, + 49,0,629,637,3,162,81,0,630,637,3,158,79,0,631,637,3,170,85,0,632, + 633,5,125,0,0,633,634,3,94,47,0,634,635,5,126,0,0,635,637,1,0,0, + 0,636,626,1,0,0,0,636,628,1,0,0,0,636,629,1,0,0,0,636,630,1,0,0, + 0,636,631,1,0,0,0,636,632,1,0,0,0,637,646,1,0,0,0,638,639,10,8,0, + 0,639,640,7,4,0,0,640,645,3,94,47,9,641,642,10,7,0,0,642,643,7,0, + 0,0,643,645,3,94,47,8,644,638,1,0,0,0,644,641,1,0,0,0,645,648,1, + 0,0,0,646,644,1,0,0,0,646,647,1,0,0,0,647,95,1,0,0,0,648,646,1,0, + 0,0,649,654,3,124,62,0,650,654,3,126,63,0,651,654,3,120,60,0,652, + 654,3,188,94,0,653,649,1,0,0,0,653,650,1,0,0,0,653,651,1,0,0,0,653, + 652,1,0,0,0,654,97,1,0,0,0,655,656,3,180,90,0,656,657,5,125,0,0, + 657,658,3,136,68,0,658,659,5,60,0,0,659,660,3,136,68,0,660,661,5, + 126,0,0,661,99,1,0,0,0,662,663,3,128,64,0,663,101,1,0,0,0,664,667, + 3,104,52,0,665,667,3,106,53,0,666,664,1,0,0,0,666,665,1,0,0,0,667, + 103,1,0,0,0,668,669,3,184,92,0,669,670,5,125,0,0,670,671,3,146,73, + 0,671,672,5,110,0,0,672,677,3,148,74,0,673,674,5,110,0,0,674,676, + 3,138,69,0,675,673,1,0,0,0,676,679,1,0,0,0,677,675,1,0,0,0,677,678, + 1,0,0,0,678,680,1,0,0,0,679,677,1,0,0,0,680,681,5,126,0,0,681,105, + 1,0,0,0,682,683,3,186,93,0,683,684,5,125,0,0,684,685,5,127,0,0,685, + 690,3,142,71,0,686,687,5,110,0,0,687,689,3,142,71,0,688,686,1,0, + 0,0,689,692,1,0,0,0,690,688,1,0,0,0,690,691,1,0,0,0,691,693,1,0, + 0,0,692,690,1,0,0,0,693,694,5,128,0,0,694,695,5,110,0,0,695,700, + 3,148,74,0,696,697,5,110,0,0,697,699,3,138,69,0,698,696,1,0,0,0, + 699,702,1,0,0,0,700,698,1,0,0,0,700,701,1,0,0,0,701,703,1,0,0,0, + 702,700,1,0,0,0,703,704,5,126,0,0,704,107,1,0,0,0,705,708,3,216, + 108,0,706,708,5,332,0,0,707,705,1,0,0,0,707,706,1,0,0,0,708,109, + 1,0,0,0,709,710,3,214,107,0,710,711,5,125,0,0,711,712,3,134,67,0, + 712,713,5,126,0,0,713,111,1,0,0,0,714,719,3,120,60,0,715,716,5,110, + 0,0,716,718,3,120,60,0,717,715,1,0,0,0,718,721,1,0,0,0,719,717,1, + 0,0,0,719,720,1,0,0,0,720,113,1,0,0,0,721,719,1,0,0,0,722,727,3, + 122,61,0,723,724,5,110,0,0,724,726,3,122,61,0,725,723,1,0,0,0,726, + 729,1,0,0,0,727,725,1,0,0,0,727,728,1,0,0,0,728,115,1,0,0,0,729, + 727,1,0,0,0,730,732,7,0,0,0,731,730,1,0,0,0,731,732,1,0,0,0,732, + 733,1,0,0,0,733,734,3,118,59,0,734,117,1,0,0,0,735,757,3,120,60, + 0,736,737,5,35,0,0,737,738,5,125,0,0,738,739,3,120,60,0,739,740, + 5,126,0,0,740,757,1,0,0,0,741,742,5,36,0,0,742,743,5,125,0,0,743, + 744,3,120,60,0,744,745,5,126,0,0,745,757,1,0,0,0,746,747,5,37,0, + 0,747,748,5,125,0,0,748,749,3,120,60,0,749,750,5,126,0,0,750,757, + 1,0,0,0,751,752,5,38,0,0,752,753,5,125,0,0,753,754,3,120,60,0,754, + 755,5,126,0,0,755,757,1,0,0,0,756,735,1,0,0,0,756,736,1,0,0,0,756, + 741,1,0,0,0,756,746,1,0,0,0,756,751,1,0,0,0,757,119,1,0,0,0,758, + 759,3,214,107,0,759,121,1,0,0,0,760,761,3,218,109,0,761,123,1,0, + 0,0,762,763,3,132,66,0,763,764,5,125,0,0,764,765,3,134,67,0,765, + 766,5,126,0,0,766,125,1,0,0,0,767,768,5,274,0,0,768,769,5,125,0, + 0,769,770,3,88,44,0,770,771,5,27,0,0,771,772,3,130,65,0,772,773, + 5,126,0,0,773,127,1,0,0,0,774,775,3,174,87,0,775,776,5,125,0,0,776, + 777,3,134,67,0,777,778,5,126,0,0,778,129,1,0,0,0,779,790,5,212,0, + 0,780,790,5,241,0,0,781,790,5,243,0,0,782,790,5,102,0,0,783,790, + 5,103,0,0,784,790,5,104,0,0,785,790,5,105,0,0,786,790,5,106,0,0, + 787,790,5,107,0,0,788,790,5,108,0,0,789,779,1,0,0,0,789,780,1,0, + 0,0,789,781,1,0,0,0,789,782,1,0,0,0,789,783,1,0,0,0,789,784,1,0, + 0,0,789,785,1,0,0,0,789,786,1,0,0,0,789,787,1,0,0,0,789,788,1,0, + 0,0,790,131,1,0,0,0,791,798,3,152,76,0,792,798,3,156,78,0,793,798, + 3,178,89,0,794,798,3,174,87,0,795,798,3,176,88,0,796,798,3,180,90, + 0,797,791,1,0,0,0,797,792,1,0,0,0,797,793,1,0,0,0,797,794,1,0,0, + 0,797,795,1,0,0,0,797,796,1,0,0,0,798,133,1,0,0,0,799,804,3,136, + 68,0,800,801,5,110,0,0,801,803,3,136,68,0,802,800,1,0,0,0,803,806, + 1,0,0,0,804,802,1,0,0,0,804,805,1,0,0,0,805,808,1,0,0,0,806,804, + 1,0,0,0,807,799,1,0,0,0,807,808,1,0,0,0,808,135,1,0,0,0,809,810, + 3,220,110,0,810,811,5,112,0,0,811,813,1,0,0,0,812,809,1,0,0,0,812, + 813,1,0,0,0,813,814,1,0,0,0,814,815,3,94,47,0,815,137,1,0,0,0,816, + 817,3,140,70,0,817,818,5,112,0,0,818,819,3,150,75,0,819,139,1,0, + 0,0,820,821,7,5,0,0,821,141,1,0,0,0,822,831,3,146,73,0,823,824,3, + 146,73,0,824,825,3,144,72,0,825,831,1,0,0,0,826,827,3,146,73,0,827, + 828,5,134,0,0,828,829,3,144,72,0,829,831,1,0,0,0,830,822,1,0,0,0, + 830,823,1,0,0,0,830,826,1,0,0,0,831,143,1,0,0,0,832,835,3,194,97, + 0,833,835,3,196,98,0,834,832,1,0,0,0,834,833,1,0,0,0,835,145,1,0, + 0,0,836,839,3,214,107,0,837,839,3,192,96,0,838,836,1,0,0,0,838,837, + 1,0,0,0,839,147,1,0,0,0,840,841,3,150,75,0,841,149,1,0,0,0,842,845, + 3,214,107,0,843,845,3,188,94,0,844,842,1,0,0,0,844,843,1,0,0,0,845, + 151,1,0,0,0,846,870,5,172,0,0,847,870,5,173,0,0,848,870,5,174,0, + 0,849,870,5,175,0,0,850,870,5,176,0,0,851,870,5,177,0,0,852,870, + 5,178,0,0,853,870,5,179,0,0,854,870,5,180,0,0,855,870,5,181,0,0, + 856,870,5,182,0,0,857,870,5,183,0,0,858,870,5,184,0,0,859,870,5, + 185,0,0,860,870,5,186,0,0,861,870,5,188,0,0,862,870,5,189,0,0,863, + 870,5,190,0,0,864,870,5,191,0,0,865,870,5,192,0,0,866,870,5,193, + 0,0,867,870,5,194,0,0,868,870,3,154,77,0,869,846,1,0,0,0,869,847, + 1,0,0,0,869,848,1,0,0,0,869,849,1,0,0,0,869,850,1,0,0,0,869,851, + 1,0,0,0,869,852,1,0,0,0,869,853,1,0,0,0,869,854,1,0,0,0,869,855, + 1,0,0,0,869,856,1,0,0,0,869,857,1,0,0,0,869,858,1,0,0,0,869,859, + 1,0,0,0,869,860,1,0,0,0,869,861,1,0,0,0,869,862,1,0,0,0,869,863, + 1,0,0,0,869,864,1,0,0,0,869,865,1,0,0,0,869,866,1,0,0,0,869,867, + 1,0,0,0,869,868,1,0,0,0,870,153,1,0,0,0,871,872,7,6,0,0,872,155, + 1,0,0,0,873,874,7,7,0,0,874,157,1,0,0,0,875,876,5,226,0,0,876,877, + 5,125,0,0,877,878,3,160,80,0,878,879,5,110,0,0,879,880,3,136,68, + 0,880,881,5,126,0,0,881,159,1,0,0,0,882,883,7,8,0,0,883,161,1,0, + 0,0,884,885,5,223,0,0,885,886,5,125,0,0,886,887,3,168,84,0,887,888, + 5,5,0,0,888,889,3,136,68,0,889,890,5,126,0,0,890,163,1,0,0,0,891, + 892,7,9,0,0,892,165,1,0,0,0,893,894,7,10,0,0,894,167,1,0,0,0,895, + 898,3,164,82,0,896,898,3,166,83,0,897,895,1,0,0,0,897,896,1,0,0, + 0,898,169,1,0,0,0,899,900,3,172,86,0,900,901,5,125,0,0,901,902,3, + 164,82,0,902,903,5,110,0,0,903,904,3,136,68,0,904,905,5,110,0,0, + 905,906,3,136,68,0,906,907,5,126,0,0,907,171,1,0,0,0,908,909,7,11, + 0,0,909,173,1,0,0,0,910,911,7,12,0,0,911,175,1,0,0,0,912,913,5,281, + 0,0,913,177,1,0,0,0,914,915,7,13,0,0,915,179,1,0,0,0,916,917,5,187, + 0,0,917,181,1,0,0,0,918,919,7,14,0,0,919,183,1,0,0,0,920,921,7,15, + 0,0,921,185,1,0,0,0,922,923,7,16,0,0,923,187,1,0,0,0,924,931,3,190, + 95,0,925,931,3,192,96,0,926,931,3,194,97,0,927,931,3,196,98,0,928, + 931,3,198,99,0,929,931,3,200,100,0,930,924,1,0,0,0,930,925,1,0,0, + 0,930,926,1,0,0,0,930,927,1,0,0,0,930,928,1,0,0,0,930,929,1,0,0, + 0,931,189,1,0,0,0,932,933,5,81,0,0,933,934,3,94,47,0,934,935,3,208, + 104,0,935,191,1,0,0,0,936,937,7,17,0,0,937,193,1,0,0,0,938,940,7, + 0,0,0,939,938,1,0,0,0,939,940,1,0,0,0,940,941,1,0,0,0,941,942,5, + 330,0,0,942,195,1,0,0,0,943,945,7,0,0,0,944,943,1,0,0,0,944,945, + 1,0,0,0,945,946,1,0,0,0,946,947,5,331,0,0,947,197,1,0,0,0,948,949, + 7,18,0,0,949,199,1,0,0,0,950,954,3,202,101,0,951,954,3,204,102,0, + 952,954,3,206,103,0,953,950,1,0,0,0,953,951,1,0,0,0,953,952,1,0, + 0,0,954,201,1,0,0,0,955,956,5,212,0,0,956,957,3,192,96,0,957,203, + 1,0,0,0,958,959,5,241,0,0,959,960,3,192,96,0,960,205,1,0,0,0,961, + 962,5,243,0,0,962,963,3,192,96,0,963,207,1,0,0,0,964,965,7,19,0, + 0,965,209,1,0,0,0,966,967,7,20,0,0,967,211,1,0,0,0,968,969,5,125, + 0,0,969,974,3,188,94,0,970,971,5,110,0,0,971,973,3,188,94,0,972, + 970,1,0,0,0,973,976,1,0,0,0,974,972,1,0,0,0,974,975,1,0,0,0,975, + 977,1,0,0,0,976,974,1,0,0,0,977,978,5,126,0,0,978,213,1,0,0,0,979, + 984,3,220,110,0,980,981,5,111,0,0,981,983,3,220,110,0,982,980,1, + 0,0,0,983,986,1,0,0,0,984,982,1,0,0,0,984,985,1,0,0,0,985,215,1, + 0,0,0,986,984,1,0,0,0,987,992,3,222,111,0,988,989,5,111,0,0,989, + 991,3,220,110,0,990,988,1,0,0,0,991,994,1,0,0,0,992,990,1,0,0,0, + 992,993,1,0,0,0,993,217,1,0,0,0,994,992,1,0,0,0,995,1000,3,224,112, + 0,996,997,5,111,0,0,997,999,3,224,112,0,998,996,1,0,0,0,999,1002, + 1,0,0,0,1000,998,1,0,0,0,1000,1001,1,0,0,0,1001,219,1,0,0,0,1002, + 1000,1,0,0,0,1003,1005,5,111,0,0,1004,1003,1,0,0,0,1004,1005,1,0, + 0,0,1005,1006,1,0,0,0,1006,1014,5,328,0,0,1007,1008,5,131,0,0,1008, + 1009,3,220,110,0,1009,1010,5,131,0,0,1010,1014,1,0,0,0,1011,1014, + 5,335,0,0,1012,1014,3,226,113,0,1013,1004,1,0,0,0,1013,1007,1,0, + 0,0,1013,1011,1,0,0,0,1013,1012,1,0,0,0,1014,221,1,0,0,0,1015,1017, + 5,329,0,0,1016,1015,1,0,0,0,1016,1017,1,0,0,0,1017,1018,1,0,0,0, + 1018,1019,3,220,110,0,1019,223,1,0,0,0,1020,1025,3,220,110,0,1021, + 1022,5,122,0,0,1022,1024,3,220,110,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,1029,1,0,0,0,1027, + 1025,1,0,0,0,1028,1030,5,122,0,0,1029,1028,1,0,0,0,1029,1030,1,0, + 0,0,1030,1044,1,0,0,0,1031,1032,5,129,0,0,1032,1033,3,224,112,0, + 1033,1034,5,129,0,0,1034,1044,1,0,0,0,1035,1036,5,130,0,0,1036,1037, + 3,224,112,0,1037,1038,5,130,0,0,1038,1044,1,0,0,0,1039,1040,5,131, + 0,0,1040,1041,3,224,112,0,1041,1042,5,131,0,0,1042,1044,1,0,0,0, + 1043,1020,1,0,0,0,1043,1031,1,0,0,0,1043,1035,1,0,0,0,1043,1039, + 1,0,0,0,1044,225,1,0,0,0,1045,1146,5,31,0,0,1046,1146,3,210,105, + 0,1047,1146,5,320,0,0,1048,1146,3,132,66,0,1049,1146,3,140,70,0, + 1050,1146,3,208,104,0,1051,1146,3,156,78,0,1052,1146,3,178,89,0, + 1053,1146,3,152,76,0,1054,1146,3,180,90,0,1055,1146,5,2,0,0,1056, + 1146,5,3,0,0,1057,1146,5,4,0,0,1058,1146,5,5,0,0,1059,1146,5,6,0, + 0,1060,1146,5,7,0,0,1061,1146,5,8,0,0,1062,1146,5,9,0,0,1063,1146, + 5,10,0,0,1064,1146,5,11,0,0,1065,1146,5,12,0,0,1066,1146,5,13,0, + 0,1067,1146,5,14,0,0,1068,1146,5,15,0,0,1069,1146,5,16,0,0,1070, + 1146,5,17,0,0,1071,1146,5,18,0,0,1072,1146,5,19,0,0,1073,1146,5, + 20,0,0,1074,1146,5,21,0,0,1075,1146,5,22,0,0,1076,1146,5,23,0,0, + 1077,1146,5,24,0,0,1078,1146,5,25,0,0,1079,1146,5,26,0,0,1080,1146, + 5,29,0,0,1081,1146,5,30,0,0,1082,1146,5,32,0,0,1083,1146,5,33,0, + 0,1084,1146,5,34,0,0,1085,1146,5,36,0,0,1086,1146,5,37,0,0,1087, + 1146,5,38,0,0,1088,1146,5,39,0,0,1089,1146,5,40,0,0,1090,1146,5, + 41,0,0,1091,1146,5,42,0,0,1092,1146,5,43,0,0,1093,1146,5,44,0,0, + 1094,1146,5,45,0,0,1095,1146,5,46,0,0,1096,1146,5,47,0,0,1097,1146, + 5,48,0,0,1098,1146,5,49,0,0,1099,1146,5,50,0,0,1100,1146,5,51,0, + 0,1101,1146,5,52,0,0,1102,1146,5,53,0,0,1103,1146,5,54,0,0,1104, + 1146,5,55,0,0,1105,1146,5,56,0,0,1106,1146,5,57,0,0,1107,1146,5, + 58,0,0,1108,1146,5,135,0,0,1109,1146,5,136,0,0,1110,1146,5,137,0, + 0,1111,1146,5,138,0,0,1112,1146,5,139,0,0,1113,1146,5,140,0,0,1114, + 1146,5,141,0,0,1115,1146,5,142,0,0,1116,1146,5,143,0,0,1117,1146, + 5,144,0,0,1118,1146,5,145,0,0,1119,1146,5,146,0,0,1120,1146,5,147, + 0,0,1121,1146,5,148,0,0,1122,1146,5,149,0,0,1123,1146,5,150,0,0, + 1124,1146,5,151,0,0,1125,1146,5,152,0,0,1126,1146,5,153,0,0,1127, + 1146,5,154,0,0,1128,1146,5,155,0,0,1129,1146,5,156,0,0,1130,1146, + 5,157,0,0,1131,1146,5,158,0,0,1132,1146,5,159,0,0,1133,1146,5,160, + 0,0,1134,1146,5,161,0,0,1135,1146,5,162,0,0,1136,1146,5,163,0,0, + 1137,1146,5,164,0,0,1138,1146,5,165,0,0,1139,1146,5,166,0,0,1140, + 1146,5,167,0,0,1141,1146,5,168,0,0,1142,1146,5,169,0,0,1143,1146, + 5,170,0,0,1144,1146,5,171,0,0,1145,1045,1,0,0,0,1145,1046,1,0,0, + 0,1145,1047,1,0,0,0,1145,1048,1,0,0,0,1145,1049,1,0,0,0,1145,1050, + 1,0,0,0,1145,1051,1,0,0,0,1145,1052,1,0,0,0,1145,1053,1,0,0,0,1145, + 1054,1,0,0,0,1145,1055,1,0,0,0,1145,1056,1,0,0,0,1145,1057,1,0,0, + 0,1145,1058,1,0,0,0,1145,1059,1,0,0,0,1145,1060,1,0,0,0,1145,1061, + 1,0,0,0,1145,1062,1,0,0,0,1145,1063,1,0,0,0,1145,1064,1,0,0,0,1145, + 1065,1,0,0,0,1145,1066,1,0,0,0,1145,1067,1,0,0,0,1145,1068,1,0,0, + 0,1145,1069,1,0,0,0,1145,1070,1,0,0,0,1145,1071,1,0,0,0,1145,1072, + 1,0,0,0,1145,1073,1,0,0,0,1145,1074,1,0,0,0,1145,1075,1,0,0,0,1145, + 1076,1,0,0,0,1145,1077,1,0,0,0,1145,1078,1,0,0,0,1145,1079,1,0,0, + 0,1145,1080,1,0,0,0,1145,1081,1,0,0,0,1145,1082,1,0,0,0,1145,1083, + 1,0,0,0,1145,1084,1,0,0,0,1145,1085,1,0,0,0,1145,1086,1,0,0,0,1145, + 1087,1,0,0,0,1145,1088,1,0,0,0,1145,1089,1,0,0,0,1145,1090,1,0,0, + 0,1145,1091,1,0,0,0,1145,1092,1,0,0,0,1145,1093,1,0,0,0,1145,1094, + 1,0,0,0,1145,1095,1,0,0,0,1145,1096,1,0,0,0,1145,1097,1,0,0,0,1145, + 1098,1,0,0,0,1145,1099,1,0,0,0,1145,1100,1,0,0,0,1145,1101,1,0,0, + 0,1145,1102,1,0,0,0,1145,1103,1,0,0,0,1145,1104,1,0,0,0,1145,1105, + 1,0,0,0,1145,1106,1,0,0,0,1145,1107,1,0,0,0,1145,1108,1,0,0,0,1145, + 1109,1,0,0,0,1145,1110,1,0,0,0,1145,1111,1,0,0,0,1145,1112,1,0,0, + 0,1145,1113,1,0,0,0,1145,1114,1,0,0,0,1145,1115,1,0,0,0,1145,1116, + 1,0,0,0,1145,1117,1,0,0,0,1145,1118,1,0,0,0,1145,1119,1,0,0,0,1145, + 1120,1,0,0,0,1145,1121,1,0,0,0,1145,1122,1,0,0,0,1145,1123,1,0,0, + 0,1145,1124,1,0,0,0,1145,1125,1,0,0,0,1145,1126,1,0,0,0,1145,1127, + 1,0,0,0,1145,1128,1,0,0,0,1145,1129,1,0,0,0,1145,1130,1,0,0,0,1145, + 1131,1,0,0,0,1145,1132,1,0,0,0,1145,1133,1,0,0,0,1145,1134,1,0,0, + 0,1145,1135,1,0,0,0,1145,1136,1,0,0,0,1145,1137,1,0,0,0,1145,1138, + 1,0,0,0,1145,1139,1,0,0,0,1145,1140,1,0,0,0,1145,1141,1,0,0,0,1145, + 1142,1,0,0,0,1145,1143,1,0,0,0,1145,1144,1,0,0,0,1146,227,1,0,0, + 0,85,229,242,248,266,269,273,278,291,301,308,313,318,325,329,334, + 338,344,349,360,365,369,373,377,382,396,407,415,427,433,472,478, + 491,498,517,522,530,539,549,566,575,590,598,605,611,613,624,636, + 644,646,653,666,677,690,700,707,719,727,731,756,789,797,804,807, + 812,830,834,838,844,869,897,930,939,944,953,974,984,992,1000,1004, + 1013,1016,1025,1029,1043,1145 ]; private static __ATN: antlr.ATN; @@ -8189,28 +8148,6 @@ export class SearchFromContext extends SearchCommandContext { } } } -export class SearchFilterFromContext extends SearchCommandContext { - public constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext)!; - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public SEARCH(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.SEARCH, 0); - } - public override accept(visitor: OpenSearchPPLParserVisitor): Result | null { - if (visitor.visitSearchFilterFrom) { - return visitor.visitSearchFilterFrom(this); - } else { - return visitor.visitChildren(this); - } - } -} export class DescribeCommandContext extends antlr.ParserRuleContext { @@ -9017,15 +8954,12 @@ export class FromClauseContext extends antlr.ParserRuleContext { public EQUAL(): antlr.TerminalNode { return this.getToken(OpenSearchPPLParser.EQUAL, 0)!; } - public tableSourceClause(): TableSourceClauseContext | null { - return this.getRuleContext(0, TableSourceClauseContext); + public tableSourceClause(): TableSourceClauseContext { + return this.getRuleContext(0, TableSourceClauseContext)!; } public INDEX(): antlr.TerminalNode | null { return this.getToken(OpenSearchPPLParser.INDEX, 0); } - public tableFunction(): TableFunctionContext | null { - return this.getRuleContext(0, TableFunctionContext); - } public override get ruleIndex(): number { return OpenSearchPPLParser.RULE_fromClause; } diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts index 9ddb17bd038d..15a57202a903 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts @@ -1,4 +1,4 @@ -// Generated from ./src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 by ANTLR 4.13.1 +// Generated from grammar/OpenSearchPPLParser.g4 by ANTLR 4.13.1 import { AbstractParseTreeVisitor } from "antlr4ng"; @@ -11,7 +11,6 @@ import { PplCommandsContext } from "./OpenSearchPPLParser.js"; import { CommandsContext } from "./OpenSearchPPLParser.js"; import { SearchFromContext } from "./OpenSearchPPLParser.js"; import { SearchFromFilterContext } from "./OpenSearchPPLParser.js"; -import { SearchFilterFromContext } from "./OpenSearchPPLParser.js"; import { DescribeCommandContext } from "./OpenSearchPPLParser.js"; import { ShowDataSourcesCommandContext } from "./OpenSearchPPLParser.js"; import { WhereCommandContext } from "./OpenSearchPPLParser.js"; @@ -196,13 +195,6 @@ export class OpenSearchPPLParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; - /** - * Visit a parse tree produced by the `searchFilterFrom` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFilterFrom?: (ctx: SearchFilterFromContext) => Result; /** * Visit a parse tree produced by `OpenSearchPPLParser.describeCommand`. * @param ctx the parse tree diff --git a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts index e91cdb6f7090..bcade49beaf3 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts @@ -10,7 +10,7 @@ */ import { monaco } from '@osd/monaco'; -import { CursorPosition, AutocompleteResultBase } from '../shared/types'; +import { CursorPosition, OpenSearchPplAutocompleteResult } from '../shared/types'; import { fetchFieldSuggestions, parseQuery } from '../shared/utils'; import { openSearchPplAutocompleteData } from './opensearch_ppl_autocomplete'; import { QuerySuggestion, QuerySuggestionGetFnArgs } from '../../autocomplete'; @@ -51,6 +51,15 @@ export const getSuggestions = async ({ ); } + if (suggestions.suggestSourcesOrTables) { + finalSuggestions.push({ + text: indexPattern.title, + type: monaco.languages.CompletionItemKind.Struct, + insertText: `${indexPattern.title} `, + detail: SuggestionItemDetailsTags.Table, + }); + } + // Fill in PPL keywords if (suggestions.suggestKeywords?.length) { finalSuggestions.push( @@ -71,7 +80,7 @@ export const getSuggestions = async ({ export const getOpenSearchPplAutoCompleteSuggestions = ( query: string, cursor: CursorPosition -): AutocompleteResultBase => { +): OpenSearchPplAutocompleteResult => { return parseQuery({ Lexer: openSearchPplAutocompleteData.Lexer, Parser: openSearchPplAutocompleteData.Parser, diff --git a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 index 944e6309f7a0..a23c6975454e 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 +++ b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 @@ -54,7 +54,7 @@ commands searchCommand : (SEARCH)? fromClause # searchFrom | (SEARCH)? fromClause logicalExpression # searchFromFilter - | (SEARCH)? logicalExpression fromClause # searchFilterFrom + // | (SEARCH)? logicalExpression fromClause # searchFilterFrom ; describeCommand @@ -168,8 +168,8 @@ mlArg fromClause : SOURCE EQUAL tableSourceClause | INDEX EQUAL tableSourceClause - | SOURCE EQUAL tableFunction - | INDEX EQUAL tableFunction + // | SOURCE EQUAL tableFunction + // | INDEX EQUAL tableFunction ; tableSourceClause diff --git a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts index db1cb320035d..5883b32e08df 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts @@ -11,6 +11,7 @@ import { CursorPosition, OpenSearchPplAutocompleteResult, ProcessVisitedRulesResult, + SourceOrTableSuggestion, } from '../shared/types'; import { OpenSearchPPLLexer } from './.generated/OpenSearchPPLLexer'; import { OpenSearchPPLParser } from './.generated/OpenSearchPPLParser'; @@ -84,6 +85,9 @@ export function processVisitedRules( shouldSuggestColumns = true; break; } + case OpenSearchPPLParser.RULE_tableQualifiedName: { + suggestSourcesOrTables = SourceOrTableSuggestion.TABLES; + } } } diff --git a/src/plugins/data/public/antlr/shared/constants.ts b/src/plugins/data/public/antlr/shared/constants.ts index 16fe97b737a0..63d9a3a3451b 100644 --- a/src/plugins/data/public/antlr/shared/constants.ts +++ b/src/plugins/data/public/antlr/shared/constants.ts @@ -9,5 +9,6 @@ export const enum SuggestionItemDetailsTags { AggregateFunction = 'Aggregate Function', Value = 'Value', Operator = 'Operator', + Table = 'Table', } export const quotesRegex = /^'(.*)'$/; From 253c41b73fcef4489d3eb8276b793c20ad53ce4b Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 14:00:17 -0700 Subject: [PATCH 03/10] stop suggestion search from filter Signed-off-by: Paul Sebastian --- .../.generated/OpenSearchPPLParser.interp | 2 +- .../.generated/OpenSearchPPLParser.ts | 2352 ++++++++--------- .../.generated/OpenSearchPPLParserVisitor.ts | 8 - .../grammar/OpenSearchPPLParser.g4 | 2 +- 4 files changed, 1151 insertions(+), 1213 deletions(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp index 2105928d0be5..efd9b32492b0 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp @@ -794,4 +794,4 @@ keywordsCanBeId atn: -[4, 1, 336, 1148, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 3, 6, 274, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 279, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 292, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 300, 8, 11, 10, 11, 12, 11, 303, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 309, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 314, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 319, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 324, 8, 12, 10, 12, 12, 12, 327, 9, 12, 1, 12, 3, 12, 330, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 335, 8, 12, 1, 13, 1, 13, 3, 13, 339, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 345, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 350, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 359, 8, 15, 10, 15, 12, 15, 362, 9, 15, 1, 16, 1, 16, 3, 16, 366, 8, 16, 1, 16, 1, 16, 3, 16, 370, 8, 16, 1, 17, 1, 17, 3, 17, 374, 8, 17, 1, 17, 1, 17, 3, 17, 378, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 383, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 395, 8, 21, 10, 21, 12, 21, 398, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 408, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 414, 8, 24, 10, 24, 12, 24, 417, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 428, 8, 25, 1, 26, 1, 26, 5, 26, 432, 8, 26, 10, 26, 12, 26, 435, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 473, 8, 27, 1, 28, 1, 28, 5, 28, 477, 8, 28, 10, 28, 12, 28, 480, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 492, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 497, 8, 31, 10, 31, 12, 31, 500, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 518, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 523, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 531, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 538, 8, 37, 10, 37, 12, 37, 541, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 550, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 567, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 576, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 591, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 599, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 606, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 612, 8, 45, 10, 45, 12, 45, 615, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 625, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 637, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 645, 8, 47, 10, 47, 12, 47, 648, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 654, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 667, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 676, 8, 52, 10, 52, 12, 52, 679, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 689, 8, 53, 10, 53, 12, 53, 692, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 699, 8, 53, 10, 53, 12, 53, 702, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 708, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 718, 8, 56, 10, 56, 12, 56, 721, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 726, 8, 57, 10, 57, 12, 57, 729, 9, 57, 1, 58, 3, 58, 732, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 757, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 790, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 798, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 803, 8, 67, 10, 67, 12, 67, 806, 9, 67, 3, 67, 808, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 813, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 831, 8, 71, 1, 72, 1, 72, 3, 72, 835, 8, 72, 1, 73, 1, 73, 3, 73, 839, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 845, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 870, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 898, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 931, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 940, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 945, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 954, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 973, 8, 106, 10, 106, 12, 106, 976, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 983, 8, 107, 10, 107, 12, 107, 986, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 991, 8, 108, 10, 108, 12, 108, 994, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 999, 8, 109, 10, 109, 12, 109, 1002, 9, 109, 1, 110, 3, 110, 1005, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1014, 8, 110, 1, 111, 3, 111, 1017, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1024, 8, 112, 10, 112, 12, 112, 1027, 9, 112, 1, 112, 3, 112, 1030, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1044, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1146, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1302, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 278, 1, 0, 0, 0, 14, 280, 1, 0, 0, 0, 16, 283, 1, 0, 0, 0, 18, 286, 1, 0, 0, 0, 20, 289, 1, 0, 0, 0, 22, 295, 1, 0, 0, 0, 24, 304, 1, 0, 0, 0, 26, 336, 1, 0, 0, 0, 28, 351, 1, 0, 0, 0, 30, 354, 1, 0, 0, 0, 32, 363, 1, 0, 0, 0, 34, 371, 1, 0, 0, 0, 36, 379, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 388, 1, 0, 0, 0, 42, 392, 1, 0, 0, 0, 44, 407, 1, 0, 0, 0, 46, 409, 1, 0, 0, 0, 48, 411, 1, 0, 0, 0, 50, 427, 1, 0, 0, 0, 52, 429, 1, 0, 0, 0, 54, 472, 1, 0, 0, 0, 56, 474, 1, 0, 0, 0, 58, 481, 1, 0, 0, 0, 60, 491, 1, 0, 0, 0, 62, 493, 1, 0, 0, 0, 64, 501, 1, 0, 0, 0, 66, 505, 1, 0, 0, 0, 68, 517, 1, 0, 0, 0, 70, 519, 1, 0, 0, 0, 72, 524, 1, 0, 0, 0, 74, 534, 1, 0, 0, 0, 76, 542, 1, 0, 0, 0, 78, 546, 1, 0, 0, 0, 80, 566, 1, 0, 0, 0, 82, 568, 1, 0, 0, 0, 84, 570, 1, 0, 0, 0, 86, 579, 1, 0, 0, 0, 88, 590, 1, 0, 0, 0, 90, 598, 1, 0, 0, 0, 92, 624, 1, 0, 0, 0, 94, 636, 1, 0, 0, 0, 96, 653, 1, 0, 0, 0, 98, 655, 1, 0, 0, 0, 100, 662, 1, 0, 0, 0, 102, 666, 1, 0, 0, 0, 104, 668, 1, 0, 0, 0, 106, 682, 1, 0, 0, 0, 108, 707, 1, 0, 0, 0, 110, 709, 1, 0, 0, 0, 112, 714, 1, 0, 0, 0, 114, 722, 1, 0, 0, 0, 116, 731, 1, 0, 0, 0, 118, 756, 1, 0, 0, 0, 120, 758, 1, 0, 0, 0, 122, 760, 1, 0, 0, 0, 124, 762, 1, 0, 0, 0, 126, 767, 1, 0, 0, 0, 128, 774, 1, 0, 0, 0, 130, 789, 1, 0, 0, 0, 132, 797, 1, 0, 0, 0, 134, 807, 1, 0, 0, 0, 136, 812, 1, 0, 0, 0, 138, 816, 1, 0, 0, 0, 140, 820, 1, 0, 0, 0, 142, 830, 1, 0, 0, 0, 144, 834, 1, 0, 0, 0, 146, 838, 1, 0, 0, 0, 148, 840, 1, 0, 0, 0, 150, 844, 1, 0, 0, 0, 152, 869, 1, 0, 0, 0, 154, 871, 1, 0, 0, 0, 156, 873, 1, 0, 0, 0, 158, 875, 1, 0, 0, 0, 160, 882, 1, 0, 0, 0, 162, 884, 1, 0, 0, 0, 164, 891, 1, 0, 0, 0, 166, 893, 1, 0, 0, 0, 168, 897, 1, 0, 0, 0, 170, 899, 1, 0, 0, 0, 172, 908, 1, 0, 0, 0, 174, 910, 1, 0, 0, 0, 176, 912, 1, 0, 0, 0, 178, 914, 1, 0, 0, 0, 180, 916, 1, 0, 0, 0, 182, 918, 1, 0, 0, 0, 184, 920, 1, 0, 0, 0, 186, 922, 1, 0, 0, 0, 188, 930, 1, 0, 0, 0, 190, 932, 1, 0, 0, 0, 192, 936, 1, 0, 0, 0, 194, 939, 1, 0, 0, 0, 196, 944, 1, 0, 0, 0, 198, 948, 1, 0, 0, 0, 200, 953, 1, 0, 0, 0, 202, 955, 1, 0, 0, 0, 204, 958, 1, 0, 0, 0, 206, 961, 1, 0, 0, 0, 208, 964, 1, 0, 0, 0, 210, 966, 1, 0, 0, 0, 212, 968, 1, 0, 0, 0, 214, 979, 1, 0, 0, 0, 216, 987, 1, 0, 0, 0, 218, 995, 1, 0, 0, 0, 220, 1013, 1, 0, 0, 0, 222, 1016, 1, 0, 0, 0, 224, 1043, 1, 0, 0, 0, 226, 1145, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 279, 3, 60, 30, 0, 272, 274, 5, 2, 0, 0, 273, 272, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 276, 3, 60, 30, 0, 276, 277, 3, 90, 45, 0, 277, 279, 1, 0, 0, 0, 278, 269, 1, 0, 0, 0, 278, 273, 1, 0, 0, 0, 279, 13, 1, 0, 0, 0, 280, 281, 5, 3, 0, 0, 281, 282, 3, 62, 31, 0, 282, 15, 1, 0, 0, 0, 283, 284, 5, 4, 0, 0, 284, 285, 5, 33, 0, 0, 285, 17, 1, 0, 0, 0, 286, 287, 5, 6, 0, 0, 287, 288, 3, 90, 45, 0, 288, 19, 1, 0, 0, 0, 289, 291, 5, 7, 0, 0, 290, 292, 7, 0, 0, 0, 291, 290, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 294, 3, 112, 56, 0, 294, 21, 1, 0, 0, 0, 295, 296, 5, 8, 0, 0, 296, 301, 3, 64, 32, 0, 297, 298, 5, 110, 0, 0, 298, 300, 3, 64, 32, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 23, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 308, 5, 9, 0, 0, 305, 306, 5, 42, 0, 0, 306, 307, 5, 112, 0, 0, 307, 309, 3, 194, 97, 0, 308, 305, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 313, 1, 0, 0, 0, 310, 311, 5, 43, 0, 0, 311, 312, 5, 112, 0, 0, 312, 314, 3, 198, 99, 0, 313, 310, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 318, 1, 0, 0, 0, 315, 316, 5, 44, 0, 0, 316, 317, 5, 112, 0, 0, 317, 319, 3, 192, 96, 0, 318, 315, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 325, 3, 78, 39, 0, 321, 322, 5, 110, 0, 0, 322, 324, 3, 78, 39, 0, 323, 321, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 329, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 330, 3, 68, 34, 0, 329, 328, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 334, 1, 0, 0, 0, 331, 332, 5, 41, 0, 0, 332, 333, 5, 112, 0, 0, 333, 335, 3, 198, 99, 0, 334, 331, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 25, 1, 0, 0, 0, 336, 338, 5, 10, 0, 0, 337, 339, 3, 194, 97, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 344, 3, 112, 56, 0, 341, 342, 5, 39, 0, 0, 342, 343, 5, 112, 0, 0, 343, 345, 3, 198, 99, 0, 344, 341, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 349, 1, 0, 0, 0, 346, 347, 5, 40, 0, 0, 347, 348, 5, 112, 0, 0, 348, 350, 3, 198, 99, 0, 349, 346, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 27, 1, 0, 0, 0, 351, 352, 5, 11, 0, 0, 352, 353, 3, 74, 37, 0, 353, 29, 1, 0, 0, 0, 354, 355, 5, 12, 0, 0, 355, 360, 3, 76, 38, 0, 356, 357, 5, 110, 0, 0, 357, 359, 3, 76, 38, 0, 358, 356, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 31, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 363, 365, 5, 13, 0, 0, 364, 366, 3, 194, 97, 0, 365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 368, 5, 5, 0, 0, 368, 370, 3, 194, 97, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 33, 1, 0, 0, 0, 371, 373, 5, 14, 0, 0, 372, 374, 3, 194, 97, 0, 373, 372, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 377, 3, 112, 56, 0, 376, 378, 3, 66, 33, 0, 377, 376, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 35, 1, 0, 0, 0, 379, 380, 5, 15, 0, 0, 380, 382, 3, 112, 56, 0, 381, 383, 3, 66, 33, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 37, 1, 0, 0, 0, 384, 385, 5, 20, 0, 0, 385, 386, 3, 88, 44, 0, 386, 387, 3, 192, 96, 0, 387, 39, 1, 0, 0, 0, 388, 389, 5, 16, 0, 0, 389, 390, 3, 88, 44, 0, 390, 391, 3, 192, 96, 0, 391, 41, 1, 0, 0, 0, 392, 396, 5, 22, 0, 0, 393, 395, 3, 44, 22, 0, 394, 393, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 399, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 400, 3, 88, 44, 0, 400, 43, 1, 0, 0, 0, 401, 402, 5, 23, 0, 0, 402, 403, 5, 112, 0, 0, 403, 408, 3, 192, 96, 0, 404, 405, 5, 21, 0, 0, 405, 406, 5, 112, 0, 0, 406, 408, 3, 192, 96, 0, 407, 401, 1, 0, 0, 0, 407, 404, 1, 0, 0, 0, 408, 45, 1, 0, 0, 0, 409, 410, 7, 1, 0, 0, 410, 47, 1, 0, 0, 0, 411, 415, 5, 24, 0, 0, 412, 414, 3, 50, 25, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 49, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 45, 0, 0, 419, 420, 5, 112, 0, 0, 420, 428, 3, 194, 97, 0, 421, 422, 5, 46, 0, 0, 422, 423, 5, 112, 0, 0, 423, 428, 3, 194, 97, 0, 424, 425, 5, 47, 0, 0, 425, 426, 5, 112, 0, 0, 426, 428, 3, 192, 96, 0, 427, 418, 1, 0, 0, 0, 427, 421, 1, 0, 0, 0, 427, 424, 1, 0, 0, 0, 428, 51, 1, 0, 0, 0, 429, 433, 5, 25, 0, 0, 430, 432, 3, 54, 27, 0, 431, 430, 1, 0, 0, 0, 432, 435, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 53, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 436, 437, 5, 48, 0, 0, 437, 438, 5, 112, 0, 0, 438, 473, 3, 194, 97, 0, 439, 440, 5, 49, 0, 0, 440, 441, 5, 112, 0, 0, 441, 473, 3, 194, 97, 0, 442, 443, 5, 50, 0, 0, 443, 444, 5, 112, 0, 0, 444, 473, 3, 194, 97, 0, 445, 446, 5, 51, 0, 0, 446, 447, 5, 112, 0, 0, 447, 473, 3, 194, 97, 0, 448, 449, 5, 52, 0, 0, 449, 450, 5, 112, 0, 0, 450, 473, 3, 196, 98, 0, 451, 452, 5, 53, 0, 0, 452, 453, 5, 112, 0, 0, 453, 473, 3, 196, 98, 0, 454, 455, 5, 54, 0, 0, 455, 456, 5, 112, 0, 0, 456, 473, 3, 192, 96, 0, 457, 458, 5, 55, 0, 0, 458, 459, 5, 112, 0, 0, 459, 473, 3, 192, 96, 0, 460, 461, 5, 215, 0, 0, 461, 462, 5, 112, 0, 0, 462, 473, 3, 192, 96, 0, 463, 464, 5, 56, 0, 0, 464, 465, 5, 112, 0, 0, 465, 473, 3, 192, 96, 0, 466, 467, 5, 57, 0, 0, 467, 468, 5, 112, 0, 0, 468, 473, 3, 194, 97, 0, 469, 470, 5, 58, 0, 0, 470, 471, 5, 112, 0, 0, 471, 473, 3, 196, 98, 0, 472, 436, 1, 0, 0, 0, 472, 439, 1, 0, 0, 0, 472, 442, 1, 0, 0, 0, 472, 445, 1, 0, 0, 0, 472, 448, 1, 0, 0, 0, 472, 451, 1, 0, 0, 0, 472, 454, 1, 0, 0, 0, 472, 457, 1, 0, 0, 0, 472, 460, 1, 0, 0, 0, 472, 463, 1, 0, 0, 0, 472, 466, 1, 0, 0, 0, 472, 469, 1, 0, 0, 0, 473, 55, 1, 0, 0, 0, 474, 478, 5, 26, 0, 0, 475, 477, 3, 58, 29, 0, 476, 475, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 57, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 482, 3, 220, 110, 0, 482, 483, 5, 112, 0, 0, 483, 484, 3, 188, 94, 0, 484, 59, 1, 0, 0, 0, 485, 486, 5, 29, 0, 0, 486, 487, 5, 112, 0, 0, 487, 492, 3, 62, 31, 0, 488, 489, 5, 30, 0, 0, 489, 490, 5, 112, 0, 0, 490, 492, 3, 62, 31, 0, 491, 485, 1, 0, 0, 0, 491, 488, 1, 0, 0, 0, 492, 61, 1, 0, 0, 0, 493, 498, 3, 108, 54, 0, 494, 495, 5, 110, 0, 0, 495, 497, 3, 108, 54, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 63, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 502, 3, 122, 61, 0, 502, 503, 5, 27, 0, 0, 503, 504, 3, 122, 61, 0, 504, 65, 1, 0, 0, 0, 505, 506, 5, 28, 0, 0, 506, 507, 3, 112, 56, 0, 507, 67, 1, 0, 0, 0, 508, 509, 5, 28, 0, 0, 509, 518, 3, 112, 56, 0, 510, 511, 5, 28, 0, 0, 511, 518, 3, 70, 35, 0, 512, 513, 5, 28, 0, 0, 513, 514, 3, 70, 35, 0, 514, 515, 5, 110, 0, 0, 515, 516, 3, 112, 56, 0, 516, 518, 1, 0, 0, 0, 517, 508, 1, 0, 0, 0, 517, 510, 1, 0, 0, 0, 517, 512, 1, 0, 0, 0, 518, 69, 1, 0, 0, 0, 519, 522, 3, 72, 36, 0, 520, 521, 5, 27, 0, 0, 521, 523, 3, 214, 107, 0, 522, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 71, 1, 0, 0, 0, 524, 525, 5, 320, 0, 0, 525, 526, 5, 125, 0, 0, 526, 527, 3, 120, 60, 0, 527, 528, 5, 110, 0, 0, 528, 530, 3, 188, 94, 0, 529, 531, 3, 210, 105, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 126, 0, 0, 533, 73, 1, 0, 0, 0, 534, 539, 3, 116, 58, 0, 535, 536, 5, 110, 0, 0, 536, 538, 3, 116, 58, 0, 537, 535, 1, 0, 0, 0, 538, 541, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 75, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 542, 543, 3, 120, 60, 0, 543, 544, 5, 112, 0, 0, 544, 545, 3, 88, 44, 0, 545, 77, 1, 0, 0, 0, 546, 549, 3, 80, 40, 0, 547, 548, 5, 27, 0, 0, 548, 550, 3, 122, 61, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 79, 1, 0, 0, 0, 551, 552, 3, 82, 41, 0, 552, 553, 5, 125, 0, 0, 553, 554, 3, 94, 47, 0, 554, 555, 5, 126, 0, 0, 555, 567, 1, 0, 0, 0, 556, 557, 5, 136, 0, 0, 557, 558, 5, 125, 0, 0, 558, 567, 5, 126, 0, 0, 559, 560, 7, 2, 0, 0, 560, 561, 5, 125, 0, 0, 561, 562, 3, 94, 47, 0, 562, 563, 5, 126, 0, 0, 563, 567, 1, 0, 0, 0, 564, 567, 3, 86, 43, 0, 565, 567, 3, 84, 42, 0, 566, 551, 1, 0, 0, 0, 566, 556, 1, 0, 0, 0, 566, 559, 1, 0, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 81, 1, 0, 0, 0, 568, 569, 7, 3, 0, 0, 569, 83, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 125, 0, 0, 572, 575, 3, 120, 60, 0, 573, 574, 5, 110, 0, 0, 574, 576, 3, 194, 97, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 126, 0, 0, 578, 85, 1, 0, 0, 0, 579, 580, 5, 154, 0, 0, 580, 581, 5, 114, 0, 0, 581, 582, 3, 194, 97, 0, 582, 583, 5, 113, 0, 0, 583, 584, 5, 125, 0, 0, 584, 585, 3, 120, 60, 0, 585, 586, 5, 126, 0, 0, 586, 87, 1, 0, 0, 0, 587, 591, 3, 90, 45, 0, 588, 591, 3, 92, 46, 0, 589, 591, 3, 94, 47, 0, 590, 587, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 589, 1, 0, 0, 0, 591, 89, 1, 0, 0, 0, 592, 593, 6, 45, -1, 0, 593, 599, 3, 92, 46, 0, 594, 595, 5, 61, 0, 0, 595, 599, 3, 90, 45, 6, 596, 599, 3, 100, 50, 0, 597, 599, 3, 102, 51, 0, 598, 592, 1, 0, 0, 0, 598, 594, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 598, 597, 1, 0, 0, 0, 599, 613, 1, 0, 0, 0, 600, 601, 10, 5, 0, 0, 601, 602, 5, 62, 0, 0, 602, 612, 3, 90, 45, 6, 603, 605, 10, 4, 0, 0, 604, 606, 5, 63, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 612, 3, 90, 45, 5, 608, 609, 10, 3, 0, 0, 609, 610, 5, 64, 0, 0, 610, 612, 3, 90, 45, 4, 611, 600, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 611, 608, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 91, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 3, 94, 47, 0, 617, 618, 3, 182, 91, 0, 618, 619, 3, 94, 47, 0, 619, 625, 1, 0, 0, 0, 620, 621, 3, 94, 47, 0, 621, 622, 5, 60, 0, 0, 622, 623, 3, 212, 106, 0, 623, 625, 1, 0, 0, 0, 624, 616, 1, 0, 0, 0, 624, 620, 1, 0, 0, 0, 625, 93, 1, 0, 0, 0, 626, 627, 6, 47, -1, 0, 627, 637, 3, 96, 48, 0, 628, 637, 3, 98, 49, 0, 629, 637, 3, 162, 81, 0, 630, 637, 3, 158, 79, 0, 631, 637, 3, 170, 85, 0, 632, 633, 5, 125, 0, 0, 633, 634, 3, 94, 47, 0, 634, 635, 5, 126, 0, 0, 635, 637, 1, 0, 0, 0, 636, 626, 1, 0, 0, 0, 636, 628, 1, 0, 0, 0, 636, 629, 1, 0, 0, 0, 636, 630, 1, 0, 0, 0, 636, 631, 1, 0, 0, 0, 636, 632, 1, 0, 0, 0, 637, 646, 1, 0, 0, 0, 638, 639, 10, 8, 0, 0, 639, 640, 7, 4, 0, 0, 640, 645, 3, 94, 47, 9, 641, 642, 10, 7, 0, 0, 642, 643, 7, 0, 0, 0, 643, 645, 3, 94, 47, 8, 644, 638, 1, 0, 0, 0, 644, 641, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 95, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 654, 3, 124, 62, 0, 650, 654, 3, 126, 63, 0, 651, 654, 3, 120, 60, 0, 652, 654, 3, 188, 94, 0, 653, 649, 1, 0, 0, 0, 653, 650, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, 0, 0, 654, 97, 1, 0, 0, 0, 655, 656, 3, 180, 90, 0, 656, 657, 5, 125, 0, 0, 657, 658, 3, 136, 68, 0, 658, 659, 5, 60, 0, 0, 659, 660, 3, 136, 68, 0, 660, 661, 5, 126, 0, 0, 661, 99, 1, 0, 0, 0, 662, 663, 3, 128, 64, 0, 663, 101, 1, 0, 0, 0, 664, 667, 3, 104, 52, 0, 665, 667, 3, 106, 53, 0, 666, 664, 1, 0, 0, 0, 666, 665, 1, 0, 0, 0, 667, 103, 1, 0, 0, 0, 668, 669, 3, 184, 92, 0, 669, 670, 5, 125, 0, 0, 670, 671, 3, 146, 73, 0, 671, 672, 5, 110, 0, 0, 672, 677, 3, 148, 74, 0, 673, 674, 5, 110, 0, 0, 674, 676, 3, 138, 69, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 5, 126, 0, 0, 681, 105, 1, 0, 0, 0, 682, 683, 3, 186, 93, 0, 683, 684, 5, 125, 0, 0, 684, 685, 5, 127, 0, 0, 685, 690, 3, 142, 71, 0, 686, 687, 5, 110, 0, 0, 687, 689, 3, 142, 71, 0, 688, 686, 1, 0, 0, 0, 689, 692, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 693, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 694, 5, 128, 0, 0, 694, 695, 5, 110, 0, 0, 695, 700, 3, 148, 74, 0, 696, 697, 5, 110, 0, 0, 697, 699, 3, 138, 69, 0, 698, 696, 1, 0, 0, 0, 699, 702, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 703, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 703, 704, 5, 126, 0, 0, 704, 107, 1, 0, 0, 0, 705, 708, 3, 216, 108, 0, 706, 708, 5, 332, 0, 0, 707, 705, 1, 0, 0, 0, 707, 706, 1, 0, 0, 0, 708, 109, 1, 0, 0, 0, 709, 710, 3, 214, 107, 0, 710, 711, 5, 125, 0, 0, 711, 712, 3, 134, 67, 0, 712, 713, 5, 126, 0, 0, 713, 111, 1, 0, 0, 0, 714, 719, 3, 120, 60, 0, 715, 716, 5, 110, 0, 0, 716, 718, 3, 120, 60, 0, 717, 715, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 113, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 727, 3, 122, 61, 0, 723, 724, 5, 110, 0, 0, 724, 726, 3, 122, 61, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 115, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 732, 7, 0, 0, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 3, 118, 59, 0, 734, 117, 1, 0, 0, 0, 735, 757, 3, 120, 60, 0, 736, 737, 5, 35, 0, 0, 737, 738, 5, 125, 0, 0, 738, 739, 3, 120, 60, 0, 739, 740, 5, 126, 0, 0, 740, 757, 1, 0, 0, 0, 741, 742, 5, 36, 0, 0, 742, 743, 5, 125, 0, 0, 743, 744, 3, 120, 60, 0, 744, 745, 5, 126, 0, 0, 745, 757, 1, 0, 0, 0, 746, 747, 5, 37, 0, 0, 747, 748, 5, 125, 0, 0, 748, 749, 3, 120, 60, 0, 749, 750, 5, 126, 0, 0, 750, 757, 1, 0, 0, 0, 751, 752, 5, 38, 0, 0, 752, 753, 5, 125, 0, 0, 753, 754, 3, 120, 60, 0, 754, 755, 5, 126, 0, 0, 755, 757, 1, 0, 0, 0, 756, 735, 1, 0, 0, 0, 756, 736, 1, 0, 0, 0, 756, 741, 1, 0, 0, 0, 756, 746, 1, 0, 0, 0, 756, 751, 1, 0, 0, 0, 757, 119, 1, 0, 0, 0, 758, 759, 3, 214, 107, 0, 759, 121, 1, 0, 0, 0, 760, 761, 3, 218, 109, 0, 761, 123, 1, 0, 0, 0, 762, 763, 3, 132, 66, 0, 763, 764, 5, 125, 0, 0, 764, 765, 3, 134, 67, 0, 765, 766, 5, 126, 0, 0, 766, 125, 1, 0, 0, 0, 767, 768, 5, 274, 0, 0, 768, 769, 5, 125, 0, 0, 769, 770, 3, 88, 44, 0, 770, 771, 5, 27, 0, 0, 771, 772, 3, 130, 65, 0, 772, 773, 5, 126, 0, 0, 773, 127, 1, 0, 0, 0, 774, 775, 3, 174, 87, 0, 775, 776, 5, 125, 0, 0, 776, 777, 3, 134, 67, 0, 777, 778, 5, 126, 0, 0, 778, 129, 1, 0, 0, 0, 779, 790, 5, 212, 0, 0, 780, 790, 5, 241, 0, 0, 781, 790, 5, 243, 0, 0, 782, 790, 5, 102, 0, 0, 783, 790, 5, 103, 0, 0, 784, 790, 5, 104, 0, 0, 785, 790, 5, 105, 0, 0, 786, 790, 5, 106, 0, 0, 787, 790, 5, 107, 0, 0, 788, 790, 5, 108, 0, 0, 789, 779, 1, 0, 0, 0, 789, 780, 1, 0, 0, 0, 789, 781, 1, 0, 0, 0, 789, 782, 1, 0, 0, 0, 789, 783, 1, 0, 0, 0, 789, 784, 1, 0, 0, 0, 789, 785, 1, 0, 0, 0, 789, 786, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 788, 1, 0, 0, 0, 790, 131, 1, 0, 0, 0, 791, 798, 3, 152, 76, 0, 792, 798, 3, 156, 78, 0, 793, 798, 3, 178, 89, 0, 794, 798, 3, 174, 87, 0, 795, 798, 3, 176, 88, 0, 796, 798, 3, 180, 90, 0, 797, 791, 1, 0, 0, 0, 797, 792, 1, 0, 0, 0, 797, 793, 1, 0, 0, 0, 797, 794, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 796, 1, 0, 0, 0, 798, 133, 1, 0, 0, 0, 799, 804, 3, 136, 68, 0, 800, 801, 5, 110, 0, 0, 801, 803, 3, 136, 68, 0, 802, 800, 1, 0, 0, 0, 803, 806, 1, 0, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 799, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 135, 1, 0, 0, 0, 809, 810, 3, 220, 110, 0, 810, 811, 5, 112, 0, 0, 811, 813, 1, 0, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 3, 94, 47, 0, 815, 137, 1, 0, 0, 0, 816, 817, 3, 140, 70, 0, 817, 818, 5, 112, 0, 0, 818, 819, 3, 150, 75, 0, 819, 139, 1, 0, 0, 0, 820, 821, 7, 5, 0, 0, 821, 141, 1, 0, 0, 0, 822, 831, 3, 146, 73, 0, 823, 824, 3, 146, 73, 0, 824, 825, 3, 144, 72, 0, 825, 831, 1, 0, 0, 0, 826, 827, 3, 146, 73, 0, 827, 828, 5, 134, 0, 0, 828, 829, 3, 144, 72, 0, 829, 831, 1, 0, 0, 0, 830, 822, 1, 0, 0, 0, 830, 823, 1, 0, 0, 0, 830, 826, 1, 0, 0, 0, 831, 143, 1, 0, 0, 0, 832, 835, 3, 194, 97, 0, 833, 835, 3, 196, 98, 0, 834, 832, 1, 0, 0, 0, 834, 833, 1, 0, 0, 0, 835, 145, 1, 0, 0, 0, 836, 839, 3, 214, 107, 0, 837, 839, 3, 192, 96, 0, 838, 836, 1, 0, 0, 0, 838, 837, 1, 0, 0, 0, 839, 147, 1, 0, 0, 0, 840, 841, 3, 150, 75, 0, 841, 149, 1, 0, 0, 0, 842, 845, 3, 214, 107, 0, 843, 845, 3, 188, 94, 0, 844, 842, 1, 0, 0, 0, 844, 843, 1, 0, 0, 0, 845, 151, 1, 0, 0, 0, 846, 870, 5, 172, 0, 0, 847, 870, 5, 173, 0, 0, 848, 870, 5, 174, 0, 0, 849, 870, 5, 175, 0, 0, 850, 870, 5, 176, 0, 0, 851, 870, 5, 177, 0, 0, 852, 870, 5, 178, 0, 0, 853, 870, 5, 179, 0, 0, 854, 870, 5, 180, 0, 0, 855, 870, 5, 181, 0, 0, 856, 870, 5, 182, 0, 0, 857, 870, 5, 183, 0, 0, 858, 870, 5, 184, 0, 0, 859, 870, 5, 185, 0, 0, 860, 870, 5, 186, 0, 0, 861, 870, 5, 188, 0, 0, 862, 870, 5, 189, 0, 0, 863, 870, 5, 190, 0, 0, 864, 870, 5, 191, 0, 0, 865, 870, 5, 192, 0, 0, 866, 870, 5, 193, 0, 0, 867, 870, 5, 194, 0, 0, 868, 870, 3, 154, 77, 0, 869, 846, 1, 0, 0, 0, 869, 847, 1, 0, 0, 0, 869, 848, 1, 0, 0, 0, 869, 849, 1, 0, 0, 0, 869, 850, 1, 0, 0, 0, 869, 851, 1, 0, 0, 0, 869, 852, 1, 0, 0, 0, 869, 853, 1, 0, 0, 0, 869, 854, 1, 0, 0, 0, 869, 855, 1, 0, 0, 0, 869, 856, 1, 0, 0, 0, 869, 857, 1, 0, 0, 0, 869, 858, 1, 0, 0, 0, 869, 859, 1, 0, 0, 0, 869, 860, 1, 0, 0, 0, 869, 861, 1, 0, 0, 0, 869, 862, 1, 0, 0, 0, 869, 863, 1, 0, 0, 0, 869, 864, 1, 0, 0, 0, 869, 865, 1, 0, 0, 0, 869, 866, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 870, 153, 1, 0, 0, 0, 871, 872, 7, 6, 0, 0, 872, 155, 1, 0, 0, 0, 873, 874, 7, 7, 0, 0, 874, 157, 1, 0, 0, 0, 875, 876, 5, 226, 0, 0, 876, 877, 5, 125, 0, 0, 877, 878, 3, 160, 80, 0, 878, 879, 5, 110, 0, 0, 879, 880, 3, 136, 68, 0, 880, 881, 5, 126, 0, 0, 881, 159, 1, 0, 0, 0, 882, 883, 7, 8, 0, 0, 883, 161, 1, 0, 0, 0, 884, 885, 5, 223, 0, 0, 885, 886, 5, 125, 0, 0, 886, 887, 3, 168, 84, 0, 887, 888, 5, 5, 0, 0, 888, 889, 3, 136, 68, 0, 889, 890, 5, 126, 0, 0, 890, 163, 1, 0, 0, 0, 891, 892, 7, 9, 0, 0, 892, 165, 1, 0, 0, 0, 893, 894, 7, 10, 0, 0, 894, 167, 1, 0, 0, 0, 895, 898, 3, 164, 82, 0, 896, 898, 3, 166, 83, 0, 897, 895, 1, 0, 0, 0, 897, 896, 1, 0, 0, 0, 898, 169, 1, 0, 0, 0, 899, 900, 3, 172, 86, 0, 900, 901, 5, 125, 0, 0, 901, 902, 3, 164, 82, 0, 902, 903, 5, 110, 0, 0, 903, 904, 3, 136, 68, 0, 904, 905, 5, 110, 0, 0, 905, 906, 3, 136, 68, 0, 906, 907, 5, 126, 0, 0, 907, 171, 1, 0, 0, 0, 908, 909, 7, 11, 0, 0, 909, 173, 1, 0, 0, 0, 910, 911, 7, 12, 0, 0, 911, 175, 1, 0, 0, 0, 912, 913, 5, 281, 0, 0, 913, 177, 1, 0, 0, 0, 914, 915, 7, 13, 0, 0, 915, 179, 1, 0, 0, 0, 916, 917, 5, 187, 0, 0, 917, 181, 1, 0, 0, 0, 918, 919, 7, 14, 0, 0, 919, 183, 1, 0, 0, 0, 920, 921, 7, 15, 0, 0, 921, 185, 1, 0, 0, 0, 922, 923, 7, 16, 0, 0, 923, 187, 1, 0, 0, 0, 924, 931, 3, 190, 95, 0, 925, 931, 3, 192, 96, 0, 926, 931, 3, 194, 97, 0, 927, 931, 3, 196, 98, 0, 928, 931, 3, 198, 99, 0, 929, 931, 3, 200, 100, 0, 930, 924, 1, 0, 0, 0, 930, 925, 1, 0, 0, 0, 930, 926, 1, 0, 0, 0, 930, 927, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 929, 1, 0, 0, 0, 931, 189, 1, 0, 0, 0, 932, 933, 5, 81, 0, 0, 933, 934, 3, 94, 47, 0, 934, 935, 3, 208, 104, 0, 935, 191, 1, 0, 0, 0, 936, 937, 7, 17, 0, 0, 937, 193, 1, 0, 0, 0, 938, 940, 7, 0, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 5, 330, 0, 0, 942, 195, 1, 0, 0, 0, 943, 945, 7, 0, 0, 0, 944, 943, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 5, 331, 0, 0, 947, 197, 1, 0, 0, 0, 948, 949, 7, 18, 0, 0, 949, 199, 1, 0, 0, 0, 950, 954, 3, 202, 101, 0, 951, 954, 3, 204, 102, 0, 952, 954, 3, 206, 103, 0, 953, 950, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 953, 952, 1, 0, 0, 0, 954, 201, 1, 0, 0, 0, 955, 956, 5, 212, 0, 0, 956, 957, 3, 192, 96, 0, 957, 203, 1, 0, 0, 0, 958, 959, 5, 241, 0, 0, 959, 960, 3, 192, 96, 0, 960, 205, 1, 0, 0, 0, 961, 962, 5, 243, 0, 0, 962, 963, 3, 192, 96, 0, 963, 207, 1, 0, 0, 0, 964, 965, 7, 19, 0, 0, 965, 209, 1, 0, 0, 0, 966, 967, 7, 20, 0, 0, 967, 211, 1, 0, 0, 0, 968, 969, 5, 125, 0, 0, 969, 974, 3, 188, 94, 0, 970, 971, 5, 110, 0, 0, 971, 973, 3, 188, 94, 0, 972, 970, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 977, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 126, 0, 0, 978, 213, 1, 0, 0, 0, 979, 984, 3, 220, 110, 0, 980, 981, 5, 111, 0, 0, 981, 983, 3, 220, 110, 0, 982, 980, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 215, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 987, 992, 3, 222, 111, 0, 988, 989, 5, 111, 0, 0, 989, 991, 3, 220, 110, 0, 990, 988, 1, 0, 0, 0, 991, 994, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 217, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 995, 1000, 3, 224, 112, 0, 996, 997, 5, 111, 0, 0, 997, 999, 3, 224, 112, 0, 998, 996, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 219, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 5, 111, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1014, 5, 328, 0, 0, 1007, 1008, 5, 131, 0, 0, 1008, 1009, 3, 220, 110, 0, 1009, 1010, 5, 131, 0, 0, 1010, 1014, 1, 0, 0, 0, 1011, 1014, 5, 335, 0, 0, 1012, 1014, 3, 226, 113, 0, 1013, 1004, 1, 0, 0, 0, 1013, 1007, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1012, 1, 0, 0, 0, 1014, 221, 1, 0, 0, 0, 1015, 1017, 5, 329, 0, 0, 1016, 1015, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 3, 220, 110, 0, 1019, 223, 1, 0, 0, 0, 1020, 1025, 3, 220, 110, 0, 1021, 1022, 5, 122, 0, 0, 1022, 1024, 3, 220, 110, 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, 1029, 1, 0, 0, 0, 1027, 1025, 1, 0, 0, 0, 1028, 1030, 5, 122, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1044, 1, 0, 0, 0, 1031, 1032, 5, 129, 0, 0, 1032, 1033, 3, 224, 112, 0, 1033, 1034, 5, 129, 0, 0, 1034, 1044, 1, 0, 0, 0, 1035, 1036, 5, 130, 0, 0, 1036, 1037, 3, 224, 112, 0, 1037, 1038, 5, 130, 0, 0, 1038, 1044, 1, 0, 0, 0, 1039, 1040, 5, 131, 0, 0, 1040, 1041, 3, 224, 112, 0, 1041, 1042, 5, 131, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 1020, 1, 0, 0, 0, 1043, 1031, 1, 0, 0, 0, 1043, 1035, 1, 0, 0, 0, 1043, 1039, 1, 0, 0, 0, 1044, 225, 1, 0, 0, 0, 1045, 1146, 5, 31, 0, 0, 1046, 1146, 3, 210, 105, 0, 1047, 1146, 5, 320, 0, 0, 1048, 1146, 3, 132, 66, 0, 1049, 1146, 3, 140, 70, 0, 1050, 1146, 3, 208, 104, 0, 1051, 1146, 3, 156, 78, 0, 1052, 1146, 3, 178, 89, 0, 1053, 1146, 3, 152, 76, 0, 1054, 1146, 3, 180, 90, 0, 1055, 1146, 5, 2, 0, 0, 1056, 1146, 5, 3, 0, 0, 1057, 1146, 5, 4, 0, 0, 1058, 1146, 5, 5, 0, 0, 1059, 1146, 5, 6, 0, 0, 1060, 1146, 5, 7, 0, 0, 1061, 1146, 5, 8, 0, 0, 1062, 1146, 5, 9, 0, 0, 1063, 1146, 5, 10, 0, 0, 1064, 1146, 5, 11, 0, 0, 1065, 1146, 5, 12, 0, 0, 1066, 1146, 5, 13, 0, 0, 1067, 1146, 5, 14, 0, 0, 1068, 1146, 5, 15, 0, 0, 1069, 1146, 5, 16, 0, 0, 1070, 1146, 5, 17, 0, 0, 1071, 1146, 5, 18, 0, 0, 1072, 1146, 5, 19, 0, 0, 1073, 1146, 5, 20, 0, 0, 1074, 1146, 5, 21, 0, 0, 1075, 1146, 5, 22, 0, 0, 1076, 1146, 5, 23, 0, 0, 1077, 1146, 5, 24, 0, 0, 1078, 1146, 5, 25, 0, 0, 1079, 1146, 5, 26, 0, 0, 1080, 1146, 5, 29, 0, 0, 1081, 1146, 5, 30, 0, 0, 1082, 1146, 5, 32, 0, 0, 1083, 1146, 5, 33, 0, 0, 1084, 1146, 5, 34, 0, 0, 1085, 1146, 5, 36, 0, 0, 1086, 1146, 5, 37, 0, 0, 1087, 1146, 5, 38, 0, 0, 1088, 1146, 5, 39, 0, 0, 1089, 1146, 5, 40, 0, 0, 1090, 1146, 5, 41, 0, 0, 1091, 1146, 5, 42, 0, 0, 1092, 1146, 5, 43, 0, 0, 1093, 1146, 5, 44, 0, 0, 1094, 1146, 5, 45, 0, 0, 1095, 1146, 5, 46, 0, 0, 1096, 1146, 5, 47, 0, 0, 1097, 1146, 5, 48, 0, 0, 1098, 1146, 5, 49, 0, 0, 1099, 1146, 5, 50, 0, 0, 1100, 1146, 5, 51, 0, 0, 1101, 1146, 5, 52, 0, 0, 1102, 1146, 5, 53, 0, 0, 1103, 1146, 5, 54, 0, 0, 1104, 1146, 5, 55, 0, 0, 1105, 1146, 5, 56, 0, 0, 1106, 1146, 5, 57, 0, 0, 1107, 1146, 5, 58, 0, 0, 1108, 1146, 5, 135, 0, 0, 1109, 1146, 5, 136, 0, 0, 1110, 1146, 5, 137, 0, 0, 1111, 1146, 5, 138, 0, 0, 1112, 1146, 5, 139, 0, 0, 1113, 1146, 5, 140, 0, 0, 1114, 1146, 5, 141, 0, 0, 1115, 1146, 5, 142, 0, 0, 1116, 1146, 5, 143, 0, 0, 1117, 1146, 5, 144, 0, 0, 1118, 1146, 5, 145, 0, 0, 1119, 1146, 5, 146, 0, 0, 1120, 1146, 5, 147, 0, 0, 1121, 1146, 5, 148, 0, 0, 1122, 1146, 5, 149, 0, 0, 1123, 1146, 5, 150, 0, 0, 1124, 1146, 5, 151, 0, 0, 1125, 1146, 5, 152, 0, 0, 1126, 1146, 5, 153, 0, 0, 1127, 1146, 5, 154, 0, 0, 1128, 1146, 5, 155, 0, 0, 1129, 1146, 5, 156, 0, 0, 1130, 1146, 5, 157, 0, 0, 1131, 1146, 5, 158, 0, 0, 1132, 1146, 5, 159, 0, 0, 1133, 1146, 5, 160, 0, 0, 1134, 1146, 5, 161, 0, 0, 1135, 1146, 5, 162, 0, 0, 1136, 1146, 5, 163, 0, 0, 1137, 1146, 5, 164, 0, 0, 1138, 1146, 5, 165, 0, 0, 1139, 1146, 5, 166, 0, 0, 1140, 1146, 5, 167, 0, 0, 1141, 1146, 5, 168, 0, 0, 1142, 1146, 5, 169, 0, 0, 1143, 1146, 5, 170, 0, 0, 1144, 1146, 5, 171, 0, 0, 1145, 1045, 1, 0, 0, 0, 1145, 1046, 1, 0, 0, 0, 1145, 1047, 1, 0, 0, 0, 1145, 1048, 1, 0, 0, 0, 1145, 1049, 1, 0, 0, 0, 1145, 1050, 1, 0, 0, 0, 1145, 1051, 1, 0, 0, 0, 1145, 1052, 1, 0, 0, 0, 1145, 1053, 1, 0, 0, 0, 1145, 1054, 1, 0, 0, 0, 1145, 1055, 1, 0, 0, 0, 1145, 1056, 1, 0, 0, 0, 1145, 1057, 1, 0, 0, 0, 1145, 1058, 1, 0, 0, 0, 1145, 1059, 1, 0, 0, 0, 1145, 1060, 1, 0, 0, 0, 1145, 1061, 1, 0, 0, 0, 1145, 1062, 1, 0, 0, 0, 1145, 1063, 1, 0, 0, 0, 1145, 1064, 1, 0, 0, 0, 1145, 1065, 1, 0, 0, 0, 1145, 1066, 1, 0, 0, 0, 1145, 1067, 1, 0, 0, 0, 1145, 1068, 1, 0, 0, 0, 1145, 1069, 1, 0, 0, 0, 1145, 1070, 1, 0, 0, 0, 1145, 1071, 1, 0, 0, 0, 1145, 1072, 1, 0, 0, 0, 1145, 1073, 1, 0, 0, 0, 1145, 1074, 1, 0, 0, 0, 1145, 1075, 1, 0, 0, 0, 1145, 1076, 1, 0, 0, 0, 1145, 1077, 1, 0, 0, 0, 1145, 1078, 1, 0, 0, 0, 1145, 1079, 1, 0, 0, 0, 1145, 1080, 1, 0, 0, 0, 1145, 1081, 1, 0, 0, 0, 1145, 1082, 1, 0, 0, 0, 1145, 1083, 1, 0, 0, 0, 1145, 1084, 1, 0, 0, 0, 1145, 1085, 1, 0, 0, 0, 1145, 1086, 1, 0, 0, 0, 1145, 1087, 1, 0, 0, 0, 1145, 1088, 1, 0, 0, 0, 1145, 1089, 1, 0, 0, 0, 1145, 1090, 1, 0, 0, 0, 1145, 1091, 1, 0, 0, 0, 1145, 1092, 1, 0, 0, 0, 1145, 1093, 1, 0, 0, 0, 1145, 1094, 1, 0, 0, 0, 1145, 1095, 1, 0, 0, 0, 1145, 1096, 1, 0, 0, 0, 1145, 1097, 1, 0, 0, 0, 1145, 1098, 1, 0, 0, 0, 1145, 1099, 1, 0, 0, 0, 1145, 1100, 1, 0, 0, 0, 1145, 1101, 1, 0, 0, 0, 1145, 1102, 1, 0, 0, 0, 1145, 1103, 1, 0, 0, 0, 1145, 1104, 1, 0, 0, 0, 1145, 1105, 1, 0, 0, 0, 1145, 1106, 1, 0, 0, 0, 1145, 1107, 1, 0, 0, 0, 1145, 1108, 1, 0, 0, 0, 1145, 1109, 1, 0, 0, 0, 1145, 1110, 1, 0, 0, 0, 1145, 1111, 1, 0, 0, 0, 1145, 1112, 1, 0, 0, 0, 1145, 1113, 1, 0, 0, 0, 1145, 1114, 1, 0, 0, 0, 1145, 1115, 1, 0, 0, 0, 1145, 1116, 1, 0, 0, 0, 1145, 1117, 1, 0, 0, 0, 1145, 1118, 1, 0, 0, 0, 1145, 1119, 1, 0, 0, 0, 1145, 1120, 1, 0, 0, 0, 1145, 1121, 1, 0, 0, 0, 1145, 1122, 1, 0, 0, 0, 1145, 1123, 1, 0, 0, 0, 1145, 1124, 1, 0, 0, 0, 1145, 1125, 1, 0, 0, 0, 1145, 1126, 1, 0, 0, 0, 1145, 1127, 1, 0, 0, 0, 1145, 1128, 1, 0, 0, 0, 1145, 1129, 1, 0, 0, 0, 1145, 1130, 1, 0, 0, 0, 1145, 1131, 1, 0, 0, 0, 1145, 1132, 1, 0, 0, 0, 1145, 1133, 1, 0, 0, 0, 1145, 1134, 1, 0, 0, 0, 1145, 1135, 1, 0, 0, 0, 1145, 1136, 1, 0, 0, 0, 1145, 1137, 1, 0, 0, 0, 1145, 1138, 1, 0, 0, 0, 1145, 1139, 1, 0, 0, 0, 1145, 1140, 1, 0, 0, 0, 1145, 1141, 1, 0, 0, 0, 1145, 1142, 1, 0, 0, 0, 1145, 1143, 1, 0, 0, 0, 1145, 1144, 1, 0, 0, 0, 1146, 227, 1, 0, 0, 0, 85, 229, 242, 248, 266, 269, 273, 278, 291, 301, 308, 313, 318, 325, 329, 334, 338, 344, 349, 360, 365, 369, 373, 377, 382, 396, 407, 415, 427, 433, 472, 478, 491, 498, 517, 522, 530, 539, 549, 566, 575, 590, 598, 605, 611, 613, 624, 636, 644, 646, 653, 666, 677, 690, 700, 707, 719, 727, 731, 756, 789, 797, 804, 807, 812, 830, 834, 838, 844, 869, 897, 930, 939, 944, 953, 974, 984, 992, 1000, 1004, 1013, 1016, 1025, 1029, 1043, 1145] \ No newline at end of file +[4, 1, 336, 1141, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 285, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 293, 8, 11, 10, 11, 12, 11, 296, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 302, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 307, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 312, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 317, 8, 12, 10, 12, 12, 12, 320, 9, 12, 1, 12, 3, 12, 323, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 328, 8, 12, 1, 13, 1, 13, 3, 13, 332, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 338, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 343, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 352, 8, 15, 10, 15, 12, 15, 355, 9, 15, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 3, 16, 363, 8, 16, 1, 17, 1, 17, 3, 17, 367, 8, 17, 1, 17, 1, 17, 3, 17, 371, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 376, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 388, 8, 21, 10, 21, 12, 21, 391, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 401, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 407, 8, 24, 10, 24, 12, 24, 410, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 421, 8, 25, 1, 26, 1, 26, 5, 26, 425, 8, 26, 10, 26, 12, 26, 428, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 466, 8, 27, 1, 28, 1, 28, 5, 28, 470, 8, 28, 10, 28, 12, 28, 473, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 485, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 490, 8, 31, 10, 31, 12, 31, 493, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 511, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 516, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 524, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 531, 8, 37, 10, 37, 12, 37, 534, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 560, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 569, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 584, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 592, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 599, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 605, 8, 45, 10, 45, 12, 45, 608, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 618, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 630, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 638, 8, 47, 10, 47, 12, 47, 641, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 647, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 660, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 669, 8, 52, 10, 52, 12, 52, 672, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 682, 8, 53, 10, 53, 12, 53, 685, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 692, 8, 53, 10, 53, 12, 53, 695, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 701, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 711, 8, 56, 10, 56, 12, 56, 714, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 719, 8, 57, 10, 57, 12, 57, 722, 9, 57, 1, 58, 3, 58, 725, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 750, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 783, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 791, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 796, 8, 67, 10, 67, 12, 67, 799, 9, 67, 3, 67, 801, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 806, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 824, 8, 71, 1, 72, 1, 72, 3, 72, 828, 8, 72, 1, 73, 1, 73, 3, 73, 832, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 838, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 863, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 891, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 924, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 933, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 938, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 947, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 966, 8, 106, 10, 106, 12, 106, 969, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 976, 8, 107, 10, 107, 12, 107, 979, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 984, 8, 108, 10, 108, 12, 108, 987, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 992, 8, 109, 10, 109, 12, 109, 995, 9, 109, 1, 110, 3, 110, 998, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1007, 8, 110, 1, 111, 3, 111, 1010, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1017, 8, 112, 10, 112, 12, 112, 1020, 9, 112, 1, 112, 3, 112, 1023, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1037, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1139, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1293, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 269, 1, 0, 0, 0, 14, 273, 1, 0, 0, 0, 16, 276, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 282, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 344, 1, 0, 0, 0, 30, 347, 1, 0, 0, 0, 32, 356, 1, 0, 0, 0, 34, 364, 1, 0, 0, 0, 36, 372, 1, 0, 0, 0, 38, 377, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 400, 1, 0, 0, 0, 46, 402, 1, 0, 0, 0, 48, 404, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 465, 1, 0, 0, 0, 56, 467, 1, 0, 0, 0, 58, 474, 1, 0, 0, 0, 60, 484, 1, 0, 0, 0, 62, 486, 1, 0, 0, 0, 64, 494, 1, 0, 0, 0, 66, 498, 1, 0, 0, 0, 68, 510, 1, 0, 0, 0, 70, 512, 1, 0, 0, 0, 72, 517, 1, 0, 0, 0, 74, 527, 1, 0, 0, 0, 76, 535, 1, 0, 0, 0, 78, 539, 1, 0, 0, 0, 80, 559, 1, 0, 0, 0, 82, 561, 1, 0, 0, 0, 84, 563, 1, 0, 0, 0, 86, 572, 1, 0, 0, 0, 88, 583, 1, 0, 0, 0, 90, 591, 1, 0, 0, 0, 92, 617, 1, 0, 0, 0, 94, 629, 1, 0, 0, 0, 96, 646, 1, 0, 0, 0, 98, 648, 1, 0, 0, 0, 100, 655, 1, 0, 0, 0, 102, 659, 1, 0, 0, 0, 104, 661, 1, 0, 0, 0, 106, 675, 1, 0, 0, 0, 108, 700, 1, 0, 0, 0, 110, 702, 1, 0, 0, 0, 112, 707, 1, 0, 0, 0, 114, 715, 1, 0, 0, 0, 116, 724, 1, 0, 0, 0, 118, 749, 1, 0, 0, 0, 120, 751, 1, 0, 0, 0, 122, 753, 1, 0, 0, 0, 124, 755, 1, 0, 0, 0, 126, 760, 1, 0, 0, 0, 128, 767, 1, 0, 0, 0, 130, 782, 1, 0, 0, 0, 132, 790, 1, 0, 0, 0, 134, 800, 1, 0, 0, 0, 136, 805, 1, 0, 0, 0, 138, 809, 1, 0, 0, 0, 140, 813, 1, 0, 0, 0, 142, 823, 1, 0, 0, 0, 144, 827, 1, 0, 0, 0, 146, 831, 1, 0, 0, 0, 148, 833, 1, 0, 0, 0, 150, 837, 1, 0, 0, 0, 152, 862, 1, 0, 0, 0, 154, 864, 1, 0, 0, 0, 156, 866, 1, 0, 0, 0, 158, 868, 1, 0, 0, 0, 160, 875, 1, 0, 0, 0, 162, 877, 1, 0, 0, 0, 164, 884, 1, 0, 0, 0, 166, 886, 1, 0, 0, 0, 168, 890, 1, 0, 0, 0, 170, 892, 1, 0, 0, 0, 172, 901, 1, 0, 0, 0, 174, 903, 1, 0, 0, 0, 176, 905, 1, 0, 0, 0, 178, 907, 1, 0, 0, 0, 180, 909, 1, 0, 0, 0, 182, 911, 1, 0, 0, 0, 184, 913, 1, 0, 0, 0, 186, 915, 1, 0, 0, 0, 188, 923, 1, 0, 0, 0, 190, 925, 1, 0, 0, 0, 192, 929, 1, 0, 0, 0, 194, 932, 1, 0, 0, 0, 196, 937, 1, 0, 0, 0, 198, 941, 1, 0, 0, 0, 200, 946, 1, 0, 0, 0, 202, 948, 1, 0, 0, 0, 204, 951, 1, 0, 0, 0, 206, 954, 1, 0, 0, 0, 208, 957, 1, 0, 0, 0, 210, 959, 1, 0, 0, 0, 212, 961, 1, 0, 0, 0, 214, 972, 1, 0, 0, 0, 216, 980, 1, 0, 0, 0, 218, 988, 1, 0, 0, 0, 220, 1006, 1, 0, 0, 0, 222, 1009, 1, 0, 0, 0, 224, 1036, 1, 0, 0, 0, 226, 1138, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 60, 30, 0, 272, 13, 1, 0, 0, 0, 273, 274, 5, 3, 0, 0, 274, 275, 3, 62, 31, 0, 275, 15, 1, 0, 0, 0, 276, 277, 5, 4, 0, 0, 277, 278, 5, 33, 0, 0, 278, 17, 1, 0, 0, 0, 279, 280, 5, 6, 0, 0, 280, 281, 3, 90, 45, 0, 281, 19, 1, 0, 0, 0, 282, 284, 5, 7, 0, 0, 283, 285, 7, 0, 0, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 3, 112, 56, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 8, 0, 0, 289, 294, 3, 64, 32, 0, 290, 291, 5, 110, 0, 0, 291, 293, 3, 64, 32, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 23, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 301, 5, 9, 0, 0, 298, 299, 5, 42, 0, 0, 299, 300, 5, 112, 0, 0, 300, 302, 3, 194, 97, 0, 301, 298, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 306, 1, 0, 0, 0, 303, 304, 5, 43, 0, 0, 304, 305, 5, 112, 0, 0, 305, 307, 3, 198, 99, 0, 306, 303, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 311, 1, 0, 0, 0, 308, 309, 5, 44, 0, 0, 309, 310, 5, 112, 0, 0, 310, 312, 3, 192, 96, 0, 311, 308, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 318, 3, 78, 39, 0, 314, 315, 5, 110, 0, 0, 315, 317, 3, 78, 39, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 68, 34, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 327, 1, 0, 0, 0, 324, 325, 5, 41, 0, 0, 325, 326, 5, 112, 0, 0, 326, 328, 3, 198, 99, 0, 327, 324, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 25, 1, 0, 0, 0, 329, 331, 5, 10, 0, 0, 330, 332, 3, 194, 97, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 3, 112, 56, 0, 334, 335, 5, 39, 0, 0, 335, 336, 5, 112, 0, 0, 336, 338, 3, 198, 99, 0, 337, 334, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 342, 1, 0, 0, 0, 339, 340, 5, 40, 0, 0, 340, 341, 5, 112, 0, 0, 341, 343, 3, 198, 99, 0, 342, 339, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 27, 1, 0, 0, 0, 344, 345, 5, 11, 0, 0, 345, 346, 3, 74, 37, 0, 346, 29, 1, 0, 0, 0, 347, 348, 5, 12, 0, 0, 348, 353, 3, 76, 38, 0, 349, 350, 5, 110, 0, 0, 350, 352, 3, 76, 38, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 31, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 358, 5, 13, 0, 0, 357, 359, 3, 194, 97, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 5, 0, 0, 361, 363, 3, 194, 97, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 33, 1, 0, 0, 0, 364, 366, 5, 14, 0, 0, 365, 367, 3, 194, 97, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 3, 112, 56, 0, 369, 371, 3, 66, 33, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 373, 5, 15, 0, 0, 373, 375, 3, 112, 56, 0, 374, 376, 3, 66, 33, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 37, 1, 0, 0, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 88, 44, 0, 379, 380, 3, 192, 96, 0, 380, 39, 1, 0, 0, 0, 381, 382, 5, 16, 0, 0, 382, 383, 3, 88, 44, 0, 383, 384, 3, 192, 96, 0, 384, 41, 1, 0, 0, 0, 385, 389, 5, 22, 0, 0, 386, 388, 3, 44, 22, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 88, 44, 0, 393, 43, 1, 0, 0, 0, 394, 395, 5, 23, 0, 0, 395, 396, 5, 112, 0, 0, 396, 401, 3, 192, 96, 0, 397, 398, 5, 21, 0, 0, 398, 399, 5, 112, 0, 0, 399, 401, 3, 192, 96, 0, 400, 394, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 401, 45, 1, 0, 0, 0, 402, 403, 7, 1, 0, 0, 403, 47, 1, 0, 0, 0, 404, 408, 5, 24, 0, 0, 405, 407, 3, 50, 25, 0, 406, 405, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 49, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 112, 0, 0, 413, 421, 3, 194, 97, 0, 414, 415, 5, 46, 0, 0, 415, 416, 5, 112, 0, 0, 416, 421, 3, 194, 97, 0, 417, 418, 5, 47, 0, 0, 418, 419, 5, 112, 0, 0, 419, 421, 3, 192, 96, 0, 420, 411, 1, 0, 0, 0, 420, 414, 1, 0, 0, 0, 420, 417, 1, 0, 0, 0, 421, 51, 1, 0, 0, 0, 422, 426, 5, 25, 0, 0, 423, 425, 3, 54, 27, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 53, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 48, 0, 0, 430, 431, 5, 112, 0, 0, 431, 466, 3, 194, 97, 0, 432, 433, 5, 49, 0, 0, 433, 434, 5, 112, 0, 0, 434, 466, 3, 194, 97, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 112, 0, 0, 437, 466, 3, 194, 97, 0, 438, 439, 5, 51, 0, 0, 439, 440, 5, 112, 0, 0, 440, 466, 3, 194, 97, 0, 441, 442, 5, 52, 0, 0, 442, 443, 5, 112, 0, 0, 443, 466, 3, 196, 98, 0, 444, 445, 5, 53, 0, 0, 445, 446, 5, 112, 0, 0, 446, 466, 3, 196, 98, 0, 447, 448, 5, 54, 0, 0, 448, 449, 5, 112, 0, 0, 449, 466, 3, 192, 96, 0, 450, 451, 5, 55, 0, 0, 451, 452, 5, 112, 0, 0, 452, 466, 3, 192, 96, 0, 453, 454, 5, 215, 0, 0, 454, 455, 5, 112, 0, 0, 455, 466, 3, 192, 96, 0, 456, 457, 5, 56, 0, 0, 457, 458, 5, 112, 0, 0, 458, 466, 3, 192, 96, 0, 459, 460, 5, 57, 0, 0, 460, 461, 5, 112, 0, 0, 461, 466, 3, 194, 97, 0, 462, 463, 5, 58, 0, 0, 463, 464, 5, 112, 0, 0, 464, 466, 3, 196, 98, 0, 465, 429, 1, 0, 0, 0, 465, 432, 1, 0, 0, 0, 465, 435, 1, 0, 0, 0, 465, 438, 1, 0, 0, 0, 465, 441, 1, 0, 0, 0, 465, 444, 1, 0, 0, 0, 465, 447, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 453, 1, 0, 0, 0, 465, 456, 1, 0, 0, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 466, 55, 1, 0, 0, 0, 467, 471, 5, 26, 0, 0, 468, 470, 3, 58, 29, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 57, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 475, 3, 220, 110, 0, 475, 476, 5, 112, 0, 0, 476, 477, 3, 188, 94, 0, 477, 59, 1, 0, 0, 0, 478, 479, 5, 29, 0, 0, 479, 480, 5, 112, 0, 0, 480, 485, 3, 62, 31, 0, 481, 482, 5, 30, 0, 0, 482, 483, 5, 112, 0, 0, 483, 485, 3, 62, 31, 0, 484, 478, 1, 0, 0, 0, 484, 481, 1, 0, 0, 0, 485, 61, 1, 0, 0, 0, 486, 491, 3, 108, 54, 0, 487, 488, 5, 110, 0, 0, 488, 490, 3, 108, 54, 0, 489, 487, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 63, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 495, 3, 122, 61, 0, 495, 496, 5, 27, 0, 0, 496, 497, 3, 122, 61, 0, 497, 65, 1, 0, 0, 0, 498, 499, 5, 28, 0, 0, 499, 500, 3, 112, 56, 0, 500, 67, 1, 0, 0, 0, 501, 502, 5, 28, 0, 0, 502, 511, 3, 112, 56, 0, 503, 504, 5, 28, 0, 0, 504, 511, 3, 70, 35, 0, 505, 506, 5, 28, 0, 0, 506, 507, 3, 70, 35, 0, 507, 508, 5, 110, 0, 0, 508, 509, 3, 112, 56, 0, 509, 511, 1, 0, 0, 0, 510, 501, 1, 0, 0, 0, 510, 503, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 511, 69, 1, 0, 0, 0, 512, 515, 3, 72, 36, 0, 513, 514, 5, 27, 0, 0, 514, 516, 3, 214, 107, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 71, 1, 0, 0, 0, 517, 518, 5, 320, 0, 0, 518, 519, 5, 125, 0, 0, 519, 520, 3, 120, 60, 0, 520, 521, 5, 110, 0, 0, 521, 523, 3, 188, 94, 0, 522, 524, 3, 210, 105, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 126, 0, 0, 526, 73, 1, 0, 0, 0, 527, 532, 3, 116, 58, 0, 528, 529, 5, 110, 0, 0, 529, 531, 3, 116, 58, 0, 530, 528, 1, 0, 0, 0, 531, 534, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 75, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 535, 536, 3, 120, 60, 0, 536, 537, 5, 112, 0, 0, 537, 538, 3, 88, 44, 0, 538, 77, 1, 0, 0, 0, 539, 542, 3, 80, 40, 0, 540, 541, 5, 27, 0, 0, 541, 543, 3, 122, 61, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 79, 1, 0, 0, 0, 544, 545, 3, 82, 41, 0, 545, 546, 5, 125, 0, 0, 546, 547, 3, 94, 47, 0, 547, 548, 5, 126, 0, 0, 548, 560, 1, 0, 0, 0, 549, 550, 5, 136, 0, 0, 550, 551, 5, 125, 0, 0, 551, 560, 5, 126, 0, 0, 552, 553, 7, 2, 0, 0, 553, 554, 5, 125, 0, 0, 554, 555, 3, 94, 47, 0, 555, 556, 5, 126, 0, 0, 556, 560, 1, 0, 0, 0, 557, 560, 3, 86, 43, 0, 558, 560, 3, 84, 42, 0, 559, 544, 1, 0, 0, 0, 559, 549, 1, 0, 0, 0, 559, 552, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 559, 558, 1, 0, 0, 0, 560, 81, 1, 0, 0, 0, 561, 562, 7, 3, 0, 0, 562, 83, 1, 0, 0, 0, 563, 564, 5, 155, 0, 0, 564, 565, 5, 125, 0, 0, 565, 568, 3, 120, 60, 0, 566, 567, 5, 110, 0, 0, 567, 569, 3, 194, 97, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 5, 126, 0, 0, 571, 85, 1, 0, 0, 0, 572, 573, 5, 154, 0, 0, 573, 574, 5, 114, 0, 0, 574, 575, 3, 194, 97, 0, 575, 576, 5, 113, 0, 0, 576, 577, 5, 125, 0, 0, 577, 578, 3, 120, 60, 0, 578, 579, 5, 126, 0, 0, 579, 87, 1, 0, 0, 0, 580, 584, 3, 90, 45, 0, 581, 584, 3, 92, 46, 0, 582, 584, 3, 94, 47, 0, 583, 580, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 583, 582, 1, 0, 0, 0, 584, 89, 1, 0, 0, 0, 585, 586, 6, 45, -1, 0, 586, 592, 3, 92, 46, 0, 587, 588, 5, 61, 0, 0, 588, 592, 3, 90, 45, 6, 589, 592, 3, 100, 50, 0, 590, 592, 3, 102, 51, 0, 591, 585, 1, 0, 0, 0, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 591, 590, 1, 0, 0, 0, 592, 606, 1, 0, 0, 0, 593, 594, 10, 5, 0, 0, 594, 595, 5, 62, 0, 0, 595, 605, 3, 90, 45, 6, 596, 598, 10, 4, 0, 0, 597, 599, 5, 63, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 605, 3, 90, 45, 5, 601, 602, 10, 3, 0, 0, 602, 603, 5, 64, 0, 0, 603, 605, 3, 90, 45, 4, 604, 593, 1, 0, 0, 0, 604, 596, 1, 0, 0, 0, 604, 601, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 91, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 610, 3, 94, 47, 0, 610, 611, 3, 182, 91, 0, 611, 612, 3, 94, 47, 0, 612, 618, 1, 0, 0, 0, 613, 614, 3, 94, 47, 0, 614, 615, 5, 60, 0, 0, 615, 616, 3, 212, 106, 0, 616, 618, 1, 0, 0, 0, 617, 609, 1, 0, 0, 0, 617, 613, 1, 0, 0, 0, 618, 93, 1, 0, 0, 0, 619, 620, 6, 47, -1, 0, 620, 630, 3, 96, 48, 0, 621, 630, 3, 98, 49, 0, 622, 630, 3, 162, 81, 0, 623, 630, 3, 158, 79, 0, 624, 630, 3, 170, 85, 0, 625, 626, 5, 125, 0, 0, 626, 627, 3, 94, 47, 0, 627, 628, 5, 126, 0, 0, 628, 630, 1, 0, 0, 0, 629, 619, 1, 0, 0, 0, 629, 621, 1, 0, 0, 0, 629, 622, 1, 0, 0, 0, 629, 623, 1, 0, 0, 0, 629, 624, 1, 0, 0, 0, 629, 625, 1, 0, 0, 0, 630, 639, 1, 0, 0, 0, 631, 632, 10, 8, 0, 0, 632, 633, 7, 4, 0, 0, 633, 638, 3, 94, 47, 9, 634, 635, 10, 7, 0, 0, 635, 636, 7, 0, 0, 0, 636, 638, 3, 94, 47, 8, 637, 631, 1, 0, 0, 0, 637, 634, 1, 0, 0, 0, 638, 641, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 95, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 642, 647, 3, 124, 62, 0, 643, 647, 3, 126, 63, 0, 644, 647, 3, 120, 60, 0, 645, 647, 3, 188, 94, 0, 646, 642, 1, 0, 0, 0, 646, 643, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 645, 1, 0, 0, 0, 647, 97, 1, 0, 0, 0, 648, 649, 3, 180, 90, 0, 649, 650, 5, 125, 0, 0, 650, 651, 3, 136, 68, 0, 651, 652, 5, 60, 0, 0, 652, 653, 3, 136, 68, 0, 653, 654, 5, 126, 0, 0, 654, 99, 1, 0, 0, 0, 655, 656, 3, 128, 64, 0, 656, 101, 1, 0, 0, 0, 657, 660, 3, 104, 52, 0, 658, 660, 3, 106, 53, 0, 659, 657, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 103, 1, 0, 0, 0, 661, 662, 3, 184, 92, 0, 662, 663, 5, 125, 0, 0, 663, 664, 3, 146, 73, 0, 664, 665, 5, 110, 0, 0, 665, 670, 3, 148, 74, 0, 666, 667, 5, 110, 0, 0, 667, 669, 3, 138, 69, 0, 668, 666, 1, 0, 0, 0, 669, 672, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 673, 674, 5, 126, 0, 0, 674, 105, 1, 0, 0, 0, 675, 676, 3, 186, 93, 0, 676, 677, 5, 125, 0, 0, 677, 678, 5, 127, 0, 0, 678, 683, 3, 142, 71, 0, 679, 680, 5, 110, 0, 0, 680, 682, 3, 142, 71, 0, 681, 679, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 128, 0, 0, 687, 688, 5, 110, 0, 0, 688, 693, 3, 148, 74, 0, 689, 690, 5, 110, 0, 0, 690, 692, 3, 138, 69, 0, 691, 689, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 696, 697, 5, 126, 0, 0, 697, 107, 1, 0, 0, 0, 698, 701, 3, 216, 108, 0, 699, 701, 5, 332, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 109, 1, 0, 0, 0, 702, 703, 3, 214, 107, 0, 703, 704, 5, 125, 0, 0, 704, 705, 3, 134, 67, 0, 705, 706, 5, 126, 0, 0, 706, 111, 1, 0, 0, 0, 707, 712, 3, 120, 60, 0, 708, 709, 5, 110, 0, 0, 709, 711, 3, 120, 60, 0, 710, 708, 1, 0, 0, 0, 711, 714, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 113, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 715, 720, 3, 122, 61, 0, 716, 717, 5, 110, 0, 0, 717, 719, 3, 122, 61, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 115, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 725, 7, 0, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 3, 118, 59, 0, 727, 117, 1, 0, 0, 0, 728, 750, 3, 120, 60, 0, 729, 730, 5, 35, 0, 0, 730, 731, 5, 125, 0, 0, 731, 732, 3, 120, 60, 0, 732, 733, 5, 126, 0, 0, 733, 750, 1, 0, 0, 0, 734, 735, 5, 36, 0, 0, 735, 736, 5, 125, 0, 0, 736, 737, 3, 120, 60, 0, 737, 738, 5, 126, 0, 0, 738, 750, 1, 0, 0, 0, 739, 740, 5, 37, 0, 0, 740, 741, 5, 125, 0, 0, 741, 742, 3, 120, 60, 0, 742, 743, 5, 126, 0, 0, 743, 750, 1, 0, 0, 0, 744, 745, 5, 38, 0, 0, 745, 746, 5, 125, 0, 0, 746, 747, 3, 120, 60, 0, 747, 748, 5, 126, 0, 0, 748, 750, 1, 0, 0, 0, 749, 728, 1, 0, 0, 0, 749, 729, 1, 0, 0, 0, 749, 734, 1, 0, 0, 0, 749, 739, 1, 0, 0, 0, 749, 744, 1, 0, 0, 0, 750, 119, 1, 0, 0, 0, 751, 752, 3, 214, 107, 0, 752, 121, 1, 0, 0, 0, 753, 754, 3, 218, 109, 0, 754, 123, 1, 0, 0, 0, 755, 756, 3, 132, 66, 0, 756, 757, 5, 125, 0, 0, 757, 758, 3, 134, 67, 0, 758, 759, 5, 126, 0, 0, 759, 125, 1, 0, 0, 0, 760, 761, 5, 274, 0, 0, 761, 762, 5, 125, 0, 0, 762, 763, 3, 88, 44, 0, 763, 764, 5, 27, 0, 0, 764, 765, 3, 130, 65, 0, 765, 766, 5, 126, 0, 0, 766, 127, 1, 0, 0, 0, 767, 768, 3, 174, 87, 0, 768, 769, 5, 125, 0, 0, 769, 770, 3, 134, 67, 0, 770, 771, 5, 126, 0, 0, 771, 129, 1, 0, 0, 0, 772, 783, 5, 212, 0, 0, 773, 783, 5, 241, 0, 0, 774, 783, 5, 243, 0, 0, 775, 783, 5, 102, 0, 0, 776, 783, 5, 103, 0, 0, 777, 783, 5, 104, 0, 0, 778, 783, 5, 105, 0, 0, 779, 783, 5, 106, 0, 0, 780, 783, 5, 107, 0, 0, 781, 783, 5, 108, 0, 0, 782, 772, 1, 0, 0, 0, 782, 773, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 775, 1, 0, 0, 0, 782, 776, 1, 0, 0, 0, 782, 777, 1, 0, 0, 0, 782, 778, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 781, 1, 0, 0, 0, 783, 131, 1, 0, 0, 0, 784, 791, 3, 152, 76, 0, 785, 791, 3, 156, 78, 0, 786, 791, 3, 178, 89, 0, 787, 791, 3, 174, 87, 0, 788, 791, 3, 176, 88, 0, 789, 791, 3, 180, 90, 0, 790, 784, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 790, 786, 1, 0, 0, 0, 790, 787, 1, 0, 0, 0, 790, 788, 1, 0, 0, 0, 790, 789, 1, 0, 0, 0, 791, 133, 1, 0, 0, 0, 792, 797, 3, 136, 68, 0, 793, 794, 5, 110, 0, 0, 794, 796, 3, 136, 68, 0, 795, 793, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 135, 1, 0, 0, 0, 802, 803, 3, 220, 110, 0, 803, 804, 5, 112, 0, 0, 804, 806, 1, 0, 0, 0, 805, 802, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 3, 94, 47, 0, 808, 137, 1, 0, 0, 0, 809, 810, 3, 140, 70, 0, 810, 811, 5, 112, 0, 0, 811, 812, 3, 150, 75, 0, 812, 139, 1, 0, 0, 0, 813, 814, 7, 5, 0, 0, 814, 141, 1, 0, 0, 0, 815, 824, 3, 146, 73, 0, 816, 817, 3, 146, 73, 0, 817, 818, 3, 144, 72, 0, 818, 824, 1, 0, 0, 0, 819, 820, 3, 146, 73, 0, 820, 821, 5, 134, 0, 0, 821, 822, 3, 144, 72, 0, 822, 824, 1, 0, 0, 0, 823, 815, 1, 0, 0, 0, 823, 816, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 143, 1, 0, 0, 0, 825, 828, 3, 194, 97, 0, 826, 828, 3, 196, 98, 0, 827, 825, 1, 0, 0, 0, 827, 826, 1, 0, 0, 0, 828, 145, 1, 0, 0, 0, 829, 832, 3, 214, 107, 0, 830, 832, 3, 192, 96, 0, 831, 829, 1, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 147, 1, 0, 0, 0, 833, 834, 3, 150, 75, 0, 834, 149, 1, 0, 0, 0, 835, 838, 3, 214, 107, 0, 836, 838, 3, 188, 94, 0, 837, 835, 1, 0, 0, 0, 837, 836, 1, 0, 0, 0, 838, 151, 1, 0, 0, 0, 839, 863, 5, 172, 0, 0, 840, 863, 5, 173, 0, 0, 841, 863, 5, 174, 0, 0, 842, 863, 5, 175, 0, 0, 843, 863, 5, 176, 0, 0, 844, 863, 5, 177, 0, 0, 845, 863, 5, 178, 0, 0, 846, 863, 5, 179, 0, 0, 847, 863, 5, 180, 0, 0, 848, 863, 5, 181, 0, 0, 849, 863, 5, 182, 0, 0, 850, 863, 5, 183, 0, 0, 851, 863, 5, 184, 0, 0, 852, 863, 5, 185, 0, 0, 853, 863, 5, 186, 0, 0, 854, 863, 5, 188, 0, 0, 855, 863, 5, 189, 0, 0, 856, 863, 5, 190, 0, 0, 857, 863, 5, 191, 0, 0, 858, 863, 5, 192, 0, 0, 859, 863, 5, 193, 0, 0, 860, 863, 5, 194, 0, 0, 861, 863, 3, 154, 77, 0, 862, 839, 1, 0, 0, 0, 862, 840, 1, 0, 0, 0, 862, 841, 1, 0, 0, 0, 862, 842, 1, 0, 0, 0, 862, 843, 1, 0, 0, 0, 862, 844, 1, 0, 0, 0, 862, 845, 1, 0, 0, 0, 862, 846, 1, 0, 0, 0, 862, 847, 1, 0, 0, 0, 862, 848, 1, 0, 0, 0, 862, 849, 1, 0, 0, 0, 862, 850, 1, 0, 0, 0, 862, 851, 1, 0, 0, 0, 862, 852, 1, 0, 0, 0, 862, 853, 1, 0, 0, 0, 862, 854, 1, 0, 0, 0, 862, 855, 1, 0, 0, 0, 862, 856, 1, 0, 0, 0, 862, 857, 1, 0, 0, 0, 862, 858, 1, 0, 0, 0, 862, 859, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 861, 1, 0, 0, 0, 863, 153, 1, 0, 0, 0, 864, 865, 7, 6, 0, 0, 865, 155, 1, 0, 0, 0, 866, 867, 7, 7, 0, 0, 867, 157, 1, 0, 0, 0, 868, 869, 5, 226, 0, 0, 869, 870, 5, 125, 0, 0, 870, 871, 3, 160, 80, 0, 871, 872, 5, 110, 0, 0, 872, 873, 3, 136, 68, 0, 873, 874, 5, 126, 0, 0, 874, 159, 1, 0, 0, 0, 875, 876, 7, 8, 0, 0, 876, 161, 1, 0, 0, 0, 877, 878, 5, 223, 0, 0, 878, 879, 5, 125, 0, 0, 879, 880, 3, 168, 84, 0, 880, 881, 5, 5, 0, 0, 881, 882, 3, 136, 68, 0, 882, 883, 5, 126, 0, 0, 883, 163, 1, 0, 0, 0, 884, 885, 7, 9, 0, 0, 885, 165, 1, 0, 0, 0, 886, 887, 7, 10, 0, 0, 887, 167, 1, 0, 0, 0, 888, 891, 3, 164, 82, 0, 889, 891, 3, 166, 83, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 169, 1, 0, 0, 0, 892, 893, 3, 172, 86, 0, 893, 894, 5, 125, 0, 0, 894, 895, 3, 164, 82, 0, 895, 896, 5, 110, 0, 0, 896, 897, 3, 136, 68, 0, 897, 898, 5, 110, 0, 0, 898, 899, 3, 136, 68, 0, 899, 900, 5, 126, 0, 0, 900, 171, 1, 0, 0, 0, 901, 902, 7, 11, 0, 0, 902, 173, 1, 0, 0, 0, 903, 904, 7, 12, 0, 0, 904, 175, 1, 0, 0, 0, 905, 906, 5, 281, 0, 0, 906, 177, 1, 0, 0, 0, 907, 908, 7, 13, 0, 0, 908, 179, 1, 0, 0, 0, 909, 910, 5, 187, 0, 0, 910, 181, 1, 0, 0, 0, 911, 912, 7, 14, 0, 0, 912, 183, 1, 0, 0, 0, 913, 914, 7, 15, 0, 0, 914, 185, 1, 0, 0, 0, 915, 916, 7, 16, 0, 0, 916, 187, 1, 0, 0, 0, 917, 924, 3, 190, 95, 0, 918, 924, 3, 192, 96, 0, 919, 924, 3, 194, 97, 0, 920, 924, 3, 196, 98, 0, 921, 924, 3, 198, 99, 0, 922, 924, 3, 200, 100, 0, 923, 917, 1, 0, 0, 0, 923, 918, 1, 0, 0, 0, 923, 919, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 923, 922, 1, 0, 0, 0, 924, 189, 1, 0, 0, 0, 925, 926, 5, 81, 0, 0, 926, 927, 3, 94, 47, 0, 927, 928, 3, 208, 104, 0, 928, 191, 1, 0, 0, 0, 929, 930, 7, 17, 0, 0, 930, 193, 1, 0, 0, 0, 931, 933, 7, 0, 0, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 330, 0, 0, 935, 195, 1, 0, 0, 0, 936, 938, 7, 0, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 5, 331, 0, 0, 940, 197, 1, 0, 0, 0, 941, 942, 7, 18, 0, 0, 942, 199, 1, 0, 0, 0, 943, 947, 3, 202, 101, 0, 944, 947, 3, 204, 102, 0, 945, 947, 3, 206, 103, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 201, 1, 0, 0, 0, 948, 949, 5, 212, 0, 0, 949, 950, 3, 192, 96, 0, 950, 203, 1, 0, 0, 0, 951, 952, 5, 241, 0, 0, 952, 953, 3, 192, 96, 0, 953, 205, 1, 0, 0, 0, 954, 955, 5, 243, 0, 0, 955, 956, 3, 192, 96, 0, 956, 207, 1, 0, 0, 0, 957, 958, 7, 19, 0, 0, 958, 209, 1, 0, 0, 0, 959, 960, 7, 20, 0, 0, 960, 211, 1, 0, 0, 0, 961, 962, 5, 125, 0, 0, 962, 967, 3, 188, 94, 0, 963, 964, 5, 110, 0, 0, 964, 966, 3, 188, 94, 0, 965, 963, 1, 0, 0, 0, 966, 969, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 970, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 970, 971, 5, 126, 0, 0, 971, 213, 1, 0, 0, 0, 972, 977, 3, 220, 110, 0, 973, 974, 5, 111, 0, 0, 974, 976, 3, 220, 110, 0, 975, 973, 1, 0, 0, 0, 976, 979, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 215, 1, 0, 0, 0, 979, 977, 1, 0, 0, 0, 980, 985, 3, 222, 111, 0, 981, 982, 5, 111, 0, 0, 982, 984, 3, 220, 110, 0, 983, 981, 1, 0, 0, 0, 984, 987, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 217, 1, 0, 0, 0, 987, 985, 1, 0, 0, 0, 988, 993, 3, 224, 112, 0, 989, 990, 5, 111, 0, 0, 990, 992, 3, 224, 112, 0, 991, 989, 1, 0, 0, 0, 992, 995, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 219, 1, 0, 0, 0, 995, 993, 1, 0, 0, 0, 996, 998, 5, 111, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1007, 5, 328, 0, 0, 1000, 1001, 5, 131, 0, 0, 1001, 1002, 3, 220, 110, 0, 1002, 1003, 5, 131, 0, 0, 1003, 1007, 1, 0, 0, 0, 1004, 1007, 5, 335, 0, 0, 1005, 1007, 3, 226, 113, 0, 1006, 997, 1, 0, 0, 0, 1006, 1000, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1005, 1, 0, 0, 0, 1007, 221, 1, 0, 0, 0, 1008, 1010, 5, 329, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1012, 3, 220, 110, 0, 1012, 223, 1, 0, 0, 0, 1013, 1018, 3, 220, 110, 0, 1014, 1015, 5, 122, 0, 0, 1015, 1017, 3, 220, 110, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1023, 5, 122, 0, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1037, 1, 0, 0, 0, 1024, 1025, 5, 129, 0, 0, 1025, 1026, 3, 224, 112, 0, 1026, 1027, 5, 129, 0, 0, 1027, 1037, 1, 0, 0, 0, 1028, 1029, 5, 130, 0, 0, 1029, 1030, 3, 224, 112, 0, 1030, 1031, 5, 130, 0, 0, 1031, 1037, 1, 0, 0, 0, 1032, 1033, 5, 131, 0, 0, 1033, 1034, 3, 224, 112, 0, 1034, 1035, 5, 131, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1013, 1, 0, 0, 0, 1036, 1024, 1, 0, 0, 0, 1036, 1028, 1, 0, 0, 0, 1036, 1032, 1, 0, 0, 0, 1037, 225, 1, 0, 0, 0, 1038, 1139, 5, 31, 0, 0, 1039, 1139, 3, 210, 105, 0, 1040, 1139, 5, 320, 0, 0, 1041, 1139, 3, 132, 66, 0, 1042, 1139, 3, 140, 70, 0, 1043, 1139, 3, 208, 104, 0, 1044, 1139, 3, 156, 78, 0, 1045, 1139, 3, 178, 89, 0, 1046, 1139, 3, 152, 76, 0, 1047, 1139, 3, 180, 90, 0, 1048, 1139, 5, 2, 0, 0, 1049, 1139, 5, 3, 0, 0, 1050, 1139, 5, 4, 0, 0, 1051, 1139, 5, 5, 0, 0, 1052, 1139, 5, 6, 0, 0, 1053, 1139, 5, 7, 0, 0, 1054, 1139, 5, 8, 0, 0, 1055, 1139, 5, 9, 0, 0, 1056, 1139, 5, 10, 0, 0, 1057, 1139, 5, 11, 0, 0, 1058, 1139, 5, 12, 0, 0, 1059, 1139, 5, 13, 0, 0, 1060, 1139, 5, 14, 0, 0, 1061, 1139, 5, 15, 0, 0, 1062, 1139, 5, 16, 0, 0, 1063, 1139, 5, 17, 0, 0, 1064, 1139, 5, 18, 0, 0, 1065, 1139, 5, 19, 0, 0, 1066, 1139, 5, 20, 0, 0, 1067, 1139, 5, 21, 0, 0, 1068, 1139, 5, 22, 0, 0, 1069, 1139, 5, 23, 0, 0, 1070, 1139, 5, 24, 0, 0, 1071, 1139, 5, 25, 0, 0, 1072, 1139, 5, 26, 0, 0, 1073, 1139, 5, 29, 0, 0, 1074, 1139, 5, 30, 0, 0, 1075, 1139, 5, 32, 0, 0, 1076, 1139, 5, 33, 0, 0, 1077, 1139, 5, 34, 0, 0, 1078, 1139, 5, 36, 0, 0, 1079, 1139, 5, 37, 0, 0, 1080, 1139, 5, 38, 0, 0, 1081, 1139, 5, 39, 0, 0, 1082, 1139, 5, 40, 0, 0, 1083, 1139, 5, 41, 0, 0, 1084, 1139, 5, 42, 0, 0, 1085, 1139, 5, 43, 0, 0, 1086, 1139, 5, 44, 0, 0, 1087, 1139, 5, 45, 0, 0, 1088, 1139, 5, 46, 0, 0, 1089, 1139, 5, 47, 0, 0, 1090, 1139, 5, 48, 0, 0, 1091, 1139, 5, 49, 0, 0, 1092, 1139, 5, 50, 0, 0, 1093, 1139, 5, 51, 0, 0, 1094, 1139, 5, 52, 0, 0, 1095, 1139, 5, 53, 0, 0, 1096, 1139, 5, 54, 0, 0, 1097, 1139, 5, 55, 0, 0, 1098, 1139, 5, 56, 0, 0, 1099, 1139, 5, 57, 0, 0, 1100, 1139, 5, 58, 0, 0, 1101, 1139, 5, 135, 0, 0, 1102, 1139, 5, 136, 0, 0, 1103, 1139, 5, 137, 0, 0, 1104, 1139, 5, 138, 0, 0, 1105, 1139, 5, 139, 0, 0, 1106, 1139, 5, 140, 0, 0, 1107, 1139, 5, 141, 0, 0, 1108, 1139, 5, 142, 0, 0, 1109, 1139, 5, 143, 0, 0, 1110, 1139, 5, 144, 0, 0, 1111, 1139, 5, 145, 0, 0, 1112, 1139, 5, 146, 0, 0, 1113, 1139, 5, 147, 0, 0, 1114, 1139, 5, 148, 0, 0, 1115, 1139, 5, 149, 0, 0, 1116, 1139, 5, 150, 0, 0, 1117, 1139, 5, 151, 0, 0, 1118, 1139, 5, 152, 0, 0, 1119, 1139, 5, 153, 0, 0, 1120, 1139, 5, 154, 0, 0, 1121, 1139, 5, 155, 0, 0, 1122, 1139, 5, 156, 0, 0, 1123, 1139, 5, 157, 0, 0, 1124, 1139, 5, 158, 0, 0, 1125, 1139, 5, 159, 0, 0, 1126, 1139, 5, 160, 0, 0, 1127, 1139, 5, 161, 0, 0, 1128, 1139, 5, 162, 0, 0, 1129, 1139, 5, 163, 0, 0, 1130, 1139, 5, 164, 0, 0, 1131, 1139, 5, 165, 0, 0, 1132, 1139, 5, 166, 0, 0, 1133, 1139, 5, 167, 0, 0, 1134, 1139, 5, 168, 0, 0, 1135, 1139, 5, 169, 0, 0, 1136, 1139, 5, 170, 0, 0, 1137, 1139, 5, 171, 0, 0, 1138, 1038, 1, 0, 0, 0, 1138, 1039, 1, 0, 0, 0, 1138, 1040, 1, 0, 0, 0, 1138, 1041, 1, 0, 0, 0, 1138, 1042, 1, 0, 0, 0, 1138, 1043, 1, 0, 0, 0, 1138, 1044, 1, 0, 0, 0, 1138, 1045, 1, 0, 0, 0, 1138, 1046, 1, 0, 0, 0, 1138, 1047, 1, 0, 0, 0, 1138, 1048, 1, 0, 0, 0, 1138, 1049, 1, 0, 0, 0, 1138, 1050, 1, 0, 0, 0, 1138, 1051, 1, 0, 0, 0, 1138, 1052, 1, 0, 0, 0, 1138, 1053, 1, 0, 0, 0, 1138, 1054, 1, 0, 0, 0, 1138, 1055, 1, 0, 0, 0, 1138, 1056, 1, 0, 0, 0, 1138, 1057, 1, 0, 0, 0, 1138, 1058, 1, 0, 0, 0, 1138, 1059, 1, 0, 0, 0, 1138, 1060, 1, 0, 0, 0, 1138, 1061, 1, 0, 0, 0, 1138, 1062, 1, 0, 0, 0, 1138, 1063, 1, 0, 0, 0, 1138, 1064, 1, 0, 0, 0, 1138, 1065, 1, 0, 0, 0, 1138, 1066, 1, 0, 0, 0, 1138, 1067, 1, 0, 0, 0, 1138, 1068, 1, 0, 0, 0, 1138, 1069, 1, 0, 0, 0, 1138, 1070, 1, 0, 0, 0, 1138, 1071, 1, 0, 0, 0, 1138, 1072, 1, 0, 0, 0, 1138, 1073, 1, 0, 0, 0, 1138, 1074, 1, 0, 0, 0, 1138, 1075, 1, 0, 0, 0, 1138, 1076, 1, 0, 0, 0, 1138, 1077, 1, 0, 0, 0, 1138, 1078, 1, 0, 0, 0, 1138, 1079, 1, 0, 0, 0, 1138, 1080, 1, 0, 0, 0, 1138, 1081, 1, 0, 0, 0, 1138, 1082, 1, 0, 0, 0, 1138, 1083, 1, 0, 0, 0, 1138, 1084, 1, 0, 0, 0, 1138, 1085, 1, 0, 0, 0, 1138, 1086, 1, 0, 0, 0, 1138, 1087, 1, 0, 0, 0, 1138, 1088, 1, 0, 0, 0, 1138, 1089, 1, 0, 0, 0, 1138, 1090, 1, 0, 0, 0, 1138, 1091, 1, 0, 0, 0, 1138, 1092, 1, 0, 0, 0, 1138, 1093, 1, 0, 0, 0, 1138, 1094, 1, 0, 0, 0, 1138, 1095, 1, 0, 0, 0, 1138, 1096, 1, 0, 0, 0, 1138, 1097, 1, 0, 0, 0, 1138, 1098, 1, 0, 0, 0, 1138, 1099, 1, 0, 0, 0, 1138, 1100, 1, 0, 0, 0, 1138, 1101, 1, 0, 0, 0, 1138, 1102, 1, 0, 0, 0, 1138, 1103, 1, 0, 0, 0, 1138, 1104, 1, 0, 0, 0, 1138, 1105, 1, 0, 0, 0, 1138, 1106, 1, 0, 0, 0, 1138, 1107, 1, 0, 0, 0, 1138, 1108, 1, 0, 0, 0, 1138, 1109, 1, 0, 0, 0, 1138, 1110, 1, 0, 0, 0, 1138, 1111, 1, 0, 0, 0, 1138, 1112, 1, 0, 0, 0, 1138, 1113, 1, 0, 0, 0, 1138, 1114, 1, 0, 0, 0, 1138, 1115, 1, 0, 0, 0, 1138, 1116, 1, 0, 0, 0, 1138, 1117, 1, 0, 0, 0, 1138, 1118, 1, 0, 0, 0, 1138, 1119, 1, 0, 0, 0, 1138, 1120, 1, 0, 0, 0, 1138, 1121, 1, 0, 0, 0, 1138, 1122, 1, 0, 0, 0, 1138, 1123, 1, 0, 0, 0, 1138, 1124, 1, 0, 0, 0, 1138, 1125, 1, 0, 0, 0, 1138, 1126, 1, 0, 0, 0, 1138, 1127, 1, 0, 0, 0, 1138, 1128, 1, 0, 0, 0, 1138, 1129, 1, 0, 0, 0, 1138, 1130, 1, 0, 0, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1132, 1, 0, 0, 0, 1138, 1133, 1, 0, 0, 0, 1138, 1134, 1, 0, 0, 0, 1138, 1135, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 227, 1, 0, 0, 0, 83, 229, 242, 248, 266, 269, 284, 294, 301, 306, 311, 318, 322, 327, 331, 337, 342, 353, 358, 362, 366, 370, 375, 389, 400, 408, 420, 426, 465, 471, 484, 491, 510, 515, 523, 532, 542, 559, 568, 583, 591, 598, 604, 606, 617, 629, 637, 639, 646, 659, 670, 683, 693, 700, 712, 720, 724, 749, 782, 790, 797, 800, 805, 823, 827, 831, 837, 862, 890, 923, 932, 937, 946, 967, 977, 985, 993, 997, 1006, 1009, 1018, 1022, 1036, 1138] \ No newline at end of file diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts index fe2c7edae4ce..9e7618b05b8e 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts @@ -941,47 +941,21 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 12, OpenSearchPPLParser.RULE_searchCommand); let _la: number; try { - this.state = 278; + localContext = new SearchFromContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { - case 1: - localContext = new SearchFromContext(localContext); - this.enterOuterAlt(localContext, 1); - { - this.state = 269; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 268; - this.match(OpenSearchPPLParser.SEARCH); - } - } - - this.state = 271; - this.fromClause(); - } - break; - case 2: - localContext = new SearchFromFilterContext(localContext); - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 2) { { - this.state = 273; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 272; - this.match(OpenSearchPPLParser.SEARCH); - } + this.state = 268; + this.match(OpenSearchPPLParser.SEARCH); } + } - this.state = 275; - this.fromClause(); - this.state = 276; - this.logicalExpression(0); - } - break; + this.state = 271; + this.fromClause(); } } catch (re) { @@ -1003,9 +977,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 280; + this.state = 273; this.match(OpenSearchPPLParser.DESCRIBE); - this.state = 281; + this.state = 274; this.tableSourceClause(); } } @@ -1028,9 +1002,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 283; + this.state = 276; this.match(OpenSearchPPLParser.SHOW); - this.state = 284; + this.state = 277; this.match(OpenSearchPPLParser.DATASOURCES); } } @@ -1053,9 +1027,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 286; + this.state = 279; this.match(OpenSearchPPLParser.WHERE); - this.state = 287; + this.state = 280; this.logicalExpression(0); } } @@ -1079,14 +1053,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 289; + this.state = 282; this.match(OpenSearchPPLParser.FIELDS); - this.state = 291; + this.state = 284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 290; + this.state = 283; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -1098,7 +1072,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 293; + this.state = 286; this.fieldList(); } } @@ -1122,23 +1096,23 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 295; + this.state = 288; this.match(OpenSearchPPLParser.RENAME); - this.state = 296; + this.state = 289; this.renameClasue(); - this.state = 301; + this.state = 294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 297; + this.state = 290; this.match(OpenSearchPPLParser.COMMA); - this.state = 298; + this.state = 291; this.renameClasue(); } } - this.state = 303; + this.state = 296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1164,88 +1138,88 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 304; + this.state = 297; this.match(OpenSearchPPLParser.STATS); - this.state = 308; + this.state = 301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 305; + this.state = 298; this.match(OpenSearchPPLParser.PARTITIONS); - this.state = 306; + this.state = 299; this.match(OpenSearchPPLParser.EQUAL); - this.state = 307; + this.state = 300; localContext._partitions = this.integerLiteral(); } } - this.state = 313; + this.state = 306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 310; + this.state = 303; this.match(OpenSearchPPLParser.ALLNUM); - this.state = 311; + this.state = 304; this.match(OpenSearchPPLParser.EQUAL); - this.state = 312; + this.state = 305; localContext._allnum = this.booleanLiteral(); } } - this.state = 318; + this.state = 311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 315; + this.state = 308; this.match(OpenSearchPPLParser.DELIM); - this.state = 316; + this.state = 309; this.match(OpenSearchPPLParser.EQUAL); - this.state = 317; + this.state = 310; localContext._delim = this.stringLiteral(); } } - this.state = 320; + this.state = 313; this.statsAggTerm(); - this.state = 325; + this.state = 318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 321; + this.state = 314; this.match(OpenSearchPPLParser.COMMA); - this.state = 322; + this.state = 315; this.statsAggTerm(); } } - this.state = 327; + this.state = 320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 329; + this.state = 322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 328; + this.state = 321; this.statsByClause(); } } - this.state = 334; + this.state = 327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 331; + this.state = 324; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); - this.state = 332; + this.state = 325; this.match(OpenSearchPPLParser.EQUAL); - this.state = 333; + this.state = 326; localContext._dedupsplit = this.booleanLiteral(); } } @@ -1272,44 +1246,44 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 336; + this.state = 329; this.match(OpenSearchPPLParser.DEDUP); - this.state = 338; + this.state = 331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 337; + this.state = 330; localContext._number_ = this.integerLiteral(); } } - this.state = 340; + this.state = 333; this.fieldList(); - this.state = 344; + this.state = 337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 341; + this.state = 334; this.match(OpenSearchPPLParser.KEEPEMPTY); - this.state = 342; + this.state = 335; this.match(OpenSearchPPLParser.EQUAL); - this.state = 343; + this.state = 336; localContext._keepempty = this.booleanLiteral(); } } - this.state = 349; + this.state = 342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40) { { - this.state = 346; + this.state = 339; this.match(OpenSearchPPLParser.CONSECUTIVE); - this.state = 347; + this.state = 340; this.match(OpenSearchPPLParser.EQUAL); - this.state = 348; + this.state = 341; localContext._consecutive = this.booleanLiteral(); } } @@ -1335,9 +1309,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 351; + this.state = 344; this.match(OpenSearchPPLParser.SORT); - this.state = 352; + this.state = 345; this.sortbyClause(); } } @@ -1361,23 +1335,23 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 354; + this.state = 347; this.match(OpenSearchPPLParser.EVAL); - this.state = 355; + this.state = 348; this.evalClause(); - this.state = 360; + this.state = 353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 356; + this.state = 349; this.match(OpenSearchPPLParser.COMMA); - this.state = 357; + this.state = 350; this.evalClause(); } } - this.state = 362; + this.state = 355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1403,26 +1377,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 363; + this.state = 356; this.match(OpenSearchPPLParser.HEAD); - this.state = 365; + this.state = 358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 364; + this.state = 357; localContext._number_ = this.integerLiteral(); } } - this.state = 369; + this.state = 362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 367; + this.state = 360; this.match(OpenSearchPPLParser.FROM); - this.state = 368; + this.state = 361; localContext._from_ = this.integerLiteral(); } } @@ -1449,26 +1423,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 371; + this.state = 364; this.match(OpenSearchPPLParser.TOP); - this.state = 373; + this.state = 366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119 || _la === 330) { { - this.state = 372; + this.state = 365; localContext._number_ = this.integerLiteral(); } } - this.state = 375; + this.state = 368; this.fieldList(); - this.state = 377; + this.state = 370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 376; + this.state = 369; this.byClause(); } } @@ -1495,16 +1469,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 379; + this.state = 372; this.match(OpenSearchPPLParser.RARE); - this.state = 380; + this.state = 373; this.fieldList(); - this.state = 382; + this.state = 375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 381; + this.state = 374; this.byClause(); } } @@ -1530,14 +1504,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 384; + this.state = 377; this.match(OpenSearchPPLParser.GROK); { - this.state = 385; + this.state = 378; localContext._source_field = this.expression(); } { - this.state = 386; + this.state = 379; localContext._pattern = this.stringLiteral(); } } @@ -1561,14 +1535,14 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 388; + this.state = 381; this.match(OpenSearchPPLParser.PARSE); { - this.state = 389; + this.state = 382; localContext._source_field = this.expression(); } { - this.state = 390; + this.state = 383; localContext._pattern = this.stringLiteral(); } } @@ -1593,26 +1567,26 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 392; + this.state = 385; this.match(OpenSearchPPLParser.PATTERNS); - this.state = 396; + this.state = 389; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 24, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 22, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 393; + this.state = 386; this.patternsParameter(); } } } - this.state = 398; + this.state = 391; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 24, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 22, this.context); } { - this.state = 399; + this.state = 392; localContext._source_field = this.expression(); } } @@ -1634,18 +1608,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PatternsParameterContext(this.context, this.state); this.enterRule(localContext, 44, OpenSearchPPLParser.RULE_patternsParameter); try { - this.state = 407; + this.state = 400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.NEW_FIELD: this.enterOuterAlt(localContext, 1); { { - this.state = 401; + this.state = 394; this.match(OpenSearchPPLParser.NEW_FIELD); - this.state = 402; + this.state = 395; this.match(OpenSearchPPLParser.EQUAL); - this.state = 403; + this.state = 396; localContext._new_field = this.stringLiteral(); } } @@ -1654,11 +1628,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 404; + this.state = 397; this.match(OpenSearchPPLParser.PATTERN); - this.state = 405; + this.state = 398; this.match(OpenSearchPPLParser.EQUAL); - this.state = 406; + this.state = 399; localContext._pattern = this.stringLiteral(); } } @@ -1687,7 +1661,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 409; + this.state = 402; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 19)) { this.errorHandler.recoverInline(this); @@ -1718,19 +1692,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 411; + this.state = 404; this.match(OpenSearchPPLParser.KMEANS); - this.state = 415; + this.state = 408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 7) !== 0)) { { { - this.state = 412; + this.state = 405; this.kmeansParameter(); } } - this.state = 417; + this.state = 410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1753,18 +1727,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KmeansParameterContext(this.context, this.state); this.enterRule(localContext, 50, OpenSearchPPLParser.RULE_kmeansParameter); try { - this.state = 427; + this.state = 420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.CENTROIDS: this.enterOuterAlt(localContext, 1); { { - this.state = 418; + this.state = 411; this.match(OpenSearchPPLParser.CENTROIDS); - this.state = 419; + this.state = 412; this.match(OpenSearchPPLParser.EQUAL); - this.state = 420; + this.state = 413; localContext._centroids = this.integerLiteral(); } } @@ -1773,11 +1747,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 421; + this.state = 414; this.match(OpenSearchPPLParser.ITERATIONS); - this.state = 422; + this.state = 415; this.match(OpenSearchPPLParser.EQUAL); - this.state = 423; + this.state = 416; localContext._iterations = this.integerLiteral(); } } @@ -1786,11 +1760,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 424; + this.state = 417; this.match(OpenSearchPPLParser.DISTANCE_TYPE); - this.state = 425; + this.state = 418; this.match(OpenSearchPPLParser.EQUAL); - this.state = 426; + this.state = 419; localContext._distance_type = this.stringLiteral(); } } @@ -1819,19 +1793,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 429; + this.state = 422; this.match(OpenSearchPPLParser.AD); - this.state = 433; + this.state = 426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 48)) & ~0x1F) === 0 && ((1 << (_la - 48)) & 2047) !== 0) || _la === 215) { { { - this.state = 430; + this.state = 423; this.adParameter(); } } - this.state = 435; + this.state = 428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1854,18 +1828,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new AdParameterContext(this.context, this.state); this.enterRule(localContext, 54, OpenSearchPPLParser.RULE_adParameter); try { - this.state = 472; + this.state = 465; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.NUMBER_OF_TREES: this.enterOuterAlt(localContext, 1); { { - this.state = 436; + this.state = 429; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); - this.state = 437; + this.state = 430; this.match(OpenSearchPPLParser.EQUAL); - this.state = 438; + this.state = 431; localContext._number_of_trees = this.integerLiteral(); } } @@ -1874,11 +1848,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { { - this.state = 439; + this.state = 432; this.match(OpenSearchPPLParser.SHINGLE_SIZE); - this.state = 440; + this.state = 433; this.match(OpenSearchPPLParser.EQUAL); - this.state = 441; + this.state = 434; localContext._shingle_size = this.integerLiteral(); } } @@ -1887,11 +1861,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { { - this.state = 442; + this.state = 435; this.match(OpenSearchPPLParser.SAMPLE_SIZE); - this.state = 443; + this.state = 436; this.match(OpenSearchPPLParser.EQUAL); - this.state = 444; + this.state = 437; localContext._sample_size = this.integerLiteral(); } } @@ -1900,11 +1874,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 4); { { - this.state = 445; + this.state = 438; this.match(OpenSearchPPLParser.OUTPUT_AFTER); - this.state = 446; + this.state = 439; this.match(OpenSearchPPLParser.EQUAL); - this.state = 447; + this.state = 440; localContext._output_after = this.integerLiteral(); } } @@ -1913,11 +1887,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 5); { { - this.state = 448; + this.state = 441; this.match(OpenSearchPPLParser.TIME_DECAY); - this.state = 449; + this.state = 442; this.match(OpenSearchPPLParser.EQUAL); - this.state = 450; + this.state = 443; localContext._time_decay = this.decimalLiteral(); } } @@ -1926,11 +1900,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 6); { { - this.state = 451; + this.state = 444; this.match(OpenSearchPPLParser.ANOMALY_RATE); - this.state = 452; + this.state = 445; this.match(OpenSearchPPLParser.EQUAL); - this.state = 453; + this.state = 446; localContext._anomaly_rate = this.decimalLiteral(); } } @@ -1939,11 +1913,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 7); { { - this.state = 454; + this.state = 447; this.match(OpenSearchPPLParser.CATEGORY_FIELD); - this.state = 455; + this.state = 448; this.match(OpenSearchPPLParser.EQUAL); - this.state = 456; + this.state = 449; localContext._category_field = this.stringLiteral(); } } @@ -1952,11 +1926,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 8); { { - this.state = 457; + this.state = 450; this.match(OpenSearchPPLParser.TIME_FIELD); - this.state = 458; + this.state = 451; this.match(OpenSearchPPLParser.EQUAL); - this.state = 459; + this.state = 452; localContext._time_field = this.stringLiteral(); } } @@ -1965,11 +1939,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 9); { { - this.state = 460; + this.state = 453; this.match(OpenSearchPPLParser.DATE_FORMAT); - this.state = 461; + this.state = 454; this.match(OpenSearchPPLParser.EQUAL); - this.state = 462; + this.state = 455; localContext._date_format = this.stringLiteral(); } } @@ -1978,11 +1952,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 10); { { - this.state = 463; + this.state = 456; this.match(OpenSearchPPLParser.TIME_ZONE); - this.state = 464; + this.state = 457; this.match(OpenSearchPPLParser.EQUAL); - this.state = 465; + this.state = 458; localContext._time_zone = this.stringLiteral(); } } @@ -1991,11 +1965,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 11); { { - this.state = 466; + this.state = 459; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); - this.state = 467; + this.state = 460; this.match(OpenSearchPPLParser.EQUAL); - this.state = 468; + this.state = 461; localContext._training_data_size = this.integerLiteral(); } } @@ -2004,11 +1978,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 12); { { - this.state = 469; + this.state = 462; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); - this.state = 470; + this.state = 463; this.match(OpenSearchPPLParser.EQUAL); - this.state = 471; + this.state = 464; localContext._anomaly_score_threshold = this.decimalLiteral(); } } @@ -2037,19 +2011,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 474; + this.state = 467; this.match(OpenSearchPPLParser.ML); - this.state = 478; + this.state = 471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 2147475455) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 4279238657) !== 0) || ((((_la - 143)) & ~0x1F) === 0 && ((1 << (_la - 143)) & 4294967295) !== 0) || ((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 4294967295) !== 0) || ((((_la - 207)) & ~0x1F) === 0 && ((1 << (_la - 207)) & 4294377471) !== 0) || ((((_la - 239)) & ~0x1F) === 0 && ((1 << (_la - 239)) & 4290772895) !== 0) || ((((_la - 271)) & ~0x1F) === 0 && ((1 << (_la - 271)) & 4294707191) !== 0) || ((((_la - 303)) & ~0x1F) === 0 && ((1 << (_la - 303)) & 67108863) !== 0) || _la === 335) { { { - this.state = 475; + this.state = 468; this.mlArg(); } } - this.state = 480; + this.state = 473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2075,11 +2049,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { { - this.state = 481; + this.state = 474; localContext._argName = this.ident(); - this.state = 482; + this.state = 475; this.match(OpenSearchPPLParser.EQUAL); - this.state = 483; + this.state = 476; localContext._argValue = this.literalValue(); } } @@ -2101,28 +2075,28 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new FromClauseContext(this.context, this.state); this.enterRule(localContext, 60, OpenSearchPPLParser.RULE_fromClause); try { - this.state = 491; + this.state = 484; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.SOURCE: this.enterOuterAlt(localContext, 1); { - this.state = 485; + this.state = 478; this.match(OpenSearchPPLParser.SOURCE); - this.state = 486; + this.state = 479; this.match(OpenSearchPPLParser.EQUAL); - this.state = 487; + this.state = 480; this.tableSourceClause(); } break; case OpenSearchPPLParser.INDEX: this.enterOuterAlt(localContext, 2); { - this.state = 488; + this.state = 481; this.match(OpenSearchPPLParser.INDEX); - this.state = 489; + this.state = 482; this.match(OpenSearchPPLParser.EQUAL); - this.state = 490; + this.state = 483; this.tableSourceClause(); } break; @@ -2150,21 +2124,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 493; + this.state = 486; this.tableSource(); - this.state = 498; + this.state = 491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 494; + this.state = 487; this.match(OpenSearchPPLParser.COMMA); - this.state = 495; + this.state = 488; this.tableSource(); } } - this.state = 500; + this.state = 493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2189,11 +2163,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 501; + this.state = 494; localContext._orignalField = this.wcFieldExpression(); - this.state = 502; + this.state = 495; this.match(OpenSearchPPLParser.AS); - this.state = 503; + this.state = 496; localContext._renamedField = this.wcFieldExpression(); } } @@ -2216,9 +2190,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 505; + this.state = 498; this.match(OpenSearchPPLParser.BY); - this.state = 506; + this.state = 499; this.fieldList(); } } @@ -2239,37 +2213,37 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new StatsByClauseContext(this.context, this.state); this.enterRule(localContext, 68, OpenSearchPPLParser.RULE_statsByClause); try { - this.state = 517; + this.state = 510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 508; + this.state = 501; this.match(OpenSearchPPLParser.BY); - this.state = 509; + this.state = 502; this.fieldList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 510; + this.state = 503; this.match(OpenSearchPPLParser.BY); - this.state = 511; + this.state = 504; this.bySpanClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 512; + this.state = 505; this.match(OpenSearchPPLParser.BY); - this.state = 513; + this.state = 506; this.bySpanClause(); - this.state = 514; + this.state = 507; this.match(OpenSearchPPLParser.COMMA); - this.state = 515; + this.state = 508; this.fieldList(); } break; @@ -2295,16 +2269,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 519; + this.state = 512; this.spanClause(); - this.state = 522; + this.state = 515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 520; + this.state = 513; this.match(OpenSearchPPLParser.AS); - this.state = 521; + this.state = 514; localContext._alias = this.qualifiedName(); } } @@ -2331,27 +2305,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 524; + this.state = 517; this.match(OpenSearchPPLParser.SPAN); - this.state = 525; + this.state = 518; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 526; + this.state = 519; this.fieldExpression(); - this.state = 527; + this.state = 520; this.match(OpenSearchPPLParser.COMMA); - this.state = 528; + this.state = 521; localContext._value = this.literalValue(); - this.state = 530; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0)) { { - this.state = 529; + this.state = 522; localContext._unit = this.timespanUnit(); } } - this.state = 532; + this.state = 525; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2375,21 +2349,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 527; this.sortField(); - this.state = 539; + this.state = 532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 535; + this.state = 528; this.match(OpenSearchPPLParser.COMMA); - this.state = 536; + this.state = 529; this.sortField(); } } - this.state = 541; + this.state = 534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2414,11 +2388,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 542; + this.state = 535; this.fieldExpression(); - this.state = 543; + this.state = 536; this.match(OpenSearchPPLParser.EQUAL); - this.state = 544; + this.state = 537; this.expression(); } } @@ -2442,16 +2416,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 546; + this.state = 539; this.statsFunction(); - this.state = 549; + this.state = 542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 547; + this.state = 540; this.match(OpenSearchPPLParser.AS); - this.state = 548; + this.state = 541; localContext._alias = this.wcFieldExpression(); } } @@ -2476,20 +2450,20 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 80, OpenSearchPPLParser.RULE_statsFunction); let _la: number; try { - this.state = 566; + this.state = 559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: localContext = new StatsFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 551; + this.state = 544; this.statsFunctionName(); - this.state = 552; + this.state = 545; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 553; + this.state = 546; this.valueExpression(0); - this.state = 554; + this.state = 547; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2497,11 +2471,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new CountAllFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 556; + this.state = 549; this.match(OpenSearchPPLParser.COUNT); - this.state = 557; + this.state = 550; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 558; + this.state = 551; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2509,7 +2483,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new DistinctCountFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 559; + this.state = 552; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -2518,11 +2492,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 560; + this.state = 553; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 561; + this.state = 554; this.valueExpression(0); - this.state = 562; + this.state = 555; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2530,7 +2504,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PercentileAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 564; + this.state = 557; this.percentileAggFunction(); } break; @@ -2538,7 +2512,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TakeAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 565; + this.state = 558; this.takeAggFunction(); } break; @@ -2564,7 +2538,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 568; + this.state = 561; _la = this.tokenStream.LA(1); if(!(((((_la - 135)) & ~0x1F) === 0 && ((1 << (_la - 135)) & 500003) !== 0))) { this.errorHandler.recoverInline(this); @@ -2595,25 +2569,25 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 570; + this.state = 563; this.match(OpenSearchPPLParser.TAKE); - this.state = 571; + this.state = 564; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 572; + this.state = 565; this.fieldExpression(); - this.state = 575; + this.state = 568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 573; + this.state = 566; this.match(OpenSearchPPLParser.COMMA); - this.state = 574; + this.state = 567; localContext._size = this.integerLiteral(); } } - this.state = 577; + this.state = 570; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2636,19 +2610,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 579; + this.state = 572; this.match(OpenSearchPPLParser.PERCENTILE); - this.state = 580; + this.state = 573; this.match(OpenSearchPPLParser.LESS); - this.state = 581; + this.state = 574; localContext._value = this.integerLiteral(); - this.state = 582; + this.state = 575; this.match(OpenSearchPPLParser.GREATER); - this.state = 583; + this.state = 576; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 584; + this.state = 577; localContext._aggField = this.fieldExpression(); - this.state = 585; + this.state = 578; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2669,27 +2643,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ExpressionContext(this.context, this.state); this.enterRule(localContext, 88, OpenSearchPPLParser.RULE_expression); try { - this.state = 590; + this.state = 583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 587; + this.state = 580; this.logicalExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 588; + this.state = 581; this.comparisonExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 589; + this.state = 582; this.valueExpression(0); } break; @@ -2727,16 +2701,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 598; + this.state = 591; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { localContext = new ComparsionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 593; + this.state = 586; this.comparisonExpression(); } break; @@ -2745,9 +2719,9 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 594; + this.state = 587; this.match(OpenSearchPPLParser.NOT); - this.state = 595; + this.state = 588; this.logicalExpression(6); } break; @@ -2756,7 +2730,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BooleanExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 596; + this.state = 589; this.booleanExpression(); } break; @@ -2765,15 +2739,15 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new RelevanceExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 597; + this.state = 590; this.relevanceExpression(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 613; + this.state = 606; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 42, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -2781,21 +2755,21 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 611; + this.state = 604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { localContext = new LogicalOrContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalOrContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 600; + this.state = 593; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 601; + this.state = 594; this.match(OpenSearchPPLParser.OR); - this.state = 602; + this.state = 595; (localContext as LogicalOrContext)._right = this.logicalExpression(6); } break; @@ -2804,21 +2778,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalAndContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalAndContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 603; + this.state = 596; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 605; + this.state = 598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 604; + this.state = 597; this.match(OpenSearchPPLParser.AND); } } - this.state = 607; + this.state = 600; (localContext as LogicalAndContext)._right = this.logicalExpression(5); } break; @@ -2827,22 +2801,22 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalXorContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalXorContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 608; + this.state = 601; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 609; + this.state = 602; this.match(OpenSearchPPLParser.XOR); - this.state = 610; + this.state = 603; (localContext as LogicalXorContext)._right = this.logicalExpression(4); } break; } } } - this.state = 615; + this.state = 608; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 42, this.context); } } } @@ -2863,18 +2837,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ComparisonExpressionContext(this.context, this.state); this.enterRule(localContext, 92, OpenSearchPPLParser.RULE_comparisonExpression); try { - this.state = 624; + this.state = 617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: localContext = new CompareExprContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 616; + this.state = 609; (localContext as CompareExprContext)._left = this.valueExpression(0); - this.state = 617; + this.state = 610; this.comparisonOperator(); - this.state = 618; + this.state = 611; (localContext as CompareExprContext)._right = this.valueExpression(0); } break; @@ -2882,11 +2856,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new InExprContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 620; + this.state = 613; this.valueExpression(0); - this.state = 621; + this.state = 614; this.match(OpenSearchPPLParser.IN); - this.state = 622; + this.state = 615; this.valueList(); } break; @@ -2924,16 +2898,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 636; + this.state = 629; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 627; + this.state = 620; this.primaryExpression(); } break; @@ -2942,7 +2916,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 628; + this.state = 621; this.positionFunction(); } break; @@ -2951,7 +2925,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 629; + this.state = 622; this.extractFunction(); } break; @@ -2960,7 +2934,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 630; + this.state = 623; this.getFormatFunction(); } break; @@ -2969,7 +2943,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TimestampFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 631; + this.state = 624; this.timestampFunction(); } break; @@ -2978,19 +2952,19 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ParentheticValueExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 632; + this.state = 625; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 633; + this.state = 626; this.valueExpression(0); - this.state = 634; + this.state = 627; this.match(OpenSearchPPLParser.RT_PRTHS); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 646; + this.state = 639; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 48, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 46, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -2998,19 +2972,19 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 644; + this.state = 637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 638; + this.state = 631; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 639; + this.state = 632; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 7) !== 0))) { @@ -3020,7 +2994,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 640; + this.state = 633; (localContext as BinaryArithmeticContext)._right = this.valueExpression(9); } break; @@ -3029,11 +3003,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 641; + this.state = 634; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 642; + this.state = 635; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { @@ -3043,16 +3017,16 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 643; + this.state = 636; (localContext as BinaryArithmeticContext)._right = this.valueExpression(8); } break; } } } - this.state = 648; + this.state = 641; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 48, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 46, this.context); } } } @@ -3073,34 +3047,34 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PrimaryExpressionContext(this.context, this.state); this.enterRule(localContext, 96, OpenSearchPPLParser.RULE_primaryExpression); try { - this.state = 653; + this.state = 646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 649; + this.state = 642; this.evalFunctionCall(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 650; + this.state = 643; this.dataTypeFunctionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 651; + this.state = 644; this.fieldExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 652; + this.state = 645; this.literalValue(); } break; @@ -3125,17 +3099,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 655; + this.state = 648; this.positionFunctionName(); - this.state = 656; + this.state = 649; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 657; + this.state = 650; this.functionArg(); - this.state = 658; + this.state = 651; this.match(OpenSearchPPLParser.IN); - this.state = 659; + this.state = 652; this.functionArg(); - this.state = 660; + this.state = 653; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3158,7 +3132,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 662; + this.state = 655; this.booleanFunctionCall(); } } @@ -3179,7 +3153,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceExpressionContext(this.context, this.state); this.enterRule(localContext, 102, OpenSearchPPLParser.RULE_relevanceExpression); try { - this.state = 666; + this.state = 659; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.MATCH: @@ -3188,7 +3162,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.MATCH_BOOL_PREFIX: this.enterOuterAlt(localContext, 1); { - this.state = 664; + this.state = 657; this.singleFieldRelevanceFunction(); } break; @@ -3197,7 +3171,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.QUERY_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 665; + this.state = 658; this.multiFieldRelevanceFunction(); } break; @@ -3225,33 +3199,33 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 668; + this.state = 661; this.singleFieldRelevanceFunctionName(); - this.state = 669; + this.state = 662; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 670; + this.state = 663; localContext._field = this.relevanceField(); - this.state = 671; + this.state = 664; this.match(OpenSearchPPLParser.COMMA); - this.state = 672; + this.state = 665; localContext._query = this.relevanceQuery(); - this.state = 677; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 673; + this.state = 666; this.match(OpenSearchPPLParser.COMMA); - this.state = 674; + this.state = 667; this.relevanceArg(); } } - this.state = 679; + this.state = 672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 680; + this.state = 673; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3275,53 +3249,53 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 682; + this.state = 675; this.multiFieldRelevanceFunctionName(); - this.state = 683; + this.state = 676; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 684; + this.state = 677; this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 685; + this.state = 678; localContext._field = this.relevanceFieldAndWeight(); - this.state = 690; + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 686; + this.state = 679; this.match(OpenSearchPPLParser.COMMA); - this.state = 687; + this.state = 680; localContext._field = this.relevanceFieldAndWeight(); } } - this.state = 692; + this.state = 685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 693; + this.state = 686; this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 694; + this.state = 687; this.match(OpenSearchPPLParser.COMMA); - this.state = 695; + this.state = 688; localContext._query = this.relevanceQuery(); - this.state = 700; + this.state = 693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 696; + this.state = 689; this.match(OpenSearchPPLParser.COMMA); - this.state = 697; + this.state = 690; this.relevanceArg(); } } - this.state = 702; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 703; + this.state = 696; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3342,7 +3316,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new TableSourceContext(this.context, this.state); this.enterRule(localContext, 108, OpenSearchPPLParser.RULE_tableSource); try { - this.state = 707; + this.state = 700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.SEARCH: @@ -3616,14 +3590,14 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 705; + this.state = 698; this.tableQualifiedName(); } break; case OpenSearchPPLParser.ID_DATE_SUFFIX: this.enterOuterAlt(localContext, 2); { - this.state = 706; + this.state = 699; this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); } break; @@ -3650,13 +3624,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 709; + this.state = 702; this.qualifiedName(); - this.state = 710; + this.state = 703; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 711; + this.state = 704; this.functionArgs(); - this.state = 712; + this.state = 705; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3680,21 +3654,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 714; + this.state = 707; this.fieldExpression(); - this.state = 719; + this.state = 712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 715; + this.state = 708; this.match(OpenSearchPPLParser.COMMA); - this.state = 716; + this.state = 709; this.fieldExpression(); } } - this.state = 721; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3720,21 +3694,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 722; + this.state = 715; this.wcFieldExpression(); - this.state = 727; + this.state = 720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 723; + this.state = 716; this.match(OpenSearchPPLParser.COMMA); - this.state = 724; + this.state = 717; this.wcFieldExpression(); } } - this.state = 729; + this.state = 722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3760,12 +3734,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 731; + this.state = 724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 730; + this.state = 723; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -3777,7 +3751,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 733; + this.state = 726; this.sortFieldExpression(); } } @@ -3798,65 +3772,65 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new SortFieldExpressionContext(this.context, this.state); this.enterRule(localContext, 118, OpenSearchPPLParser.RULE_sortFieldExpression); try { - this.state = 756; + this.state = 749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 735; + this.state = 728; this.fieldExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 736; + this.state = 729; this.match(OpenSearchPPLParser.AUTO); - this.state = 737; + this.state = 730; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 738; + this.state = 731; this.fieldExpression(); - this.state = 739; + this.state = 732; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 741; + this.state = 734; this.match(OpenSearchPPLParser.STR); - this.state = 742; + this.state = 735; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 743; + this.state = 736; this.fieldExpression(); - this.state = 744; + this.state = 737; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 746; + this.state = 739; this.match(OpenSearchPPLParser.IP); - this.state = 747; + this.state = 740; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 748; + this.state = 741; this.fieldExpression(); - this.state = 749; + this.state = 742; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 751; + this.state = 744; this.match(OpenSearchPPLParser.NUM); - this.state = 752; + this.state = 745; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 753; + this.state = 746; this.fieldExpression(); - this.state = 754; + this.state = 747; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -3881,7 +3855,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 758; + this.state = 751; this.qualifiedName(); } } @@ -3904,7 +3878,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 760; + this.state = 753; this.wcQualifiedName(); } } @@ -3927,13 +3901,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 762; + this.state = 755; this.evalFunctionName(); - this.state = 763; + this.state = 756; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 764; + this.state = 757; this.functionArgs(); - this.state = 765; + this.state = 758; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3956,17 +3930,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 767; + this.state = 760; this.match(OpenSearchPPLParser.CAST); - this.state = 768; + this.state = 761; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 769; + this.state = 762; this.expression(); - this.state = 770; + this.state = 763; this.match(OpenSearchPPLParser.AS); - this.state = 771; + this.state = 764; this.convertedDataType(); - this.state = 772; + this.state = 765; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3989,13 +3963,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 774; + this.state = 767; this.conditionFunctionBase(); - this.state = 775; + this.state = 768; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 776; + this.state = 769; this.functionArgs(); - this.state = 777; + this.state = 770; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4016,76 +3990,76 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ConvertedDataTypeContext(this.context, this.state); this.enterRule(localContext, 130, OpenSearchPPLParser.RULE_convertedDataType); try { - this.state = 789; + this.state = 782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 779; + this.state = 772; localContext._typeName = this.match(OpenSearchPPLParser.DATE); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 780; + this.state = 773; localContext._typeName = this.match(OpenSearchPPLParser.TIME); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 781; + this.state = 774; localContext._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); } break; case OpenSearchPPLParser.INT: this.enterOuterAlt(localContext, 4); { - this.state = 782; + this.state = 775; localContext._typeName = this.match(OpenSearchPPLParser.INT); } break; case OpenSearchPPLParser.INTEGER: this.enterOuterAlt(localContext, 5); { - this.state = 783; + this.state = 776; localContext._typeName = this.match(OpenSearchPPLParser.INTEGER); } break; case OpenSearchPPLParser.DOUBLE: this.enterOuterAlt(localContext, 6); { - this.state = 784; + this.state = 777; localContext._typeName = this.match(OpenSearchPPLParser.DOUBLE); } break; case OpenSearchPPLParser.LONG: this.enterOuterAlt(localContext, 7); { - this.state = 785; + this.state = 778; localContext._typeName = this.match(OpenSearchPPLParser.LONG); } break; case OpenSearchPPLParser.FLOAT: this.enterOuterAlt(localContext, 8); { - this.state = 786; + this.state = 779; localContext._typeName = this.match(OpenSearchPPLParser.FLOAT); } break; case OpenSearchPPLParser.STRING: this.enterOuterAlt(localContext, 9); { - this.state = 787; + this.state = 780; localContext._typeName = this.match(OpenSearchPPLParser.STRING); } break; case OpenSearchPPLParser.BOOLEAN: this.enterOuterAlt(localContext, 10); { - this.state = 788; + this.state = 781; localContext._typeName = this.match(OpenSearchPPLParser.BOOLEAN); } break; @@ -4110,7 +4084,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new EvalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 132, OpenSearchPPLParser.RULE_evalFunctionName); try { - this.state = 797; + this.state = 790; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: @@ -4147,7 +4121,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 1); { - this.state = 791; + this.state = 784; this.mathematicalFunctionName(); } break; @@ -4218,7 +4192,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEARWEEK: this.enterOuterAlt(localContext, 2); { - this.state = 792; + this.state = 785; this.dateTimeFunctionName(); } break; @@ -4241,7 +4215,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.REVERSE: this.enterOuterAlt(localContext, 3); { - this.state = 793; + this.state = 786; this.textFunctionName(); } break; @@ -4253,21 +4227,21 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.IF: this.enterOuterAlt(localContext, 4); { - this.state = 794; + this.state = 787; this.conditionFunctionBase(); } break; case OpenSearchPPLParser.TYPEOF: this.enterOuterAlt(localContext, 5); { - this.state = 795; + this.state = 788; this.systemFunctionName(); } break; case OpenSearchPPLParser.POSITION: this.enterOuterAlt(localContext, 6); { - this.state = 796; + this.state = 789; this.positionFunctionName(); } break; @@ -4295,26 +4269,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 807; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 4294967291) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 274743299) !== 0) || ((((_la - 131)) & ~0x1F) === 0 && ((1 << (_la - 131)) & 4294967281) !== 0) || ((((_la - 163)) & ~0x1F) === 0 && ((1 << (_la - 163)) & 4294967295) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 4294967295) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 4294967295) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 3229614075) !== 0) || ((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 4294967295) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 7615) !== 0)) { { - this.state = 799; + this.state = 792; this.functionArg(); - this.state = 804; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 800; + this.state = 793; this.match(OpenSearchPPLParser.COMMA); - this.state = 801; + this.state = 794; this.functionArg(); } } - this.state = 806; + this.state = 799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4342,19 +4316,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 812; + this.state = 805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 809; + this.state = 802; this.ident(); - this.state = 810; + this.state = 803; this.match(OpenSearchPPLParser.EQUAL); } break; } - this.state = 814; + this.state = 807; this.valueExpression(0); } } @@ -4377,11 +4351,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 816; + this.state = 809; this.relevanceArgName(); - this.state = 817; + this.state = 810; this.match(OpenSearchPPLParser.EQUAL); - this.state = 818; + this.state = 811; this.relevanceArgValue(); } } @@ -4405,7 +4379,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 820; + this.state = 813; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 56 || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 2147483647) !== 0))) { this.errorHandler.recoverInline(this); @@ -4433,33 +4407,33 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldAndWeightContext(this.context, this.state); this.enterRule(localContext, 142, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); try { - this.state = 830; + this.state = 823; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 822; + this.state = 815; localContext._field = this.relevanceField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 823; + this.state = 816; localContext._field = this.relevanceField(); - this.state = 824; + this.state = 817; localContext._weight = this.relevanceFieldWeight(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 826; + this.state = 819; localContext._field = this.relevanceField(); - this.state = 827; + this.state = 820; this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 828; + this.state = 821; localContext._weight = this.relevanceFieldWeight(); } break; @@ -4482,20 +4456,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldWeightContext(this.context, this.state); this.enterRule(localContext, 144, OpenSearchPPLParser.RULE_relevanceFieldWeight); try { - this.state = 834; + this.state = 827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 832; + this.state = 825; this.integerLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 833; + this.state = 826; this.decimalLiteral(); } break; @@ -4518,7 +4492,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldContext(this.context, this.state); this.enterRule(localContext, 146, OpenSearchPPLParser.RULE_relevanceField); try { - this.state = 838; + this.state = 831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.SEARCH: @@ -4791,7 +4765,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 836; + this.state = 829; this.qualifiedName(); } break; @@ -4799,7 +4773,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 837; + this.state = 830; this.stringLiteral(); } break; @@ -4826,7 +4800,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 840; + this.state = 833; this.relevanceArgValue(); } } @@ -4847,20 +4821,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceArgValueContext(this.context, this.state); this.enterRule(localContext, 150, OpenSearchPPLParser.RULE_relevanceArgValue); try { - this.state = 844; + this.state = 837; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 842; + this.state = 835; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 843; + this.state = 836; this.literalValue(); } break; @@ -4883,160 +4857,160 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new MathematicalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 152, OpenSearchPPLParser.RULE_mathematicalFunctionName); try { - this.state = 869; + this.state = 862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 839; this.match(OpenSearchPPLParser.ABS); } break; case OpenSearchPPLParser.CBRT: this.enterOuterAlt(localContext, 2); { - this.state = 847; + this.state = 840; this.match(OpenSearchPPLParser.CBRT); } break; case OpenSearchPPLParser.CEIL: this.enterOuterAlt(localContext, 3); { - this.state = 848; + this.state = 841; this.match(OpenSearchPPLParser.CEIL); } break; case OpenSearchPPLParser.CEILING: this.enterOuterAlt(localContext, 4); { - this.state = 849; + this.state = 842; this.match(OpenSearchPPLParser.CEILING); } break; case OpenSearchPPLParser.CONV: this.enterOuterAlt(localContext, 5); { - this.state = 850; + this.state = 843; this.match(OpenSearchPPLParser.CONV); } break; case OpenSearchPPLParser.CRC32: this.enterOuterAlt(localContext, 6); { - this.state = 851; + this.state = 844; this.match(OpenSearchPPLParser.CRC32); } break; case OpenSearchPPLParser.E: this.enterOuterAlt(localContext, 7); { - this.state = 852; + this.state = 845; this.match(OpenSearchPPLParser.E); } break; case OpenSearchPPLParser.EXP: this.enterOuterAlt(localContext, 8); { - this.state = 853; + this.state = 846; this.match(OpenSearchPPLParser.EXP); } break; case OpenSearchPPLParser.FLOOR: this.enterOuterAlt(localContext, 9); { - this.state = 854; + this.state = 847; this.match(OpenSearchPPLParser.FLOOR); } break; case OpenSearchPPLParser.LN: this.enterOuterAlt(localContext, 10); { - this.state = 855; + this.state = 848; this.match(OpenSearchPPLParser.LN); } break; case OpenSearchPPLParser.LOG: this.enterOuterAlt(localContext, 11); { - this.state = 856; + this.state = 849; this.match(OpenSearchPPLParser.LOG); } break; case OpenSearchPPLParser.LOG10: this.enterOuterAlt(localContext, 12); { - this.state = 857; + this.state = 850; this.match(OpenSearchPPLParser.LOG10); } break; case OpenSearchPPLParser.LOG2: this.enterOuterAlt(localContext, 13); { - this.state = 858; + this.state = 851; this.match(OpenSearchPPLParser.LOG2); } break; case OpenSearchPPLParser.MOD: this.enterOuterAlt(localContext, 14); { - this.state = 859; + this.state = 852; this.match(OpenSearchPPLParser.MOD); } break; case OpenSearchPPLParser.PI: this.enterOuterAlt(localContext, 15); { - this.state = 860; + this.state = 853; this.match(OpenSearchPPLParser.PI); } break; case OpenSearchPPLParser.POW: this.enterOuterAlt(localContext, 16); { - this.state = 861; + this.state = 854; this.match(OpenSearchPPLParser.POW); } break; case OpenSearchPPLParser.POWER: this.enterOuterAlt(localContext, 17); { - this.state = 862; + this.state = 855; this.match(OpenSearchPPLParser.POWER); } break; case OpenSearchPPLParser.RAND: this.enterOuterAlt(localContext, 18); { - this.state = 863; + this.state = 856; this.match(OpenSearchPPLParser.RAND); } break; case OpenSearchPPLParser.ROUND: this.enterOuterAlt(localContext, 19); { - this.state = 864; + this.state = 857; this.match(OpenSearchPPLParser.ROUND); } break; case OpenSearchPPLParser.SIGN: this.enterOuterAlt(localContext, 20); { - this.state = 865; + this.state = 858; this.match(OpenSearchPPLParser.SIGN); } break; case OpenSearchPPLParser.SQRT: this.enterOuterAlt(localContext, 21); { - this.state = 866; + this.state = 859; this.match(OpenSearchPPLParser.SQRT); } break; case OpenSearchPPLParser.TRUNCATE: this.enterOuterAlt(localContext, 22); { - this.state = 867; + this.state = 860; this.match(OpenSearchPPLParser.TRUNCATE); } break; @@ -5052,7 +5026,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 23); { - this.state = 868; + this.state = 861; this.trigonometricFunctionName(); } break; @@ -5080,7 +5054,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 864; _la = this.tokenStream.LA(1); if(!(((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -5111,7 +5085,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 873; + this.state = 866; _la = this.tokenStream.LA(1); if(!(((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 1038960967) !== 0) || ((((_la - 205)) & ~0x1F) === 0 && ((1 << (_la - 205)) & 4292607999) !== 0) || ((((_la - 237)) & ~0x1F) === 0 && ((1 << (_la - 237)) & 523903) !== 0))) { this.errorHandler.recoverInline(this); @@ -5141,17 +5115,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 875; + this.state = 868; this.match(OpenSearchPPLParser.GET_FORMAT); - this.state = 876; + this.state = 869; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 877; + this.state = 870; this.getFormatType(); - this.state = 878; + this.state = 871; this.match(OpenSearchPPLParser.COMMA); - this.state = 879; + this.state = 872; this.functionArg(); - this.state = 880; + this.state = 873; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5175,7 +5149,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 882; + this.state = 875; _la = this.tokenStream.LA(1); if(!(_la === 69 || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 2684354561) !== 0))) { this.errorHandler.recoverInline(this); @@ -5205,17 +5179,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 877; this.match(OpenSearchPPLParser.EXTRACT); - this.state = 885; + this.state = 878; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 886; + this.state = 879; this.datetimePart(); - this.state = 887; + this.state = 880; this.match(OpenSearchPPLParser.FROM); - this.state = 888; + this.state = 881; this.functionArg(); - this.state = 889; + this.state = 882; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5239,7 +5213,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 891; + this.state = 884; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174608449) !== 0))) { this.errorHandler.recoverInline(this); @@ -5270,7 +5244,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 893; + this.state = 886; _la = this.tokenStream.LA(1); if(!(((((_la - 71)) & ~0x1F) === 0 && ((1 << (_la - 71)) & 138560215) !== 0))) { this.errorHandler.recoverInline(this); @@ -5298,7 +5272,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimePartContext(this.context, this.state); this.enterRule(localContext, 168, OpenSearchPPLParser.RULE_datetimePart); try { - this.state = 897; + this.state = 890; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DAY: @@ -5312,7 +5286,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR: this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 888; this.simpleDateTimePart(); } break; @@ -5329,7 +5303,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR_MONTH: this.enterOuterAlt(localContext, 2); { - this.state = 896; + this.state = 889; this.complexDateTimePart(); } break; @@ -5356,21 +5330,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 899; + this.state = 892; this.timestampFunctionName(); - this.state = 900; + this.state = 893; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 901; + this.state = 894; this.simpleDateTimePart(); - this.state = 902; + this.state = 895; this.match(OpenSearchPPLParser.COMMA); - this.state = 903; + this.state = 896; localContext._firstArg = this.functionArg(); - this.state = 904; + this.state = 897; this.match(OpenSearchPPLParser.COMMA); - this.state = 905; + this.state = 898; localContext._secondArg = this.functionArg(); - this.state = 906; + this.state = 899; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5394,7 +5368,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 908; + this.state = 901; _la = this.tokenStream.LA(1); if(!(_la === 244 || _la === 245)) { this.errorHandler.recoverInline(this); @@ -5425,7 +5399,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 910; + this.state = 903; _la = this.tokenStream.LA(1); if(!(((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5455,7 +5429,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 912; + this.state = 905; this.match(OpenSearchPPLParser.TYPEOF); } } @@ -5479,7 +5453,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 914; + this.state = 907; _la = this.tokenStream.LA(1); if(!(((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 262111) !== 0))) { this.errorHandler.recoverInline(this); @@ -5509,7 +5483,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 909; this.match(OpenSearchPPLParser.POSITION); } } @@ -5533,7 +5507,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 918; + this.state = 911; _la = this.tokenStream.LA(1); if(!(_la === 67 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5564,7 +5538,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 920; + this.state = 913; _la = this.tokenStream.LA(1); if(!(((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -5595,7 +5569,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 922; + this.state = 915; _la = this.tokenStream.LA(1); if(!(((((_la - 286)) & ~0x1F) === 0 && ((1 << (_la - 286)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -5623,48 +5597,48 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new LiteralValueContext(this.context, this.state); this.enterRule(localContext, 188, OpenSearchPPLParser.RULE_literalValue); try { - this.state = 930; + this.state = 923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 924; + this.state = 917; this.intervalLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 925; + this.state = 918; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 926; + this.state = 919; this.integerLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 927; + this.state = 920; this.decimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 928; + this.state = 921; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 929; + this.state = 922; this.datetimeLiteral(); } break; @@ -5689,11 +5663,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 932; + this.state = 925; this.match(OpenSearchPPLParser.INTERVAL); - this.state = 933; + this.state = 926; this.valueExpression(0); - this.state = 934; + this.state = 927; this.intervalUnit(); } } @@ -5717,7 +5691,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 936; + this.state = 929; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -5748,12 +5722,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 939; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 938; + this.state = 931; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5765,7 +5739,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 941; + this.state = 934; this.match(OpenSearchPPLParser.INTEGER_LITERAL); } } @@ -5789,12 +5763,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 944; + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 943; + this.state = 936; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5806,7 +5780,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 946; + this.state = 939; this.match(OpenSearchPPLParser.DECIMAL_LITERAL); } } @@ -5830,7 +5804,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; + this.state = 941; _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 66)) { this.errorHandler.recoverInline(this); @@ -5858,27 +5832,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimeLiteralContext(this.context, this.state); this.enterRule(localContext, 200, OpenSearchPPLParser.RULE_datetimeLiteral); try { - this.state = 953; + this.state = 946; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 950; + this.state = 943; this.dateLiteral(); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 951; + this.state = 944; this.timeLiteral(); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 952; + this.state = 945; this.timestampLiteral(); } break; @@ -5905,9 +5879,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 955; + this.state = 948; this.match(OpenSearchPPLParser.DATE); - this.state = 956; + this.state = 949; localContext._date = this.stringLiteral(); } } @@ -5930,9 +5904,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 958; + this.state = 951; this.match(OpenSearchPPLParser.TIME); - this.state = 959; + this.state = 952; localContext._time = this.stringLiteral(); } } @@ -5955,9 +5929,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 954; this.match(OpenSearchPPLParser.TIMESTAMP); - this.state = 962; + this.state = 955; localContext._timestamp = this.stringLiteral(); } } @@ -5981,7 +5955,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 964; + this.state = 957; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 451728879) !== 0))) { this.errorHandler.recoverInline(this); @@ -6012,7 +5986,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 966; + this.state = 959; _la = this.tokenStream.LA(1); if(!(_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -6043,27 +6017,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 961; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 969; + this.state = 962; this.literalValue(); - this.state = 974; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 970; + this.state = 963; this.match(OpenSearchPPLParser.COMMA); - this.state = 971; + this.state = 964; this.literalValue(); } } - this.state = 976; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 977; + this.state = 970; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -6088,25 +6062,25 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 972; this.ident(); - this.state = 984; + this.state = 977; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 73, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 980; + this.state = 973; this.match(OpenSearchPPLParser.DOT); - this.state = 981; + this.state = 974; this.ident(); } } } - this.state = 986; + this.state = 979; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 73, this.context); } } } @@ -6126,30 +6100,28 @@ export class OpenSearchPPLParser extends antlr.Parser { public tableQualifiedName(): TableQualifiedNameContext { let localContext = new TableQualifiedNameContext(this.context, this.state); this.enterRule(localContext, 216, OpenSearchPPLParser.RULE_tableQualifiedName); + let _la: number; try { - let alternative: number; localContext = new IdentsAsTableQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 987; + this.state = 980; this.tableIdent(); - this.state = 992; + this.state = 985; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 988; - this.match(OpenSearchPPLParser.DOT); - this.state = 989; - this.ident(); - } - } + _la = this.tokenStream.LA(1); + while (_la === 111) { + { + { + this.state = 981; + this.match(OpenSearchPPLParser.DOT); + this.state = 982; + this.ident(); + } } - this.state = 994; + this.state = 987; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); + _la = this.tokenStream.LA(1); } } } @@ -6174,21 +6146,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsWildcardQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 988; this.wildcard(); - this.state = 1000; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 111) { { { - this.state = 996; + this.state = 989; this.match(OpenSearchPPLParser.DOT); - this.state = 997; + this.state = 990; this.wildcard(); } } - this.state = 1002; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6212,42 +6184,42 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 220, OpenSearchPPLParser.RULE_ident); let _la: number; try { - this.state = 1013; + this.state = 1006; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DOT: case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 1004; + this.state = 997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 1003; + this.state = 996; this.match(OpenSearchPPLParser.DOT); } } - this.state = 1006; + this.state = 999; this.match(OpenSearchPPLParser.ID); } break; case OpenSearchPPLParser.BACKTICK: this.enterOuterAlt(localContext, 2); { - this.state = 1007; + this.state = 1000; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1008; + this.state = 1001; this.ident(); - this.state = 1009; + this.state = 1002; this.match(OpenSearchPPLParser.BACKTICK); } break; case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 3); { - this.state = 1011; + this.state = 1004; this.match(OpenSearchPPLParser.BQUOTA_STRING); } break; @@ -6517,7 +6489,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.Y: this.enterOuterAlt(localContext, 4); { - this.state = 1012; + this.state = 1005; this.keywordsCanBeId(); } break; @@ -6545,17 +6517,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1016; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1015; + this.state = 1008; this.match(OpenSearchPPLParser.CLUSTER); } } - this.state = 1018; + this.state = 1011; this.ident(); } } @@ -6578,38 +6550,38 @@ export class OpenSearchPPLParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1043; + this.state = 1036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1013; this.ident(); - this.state = 1025; + this.state = 1018; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 81, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1021; + this.state = 1014; this.match(OpenSearchPPLParser.MODULE); - this.state = 1022; + this.state = 1015; this.ident(); } } } - this.state = 1027; + this.state = 1020; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 81, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); } - this.state = 1029; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1028; + this.state = 1021; this.match(OpenSearchPPLParser.MODULE); } } @@ -6619,33 +6591,33 @@ export class OpenSearchPPLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1031; + this.state = 1024; this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 1032; + this.state = 1025; this.wildcard(); - this.state = 1033; + this.state = 1026; this.match(OpenSearchPPLParser.SINGLE_QUOTE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1035; + this.state = 1028; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 1036; + this.state = 1029; this.wildcard(); - this.state = 1037; + this.state = 1030; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1039; + this.state = 1032; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1040; + this.state = 1033; this.wildcard(); - this.state = 1041; + this.state = 1034; this.match(OpenSearchPPLParser.BACKTICK); } break; @@ -6668,706 +6640,706 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KeywordsCanBeIdContext(this.context, this.state); this.enterRule(localContext, 226, OpenSearchPPLParser.RULE_keywordsCanBeId); try { - this.state = 1145; + this.state = 1138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1045; + this.state = 1038; this.match(OpenSearchPPLParser.D); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1046; + this.state = 1039; this.timespanUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1047; + this.state = 1040; this.match(OpenSearchPPLParser.SPAN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1048; + this.state = 1041; this.evalFunctionName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1049; + this.state = 1042; this.relevanceArgName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1050; + this.state = 1043; this.intervalUnit(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1051; + this.state = 1044; this.dateTimeFunctionName(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1052; + this.state = 1045; this.textFunctionName(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1053; + this.state = 1046; this.mathematicalFunctionName(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1054; + this.state = 1047; this.positionFunctionName(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1055; + this.state = 1048; this.match(OpenSearchPPLParser.SEARCH); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1056; + this.state = 1049; this.match(OpenSearchPPLParser.DESCRIBE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1057; + this.state = 1050; this.match(OpenSearchPPLParser.SHOW); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1058; + this.state = 1051; this.match(OpenSearchPPLParser.FROM); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1059; + this.state = 1052; this.match(OpenSearchPPLParser.WHERE); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1060; + this.state = 1053; this.match(OpenSearchPPLParser.FIELDS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1061; + this.state = 1054; this.match(OpenSearchPPLParser.RENAME); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1062; + this.state = 1055; this.match(OpenSearchPPLParser.STATS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1063; + this.state = 1056; this.match(OpenSearchPPLParser.DEDUP); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1064; + this.state = 1057; this.match(OpenSearchPPLParser.SORT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1065; + this.state = 1058; this.match(OpenSearchPPLParser.EVAL); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1066; + this.state = 1059; this.match(OpenSearchPPLParser.HEAD); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1067; + this.state = 1060; this.match(OpenSearchPPLParser.TOP); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1068; + this.state = 1061; this.match(OpenSearchPPLParser.RARE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1069; + this.state = 1062; this.match(OpenSearchPPLParser.PARSE); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1070; + this.state = 1063; this.match(OpenSearchPPLParser.METHOD); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1071; + this.state = 1064; this.match(OpenSearchPPLParser.REGEX); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1072; + this.state = 1065; this.match(OpenSearchPPLParser.PUNCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1073; + this.state = 1066; this.match(OpenSearchPPLParser.GROK); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1074; + this.state = 1067; this.match(OpenSearchPPLParser.PATTERN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1075; + this.state = 1068; this.match(OpenSearchPPLParser.PATTERNS); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1076; + this.state = 1069; this.match(OpenSearchPPLParser.NEW_FIELD); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1077; + this.state = 1070; this.match(OpenSearchPPLParser.KMEANS); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1078; + this.state = 1071; this.match(OpenSearchPPLParser.AD); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1079; + this.state = 1072; this.match(OpenSearchPPLParser.ML); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1080; + this.state = 1073; this.match(OpenSearchPPLParser.SOURCE); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1081; + this.state = 1074; this.match(OpenSearchPPLParser.INDEX); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1082; + this.state = 1075; this.match(OpenSearchPPLParser.DESC); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1083; + this.state = 1076; this.match(OpenSearchPPLParser.DATASOURCES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1084; + this.state = 1077; this.match(OpenSearchPPLParser.SORTBY); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1085; + this.state = 1078; this.match(OpenSearchPPLParser.STR); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1086; + this.state = 1079; this.match(OpenSearchPPLParser.IP); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1087; + this.state = 1080; this.match(OpenSearchPPLParser.NUM); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1088; + this.state = 1081; this.match(OpenSearchPPLParser.KEEPEMPTY); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1089; + this.state = 1082; this.match(OpenSearchPPLParser.CONSECUTIVE); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1090; + this.state = 1083; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1091; + this.state = 1084; this.match(OpenSearchPPLParser.PARTITIONS); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1092; + this.state = 1085; this.match(OpenSearchPPLParser.ALLNUM); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1093; + this.state = 1086; this.match(OpenSearchPPLParser.DELIM); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1094; + this.state = 1087; this.match(OpenSearchPPLParser.CENTROIDS); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1095; + this.state = 1088; this.match(OpenSearchPPLParser.ITERATIONS); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1096; + this.state = 1089; this.match(OpenSearchPPLParser.DISTANCE_TYPE); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1097; + this.state = 1090; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1098; + this.state = 1091; this.match(OpenSearchPPLParser.SHINGLE_SIZE); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1099; + this.state = 1092; this.match(OpenSearchPPLParser.SAMPLE_SIZE); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1100; + this.state = 1093; this.match(OpenSearchPPLParser.OUTPUT_AFTER); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1101; + this.state = 1094; this.match(OpenSearchPPLParser.TIME_DECAY); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1102; + this.state = 1095; this.match(OpenSearchPPLParser.ANOMALY_RATE); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1103; + this.state = 1096; this.match(OpenSearchPPLParser.CATEGORY_FIELD); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1104; + this.state = 1097; this.match(OpenSearchPPLParser.TIME_FIELD); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1105; + this.state = 1098; this.match(OpenSearchPPLParser.TIME_ZONE); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1106; + this.state = 1099; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1107; + this.state = 1100; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1108; + this.state = 1101; this.match(OpenSearchPPLParser.AVG); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1109; + this.state = 1102; this.match(OpenSearchPPLParser.COUNT); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1110; + this.state = 1103; this.match(OpenSearchPPLParser.DISTINCT_COUNT); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1111; + this.state = 1104; this.match(OpenSearchPPLParser.ESTDC); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1112; + this.state = 1105; this.match(OpenSearchPPLParser.ESTDC_ERROR); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1113; + this.state = 1106; this.match(OpenSearchPPLParser.MAX); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1114; + this.state = 1107; this.match(OpenSearchPPLParser.MEAN); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1115; + this.state = 1108; this.match(OpenSearchPPLParser.MEDIAN); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1116; + this.state = 1109; this.match(OpenSearchPPLParser.MIN); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1117; + this.state = 1110; this.match(OpenSearchPPLParser.MODE); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1118; + this.state = 1111; this.match(OpenSearchPPLParser.RANGE); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1119; + this.state = 1112; this.match(OpenSearchPPLParser.STDEV); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1120; + this.state = 1113; this.match(OpenSearchPPLParser.STDEVP); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1121; + this.state = 1114; this.match(OpenSearchPPLParser.SUM); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1122; + this.state = 1115; this.match(OpenSearchPPLParser.SUMSQ); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1123; + this.state = 1116; this.match(OpenSearchPPLParser.VAR_SAMP); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1124; + this.state = 1117; this.match(OpenSearchPPLParser.VAR_POP); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1125; + this.state = 1118; this.match(OpenSearchPPLParser.STDDEV_SAMP); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1126; + this.state = 1119; this.match(OpenSearchPPLParser.STDDEV_POP); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1127; + this.state = 1120; this.match(OpenSearchPPLParser.PERCENTILE); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1128; + this.state = 1121; this.match(OpenSearchPPLParser.TAKE); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1129; + this.state = 1122; this.match(OpenSearchPPLParser.FIRST); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1130; + this.state = 1123; this.match(OpenSearchPPLParser.LAST); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1131; + this.state = 1124; this.match(OpenSearchPPLParser.LIST); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1132; + this.state = 1125; this.match(OpenSearchPPLParser.VALUES); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1133; + this.state = 1126; this.match(OpenSearchPPLParser.EARLIEST); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1134; + this.state = 1127; this.match(OpenSearchPPLParser.EARLIEST_TIME); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1135; + this.state = 1128; this.match(OpenSearchPPLParser.LATEST); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1136; + this.state = 1129; this.match(OpenSearchPPLParser.LATEST_TIME); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1137; + this.state = 1130; this.match(OpenSearchPPLParser.PER_DAY); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1138; + this.state = 1131; this.match(OpenSearchPPLParser.PER_HOUR); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1139; + this.state = 1132; this.match(OpenSearchPPLParser.PER_MINUTE); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1140; + this.state = 1133; this.match(OpenSearchPPLParser.PER_SECOND); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1141; + this.state = 1134; this.match(OpenSearchPPLParser.RATE); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1142; + this.state = 1135; this.match(OpenSearchPPLParser.SPARKLINE); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1143; + this.state = 1136; this.match(OpenSearchPPLParser.C); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1144; + this.state = 1137; this.match(OpenSearchPPLParser.DC); } break; @@ -7418,7 +7390,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,336,1148,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, + 4,1,336,1141,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, @@ -7439,74 +7411,74 @@ export class OpenSearchPPLParser extends antlr.Parser { 8,0,1,0,1,0,1,1,1,1,1,2,1,2,1,3,1,3,1,3,5,3,241,8,3,10,3,12,3,244, 9,3,1,4,1,4,1,4,3,4,249,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, 1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,267,8,5,1,6,3,6,270,8,6,1,6,1,6, - 3,6,274,8,6,1,6,1,6,1,6,3,6,279,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,9, - 1,9,1,9,1,10,1,10,3,10,292,8,10,1,10,1,10,1,11,1,11,1,11,1,11,5, - 11,300,8,11,10,11,12,11,303,9,11,1,12,1,12,1,12,1,12,3,12,309,8, - 12,1,12,1,12,1,12,3,12,314,8,12,1,12,1,12,1,12,3,12,319,8,12,1,12, - 1,12,1,12,5,12,324,8,12,10,12,12,12,327,9,12,1,12,3,12,330,8,12, - 1,12,1,12,1,12,3,12,335,8,12,1,13,1,13,3,13,339,8,13,1,13,1,13,1, - 13,1,13,3,13,345,8,13,1,13,1,13,1,13,3,13,350,8,13,1,14,1,14,1,14, - 1,15,1,15,1,15,1,15,5,15,359,8,15,10,15,12,15,362,9,15,1,16,1,16, - 3,16,366,8,16,1,16,1,16,3,16,370,8,16,1,17,1,17,3,17,374,8,17,1, - 17,1,17,3,17,378,8,17,1,18,1,18,1,18,3,18,383,8,18,1,19,1,19,1,19, - 1,19,1,20,1,20,1,20,1,20,1,21,1,21,5,21,395,8,21,10,21,12,21,398, - 9,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,3,22,408,8,22,1,23, - 1,23,1,24,1,24,5,24,414,8,24,10,24,12,24,417,9,24,1,25,1,25,1,25, - 1,25,1,25,1,25,1,25,1,25,1,25,3,25,428,8,25,1,26,1,26,5,26,432,8, - 26,10,26,12,26,435,9,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,27,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,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27, - 1,27,1,27,3,27,473,8,27,1,28,1,28,5,28,477,8,28,10,28,12,28,480, - 9,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,3,30,492, - 8,30,1,31,1,31,1,31,5,31,497,8,31,10,31,12,31,500,9,31,1,32,1,32, - 1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,3,34,518,8,34,1,35,1,35,1,35,3,35,523,8,35,1,36,1,36,1,36,1, - 36,1,36,1,36,3,36,531,8,36,1,36,1,36,1,37,1,37,1,37,5,37,538,8,37, - 10,37,12,37,541,9,37,1,38,1,38,1,38,1,38,1,39,1,39,1,39,3,39,550, - 8,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40, - 1,40,1,40,1,40,3,40,567,8,40,1,41,1,41,1,42,1,42,1,42,1,42,1,42, - 3,42,576,8,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43, - 1,44,1,44,1,44,3,44,591,8,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45, - 599,8,45,1,45,1,45,1,45,1,45,1,45,3,45,606,8,45,1,45,1,45,1,45,1, - 45,5,45,612,8,45,10,45,12,45,615,9,45,1,46,1,46,1,46,1,46,1,46,1, - 46,1,46,1,46,3,46,625,8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1, - 47,1,47,1,47,3,47,637,8,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,645, - 8,47,10,47,12,47,648,9,47,1,48,1,48,1,48,1,48,3,48,654,8,48,1,49, - 1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,51,1,51,3,51,667,8,51, - 1,52,1,52,1,52,1,52,1,52,1,52,1,52,5,52,676,8,52,10,52,12,52,679, - 9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53,5,53,689,8,53,10,53, - 12,53,692,9,53,1,53,1,53,1,53,1,53,1,53,5,53,699,8,53,10,53,12,53, - 702,9,53,1,53,1,53,1,54,1,54,3,54,708,8,54,1,55,1,55,1,55,1,55,1, - 55,1,56,1,56,1,56,5,56,718,8,56,10,56,12,56,721,9,56,1,57,1,57,1, - 57,5,57,726,8,57,10,57,12,57,729,9,57,1,58,3,58,732,8,58,1,58,1, - 58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,757,8,59,1,60,1, - 60,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, - 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,65,3,65,790,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3, - 66,798,8,66,1,67,1,67,1,67,5,67,803,8,67,10,67,12,67,806,9,67,3, - 67,808,8,67,1,68,1,68,1,68,3,68,813,8,68,1,68,1,68,1,69,1,69,1,69, - 1,69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,831, - 8,71,1,72,1,72,3,72,835,8,72,1,73,1,73,3,73,839,8,73,1,74,1,74,1, - 75,1,75,3,75,845,8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, + 1,7,1,7,1,7,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,3,10,285,8,10,1,10, + 1,10,1,11,1,11,1,11,1,11,5,11,293,8,11,10,11,12,11,296,9,11,1,12, + 1,12,1,12,1,12,3,12,302,8,12,1,12,1,12,1,12,3,12,307,8,12,1,12,1, + 12,1,12,3,12,312,8,12,1,12,1,12,1,12,5,12,317,8,12,10,12,12,12,320, + 9,12,1,12,3,12,323,8,12,1,12,1,12,1,12,3,12,328,8,12,1,13,1,13,3, + 13,332,8,13,1,13,1,13,1,13,1,13,3,13,338,8,13,1,13,1,13,1,13,3,13, + 343,8,13,1,14,1,14,1,14,1,15,1,15,1,15,1,15,5,15,352,8,15,10,15, + 12,15,355,9,15,1,16,1,16,3,16,359,8,16,1,16,1,16,3,16,363,8,16,1, + 17,1,17,3,17,367,8,17,1,17,1,17,3,17,371,8,17,1,18,1,18,1,18,3,18, + 376,8,18,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21,5,21, + 388,8,21,10,21,12,21,391,9,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22, + 1,22,3,22,401,8,22,1,23,1,23,1,24,1,24,5,24,407,8,24,10,24,12,24, + 410,9,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,3,25,421,8, + 25,1,26,1,26,5,26,425,8,26,10,26,12,26,428,9,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,27,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,27,1,27,1,27,1,27,1, + 27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,466,8,27,1,28,1,28,5,28,470, + 8,28,10,28,12,28,473,9,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30, + 1,30,1,30,3,30,485,8,30,1,31,1,31,1,31,5,31,490,8,31,10,31,12,31, + 493,9,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34, + 1,34,1,34,1,34,1,34,1,34,3,34,511,8,34,1,35,1,35,1,35,3,35,516,8, + 35,1,36,1,36,1,36,1,36,1,36,1,36,3,36,524,8,36,1,36,1,36,1,37,1, + 37,1,37,5,37,531,8,37,10,37,12,37,534,9,37,1,38,1,38,1,38,1,38,1, + 39,1,39,1,39,3,39,543,8,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1, + 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,3,40,560,8,40,1,41,1,41,1, + 42,1,42,1,42,1,42,1,42,3,42,569,8,42,1,42,1,42,1,43,1,43,1,43,1, + 43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,3,44,584,8,44,1,45,1,45,1, + 45,1,45,1,45,1,45,3,45,592,8,45,1,45,1,45,1,45,1,45,1,45,3,45,599, + 8,45,1,45,1,45,1,45,1,45,5,45,605,8,45,10,45,12,45,608,9,45,1,46, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,618,8,46,1,47,1,47,1,47, + 1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,630,8,47,1,47,1,47,1,47, + 1,47,1,47,1,47,5,47,638,8,47,10,47,12,47,641,9,47,1,48,1,48,1,48, + 1,48,3,48,647,8,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50, + 1,51,1,51,3,51,660,8,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,5,52, + 669,8,52,10,52,12,52,672,9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53, + 1,53,5,53,682,8,53,10,53,12,53,685,9,53,1,53,1,53,1,53,1,53,1,53, + 5,53,692,8,53,10,53,12,53,695,9,53,1,53,1,53,1,54,1,54,3,54,701, + 8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,5,56,711,8,56,10,56, + 12,56,714,9,56,1,57,1,57,1,57,5,57,719,8,57,10,57,12,57,722,9,57, + 1,58,3,58,725,8,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59, + 1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59, + 1,59,3,59,750,8,59,1,60,1,60,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,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,65,3,65,783,8,65,1,66, + 1,66,1,66,1,66,1,66,1,66,3,66,791,8,66,1,67,1,67,1,67,5,67,796,8, + 67,10,67,12,67,799,9,67,3,67,801,8,67,1,68,1,68,1,68,3,68,806,8, + 68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70,1,71,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,3,71,824,8,71,1,72,1,72,3,72,828,8,72,1,73,1,73, + 3,73,832,8,73,1,74,1,74,1,75,1,75,3,75,838,8,75,1,76,1,76,1,76,1, 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, - 76,1,76,3,76,870,8,76,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1, - 79,1,79,1,79,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1, - 82,1,83,1,83,1,84,1,84,3,84,898,8,84,1,85,1,85,1,85,1,85,1,85,1, - 85,1,85,1,85,1,85,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1, - 90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3, - 94,931,8,94,1,95,1,95,1,95,1,95,1,96,1,96,1,97,3,97,940,8,97,1,97, - 1,97,1,98,3,98,945,8,98,1,98,1,98,1,99,1,99,1,100,1,100,1,100,3, - 100,954,8,100,1,101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1, - 103,1,104,1,104,1,105,1,105,1,106,1,106,1,106,1,106,5,106,973,8, - 106,10,106,12,106,976,9,106,1,106,1,106,1,107,1,107,1,107,5,107, - 983,8,107,10,107,12,107,986,9,107,1,108,1,108,1,108,5,108,991,8, - 108,10,108,12,108,994,9,108,1,109,1,109,1,109,5,109,999,8,109,10, - 109,12,109,1002,9,109,1,110,3,110,1005,8,110,1,110,1,110,1,110,1, - 110,1,110,1,110,1,110,3,110,1014,8,110,1,111,3,111,1017,8,111,1, - 111,1,111,1,112,1,112,1,112,5,112,1024,8,112,10,112,12,112,1027, - 9,112,1,112,3,112,1030,8,112,1,112,1,112,1,112,1,112,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,1044,8,112,1,113,1,113, + 76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,863,8,76,1,77,1,77,1,78,1, + 78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,81,1,81,1,81,1, + 81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84,1,84,3,84,891,8,84,1, + 85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,87,1,87,1, + 88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,1, + 94,1,94,1,94,1,94,1,94,3,94,924,8,94,1,95,1,95,1,95,1,95,1,96,1, + 96,1,97,3,97,933,8,97,1,97,1,97,1,98,3,98,938,8,98,1,98,1,98,1,99, + 1,99,1,100,1,100,1,100,3,100,947,8,100,1,101,1,101,1,101,1,102,1, + 102,1,102,1,103,1,103,1,103,1,104,1,104,1,105,1,105,1,106,1,106, + 1,106,1,106,5,106,966,8,106,10,106,12,106,969,9,106,1,106,1,106, + 1,107,1,107,1,107,5,107,976,8,107,10,107,12,107,979,9,107,1,108, + 1,108,1,108,5,108,984,8,108,10,108,12,108,987,9,108,1,109,1,109, + 1,109,5,109,992,8,109,10,109,12,109,995,9,109,1,110,3,110,998,8, + 110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,1007,8,110,1, + 111,3,111,1010,8,111,1,111,1,111,1,112,1,112,1,112,5,112,1017,8, + 112,10,112,12,112,1020,9,112,1,112,3,112,1023,8,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112, + 1037,8,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, @@ -7515,374 +7487,370 @@ export class OpenSearchPPLParser extends antlr.Parser { 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, - 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,3,113, - 1146,8,113,1,113,0,2,90,94,114,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,0,21,1,0,118,119,1,0, - 18,19,2,0,137,137,171,171,5,0,135,136,140,140,143,143,148,148,150, - 153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195,204,13,0,68,70,74, - 74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205,222,224,225,227, - 243,246,255,4,0,69,69,212,212,241,241,243,243,8,0,70,70,76,76,82, - 82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75,77,78,80,80,85, - 85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0,256,260,262,273, - 2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333,334,1,0,65,66, - 9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95,97,98,9,0,31, - 31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327,1302,0,229, - 1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248,1,0,0,0, - 10,266,1,0,0,0,12,278,1,0,0,0,14,280,1,0,0,0,16,283,1,0,0,0,18,286, - 1,0,0,0,20,289,1,0,0,0,22,295,1,0,0,0,24,304,1,0,0,0,26,336,1,0, - 0,0,28,351,1,0,0,0,30,354,1,0,0,0,32,363,1,0,0,0,34,371,1,0,0,0, - 36,379,1,0,0,0,38,384,1,0,0,0,40,388,1,0,0,0,42,392,1,0,0,0,44,407, - 1,0,0,0,46,409,1,0,0,0,48,411,1,0,0,0,50,427,1,0,0,0,52,429,1,0, - 0,0,54,472,1,0,0,0,56,474,1,0,0,0,58,481,1,0,0,0,60,491,1,0,0,0, - 62,493,1,0,0,0,64,501,1,0,0,0,66,505,1,0,0,0,68,517,1,0,0,0,70,519, - 1,0,0,0,72,524,1,0,0,0,74,534,1,0,0,0,76,542,1,0,0,0,78,546,1,0, - 0,0,80,566,1,0,0,0,82,568,1,0,0,0,84,570,1,0,0,0,86,579,1,0,0,0, - 88,590,1,0,0,0,90,598,1,0,0,0,92,624,1,0,0,0,94,636,1,0,0,0,96,653, - 1,0,0,0,98,655,1,0,0,0,100,662,1,0,0,0,102,666,1,0,0,0,104,668,1, - 0,0,0,106,682,1,0,0,0,108,707,1,0,0,0,110,709,1,0,0,0,112,714,1, - 0,0,0,114,722,1,0,0,0,116,731,1,0,0,0,118,756,1,0,0,0,120,758,1, - 0,0,0,122,760,1,0,0,0,124,762,1,0,0,0,126,767,1,0,0,0,128,774,1, - 0,0,0,130,789,1,0,0,0,132,797,1,0,0,0,134,807,1,0,0,0,136,812,1, - 0,0,0,138,816,1,0,0,0,140,820,1,0,0,0,142,830,1,0,0,0,144,834,1, - 0,0,0,146,838,1,0,0,0,148,840,1,0,0,0,150,844,1,0,0,0,152,869,1, - 0,0,0,154,871,1,0,0,0,156,873,1,0,0,0,158,875,1,0,0,0,160,882,1, - 0,0,0,162,884,1,0,0,0,164,891,1,0,0,0,166,893,1,0,0,0,168,897,1, - 0,0,0,170,899,1,0,0,0,172,908,1,0,0,0,174,910,1,0,0,0,176,912,1, - 0,0,0,178,914,1,0,0,0,180,916,1,0,0,0,182,918,1,0,0,0,184,920,1, - 0,0,0,186,922,1,0,0,0,188,930,1,0,0,0,190,932,1,0,0,0,192,936,1, - 0,0,0,194,939,1,0,0,0,196,944,1,0,0,0,198,948,1,0,0,0,200,953,1, - 0,0,0,202,955,1,0,0,0,204,958,1,0,0,0,206,961,1,0,0,0,208,964,1, - 0,0,0,210,966,1,0,0,0,212,968,1,0,0,0,214,979,1,0,0,0,216,987,1, - 0,0,0,218,995,1,0,0,0,220,1013,1,0,0,0,222,1016,1,0,0,0,224,1043, - 1,0,0,0,226,1145,1,0,0,0,228,230,3,2,1,0,229,228,1,0,0,0,229,230, - 1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0,0,0,233,234,3, - 4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0,237,242,3,8,4, - 0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0,0,241,244,1,0, - 0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0,244,242,1,0,0, - 0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8,0,248,245,1,0, - 0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0,250,267,3,18,9, - 0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24,12,0,254,267, - 3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267,3,32,16,0, - 258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0,261,267,3, - 40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3,52,26,0,265, - 267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252,1,0,0,0,266, - 253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256,1,0,0,0,266, - 257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260,1,0,0,0,266, - 261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264,1,0,0,0,266, - 265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1,0,0,0,269,270, - 1,0,0,0,270,271,1,0,0,0,271,279,3,60,30,0,272,274,5,2,0,0,273,272, - 1,0,0,0,273,274,1,0,0,0,274,275,1,0,0,0,275,276,3,60,30,0,276,277, - 3,90,45,0,277,279,1,0,0,0,278,269,1,0,0,0,278,273,1,0,0,0,279,13, - 1,0,0,0,280,281,5,3,0,0,281,282,3,62,31,0,282,15,1,0,0,0,283,284, - 5,4,0,0,284,285,5,33,0,0,285,17,1,0,0,0,286,287,5,6,0,0,287,288, - 3,90,45,0,288,19,1,0,0,0,289,291,5,7,0,0,290,292,7,0,0,0,291,290, - 1,0,0,0,291,292,1,0,0,0,292,293,1,0,0,0,293,294,3,112,56,0,294,21, - 1,0,0,0,295,296,5,8,0,0,296,301,3,64,32,0,297,298,5,110,0,0,298, - 300,3,64,32,0,299,297,1,0,0,0,300,303,1,0,0,0,301,299,1,0,0,0,301, - 302,1,0,0,0,302,23,1,0,0,0,303,301,1,0,0,0,304,308,5,9,0,0,305,306, - 5,42,0,0,306,307,5,112,0,0,307,309,3,194,97,0,308,305,1,0,0,0,308, - 309,1,0,0,0,309,313,1,0,0,0,310,311,5,43,0,0,311,312,5,112,0,0,312, - 314,3,198,99,0,313,310,1,0,0,0,313,314,1,0,0,0,314,318,1,0,0,0,315, - 316,5,44,0,0,316,317,5,112,0,0,317,319,3,192,96,0,318,315,1,0,0, - 0,318,319,1,0,0,0,319,320,1,0,0,0,320,325,3,78,39,0,321,322,5,110, - 0,0,322,324,3,78,39,0,323,321,1,0,0,0,324,327,1,0,0,0,325,323,1, - 0,0,0,325,326,1,0,0,0,326,329,1,0,0,0,327,325,1,0,0,0,328,330,3, - 68,34,0,329,328,1,0,0,0,329,330,1,0,0,0,330,334,1,0,0,0,331,332, - 5,41,0,0,332,333,5,112,0,0,333,335,3,198,99,0,334,331,1,0,0,0,334, - 335,1,0,0,0,335,25,1,0,0,0,336,338,5,10,0,0,337,339,3,194,97,0,338, - 337,1,0,0,0,338,339,1,0,0,0,339,340,1,0,0,0,340,344,3,112,56,0,341, - 342,5,39,0,0,342,343,5,112,0,0,343,345,3,198,99,0,344,341,1,0,0, - 0,344,345,1,0,0,0,345,349,1,0,0,0,346,347,5,40,0,0,347,348,5,112, - 0,0,348,350,3,198,99,0,349,346,1,0,0,0,349,350,1,0,0,0,350,27,1, - 0,0,0,351,352,5,11,0,0,352,353,3,74,37,0,353,29,1,0,0,0,354,355, - 5,12,0,0,355,360,3,76,38,0,356,357,5,110,0,0,357,359,3,76,38,0,358, - 356,1,0,0,0,359,362,1,0,0,0,360,358,1,0,0,0,360,361,1,0,0,0,361, - 31,1,0,0,0,362,360,1,0,0,0,363,365,5,13,0,0,364,366,3,194,97,0,365, - 364,1,0,0,0,365,366,1,0,0,0,366,369,1,0,0,0,367,368,5,5,0,0,368, - 370,3,194,97,0,369,367,1,0,0,0,369,370,1,0,0,0,370,33,1,0,0,0,371, - 373,5,14,0,0,372,374,3,194,97,0,373,372,1,0,0,0,373,374,1,0,0,0, - 374,375,1,0,0,0,375,377,3,112,56,0,376,378,3,66,33,0,377,376,1,0, - 0,0,377,378,1,0,0,0,378,35,1,0,0,0,379,380,5,15,0,0,380,382,3,112, - 56,0,381,383,3,66,33,0,382,381,1,0,0,0,382,383,1,0,0,0,383,37,1, - 0,0,0,384,385,5,20,0,0,385,386,3,88,44,0,386,387,3,192,96,0,387, - 39,1,0,0,0,388,389,5,16,0,0,389,390,3,88,44,0,390,391,3,192,96,0, - 391,41,1,0,0,0,392,396,5,22,0,0,393,395,3,44,22,0,394,393,1,0,0, - 0,395,398,1,0,0,0,396,394,1,0,0,0,396,397,1,0,0,0,397,399,1,0,0, - 0,398,396,1,0,0,0,399,400,3,88,44,0,400,43,1,0,0,0,401,402,5,23, - 0,0,402,403,5,112,0,0,403,408,3,192,96,0,404,405,5,21,0,0,405,406, - 5,112,0,0,406,408,3,192,96,0,407,401,1,0,0,0,407,404,1,0,0,0,408, - 45,1,0,0,0,409,410,7,1,0,0,410,47,1,0,0,0,411,415,5,24,0,0,412,414, - 3,50,25,0,413,412,1,0,0,0,414,417,1,0,0,0,415,413,1,0,0,0,415,416, - 1,0,0,0,416,49,1,0,0,0,417,415,1,0,0,0,418,419,5,45,0,0,419,420, - 5,112,0,0,420,428,3,194,97,0,421,422,5,46,0,0,422,423,5,112,0,0, - 423,428,3,194,97,0,424,425,5,47,0,0,425,426,5,112,0,0,426,428,3, - 192,96,0,427,418,1,0,0,0,427,421,1,0,0,0,427,424,1,0,0,0,428,51, - 1,0,0,0,429,433,5,25,0,0,430,432,3,54,27,0,431,430,1,0,0,0,432,435, - 1,0,0,0,433,431,1,0,0,0,433,434,1,0,0,0,434,53,1,0,0,0,435,433,1, - 0,0,0,436,437,5,48,0,0,437,438,5,112,0,0,438,473,3,194,97,0,439, - 440,5,49,0,0,440,441,5,112,0,0,441,473,3,194,97,0,442,443,5,50,0, - 0,443,444,5,112,0,0,444,473,3,194,97,0,445,446,5,51,0,0,446,447, - 5,112,0,0,447,473,3,194,97,0,448,449,5,52,0,0,449,450,5,112,0,0, - 450,473,3,196,98,0,451,452,5,53,0,0,452,453,5,112,0,0,453,473,3, - 196,98,0,454,455,5,54,0,0,455,456,5,112,0,0,456,473,3,192,96,0,457, - 458,5,55,0,0,458,459,5,112,0,0,459,473,3,192,96,0,460,461,5,215, - 0,0,461,462,5,112,0,0,462,473,3,192,96,0,463,464,5,56,0,0,464,465, - 5,112,0,0,465,473,3,192,96,0,466,467,5,57,0,0,467,468,5,112,0,0, - 468,473,3,194,97,0,469,470,5,58,0,0,470,471,5,112,0,0,471,473,3, - 196,98,0,472,436,1,0,0,0,472,439,1,0,0,0,472,442,1,0,0,0,472,445, - 1,0,0,0,472,448,1,0,0,0,472,451,1,0,0,0,472,454,1,0,0,0,472,457, - 1,0,0,0,472,460,1,0,0,0,472,463,1,0,0,0,472,466,1,0,0,0,472,469, - 1,0,0,0,473,55,1,0,0,0,474,478,5,26,0,0,475,477,3,58,29,0,476,475, - 1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0,478,479,1,0,0,0,479,57,1, - 0,0,0,480,478,1,0,0,0,481,482,3,220,110,0,482,483,5,112,0,0,483, - 484,3,188,94,0,484,59,1,0,0,0,485,486,5,29,0,0,486,487,5,112,0,0, - 487,492,3,62,31,0,488,489,5,30,0,0,489,490,5,112,0,0,490,492,3,62, - 31,0,491,485,1,0,0,0,491,488,1,0,0,0,492,61,1,0,0,0,493,498,3,108, - 54,0,494,495,5,110,0,0,495,497,3,108,54,0,496,494,1,0,0,0,497,500, - 1,0,0,0,498,496,1,0,0,0,498,499,1,0,0,0,499,63,1,0,0,0,500,498,1, - 0,0,0,501,502,3,122,61,0,502,503,5,27,0,0,503,504,3,122,61,0,504, - 65,1,0,0,0,505,506,5,28,0,0,506,507,3,112,56,0,507,67,1,0,0,0,508, - 509,5,28,0,0,509,518,3,112,56,0,510,511,5,28,0,0,511,518,3,70,35, - 0,512,513,5,28,0,0,513,514,3,70,35,0,514,515,5,110,0,0,515,516,3, - 112,56,0,516,518,1,0,0,0,517,508,1,0,0,0,517,510,1,0,0,0,517,512, - 1,0,0,0,518,69,1,0,0,0,519,522,3,72,36,0,520,521,5,27,0,0,521,523, - 3,214,107,0,522,520,1,0,0,0,522,523,1,0,0,0,523,71,1,0,0,0,524,525, - 5,320,0,0,525,526,5,125,0,0,526,527,3,120,60,0,527,528,5,110,0,0, - 528,530,3,188,94,0,529,531,3,210,105,0,530,529,1,0,0,0,530,531,1, - 0,0,0,531,532,1,0,0,0,532,533,5,126,0,0,533,73,1,0,0,0,534,539,3, - 116,58,0,535,536,5,110,0,0,536,538,3,116,58,0,537,535,1,0,0,0,538, - 541,1,0,0,0,539,537,1,0,0,0,539,540,1,0,0,0,540,75,1,0,0,0,541,539, - 1,0,0,0,542,543,3,120,60,0,543,544,5,112,0,0,544,545,3,88,44,0,545, - 77,1,0,0,0,546,549,3,80,40,0,547,548,5,27,0,0,548,550,3,122,61,0, - 549,547,1,0,0,0,549,550,1,0,0,0,550,79,1,0,0,0,551,552,3,82,41,0, - 552,553,5,125,0,0,553,554,3,94,47,0,554,555,5,126,0,0,555,567,1, - 0,0,0,556,557,5,136,0,0,557,558,5,125,0,0,558,567,5,126,0,0,559, - 560,7,2,0,0,560,561,5,125,0,0,561,562,3,94,47,0,562,563,5,126,0, - 0,563,567,1,0,0,0,564,567,3,86,43,0,565,567,3,84,42,0,566,551,1, - 0,0,0,566,556,1,0,0,0,566,559,1,0,0,0,566,564,1,0,0,0,566,565,1, - 0,0,0,567,81,1,0,0,0,568,569,7,3,0,0,569,83,1,0,0,0,570,571,5,155, - 0,0,571,572,5,125,0,0,572,575,3,120,60,0,573,574,5,110,0,0,574,576, - 3,194,97,0,575,573,1,0,0,0,575,576,1,0,0,0,576,577,1,0,0,0,577,578, - 5,126,0,0,578,85,1,0,0,0,579,580,5,154,0,0,580,581,5,114,0,0,581, - 582,3,194,97,0,582,583,5,113,0,0,583,584,5,125,0,0,584,585,3,120, - 60,0,585,586,5,126,0,0,586,87,1,0,0,0,587,591,3,90,45,0,588,591, - 3,92,46,0,589,591,3,94,47,0,590,587,1,0,0,0,590,588,1,0,0,0,590, - 589,1,0,0,0,591,89,1,0,0,0,592,593,6,45,-1,0,593,599,3,92,46,0,594, - 595,5,61,0,0,595,599,3,90,45,6,596,599,3,100,50,0,597,599,3,102, - 51,0,598,592,1,0,0,0,598,594,1,0,0,0,598,596,1,0,0,0,598,597,1,0, - 0,0,599,613,1,0,0,0,600,601,10,5,0,0,601,602,5,62,0,0,602,612,3, - 90,45,6,603,605,10,4,0,0,604,606,5,63,0,0,605,604,1,0,0,0,605,606, - 1,0,0,0,606,607,1,0,0,0,607,612,3,90,45,5,608,609,10,3,0,0,609,610, - 5,64,0,0,610,612,3,90,45,4,611,600,1,0,0,0,611,603,1,0,0,0,611,608, - 1,0,0,0,612,615,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614,91,1, - 0,0,0,615,613,1,0,0,0,616,617,3,94,47,0,617,618,3,182,91,0,618,619, - 3,94,47,0,619,625,1,0,0,0,620,621,3,94,47,0,621,622,5,60,0,0,622, - 623,3,212,106,0,623,625,1,0,0,0,624,616,1,0,0,0,624,620,1,0,0,0, - 625,93,1,0,0,0,626,627,6,47,-1,0,627,637,3,96,48,0,628,637,3,98, - 49,0,629,637,3,162,81,0,630,637,3,158,79,0,631,637,3,170,85,0,632, - 633,5,125,0,0,633,634,3,94,47,0,634,635,5,126,0,0,635,637,1,0,0, - 0,636,626,1,0,0,0,636,628,1,0,0,0,636,629,1,0,0,0,636,630,1,0,0, - 0,636,631,1,0,0,0,636,632,1,0,0,0,637,646,1,0,0,0,638,639,10,8,0, - 0,639,640,7,4,0,0,640,645,3,94,47,9,641,642,10,7,0,0,642,643,7,0, - 0,0,643,645,3,94,47,8,644,638,1,0,0,0,644,641,1,0,0,0,645,648,1, - 0,0,0,646,644,1,0,0,0,646,647,1,0,0,0,647,95,1,0,0,0,648,646,1,0, - 0,0,649,654,3,124,62,0,650,654,3,126,63,0,651,654,3,120,60,0,652, - 654,3,188,94,0,653,649,1,0,0,0,653,650,1,0,0,0,653,651,1,0,0,0,653, - 652,1,0,0,0,654,97,1,0,0,0,655,656,3,180,90,0,656,657,5,125,0,0, - 657,658,3,136,68,0,658,659,5,60,0,0,659,660,3,136,68,0,660,661,5, - 126,0,0,661,99,1,0,0,0,662,663,3,128,64,0,663,101,1,0,0,0,664,667, - 3,104,52,0,665,667,3,106,53,0,666,664,1,0,0,0,666,665,1,0,0,0,667, - 103,1,0,0,0,668,669,3,184,92,0,669,670,5,125,0,0,670,671,3,146,73, - 0,671,672,5,110,0,0,672,677,3,148,74,0,673,674,5,110,0,0,674,676, - 3,138,69,0,675,673,1,0,0,0,676,679,1,0,0,0,677,675,1,0,0,0,677,678, - 1,0,0,0,678,680,1,0,0,0,679,677,1,0,0,0,680,681,5,126,0,0,681,105, - 1,0,0,0,682,683,3,186,93,0,683,684,5,125,0,0,684,685,5,127,0,0,685, - 690,3,142,71,0,686,687,5,110,0,0,687,689,3,142,71,0,688,686,1,0, - 0,0,689,692,1,0,0,0,690,688,1,0,0,0,690,691,1,0,0,0,691,693,1,0, - 0,0,692,690,1,0,0,0,693,694,5,128,0,0,694,695,5,110,0,0,695,700, - 3,148,74,0,696,697,5,110,0,0,697,699,3,138,69,0,698,696,1,0,0,0, - 699,702,1,0,0,0,700,698,1,0,0,0,700,701,1,0,0,0,701,703,1,0,0,0, - 702,700,1,0,0,0,703,704,5,126,0,0,704,107,1,0,0,0,705,708,3,216, - 108,0,706,708,5,332,0,0,707,705,1,0,0,0,707,706,1,0,0,0,708,109, - 1,0,0,0,709,710,3,214,107,0,710,711,5,125,0,0,711,712,3,134,67,0, - 712,713,5,126,0,0,713,111,1,0,0,0,714,719,3,120,60,0,715,716,5,110, - 0,0,716,718,3,120,60,0,717,715,1,0,0,0,718,721,1,0,0,0,719,717,1, - 0,0,0,719,720,1,0,0,0,720,113,1,0,0,0,721,719,1,0,0,0,722,727,3, - 122,61,0,723,724,5,110,0,0,724,726,3,122,61,0,725,723,1,0,0,0,726, - 729,1,0,0,0,727,725,1,0,0,0,727,728,1,0,0,0,728,115,1,0,0,0,729, - 727,1,0,0,0,730,732,7,0,0,0,731,730,1,0,0,0,731,732,1,0,0,0,732, - 733,1,0,0,0,733,734,3,118,59,0,734,117,1,0,0,0,735,757,3,120,60, - 0,736,737,5,35,0,0,737,738,5,125,0,0,738,739,3,120,60,0,739,740, - 5,126,0,0,740,757,1,0,0,0,741,742,5,36,0,0,742,743,5,125,0,0,743, - 744,3,120,60,0,744,745,5,126,0,0,745,757,1,0,0,0,746,747,5,37,0, - 0,747,748,5,125,0,0,748,749,3,120,60,0,749,750,5,126,0,0,750,757, - 1,0,0,0,751,752,5,38,0,0,752,753,5,125,0,0,753,754,3,120,60,0,754, - 755,5,126,0,0,755,757,1,0,0,0,756,735,1,0,0,0,756,736,1,0,0,0,756, - 741,1,0,0,0,756,746,1,0,0,0,756,751,1,0,0,0,757,119,1,0,0,0,758, - 759,3,214,107,0,759,121,1,0,0,0,760,761,3,218,109,0,761,123,1,0, - 0,0,762,763,3,132,66,0,763,764,5,125,0,0,764,765,3,134,67,0,765, - 766,5,126,0,0,766,125,1,0,0,0,767,768,5,274,0,0,768,769,5,125,0, - 0,769,770,3,88,44,0,770,771,5,27,0,0,771,772,3,130,65,0,772,773, - 5,126,0,0,773,127,1,0,0,0,774,775,3,174,87,0,775,776,5,125,0,0,776, - 777,3,134,67,0,777,778,5,126,0,0,778,129,1,0,0,0,779,790,5,212,0, - 0,780,790,5,241,0,0,781,790,5,243,0,0,782,790,5,102,0,0,783,790, - 5,103,0,0,784,790,5,104,0,0,785,790,5,105,0,0,786,790,5,106,0,0, - 787,790,5,107,0,0,788,790,5,108,0,0,789,779,1,0,0,0,789,780,1,0, - 0,0,789,781,1,0,0,0,789,782,1,0,0,0,789,783,1,0,0,0,789,784,1,0, - 0,0,789,785,1,0,0,0,789,786,1,0,0,0,789,787,1,0,0,0,789,788,1,0, - 0,0,790,131,1,0,0,0,791,798,3,152,76,0,792,798,3,156,78,0,793,798, - 3,178,89,0,794,798,3,174,87,0,795,798,3,176,88,0,796,798,3,180,90, - 0,797,791,1,0,0,0,797,792,1,0,0,0,797,793,1,0,0,0,797,794,1,0,0, - 0,797,795,1,0,0,0,797,796,1,0,0,0,798,133,1,0,0,0,799,804,3,136, - 68,0,800,801,5,110,0,0,801,803,3,136,68,0,802,800,1,0,0,0,803,806, - 1,0,0,0,804,802,1,0,0,0,804,805,1,0,0,0,805,808,1,0,0,0,806,804, - 1,0,0,0,807,799,1,0,0,0,807,808,1,0,0,0,808,135,1,0,0,0,809,810, - 3,220,110,0,810,811,5,112,0,0,811,813,1,0,0,0,812,809,1,0,0,0,812, - 813,1,0,0,0,813,814,1,0,0,0,814,815,3,94,47,0,815,137,1,0,0,0,816, - 817,3,140,70,0,817,818,5,112,0,0,818,819,3,150,75,0,819,139,1,0, - 0,0,820,821,7,5,0,0,821,141,1,0,0,0,822,831,3,146,73,0,823,824,3, - 146,73,0,824,825,3,144,72,0,825,831,1,0,0,0,826,827,3,146,73,0,827, - 828,5,134,0,0,828,829,3,144,72,0,829,831,1,0,0,0,830,822,1,0,0,0, - 830,823,1,0,0,0,830,826,1,0,0,0,831,143,1,0,0,0,832,835,3,194,97, - 0,833,835,3,196,98,0,834,832,1,0,0,0,834,833,1,0,0,0,835,145,1,0, - 0,0,836,839,3,214,107,0,837,839,3,192,96,0,838,836,1,0,0,0,838,837, - 1,0,0,0,839,147,1,0,0,0,840,841,3,150,75,0,841,149,1,0,0,0,842,845, - 3,214,107,0,843,845,3,188,94,0,844,842,1,0,0,0,844,843,1,0,0,0,845, - 151,1,0,0,0,846,870,5,172,0,0,847,870,5,173,0,0,848,870,5,174,0, - 0,849,870,5,175,0,0,850,870,5,176,0,0,851,870,5,177,0,0,852,870, - 5,178,0,0,853,870,5,179,0,0,854,870,5,180,0,0,855,870,5,181,0,0, - 856,870,5,182,0,0,857,870,5,183,0,0,858,870,5,184,0,0,859,870,5, - 185,0,0,860,870,5,186,0,0,861,870,5,188,0,0,862,870,5,189,0,0,863, - 870,5,190,0,0,864,870,5,191,0,0,865,870,5,192,0,0,866,870,5,193, - 0,0,867,870,5,194,0,0,868,870,3,154,77,0,869,846,1,0,0,0,869,847, - 1,0,0,0,869,848,1,0,0,0,869,849,1,0,0,0,869,850,1,0,0,0,869,851, - 1,0,0,0,869,852,1,0,0,0,869,853,1,0,0,0,869,854,1,0,0,0,869,855, - 1,0,0,0,869,856,1,0,0,0,869,857,1,0,0,0,869,858,1,0,0,0,869,859, - 1,0,0,0,869,860,1,0,0,0,869,861,1,0,0,0,869,862,1,0,0,0,869,863, - 1,0,0,0,869,864,1,0,0,0,869,865,1,0,0,0,869,866,1,0,0,0,869,867, - 1,0,0,0,869,868,1,0,0,0,870,153,1,0,0,0,871,872,7,6,0,0,872,155, - 1,0,0,0,873,874,7,7,0,0,874,157,1,0,0,0,875,876,5,226,0,0,876,877, - 5,125,0,0,877,878,3,160,80,0,878,879,5,110,0,0,879,880,3,136,68, - 0,880,881,5,126,0,0,881,159,1,0,0,0,882,883,7,8,0,0,883,161,1,0, - 0,0,884,885,5,223,0,0,885,886,5,125,0,0,886,887,3,168,84,0,887,888, - 5,5,0,0,888,889,3,136,68,0,889,890,5,126,0,0,890,163,1,0,0,0,891, - 892,7,9,0,0,892,165,1,0,0,0,893,894,7,10,0,0,894,167,1,0,0,0,895, - 898,3,164,82,0,896,898,3,166,83,0,897,895,1,0,0,0,897,896,1,0,0, - 0,898,169,1,0,0,0,899,900,3,172,86,0,900,901,5,125,0,0,901,902,3, - 164,82,0,902,903,5,110,0,0,903,904,3,136,68,0,904,905,5,110,0,0, - 905,906,3,136,68,0,906,907,5,126,0,0,907,171,1,0,0,0,908,909,7,11, - 0,0,909,173,1,0,0,0,910,911,7,12,0,0,911,175,1,0,0,0,912,913,5,281, - 0,0,913,177,1,0,0,0,914,915,7,13,0,0,915,179,1,0,0,0,916,917,5,187, - 0,0,917,181,1,0,0,0,918,919,7,14,0,0,919,183,1,0,0,0,920,921,7,15, - 0,0,921,185,1,0,0,0,922,923,7,16,0,0,923,187,1,0,0,0,924,931,3,190, - 95,0,925,931,3,192,96,0,926,931,3,194,97,0,927,931,3,196,98,0,928, - 931,3,198,99,0,929,931,3,200,100,0,930,924,1,0,0,0,930,925,1,0,0, - 0,930,926,1,0,0,0,930,927,1,0,0,0,930,928,1,0,0,0,930,929,1,0,0, - 0,931,189,1,0,0,0,932,933,5,81,0,0,933,934,3,94,47,0,934,935,3,208, - 104,0,935,191,1,0,0,0,936,937,7,17,0,0,937,193,1,0,0,0,938,940,7, - 0,0,0,939,938,1,0,0,0,939,940,1,0,0,0,940,941,1,0,0,0,941,942,5, - 330,0,0,942,195,1,0,0,0,943,945,7,0,0,0,944,943,1,0,0,0,944,945, - 1,0,0,0,945,946,1,0,0,0,946,947,5,331,0,0,947,197,1,0,0,0,948,949, - 7,18,0,0,949,199,1,0,0,0,950,954,3,202,101,0,951,954,3,204,102,0, - 952,954,3,206,103,0,953,950,1,0,0,0,953,951,1,0,0,0,953,952,1,0, - 0,0,954,201,1,0,0,0,955,956,5,212,0,0,956,957,3,192,96,0,957,203, - 1,0,0,0,958,959,5,241,0,0,959,960,3,192,96,0,960,205,1,0,0,0,961, - 962,5,243,0,0,962,963,3,192,96,0,963,207,1,0,0,0,964,965,7,19,0, - 0,965,209,1,0,0,0,966,967,7,20,0,0,967,211,1,0,0,0,968,969,5,125, - 0,0,969,974,3,188,94,0,970,971,5,110,0,0,971,973,3,188,94,0,972, - 970,1,0,0,0,973,976,1,0,0,0,974,972,1,0,0,0,974,975,1,0,0,0,975, - 977,1,0,0,0,976,974,1,0,0,0,977,978,5,126,0,0,978,213,1,0,0,0,979, - 984,3,220,110,0,980,981,5,111,0,0,981,983,3,220,110,0,982,980,1, - 0,0,0,983,986,1,0,0,0,984,982,1,0,0,0,984,985,1,0,0,0,985,215,1, - 0,0,0,986,984,1,0,0,0,987,992,3,222,111,0,988,989,5,111,0,0,989, - 991,3,220,110,0,990,988,1,0,0,0,991,994,1,0,0,0,992,990,1,0,0,0, - 992,993,1,0,0,0,993,217,1,0,0,0,994,992,1,0,0,0,995,1000,3,224,112, - 0,996,997,5,111,0,0,997,999,3,224,112,0,998,996,1,0,0,0,999,1002, - 1,0,0,0,1000,998,1,0,0,0,1000,1001,1,0,0,0,1001,219,1,0,0,0,1002, - 1000,1,0,0,0,1003,1005,5,111,0,0,1004,1003,1,0,0,0,1004,1005,1,0, - 0,0,1005,1006,1,0,0,0,1006,1014,5,328,0,0,1007,1008,5,131,0,0,1008, - 1009,3,220,110,0,1009,1010,5,131,0,0,1010,1014,1,0,0,0,1011,1014, - 5,335,0,0,1012,1014,3,226,113,0,1013,1004,1,0,0,0,1013,1007,1,0, - 0,0,1013,1011,1,0,0,0,1013,1012,1,0,0,0,1014,221,1,0,0,0,1015,1017, - 5,329,0,0,1016,1015,1,0,0,0,1016,1017,1,0,0,0,1017,1018,1,0,0,0, - 1018,1019,3,220,110,0,1019,223,1,0,0,0,1020,1025,3,220,110,0,1021, - 1022,5,122,0,0,1022,1024,3,220,110,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,1029,1,0,0,0,1027, - 1025,1,0,0,0,1028,1030,5,122,0,0,1029,1028,1,0,0,0,1029,1030,1,0, - 0,0,1030,1044,1,0,0,0,1031,1032,5,129,0,0,1032,1033,3,224,112,0, - 1033,1034,5,129,0,0,1034,1044,1,0,0,0,1035,1036,5,130,0,0,1036,1037, - 3,224,112,0,1037,1038,5,130,0,0,1038,1044,1,0,0,0,1039,1040,5,131, - 0,0,1040,1041,3,224,112,0,1041,1042,5,131,0,0,1042,1044,1,0,0,0, - 1043,1020,1,0,0,0,1043,1031,1,0,0,0,1043,1035,1,0,0,0,1043,1039, - 1,0,0,0,1044,225,1,0,0,0,1045,1146,5,31,0,0,1046,1146,3,210,105, - 0,1047,1146,5,320,0,0,1048,1146,3,132,66,0,1049,1146,3,140,70,0, - 1050,1146,3,208,104,0,1051,1146,3,156,78,0,1052,1146,3,178,89,0, - 1053,1146,3,152,76,0,1054,1146,3,180,90,0,1055,1146,5,2,0,0,1056, - 1146,5,3,0,0,1057,1146,5,4,0,0,1058,1146,5,5,0,0,1059,1146,5,6,0, - 0,1060,1146,5,7,0,0,1061,1146,5,8,0,0,1062,1146,5,9,0,0,1063,1146, - 5,10,0,0,1064,1146,5,11,0,0,1065,1146,5,12,0,0,1066,1146,5,13,0, - 0,1067,1146,5,14,0,0,1068,1146,5,15,0,0,1069,1146,5,16,0,0,1070, - 1146,5,17,0,0,1071,1146,5,18,0,0,1072,1146,5,19,0,0,1073,1146,5, - 20,0,0,1074,1146,5,21,0,0,1075,1146,5,22,0,0,1076,1146,5,23,0,0, - 1077,1146,5,24,0,0,1078,1146,5,25,0,0,1079,1146,5,26,0,0,1080,1146, - 5,29,0,0,1081,1146,5,30,0,0,1082,1146,5,32,0,0,1083,1146,5,33,0, - 0,1084,1146,5,34,0,0,1085,1146,5,36,0,0,1086,1146,5,37,0,0,1087, - 1146,5,38,0,0,1088,1146,5,39,0,0,1089,1146,5,40,0,0,1090,1146,5, - 41,0,0,1091,1146,5,42,0,0,1092,1146,5,43,0,0,1093,1146,5,44,0,0, - 1094,1146,5,45,0,0,1095,1146,5,46,0,0,1096,1146,5,47,0,0,1097,1146, - 5,48,0,0,1098,1146,5,49,0,0,1099,1146,5,50,0,0,1100,1146,5,51,0, - 0,1101,1146,5,52,0,0,1102,1146,5,53,0,0,1103,1146,5,54,0,0,1104, - 1146,5,55,0,0,1105,1146,5,56,0,0,1106,1146,5,57,0,0,1107,1146,5, - 58,0,0,1108,1146,5,135,0,0,1109,1146,5,136,0,0,1110,1146,5,137,0, - 0,1111,1146,5,138,0,0,1112,1146,5,139,0,0,1113,1146,5,140,0,0,1114, - 1146,5,141,0,0,1115,1146,5,142,0,0,1116,1146,5,143,0,0,1117,1146, - 5,144,0,0,1118,1146,5,145,0,0,1119,1146,5,146,0,0,1120,1146,5,147, - 0,0,1121,1146,5,148,0,0,1122,1146,5,149,0,0,1123,1146,5,150,0,0, - 1124,1146,5,151,0,0,1125,1146,5,152,0,0,1126,1146,5,153,0,0,1127, - 1146,5,154,0,0,1128,1146,5,155,0,0,1129,1146,5,156,0,0,1130,1146, - 5,157,0,0,1131,1146,5,158,0,0,1132,1146,5,159,0,0,1133,1146,5,160, - 0,0,1134,1146,5,161,0,0,1135,1146,5,162,0,0,1136,1146,5,163,0,0, - 1137,1146,5,164,0,0,1138,1146,5,165,0,0,1139,1146,5,166,0,0,1140, - 1146,5,167,0,0,1141,1146,5,168,0,0,1142,1146,5,169,0,0,1143,1146, - 5,170,0,0,1144,1146,5,171,0,0,1145,1045,1,0,0,0,1145,1046,1,0,0, - 0,1145,1047,1,0,0,0,1145,1048,1,0,0,0,1145,1049,1,0,0,0,1145,1050, - 1,0,0,0,1145,1051,1,0,0,0,1145,1052,1,0,0,0,1145,1053,1,0,0,0,1145, - 1054,1,0,0,0,1145,1055,1,0,0,0,1145,1056,1,0,0,0,1145,1057,1,0,0, - 0,1145,1058,1,0,0,0,1145,1059,1,0,0,0,1145,1060,1,0,0,0,1145,1061, - 1,0,0,0,1145,1062,1,0,0,0,1145,1063,1,0,0,0,1145,1064,1,0,0,0,1145, - 1065,1,0,0,0,1145,1066,1,0,0,0,1145,1067,1,0,0,0,1145,1068,1,0,0, - 0,1145,1069,1,0,0,0,1145,1070,1,0,0,0,1145,1071,1,0,0,0,1145,1072, - 1,0,0,0,1145,1073,1,0,0,0,1145,1074,1,0,0,0,1145,1075,1,0,0,0,1145, - 1076,1,0,0,0,1145,1077,1,0,0,0,1145,1078,1,0,0,0,1145,1079,1,0,0, - 0,1145,1080,1,0,0,0,1145,1081,1,0,0,0,1145,1082,1,0,0,0,1145,1083, - 1,0,0,0,1145,1084,1,0,0,0,1145,1085,1,0,0,0,1145,1086,1,0,0,0,1145, - 1087,1,0,0,0,1145,1088,1,0,0,0,1145,1089,1,0,0,0,1145,1090,1,0,0, - 0,1145,1091,1,0,0,0,1145,1092,1,0,0,0,1145,1093,1,0,0,0,1145,1094, - 1,0,0,0,1145,1095,1,0,0,0,1145,1096,1,0,0,0,1145,1097,1,0,0,0,1145, - 1098,1,0,0,0,1145,1099,1,0,0,0,1145,1100,1,0,0,0,1145,1101,1,0,0, - 0,1145,1102,1,0,0,0,1145,1103,1,0,0,0,1145,1104,1,0,0,0,1145,1105, - 1,0,0,0,1145,1106,1,0,0,0,1145,1107,1,0,0,0,1145,1108,1,0,0,0,1145, - 1109,1,0,0,0,1145,1110,1,0,0,0,1145,1111,1,0,0,0,1145,1112,1,0,0, - 0,1145,1113,1,0,0,0,1145,1114,1,0,0,0,1145,1115,1,0,0,0,1145,1116, - 1,0,0,0,1145,1117,1,0,0,0,1145,1118,1,0,0,0,1145,1119,1,0,0,0,1145, - 1120,1,0,0,0,1145,1121,1,0,0,0,1145,1122,1,0,0,0,1145,1123,1,0,0, - 0,1145,1124,1,0,0,0,1145,1125,1,0,0,0,1145,1126,1,0,0,0,1145,1127, - 1,0,0,0,1145,1128,1,0,0,0,1145,1129,1,0,0,0,1145,1130,1,0,0,0,1145, - 1131,1,0,0,0,1145,1132,1,0,0,0,1145,1133,1,0,0,0,1145,1134,1,0,0, - 0,1145,1135,1,0,0,0,1145,1136,1,0,0,0,1145,1137,1,0,0,0,1145,1138, - 1,0,0,0,1145,1139,1,0,0,0,1145,1140,1,0,0,0,1145,1141,1,0,0,0,1145, - 1142,1,0,0,0,1145,1143,1,0,0,0,1145,1144,1,0,0,0,1146,227,1,0,0, - 0,85,229,242,248,266,269,273,278,291,301,308,313,318,325,329,334, - 338,344,349,360,365,369,373,377,382,396,407,415,427,433,472,478, - 491,498,517,522,530,539,549,566,575,590,598,605,611,613,624,636, - 644,646,653,666,677,690,700,707,719,727,731,756,789,797,804,807, - 812,830,834,838,844,869,897,930,939,944,953,974,984,992,1000,1004, - 1013,1016,1025,1029,1043,1145 + 1,113,1,113,1,113,3,113,1139,8,113,1,113,0,2,90,94,114,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, + 0,21,1,0,118,119,1,0,18,19,2,0,137,137,171,171,5,0,135,136,140,140, + 143,143,148,148,150,153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195, + 204,13,0,68,70,74,74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205, + 222,224,225,227,243,246,255,4,0,69,69,212,212,241,241,243,243,8, + 0,70,70,76,76,82,82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75, + 77,78,80,80,85,85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0, + 256,260,262,273,2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333, + 334,1,0,65,66,9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95, + 97,98,9,0,31,31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327, + 1293,0,229,1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248, + 1,0,0,0,10,266,1,0,0,0,12,269,1,0,0,0,14,273,1,0,0,0,16,276,1,0, + 0,0,18,279,1,0,0,0,20,282,1,0,0,0,22,288,1,0,0,0,24,297,1,0,0,0, + 26,329,1,0,0,0,28,344,1,0,0,0,30,347,1,0,0,0,32,356,1,0,0,0,34,364, + 1,0,0,0,36,372,1,0,0,0,38,377,1,0,0,0,40,381,1,0,0,0,42,385,1,0, + 0,0,44,400,1,0,0,0,46,402,1,0,0,0,48,404,1,0,0,0,50,420,1,0,0,0, + 52,422,1,0,0,0,54,465,1,0,0,0,56,467,1,0,0,0,58,474,1,0,0,0,60,484, + 1,0,0,0,62,486,1,0,0,0,64,494,1,0,0,0,66,498,1,0,0,0,68,510,1,0, + 0,0,70,512,1,0,0,0,72,517,1,0,0,0,74,527,1,0,0,0,76,535,1,0,0,0, + 78,539,1,0,0,0,80,559,1,0,0,0,82,561,1,0,0,0,84,563,1,0,0,0,86,572, + 1,0,0,0,88,583,1,0,0,0,90,591,1,0,0,0,92,617,1,0,0,0,94,629,1,0, + 0,0,96,646,1,0,0,0,98,648,1,0,0,0,100,655,1,0,0,0,102,659,1,0,0, + 0,104,661,1,0,0,0,106,675,1,0,0,0,108,700,1,0,0,0,110,702,1,0,0, + 0,112,707,1,0,0,0,114,715,1,0,0,0,116,724,1,0,0,0,118,749,1,0,0, + 0,120,751,1,0,0,0,122,753,1,0,0,0,124,755,1,0,0,0,126,760,1,0,0, + 0,128,767,1,0,0,0,130,782,1,0,0,0,132,790,1,0,0,0,134,800,1,0,0, + 0,136,805,1,0,0,0,138,809,1,0,0,0,140,813,1,0,0,0,142,823,1,0,0, + 0,144,827,1,0,0,0,146,831,1,0,0,0,148,833,1,0,0,0,150,837,1,0,0, + 0,152,862,1,0,0,0,154,864,1,0,0,0,156,866,1,0,0,0,158,868,1,0,0, + 0,160,875,1,0,0,0,162,877,1,0,0,0,164,884,1,0,0,0,166,886,1,0,0, + 0,168,890,1,0,0,0,170,892,1,0,0,0,172,901,1,0,0,0,174,903,1,0,0, + 0,176,905,1,0,0,0,178,907,1,0,0,0,180,909,1,0,0,0,182,911,1,0,0, + 0,184,913,1,0,0,0,186,915,1,0,0,0,188,923,1,0,0,0,190,925,1,0,0, + 0,192,929,1,0,0,0,194,932,1,0,0,0,196,937,1,0,0,0,198,941,1,0,0, + 0,200,946,1,0,0,0,202,948,1,0,0,0,204,951,1,0,0,0,206,954,1,0,0, + 0,208,957,1,0,0,0,210,959,1,0,0,0,212,961,1,0,0,0,214,972,1,0,0, + 0,216,980,1,0,0,0,218,988,1,0,0,0,220,1006,1,0,0,0,222,1009,1,0, + 0,0,224,1036,1,0,0,0,226,1138,1,0,0,0,228,230,3,2,1,0,229,228,1, + 0,0,0,229,230,1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0, + 0,0,233,234,3,4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0, + 237,242,3,8,4,0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0, + 0,241,244,1,0,0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0, + 244,242,1,0,0,0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8, + 0,248,245,1,0,0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0, + 250,267,3,18,9,0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24, + 12,0,254,267,3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267, + 3,32,16,0,258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0, + 261,267,3,40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3, + 52,26,0,265,267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252, + 1,0,0,0,266,253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256, + 1,0,0,0,266,257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260, + 1,0,0,0,266,261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264, + 1,0,0,0,266,265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1, + 0,0,0,269,270,1,0,0,0,270,271,1,0,0,0,271,272,3,60,30,0,272,13,1, + 0,0,0,273,274,5,3,0,0,274,275,3,62,31,0,275,15,1,0,0,0,276,277,5, + 4,0,0,277,278,5,33,0,0,278,17,1,0,0,0,279,280,5,6,0,0,280,281,3, + 90,45,0,281,19,1,0,0,0,282,284,5,7,0,0,283,285,7,0,0,0,284,283,1, + 0,0,0,284,285,1,0,0,0,285,286,1,0,0,0,286,287,3,112,56,0,287,21, + 1,0,0,0,288,289,5,8,0,0,289,294,3,64,32,0,290,291,5,110,0,0,291, + 293,3,64,32,0,292,290,1,0,0,0,293,296,1,0,0,0,294,292,1,0,0,0,294, + 295,1,0,0,0,295,23,1,0,0,0,296,294,1,0,0,0,297,301,5,9,0,0,298,299, + 5,42,0,0,299,300,5,112,0,0,300,302,3,194,97,0,301,298,1,0,0,0,301, + 302,1,0,0,0,302,306,1,0,0,0,303,304,5,43,0,0,304,305,5,112,0,0,305, + 307,3,198,99,0,306,303,1,0,0,0,306,307,1,0,0,0,307,311,1,0,0,0,308, + 309,5,44,0,0,309,310,5,112,0,0,310,312,3,192,96,0,311,308,1,0,0, + 0,311,312,1,0,0,0,312,313,1,0,0,0,313,318,3,78,39,0,314,315,5,110, + 0,0,315,317,3,78,39,0,316,314,1,0,0,0,317,320,1,0,0,0,318,316,1, + 0,0,0,318,319,1,0,0,0,319,322,1,0,0,0,320,318,1,0,0,0,321,323,3, + 68,34,0,322,321,1,0,0,0,322,323,1,0,0,0,323,327,1,0,0,0,324,325, + 5,41,0,0,325,326,5,112,0,0,326,328,3,198,99,0,327,324,1,0,0,0,327, + 328,1,0,0,0,328,25,1,0,0,0,329,331,5,10,0,0,330,332,3,194,97,0,331, + 330,1,0,0,0,331,332,1,0,0,0,332,333,1,0,0,0,333,337,3,112,56,0,334, + 335,5,39,0,0,335,336,5,112,0,0,336,338,3,198,99,0,337,334,1,0,0, + 0,337,338,1,0,0,0,338,342,1,0,0,0,339,340,5,40,0,0,340,341,5,112, + 0,0,341,343,3,198,99,0,342,339,1,0,0,0,342,343,1,0,0,0,343,27,1, + 0,0,0,344,345,5,11,0,0,345,346,3,74,37,0,346,29,1,0,0,0,347,348, + 5,12,0,0,348,353,3,76,38,0,349,350,5,110,0,0,350,352,3,76,38,0,351, + 349,1,0,0,0,352,355,1,0,0,0,353,351,1,0,0,0,353,354,1,0,0,0,354, + 31,1,0,0,0,355,353,1,0,0,0,356,358,5,13,0,0,357,359,3,194,97,0,358, + 357,1,0,0,0,358,359,1,0,0,0,359,362,1,0,0,0,360,361,5,5,0,0,361, + 363,3,194,97,0,362,360,1,0,0,0,362,363,1,0,0,0,363,33,1,0,0,0,364, + 366,5,14,0,0,365,367,3,194,97,0,366,365,1,0,0,0,366,367,1,0,0,0, + 367,368,1,0,0,0,368,370,3,112,56,0,369,371,3,66,33,0,370,369,1,0, + 0,0,370,371,1,0,0,0,371,35,1,0,0,0,372,373,5,15,0,0,373,375,3,112, + 56,0,374,376,3,66,33,0,375,374,1,0,0,0,375,376,1,0,0,0,376,37,1, + 0,0,0,377,378,5,20,0,0,378,379,3,88,44,0,379,380,3,192,96,0,380, + 39,1,0,0,0,381,382,5,16,0,0,382,383,3,88,44,0,383,384,3,192,96,0, + 384,41,1,0,0,0,385,389,5,22,0,0,386,388,3,44,22,0,387,386,1,0,0, + 0,388,391,1,0,0,0,389,387,1,0,0,0,389,390,1,0,0,0,390,392,1,0,0, + 0,391,389,1,0,0,0,392,393,3,88,44,0,393,43,1,0,0,0,394,395,5,23, + 0,0,395,396,5,112,0,0,396,401,3,192,96,0,397,398,5,21,0,0,398,399, + 5,112,0,0,399,401,3,192,96,0,400,394,1,0,0,0,400,397,1,0,0,0,401, + 45,1,0,0,0,402,403,7,1,0,0,403,47,1,0,0,0,404,408,5,24,0,0,405,407, + 3,50,25,0,406,405,1,0,0,0,407,410,1,0,0,0,408,406,1,0,0,0,408,409, + 1,0,0,0,409,49,1,0,0,0,410,408,1,0,0,0,411,412,5,45,0,0,412,413, + 5,112,0,0,413,421,3,194,97,0,414,415,5,46,0,0,415,416,5,112,0,0, + 416,421,3,194,97,0,417,418,5,47,0,0,418,419,5,112,0,0,419,421,3, + 192,96,0,420,411,1,0,0,0,420,414,1,0,0,0,420,417,1,0,0,0,421,51, + 1,0,0,0,422,426,5,25,0,0,423,425,3,54,27,0,424,423,1,0,0,0,425,428, + 1,0,0,0,426,424,1,0,0,0,426,427,1,0,0,0,427,53,1,0,0,0,428,426,1, + 0,0,0,429,430,5,48,0,0,430,431,5,112,0,0,431,466,3,194,97,0,432, + 433,5,49,0,0,433,434,5,112,0,0,434,466,3,194,97,0,435,436,5,50,0, + 0,436,437,5,112,0,0,437,466,3,194,97,0,438,439,5,51,0,0,439,440, + 5,112,0,0,440,466,3,194,97,0,441,442,5,52,0,0,442,443,5,112,0,0, + 443,466,3,196,98,0,444,445,5,53,0,0,445,446,5,112,0,0,446,466,3, + 196,98,0,447,448,5,54,0,0,448,449,5,112,0,0,449,466,3,192,96,0,450, + 451,5,55,0,0,451,452,5,112,0,0,452,466,3,192,96,0,453,454,5,215, + 0,0,454,455,5,112,0,0,455,466,3,192,96,0,456,457,5,56,0,0,457,458, + 5,112,0,0,458,466,3,192,96,0,459,460,5,57,0,0,460,461,5,112,0,0, + 461,466,3,194,97,0,462,463,5,58,0,0,463,464,5,112,0,0,464,466,3, + 196,98,0,465,429,1,0,0,0,465,432,1,0,0,0,465,435,1,0,0,0,465,438, + 1,0,0,0,465,441,1,0,0,0,465,444,1,0,0,0,465,447,1,0,0,0,465,450, + 1,0,0,0,465,453,1,0,0,0,465,456,1,0,0,0,465,459,1,0,0,0,465,462, + 1,0,0,0,466,55,1,0,0,0,467,471,5,26,0,0,468,470,3,58,29,0,469,468, + 1,0,0,0,470,473,1,0,0,0,471,469,1,0,0,0,471,472,1,0,0,0,472,57,1, + 0,0,0,473,471,1,0,0,0,474,475,3,220,110,0,475,476,5,112,0,0,476, + 477,3,188,94,0,477,59,1,0,0,0,478,479,5,29,0,0,479,480,5,112,0,0, + 480,485,3,62,31,0,481,482,5,30,0,0,482,483,5,112,0,0,483,485,3,62, + 31,0,484,478,1,0,0,0,484,481,1,0,0,0,485,61,1,0,0,0,486,491,3,108, + 54,0,487,488,5,110,0,0,488,490,3,108,54,0,489,487,1,0,0,0,490,493, + 1,0,0,0,491,489,1,0,0,0,491,492,1,0,0,0,492,63,1,0,0,0,493,491,1, + 0,0,0,494,495,3,122,61,0,495,496,5,27,0,0,496,497,3,122,61,0,497, + 65,1,0,0,0,498,499,5,28,0,0,499,500,3,112,56,0,500,67,1,0,0,0,501, + 502,5,28,0,0,502,511,3,112,56,0,503,504,5,28,0,0,504,511,3,70,35, + 0,505,506,5,28,0,0,506,507,3,70,35,0,507,508,5,110,0,0,508,509,3, + 112,56,0,509,511,1,0,0,0,510,501,1,0,0,0,510,503,1,0,0,0,510,505, + 1,0,0,0,511,69,1,0,0,0,512,515,3,72,36,0,513,514,5,27,0,0,514,516, + 3,214,107,0,515,513,1,0,0,0,515,516,1,0,0,0,516,71,1,0,0,0,517,518, + 5,320,0,0,518,519,5,125,0,0,519,520,3,120,60,0,520,521,5,110,0,0, + 521,523,3,188,94,0,522,524,3,210,105,0,523,522,1,0,0,0,523,524,1, + 0,0,0,524,525,1,0,0,0,525,526,5,126,0,0,526,73,1,0,0,0,527,532,3, + 116,58,0,528,529,5,110,0,0,529,531,3,116,58,0,530,528,1,0,0,0,531, + 534,1,0,0,0,532,530,1,0,0,0,532,533,1,0,0,0,533,75,1,0,0,0,534,532, + 1,0,0,0,535,536,3,120,60,0,536,537,5,112,0,0,537,538,3,88,44,0,538, + 77,1,0,0,0,539,542,3,80,40,0,540,541,5,27,0,0,541,543,3,122,61,0, + 542,540,1,0,0,0,542,543,1,0,0,0,543,79,1,0,0,0,544,545,3,82,41,0, + 545,546,5,125,0,0,546,547,3,94,47,0,547,548,5,126,0,0,548,560,1, + 0,0,0,549,550,5,136,0,0,550,551,5,125,0,0,551,560,5,126,0,0,552, + 553,7,2,0,0,553,554,5,125,0,0,554,555,3,94,47,0,555,556,5,126,0, + 0,556,560,1,0,0,0,557,560,3,86,43,0,558,560,3,84,42,0,559,544,1, + 0,0,0,559,549,1,0,0,0,559,552,1,0,0,0,559,557,1,0,0,0,559,558,1, + 0,0,0,560,81,1,0,0,0,561,562,7,3,0,0,562,83,1,0,0,0,563,564,5,155, + 0,0,564,565,5,125,0,0,565,568,3,120,60,0,566,567,5,110,0,0,567,569, + 3,194,97,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570,1,0,0,0,570,571, + 5,126,0,0,571,85,1,0,0,0,572,573,5,154,0,0,573,574,5,114,0,0,574, + 575,3,194,97,0,575,576,5,113,0,0,576,577,5,125,0,0,577,578,3,120, + 60,0,578,579,5,126,0,0,579,87,1,0,0,0,580,584,3,90,45,0,581,584, + 3,92,46,0,582,584,3,94,47,0,583,580,1,0,0,0,583,581,1,0,0,0,583, + 582,1,0,0,0,584,89,1,0,0,0,585,586,6,45,-1,0,586,592,3,92,46,0,587, + 588,5,61,0,0,588,592,3,90,45,6,589,592,3,100,50,0,590,592,3,102, + 51,0,591,585,1,0,0,0,591,587,1,0,0,0,591,589,1,0,0,0,591,590,1,0, + 0,0,592,606,1,0,0,0,593,594,10,5,0,0,594,595,5,62,0,0,595,605,3, + 90,45,6,596,598,10,4,0,0,597,599,5,63,0,0,598,597,1,0,0,0,598,599, + 1,0,0,0,599,600,1,0,0,0,600,605,3,90,45,5,601,602,10,3,0,0,602,603, + 5,64,0,0,603,605,3,90,45,4,604,593,1,0,0,0,604,596,1,0,0,0,604,601, + 1,0,0,0,605,608,1,0,0,0,606,604,1,0,0,0,606,607,1,0,0,0,607,91,1, + 0,0,0,608,606,1,0,0,0,609,610,3,94,47,0,610,611,3,182,91,0,611,612, + 3,94,47,0,612,618,1,0,0,0,613,614,3,94,47,0,614,615,5,60,0,0,615, + 616,3,212,106,0,616,618,1,0,0,0,617,609,1,0,0,0,617,613,1,0,0,0, + 618,93,1,0,0,0,619,620,6,47,-1,0,620,630,3,96,48,0,621,630,3,98, + 49,0,622,630,3,162,81,0,623,630,3,158,79,0,624,630,3,170,85,0,625, + 626,5,125,0,0,626,627,3,94,47,0,627,628,5,126,0,0,628,630,1,0,0, + 0,629,619,1,0,0,0,629,621,1,0,0,0,629,622,1,0,0,0,629,623,1,0,0, + 0,629,624,1,0,0,0,629,625,1,0,0,0,630,639,1,0,0,0,631,632,10,8,0, + 0,632,633,7,4,0,0,633,638,3,94,47,9,634,635,10,7,0,0,635,636,7,0, + 0,0,636,638,3,94,47,8,637,631,1,0,0,0,637,634,1,0,0,0,638,641,1, + 0,0,0,639,637,1,0,0,0,639,640,1,0,0,0,640,95,1,0,0,0,641,639,1,0, + 0,0,642,647,3,124,62,0,643,647,3,126,63,0,644,647,3,120,60,0,645, + 647,3,188,94,0,646,642,1,0,0,0,646,643,1,0,0,0,646,644,1,0,0,0,646, + 645,1,0,0,0,647,97,1,0,0,0,648,649,3,180,90,0,649,650,5,125,0,0, + 650,651,3,136,68,0,651,652,5,60,0,0,652,653,3,136,68,0,653,654,5, + 126,0,0,654,99,1,0,0,0,655,656,3,128,64,0,656,101,1,0,0,0,657,660, + 3,104,52,0,658,660,3,106,53,0,659,657,1,0,0,0,659,658,1,0,0,0,660, + 103,1,0,0,0,661,662,3,184,92,0,662,663,5,125,0,0,663,664,3,146,73, + 0,664,665,5,110,0,0,665,670,3,148,74,0,666,667,5,110,0,0,667,669, + 3,138,69,0,668,666,1,0,0,0,669,672,1,0,0,0,670,668,1,0,0,0,670,671, + 1,0,0,0,671,673,1,0,0,0,672,670,1,0,0,0,673,674,5,126,0,0,674,105, + 1,0,0,0,675,676,3,186,93,0,676,677,5,125,0,0,677,678,5,127,0,0,678, + 683,3,142,71,0,679,680,5,110,0,0,680,682,3,142,71,0,681,679,1,0, + 0,0,682,685,1,0,0,0,683,681,1,0,0,0,683,684,1,0,0,0,684,686,1,0, + 0,0,685,683,1,0,0,0,686,687,5,128,0,0,687,688,5,110,0,0,688,693, + 3,148,74,0,689,690,5,110,0,0,690,692,3,138,69,0,691,689,1,0,0,0, + 692,695,1,0,0,0,693,691,1,0,0,0,693,694,1,0,0,0,694,696,1,0,0,0, + 695,693,1,0,0,0,696,697,5,126,0,0,697,107,1,0,0,0,698,701,3,216, + 108,0,699,701,5,332,0,0,700,698,1,0,0,0,700,699,1,0,0,0,701,109, + 1,0,0,0,702,703,3,214,107,0,703,704,5,125,0,0,704,705,3,134,67,0, + 705,706,5,126,0,0,706,111,1,0,0,0,707,712,3,120,60,0,708,709,5,110, + 0,0,709,711,3,120,60,0,710,708,1,0,0,0,711,714,1,0,0,0,712,710,1, + 0,0,0,712,713,1,0,0,0,713,113,1,0,0,0,714,712,1,0,0,0,715,720,3, + 122,61,0,716,717,5,110,0,0,717,719,3,122,61,0,718,716,1,0,0,0,719, + 722,1,0,0,0,720,718,1,0,0,0,720,721,1,0,0,0,721,115,1,0,0,0,722, + 720,1,0,0,0,723,725,7,0,0,0,724,723,1,0,0,0,724,725,1,0,0,0,725, + 726,1,0,0,0,726,727,3,118,59,0,727,117,1,0,0,0,728,750,3,120,60, + 0,729,730,5,35,0,0,730,731,5,125,0,0,731,732,3,120,60,0,732,733, + 5,126,0,0,733,750,1,0,0,0,734,735,5,36,0,0,735,736,5,125,0,0,736, + 737,3,120,60,0,737,738,5,126,0,0,738,750,1,0,0,0,739,740,5,37,0, + 0,740,741,5,125,0,0,741,742,3,120,60,0,742,743,5,126,0,0,743,750, + 1,0,0,0,744,745,5,38,0,0,745,746,5,125,0,0,746,747,3,120,60,0,747, + 748,5,126,0,0,748,750,1,0,0,0,749,728,1,0,0,0,749,729,1,0,0,0,749, + 734,1,0,0,0,749,739,1,0,0,0,749,744,1,0,0,0,750,119,1,0,0,0,751, + 752,3,214,107,0,752,121,1,0,0,0,753,754,3,218,109,0,754,123,1,0, + 0,0,755,756,3,132,66,0,756,757,5,125,0,0,757,758,3,134,67,0,758, + 759,5,126,0,0,759,125,1,0,0,0,760,761,5,274,0,0,761,762,5,125,0, + 0,762,763,3,88,44,0,763,764,5,27,0,0,764,765,3,130,65,0,765,766, + 5,126,0,0,766,127,1,0,0,0,767,768,3,174,87,0,768,769,5,125,0,0,769, + 770,3,134,67,0,770,771,5,126,0,0,771,129,1,0,0,0,772,783,5,212,0, + 0,773,783,5,241,0,0,774,783,5,243,0,0,775,783,5,102,0,0,776,783, + 5,103,0,0,777,783,5,104,0,0,778,783,5,105,0,0,779,783,5,106,0,0, + 780,783,5,107,0,0,781,783,5,108,0,0,782,772,1,0,0,0,782,773,1,0, + 0,0,782,774,1,0,0,0,782,775,1,0,0,0,782,776,1,0,0,0,782,777,1,0, + 0,0,782,778,1,0,0,0,782,779,1,0,0,0,782,780,1,0,0,0,782,781,1,0, + 0,0,783,131,1,0,0,0,784,791,3,152,76,0,785,791,3,156,78,0,786,791, + 3,178,89,0,787,791,3,174,87,0,788,791,3,176,88,0,789,791,3,180,90, + 0,790,784,1,0,0,0,790,785,1,0,0,0,790,786,1,0,0,0,790,787,1,0,0, + 0,790,788,1,0,0,0,790,789,1,0,0,0,791,133,1,0,0,0,792,797,3,136, + 68,0,793,794,5,110,0,0,794,796,3,136,68,0,795,793,1,0,0,0,796,799, + 1,0,0,0,797,795,1,0,0,0,797,798,1,0,0,0,798,801,1,0,0,0,799,797, + 1,0,0,0,800,792,1,0,0,0,800,801,1,0,0,0,801,135,1,0,0,0,802,803, + 3,220,110,0,803,804,5,112,0,0,804,806,1,0,0,0,805,802,1,0,0,0,805, + 806,1,0,0,0,806,807,1,0,0,0,807,808,3,94,47,0,808,137,1,0,0,0,809, + 810,3,140,70,0,810,811,5,112,0,0,811,812,3,150,75,0,812,139,1,0, + 0,0,813,814,7,5,0,0,814,141,1,0,0,0,815,824,3,146,73,0,816,817,3, + 146,73,0,817,818,3,144,72,0,818,824,1,0,0,0,819,820,3,146,73,0,820, + 821,5,134,0,0,821,822,3,144,72,0,822,824,1,0,0,0,823,815,1,0,0,0, + 823,816,1,0,0,0,823,819,1,0,0,0,824,143,1,0,0,0,825,828,3,194,97, + 0,826,828,3,196,98,0,827,825,1,0,0,0,827,826,1,0,0,0,828,145,1,0, + 0,0,829,832,3,214,107,0,830,832,3,192,96,0,831,829,1,0,0,0,831,830, + 1,0,0,0,832,147,1,0,0,0,833,834,3,150,75,0,834,149,1,0,0,0,835,838, + 3,214,107,0,836,838,3,188,94,0,837,835,1,0,0,0,837,836,1,0,0,0,838, + 151,1,0,0,0,839,863,5,172,0,0,840,863,5,173,0,0,841,863,5,174,0, + 0,842,863,5,175,0,0,843,863,5,176,0,0,844,863,5,177,0,0,845,863, + 5,178,0,0,846,863,5,179,0,0,847,863,5,180,0,0,848,863,5,181,0,0, + 849,863,5,182,0,0,850,863,5,183,0,0,851,863,5,184,0,0,852,863,5, + 185,0,0,853,863,5,186,0,0,854,863,5,188,0,0,855,863,5,189,0,0,856, + 863,5,190,0,0,857,863,5,191,0,0,858,863,5,192,0,0,859,863,5,193, + 0,0,860,863,5,194,0,0,861,863,3,154,77,0,862,839,1,0,0,0,862,840, + 1,0,0,0,862,841,1,0,0,0,862,842,1,0,0,0,862,843,1,0,0,0,862,844, + 1,0,0,0,862,845,1,0,0,0,862,846,1,0,0,0,862,847,1,0,0,0,862,848, + 1,0,0,0,862,849,1,0,0,0,862,850,1,0,0,0,862,851,1,0,0,0,862,852, + 1,0,0,0,862,853,1,0,0,0,862,854,1,0,0,0,862,855,1,0,0,0,862,856, + 1,0,0,0,862,857,1,0,0,0,862,858,1,0,0,0,862,859,1,0,0,0,862,860, + 1,0,0,0,862,861,1,0,0,0,863,153,1,0,0,0,864,865,7,6,0,0,865,155, + 1,0,0,0,866,867,7,7,0,0,867,157,1,0,0,0,868,869,5,226,0,0,869,870, + 5,125,0,0,870,871,3,160,80,0,871,872,5,110,0,0,872,873,3,136,68, + 0,873,874,5,126,0,0,874,159,1,0,0,0,875,876,7,8,0,0,876,161,1,0, + 0,0,877,878,5,223,0,0,878,879,5,125,0,0,879,880,3,168,84,0,880,881, + 5,5,0,0,881,882,3,136,68,0,882,883,5,126,0,0,883,163,1,0,0,0,884, + 885,7,9,0,0,885,165,1,0,0,0,886,887,7,10,0,0,887,167,1,0,0,0,888, + 891,3,164,82,0,889,891,3,166,83,0,890,888,1,0,0,0,890,889,1,0,0, + 0,891,169,1,0,0,0,892,893,3,172,86,0,893,894,5,125,0,0,894,895,3, + 164,82,0,895,896,5,110,0,0,896,897,3,136,68,0,897,898,5,110,0,0, + 898,899,3,136,68,0,899,900,5,126,0,0,900,171,1,0,0,0,901,902,7,11, + 0,0,902,173,1,0,0,0,903,904,7,12,0,0,904,175,1,0,0,0,905,906,5,281, + 0,0,906,177,1,0,0,0,907,908,7,13,0,0,908,179,1,0,0,0,909,910,5,187, + 0,0,910,181,1,0,0,0,911,912,7,14,0,0,912,183,1,0,0,0,913,914,7,15, + 0,0,914,185,1,0,0,0,915,916,7,16,0,0,916,187,1,0,0,0,917,924,3,190, + 95,0,918,924,3,192,96,0,919,924,3,194,97,0,920,924,3,196,98,0,921, + 924,3,198,99,0,922,924,3,200,100,0,923,917,1,0,0,0,923,918,1,0,0, + 0,923,919,1,0,0,0,923,920,1,0,0,0,923,921,1,0,0,0,923,922,1,0,0, + 0,924,189,1,0,0,0,925,926,5,81,0,0,926,927,3,94,47,0,927,928,3,208, + 104,0,928,191,1,0,0,0,929,930,7,17,0,0,930,193,1,0,0,0,931,933,7, + 0,0,0,932,931,1,0,0,0,932,933,1,0,0,0,933,934,1,0,0,0,934,935,5, + 330,0,0,935,195,1,0,0,0,936,938,7,0,0,0,937,936,1,0,0,0,937,938, + 1,0,0,0,938,939,1,0,0,0,939,940,5,331,0,0,940,197,1,0,0,0,941,942, + 7,18,0,0,942,199,1,0,0,0,943,947,3,202,101,0,944,947,3,204,102,0, + 945,947,3,206,103,0,946,943,1,0,0,0,946,944,1,0,0,0,946,945,1,0, + 0,0,947,201,1,0,0,0,948,949,5,212,0,0,949,950,3,192,96,0,950,203, + 1,0,0,0,951,952,5,241,0,0,952,953,3,192,96,0,953,205,1,0,0,0,954, + 955,5,243,0,0,955,956,3,192,96,0,956,207,1,0,0,0,957,958,7,19,0, + 0,958,209,1,0,0,0,959,960,7,20,0,0,960,211,1,0,0,0,961,962,5,125, + 0,0,962,967,3,188,94,0,963,964,5,110,0,0,964,966,3,188,94,0,965, + 963,1,0,0,0,966,969,1,0,0,0,967,965,1,0,0,0,967,968,1,0,0,0,968, + 970,1,0,0,0,969,967,1,0,0,0,970,971,5,126,0,0,971,213,1,0,0,0,972, + 977,3,220,110,0,973,974,5,111,0,0,974,976,3,220,110,0,975,973,1, + 0,0,0,976,979,1,0,0,0,977,975,1,0,0,0,977,978,1,0,0,0,978,215,1, + 0,0,0,979,977,1,0,0,0,980,985,3,222,111,0,981,982,5,111,0,0,982, + 984,3,220,110,0,983,981,1,0,0,0,984,987,1,0,0,0,985,983,1,0,0,0, + 985,986,1,0,0,0,986,217,1,0,0,0,987,985,1,0,0,0,988,993,3,224,112, + 0,989,990,5,111,0,0,990,992,3,224,112,0,991,989,1,0,0,0,992,995, + 1,0,0,0,993,991,1,0,0,0,993,994,1,0,0,0,994,219,1,0,0,0,995,993, + 1,0,0,0,996,998,5,111,0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,999, + 1,0,0,0,999,1007,5,328,0,0,1000,1001,5,131,0,0,1001,1002,3,220,110, + 0,1002,1003,5,131,0,0,1003,1007,1,0,0,0,1004,1007,5,335,0,0,1005, + 1007,3,226,113,0,1006,997,1,0,0,0,1006,1000,1,0,0,0,1006,1004,1, + 0,0,0,1006,1005,1,0,0,0,1007,221,1,0,0,0,1008,1010,5,329,0,0,1009, + 1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1012,3,220, + 110,0,1012,223,1,0,0,0,1013,1018,3,220,110,0,1014,1015,5,122,0,0, + 1015,1017,3,220,110,0,1016,1014,1,0,0,0,1017,1020,1,0,0,0,1018,1016, + 1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020,1018,1,0,0,0,1021, + 1023,5,122,0,0,1022,1021,1,0,0,0,1022,1023,1,0,0,0,1023,1037,1,0, + 0,0,1024,1025,5,129,0,0,1025,1026,3,224,112,0,1026,1027,5,129,0, + 0,1027,1037,1,0,0,0,1028,1029,5,130,0,0,1029,1030,3,224,112,0,1030, + 1031,5,130,0,0,1031,1037,1,0,0,0,1032,1033,5,131,0,0,1033,1034,3, + 224,112,0,1034,1035,5,131,0,0,1035,1037,1,0,0,0,1036,1013,1,0,0, + 0,1036,1024,1,0,0,0,1036,1028,1,0,0,0,1036,1032,1,0,0,0,1037,225, + 1,0,0,0,1038,1139,5,31,0,0,1039,1139,3,210,105,0,1040,1139,5,320, + 0,0,1041,1139,3,132,66,0,1042,1139,3,140,70,0,1043,1139,3,208,104, + 0,1044,1139,3,156,78,0,1045,1139,3,178,89,0,1046,1139,3,152,76,0, + 1047,1139,3,180,90,0,1048,1139,5,2,0,0,1049,1139,5,3,0,0,1050,1139, + 5,4,0,0,1051,1139,5,5,0,0,1052,1139,5,6,0,0,1053,1139,5,7,0,0,1054, + 1139,5,8,0,0,1055,1139,5,9,0,0,1056,1139,5,10,0,0,1057,1139,5,11, + 0,0,1058,1139,5,12,0,0,1059,1139,5,13,0,0,1060,1139,5,14,0,0,1061, + 1139,5,15,0,0,1062,1139,5,16,0,0,1063,1139,5,17,0,0,1064,1139,5, + 18,0,0,1065,1139,5,19,0,0,1066,1139,5,20,0,0,1067,1139,5,21,0,0, + 1068,1139,5,22,0,0,1069,1139,5,23,0,0,1070,1139,5,24,0,0,1071,1139, + 5,25,0,0,1072,1139,5,26,0,0,1073,1139,5,29,0,0,1074,1139,5,30,0, + 0,1075,1139,5,32,0,0,1076,1139,5,33,0,0,1077,1139,5,34,0,0,1078, + 1139,5,36,0,0,1079,1139,5,37,0,0,1080,1139,5,38,0,0,1081,1139,5, + 39,0,0,1082,1139,5,40,0,0,1083,1139,5,41,0,0,1084,1139,5,42,0,0, + 1085,1139,5,43,0,0,1086,1139,5,44,0,0,1087,1139,5,45,0,0,1088,1139, + 5,46,0,0,1089,1139,5,47,0,0,1090,1139,5,48,0,0,1091,1139,5,49,0, + 0,1092,1139,5,50,0,0,1093,1139,5,51,0,0,1094,1139,5,52,0,0,1095, + 1139,5,53,0,0,1096,1139,5,54,0,0,1097,1139,5,55,0,0,1098,1139,5, + 56,0,0,1099,1139,5,57,0,0,1100,1139,5,58,0,0,1101,1139,5,135,0,0, + 1102,1139,5,136,0,0,1103,1139,5,137,0,0,1104,1139,5,138,0,0,1105, + 1139,5,139,0,0,1106,1139,5,140,0,0,1107,1139,5,141,0,0,1108,1139, + 5,142,0,0,1109,1139,5,143,0,0,1110,1139,5,144,0,0,1111,1139,5,145, + 0,0,1112,1139,5,146,0,0,1113,1139,5,147,0,0,1114,1139,5,148,0,0, + 1115,1139,5,149,0,0,1116,1139,5,150,0,0,1117,1139,5,151,0,0,1118, + 1139,5,152,0,0,1119,1139,5,153,0,0,1120,1139,5,154,0,0,1121,1139, + 5,155,0,0,1122,1139,5,156,0,0,1123,1139,5,157,0,0,1124,1139,5,158, + 0,0,1125,1139,5,159,0,0,1126,1139,5,160,0,0,1127,1139,5,161,0,0, + 1128,1139,5,162,0,0,1129,1139,5,163,0,0,1130,1139,5,164,0,0,1131, + 1139,5,165,0,0,1132,1139,5,166,0,0,1133,1139,5,167,0,0,1134,1139, + 5,168,0,0,1135,1139,5,169,0,0,1136,1139,5,170,0,0,1137,1139,5,171, + 0,0,1138,1038,1,0,0,0,1138,1039,1,0,0,0,1138,1040,1,0,0,0,1138,1041, + 1,0,0,0,1138,1042,1,0,0,0,1138,1043,1,0,0,0,1138,1044,1,0,0,0,1138, + 1045,1,0,0,0,1138,1046,1,0,0,0,1138,1047,1,0,0,0,1138,1048,1,0,0, + 0,1138,1049,1,0,0,0,1138,1050,1,0,0,0,1138,1051,1,0,0,0,1138,1052, + 1,0,0,0,1138,1053,1,0,0,0,1138,1054,1,0,0,0,1138,1055,1,0,0,0,1138, + 1056,1,0,0,0,1138,1057,1,0,0,0,1138,1058,1,0,0,0,1138,1059,1,0,0, + 0,1138,1060,1,0,0,0,1138,1061,1,0,0,0,1138,1062,1,0,0,0,1138,1063, + 1,0,0,0,1138,1064,1,0,0,0,1138,1065,1,0,0,0,1138,1066,1,0,0,0,1138, + 1067,1,0,0,0,1138,1068,1,0,0,0,1138,1069,1,0,0,0,1138,1070,1,0,0, + 0,1138,1071,1,0,0,0,1138,1072,1,0,0,0,1138,1073,1,0,0,0,1138,1074, + 1,0,0,0,1138,1075,1,0,0,0,1138,1076,1,0,0,0,1138,1077,1,0,0,0,1138, + 1078,1,0,0,0,1138,1079,1,0,0,0,1138,1080,1,0,0,0,1138,1081,1,0,0, + 0,1138,1082,1,0,0,0,1138,1083,1,0,0,0,1138,1084,1,0,0,0,1138,1085, + 1,0,0,0,1138,1086,1,0,0,0,1138,1087,1,0,0,0,1138,1088,1,0,0,0,1138, + 1089,1,0,0,0,1138,1090,1,0,0,0,1138,1091,1,0,0,0,1138,1092,1,0,0, + 0,1138,1093,1,0,0,0,1138,1094,1,0,0,0,1138,1095,1,0,0,0,1138,1096, + 1,0,0,0,1138,1097,1,0,0,0,1138,1098,1,0,0,0,1138,1099,1,0,0,0,1138, + 1100,1,0,0,0,1138,1101,1,0,0,0,1138,1102,1,0,0,0,1138,1103,1,0,0, + 0,1138,1104,1,0,0,0,1138,1105,1,0,0,0,1138,1106,1,0,0,0,1138,1107, + 1,0,0,0,1138,1108,1,0,0,0,1138,1109,1,0,0,0,1138,1110,1,0,0,0,1138, + 1111,1,0,0,0,1138,1112,1,0,0,0,1138,1113,1,0,0,0,1138,1114,1,0,0, + 0,1138,1115,1,0,0,0,1138,1116,1,0,0,0,1138,1117,1,0,0,0,1138,1118, + 1,0,0,0,1138,1119,1,0,0,0,1138,1120,1,0,0,0,1138,1121,1,0,0,0,1138, + 1122,1,0,0,0,1138,1123,1,0,0,0,1138,1124,1,0,0,0,1138,1125,1,0,0, + 0,1138,1126,1,0,0,0,1138,1127,1,0,0,0,1138,1128,1,0,0,0,1138,1129, + 1,0,0,0,1138,1130,1,0,0,0,1138,1131,1,0,0,0,1138,1132,1,0,0,0,1138, + 1133,1,0,0,0,1138,1134,1,0,0,0,1138,1135,1,0,0,0,1138,1136,1,0,0, + 0,1138,1137,1,0,0,0,1139,227,1,0,0,0,83,229,242,248,266,269,284, + 294,301,306,311,318,322,327,331,337,342,353,358,362,366,370,375, + 389,400,408,420,426,465,471,484,491,510,515,523,532,542,559,568, + 583,591,598,604,606,617,629,637,639,646,659,670,683,693,700,712, + 720,724,749,782,790,797,800,805,823,827,831,837,862,890,923,932, + 937,946,967,977,985,993,997,1006,1009,1018,1022,1036,1138 ]; private static __ATN: antlr.ATN; @@ -8107,28 +8075,6 @@ export class SearchCommandContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } -export class SearchFromFilterContext extends SearchCommandContext { - public constructor(ctx: SearchCommandContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public logicalExpression(): LogicalExpressionContext { - return this.getRuleContext(0, LogicalExpressionContext)!; - } - public SEARCH(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.SEARCH, 0); - } - public override accept(visitor: OpenSearchPPLParserVisitor): Result | null { - if (visitor.visitSearchFromFilter) { - return visitor.visitSearchFromFilter(this); - } else { - return visitor.visitChildren(this); - } - } -} export class SearchFromContext extends SearchCommandContext { public constructor(ctx: SearchCommandContext) { super(ctx.parent, ctx.invokingState); diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts index 15a57202a903..ea9de0d567d0 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts @@ -10,7 +10,6 @@ import { QueryStatementContext } from "./OpenSearchPPLParser.js"; import { PplCommandsContext } from "./OpenSearchPPLParser.js"; import { CommandsContext } from "./OpenSearchPPLParser.js"; import { SearchFromContext } from "./OpenSearchPPLParser.js"; -import { SearchFromFilterContext } from "./OpenSearchPPLParser.js"; import { DescribeCommandContext } from "./OpenSearchPPLParser.js"; import { ShowDataSourcesCommandContext } from "./OpenSearchPPLParser.js"; import { WhereCommandContext } from "./OpenSearchPPLParser.js"; @@ -188,13 +187,6 @@ export class OpenSearchPPLParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitSearchFrom?: (ctx: SearchFromContext) => Result; - /** - * Visit a parse tree produced by the `searchFromFilter` - * labeled alternative in `OpenSearchPPLParser.searchCommand`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSearchFromFilter?: (ctx: SearchFromFilterContext) => Result; /** * Visit a parse tree produced by `OpenSearchPPLParser.describeCommand`. * @param ctx the parse tree diff --git a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 index a23c6975454e..e8c27eb4674f 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 +++ b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 @@ -53,7 +53,7 @@ commands searchCommand : (SEARCH)? fromClause # searchFrom - | (SEARCH)? fromClause logicalExpression # searchFromFilter + // | (SEARCH)? fromClause logicalExpression # searchFromFilter // | (SEARCH)? logicalExpression fromClause # searchFilterFrom ; From 1eeca73475ed112a8f8095338e22060796fe91f3 Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 15:27:21 -0700 Subject: [PATCH 04/10] keep user hint height and pos constant Signed-off-by: Paul Sebastian --- src/plugins/data/public/ui/query_editor/_query_editor.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/data/public/ui/query_editor/_query_editor.scss b/src/plugins/data/public/ui/query_editor/_query_editor.scss index 3e9a6ac61c76..fc579a711bed 100644 --- a/src/plugins/data/public/ui/query_editor/_query_editor.scss +++ b/src/plugins/data/public/ui/query_editor/_query_editor.scss @@ -205,8 +205,8 @@ &.visible::after { position: absolute; - height: auto; - bottom: auto; + height: 31px; + bottom: -31px; left: 0; width: 100%; background-color: $euiColorLightestShade; From f91a93487bb2d579dee0218a3f45022404967a4c Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 15:44:43 -0700 Subject: [PATCH 05/10] fix issue where identifiers would suggest twice, after WS Signed-off-by: Paul Sebastian --- .../.generated/OpenSearchPPLParser.interp | 2 +- .../.generated/OpenSearchPPLParser.ts | 2639 +++++++---------- .../.generated/OpenSearchPPLParserVisitor.ts | 14 +- .../grammar/OpenSearchPPLParser.g4 | 6 +- .../opensearch_ppl_autocomplete.ts | 13 +- 5 files changed, 1016 insertions(+), 1658 deletions(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp index efd9b32492b0..1b4eb300be96 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp @@ -794,4 +794,4 @@ keywordsCanBeId atn: -[4, 1, 336, 1141, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 285, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 293, 8, 11, 10, 11, 12, 11, 296, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 302, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 307, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 312, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 317, 8, 12, 10, 12, 12, 12, 320, 9, 12, 1, 12, 3, 12, 323, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 328, 8, 12, 1, 13, 1, 13, 3, 13, 332, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 338, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 343, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 352, 8, 15, 10, 15, 12, 15, 355, 9, 15, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 3, 16, 363, 8, 16, 1, 17, 1, 17, 3, 17, 367, 8, 17, 1, 17, 1, 17, 3, 17, 371, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 376, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 388, 8, 21, 10, 21, 12, 21, 391, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 401, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 407, 8, 24, 10, 24, 12, 24, 410, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 421, 8, 25, 1, 26, 1, 26, 5, 26, 425, 8, 26, 10, 26, 12, 26, 428, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 466, 8, 27, 1, 28, 1, 28, 5, 28, 470, 8, 28, 10, 28, 12, 28, 473, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 485, 8, 30, 1, 31, 1, 31, 1, 31, 5, 31, 490, 8, 31, 10, 31, 12, 31, 493, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 511, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 516, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 524, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 531, 8, 37, 10, 37, 12, 37, 534, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 560, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 569, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 584, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 592, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 599, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 605, 8, 45, 10, 45, 12, 45, 608, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 618, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 630, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 638, 8, 47, 10, 47, 12, 47, 641, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 647, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 660, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 669, 8, 52, 10, 52, 12, 52, 672, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 682, 8, 53, 10, 53, 12, 53, 685, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 692, 8, 53, 10, 53, 12, 53, 695, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 701, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 711, 8, 56, 10, 56, 12, 56, 714, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 719, 8, 57, 10, 57, 12, 57, 722, 9, 57, 1, 58, 3, 58, 725, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 750, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 783, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 791, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 796, 8, 67, 10, 67, 12, 67, 799, 9, 67, 3, 67, 801, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 806, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 824, 8, 71, 1, 72, 1, 72, 3, 72, 828, 8, 72, 1, 73, 1, 73, 3, 73, 832, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 838, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 863, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 891, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 924, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 933, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 938, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 947, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 966, 8, 106, 10, 106, 12, 106, 969, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 976, 8, 107, 10, 107, 12, 107, 979, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 984, 8, 108, 10, 108, 12, 108, 987, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 992, 8, 109, 10, 109, 12, 109, 995, 9, 109, 1, 110, 3, 110, 998, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1007, 8, 110, 1, 111, 3, 111, 1010, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1017, 8, 112, 10, 112, 12, 112, 1020, 9, 112, 1, 112, 3, 112, 1023, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1037, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1139, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1293, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 269, 1, 0, 0, 0, 14, 273, 1, 0, 0, 0, 16, 276, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 282, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 344, 1, 0, 0, 0, 30, 347, 1, 0, 0, 0, 32, 356, 1, 0, 0, 0, 34, 364, 1, 0, 0, 0, 36, 372, 1, 0, 0, 0, 38, 377, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 400, 1, 0, 0, 0, 46, 402, 1, 0, 0, 0, 48, 404, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 465, 1, 0, 0, 0, 56, 467, 1, 0, 0, 0, 58, 474, 1, 0, 0, 0, 60, 484, 1, 0, 0, 0, 62, 486, 1, 0, 0, 0, 64, 494, 1, 0, 0, 0, 66, 498, 1, 0, 0, 0, 68, 510, 1, 0, 0, 0, 70, 512, 1, 0, 0, 0, 72, 517, 1, 0, 0, 0, 74, 527, 1, 0, 0, 0, 76, 535, 1, 0, 0, 0, 78, 539, 1, 0, 0, 0, 80, 559, 1, 0, 0, 0, 82, 561, 1, 0, 0, 0, 84, 563, 1, 0, 0, 0, 86, 572, 1, 0, 0, 0, 88, 583, 1, 0, 0, 0, 90, 591, 1, 0, 0, 0, 92, 617, 1, 0, 0, 0, 94, 629, 1, 0, 0, 0, 96, 646, 1, 0, 0, 0, 98, 648, 1, 0, 0, 0, 100, 655, 1, 0, 0, 0, 102, 659, 1, 0, 0, 0, 104, 661, 1, 0, 0, 0, 106, 675, 1, 0, 0, 0, 108, 700, 1, 0, 0, 0, 110, 702, 1, 0, 0, 0, 112, 707, 1, 0, 0, 0, 114, 715, 1, 0, 0, 0, 116, 724, 1, 0, 0, 0, 118, 749, 1, 0, 0, 0, 120, 751, 1, 0, 0, 0, 122, 753, 1, 0, 0, 0, 124, 755, 1, 0, 0, 0, 126, 760, 1, 0, 0, 0, 128, 767, 1, 0, 0, 0, 130, 782, 1, 0, 0, 0, 132, 790, 1, 0, 0, 0, 134, 800, 1, 0, 0, 0, 136, 805, 1, 0, 0, 0, 138, 809, 1, 0, 0, 0, 140, 813, 1, 0, 0, 0, 142, 823, 1, 0, 0, 0, 144, 827, 1, 0, 0, 0, 146, 831, 1, 0, 0, 0, 148, 833, 1, 0, 0, 0, 150, 837, 1, 0, 0, 0, 152, 862, 1, 0, 0, 0, 154, 864, 1, 0, 0, 0, 156, 866, 1, 0, 0, 0, 158, 868, 1, 0, 0, 0, 160, 875, 1, 0, 0, 0, 162, 877, 1, 0, 0, 0, 164, 884, 1, 0, 0, 0, 166, 886, 1, 0, 0, 0, 168, 890, 1, 0, 0, 0, 170, 892, 1, 0, 0, 0, 172, 901, 1, 0, 0, 0, 174, 903, 1, 0, 0, 0, 176, 905, 1, 0, 0, 0, 178, 907, 1, 0, 0, 0, 180, 909, 1, 0, 0, 0, 182, 911, 1, 0, 0, 0, 184, 913, 1, 0, 0, 0, 186, 915, 1, 0, 0, 0, 188, 923, 1, 0, 0, 0, 190, 925, 1, 0, 0, 0, 192, 929, 1, 0, 0, 0, 194, 932, 1, 0, 0, 0, 196, 937, 1, 0, 0, 0, 198, 941, 1, 0, 0, 0, 200, 946, 1, 0, 0, 0, 202, 948, 1, 0, 0, 0, 204, 951, 1, 0, 0, 0, 206, 954, 1, 0, 0, 0, 208, 957, 1, 0, 0, 0, 210, 959, 1, 0, 0, 0, 212, 961, 1, 0, 0, 0, 214, 972, 1, 0, 0, 0, 216, 980, 1, 0, 0, 0, 218, 988, 1, 0, 0, 0, 220, 1006, 1, 0, 0, 0, 222, 1009, 1, 0, 0, 0, 224, 1036, 1, 0, 0, 0, 226, 1138, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 60, 30, 0, 272, 13, 1, 0, 0, 0, 273, 274, 5, 3, 0, 0, 274, 275, 3, 62, 31, 0, 275, 15, 1, 0, 0, 0, 276, 277, 5, 4, 0, 0, 277, 278, 5, 33, 0, 0, 278, 17, 1, 0, 0, 0, 279, 280, 5, 6, 0, 0, 280, 281, 3, 90, 45, 0, 281, 19, 1, 0, 0, 0, 282, 284, 5, 7, 0, 0, 283, 285, 7, 0, 0, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 3, 112, 56, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 8, 0, 0, 289, 294, 3, 64, 32, 0, 290, 291, 5, 110, 0, 0, 291, 293, 3, 64, 32, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 23, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 301, 5, 9, 0, 0, 298, 299, 5, 42, 0, 0, 299, 300, 5, 112, 0, 0, 300, 302, 3, 194, 97, 0, 301, 298, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 306, 1, 0, 0, 0, 303, 304, 5, 43, 0, 0, 304, 305, 5, 112, 0, 0, 305, 307, 3, 198, 99, 0, 306, 303, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 311, 1, 0, 0, 0, 308, 309, 5, 44, 0, 0, 309, 310, 5, 112, 0, 0, 310, 312, 3, 192, 96, 0, 311, 308, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 318, 3, 78, 39, 0, 314, 315, 5, 110, 0, 0, 315, 317, 3, 78, 39, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 68, 34, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 327, 1, 0, 0, 0, 324, 325, 5, 41, 0, 0, 325, 326, 5, 112, 0, 0, 326, 328, 3, 198, 99, 0, 327, 324, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 25, 1, 0, 0, 0, 329, 331, 5, 10, 0, 0, 330, 332, 3, 194, 97, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 3, 112, 56, 0, 334, 335, 5, 39, 0, 0, 335, 336, 5, 112, 0, 0, 336, 338, 3, 198, 99, 0, 337, 334, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 342, 1, 0, 0, 0, 339, 340, 5, 40, 0, 0, 340, 341, 5, 112, 0, 0, 341, 343, 3, 198, 99, 0, 342, 339, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 27, 1, 0, 0, 0, 344, 345, 5, 11, 0, 0, 345, 346, 3, 74, 37, 0, 346, 29, 1, 0, 0, 0, 347, 348, 5, 12, 0, 0, 348, 353, 3, 76, 38, 0, 349, 350, 5, 110, 0, 0, 350, 352, 3, 76, 38, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 31, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 358, 5, 13, 0, 0, 357, 359, 3, 194, 97, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 5, 0, 0, 361, 363, 3, 194, 97, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 33, 1, 0, 0, 0, 364, 366, 5, 14, 0, 0, 365, 367, 3, 194, 97, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 3, 112, 56, 0, 369, 371, 3, 66, 33, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 373, 5, 15, 0, 0, 373, 375, 3, 112, 56, 0, 374, 376, 3, 66, 33, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 37, 1, 0, 0, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 88, 44, 0, 379, 380, 3, 192, 96, 0, 380, 39, 1, 0, 0, 0, 381, 382, 5, 16, 0, 0, 382, 383, 3, 88, 44, 0, 383, 384, 3, 192, 96, 0, 384, 41, 1, 0, 0, 0, 385, 389, 5, 22, 0, 0, 386, 388, 3, 44, 22, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 88, 44, 0, 393, 43, 1, 0, 0, 0, 394, 395, 5, 23, 0, 0, 395, 396, 5, 112, 0, 0, 396, 401, 3, 192, 96, 0, 397, 398, 5, 21, 0, 0, 398, 399, 5, 112, 0, 0, 399, 401, 3, 192, 96, 0, 400, 394, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 401, 45, 1, 0, 0, 0, 402, 403, 7, 1, 0, 0, 403, 47, 1, 0, 0, 0, 404, 408, 5, 24, 0, 0, 405, 407, 3, 50, 25, 0, 406, 405, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 49, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 112, 0, 0, 413, 421, 3, 194, 97, 0, 414, 415, 5, 46, 0, 0, 415, 416, 5, 112, 0, 0, 416, 421, 3, 194, 97, 0, 417, 418, 5, 47, 0, 0, 418, 419, 5, 112, 0, 0, 419, 421, 3, 192, 96, 0, 420, 411, 1, 0, 0, 0, 420, 414, 1, 0, 0, 0, 420, 417, 1, 0, 0, 0, 421, 51, 1, 0, 0, 0, 422, 426, 5, 25, 0, 0, 423, 425, 3, 54, 27, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 53, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 48, 0, 0, 430, 431, 5, 112, 0, 0, 431, 466, 3, 194, 97, 0, 432, 433, 5, 49, 0, 0, 433, 434, 5, 112, 0, 0, 434, 466, 3, 194, 97, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 112, 0, 0, 437, 466, 3, 194, 97, 0, 438, 439, 5, 51, 0, 0, 439, 440, 5, 112, 0, 0, 440, 466, 3, 194, 97, 0, 441, 442, 5, 52, 0, 0, 442, 443, 5, 112, 0, 0, 443, 466, 3, 196, 98, 0, 444, 445, 5, 53, 0, 0, 445, 446, 5, 112, 0, 0, 446, 466, 3, 196, 98, 0, 447, 448, 5, 54, 0, 0, 448, 449, 5, 112, 0, 0, 449, 466, 3, 192, 96, 0, 450, 451, 5, 55, 0, 0, 451, 452, 5, 112, 0, 0, 452, 466, 3, 192, 96, 0, 453, 454, 5, 215, 0, 0, 454, 455, 5, 112, 0, 0, 455, 466, 3, 192, 96, 0, 456, 457, 5, 56, 0, 0, 457, 458, 5, 112, 0, 0, 458, 466, 3, 192, 96, 0, 459, 460, 5, 57, 0, 0, 460, 461, 5, 112, 0, 0, 461, 466, 3, 194, 97, 0, 462, 463, 5, 58, 0, 0, 463, 464, 5, 112, 0, 0, 464, 466, 3, 196, 98, 0, 465, 429, 1, 0, 0, 0, 465, 432, 1, 0, 0, 0, 465, 435, 1, 0, 0, 0, 465, 438, 1, 0, 0, 0, 465, 441, 1, 0, 0, 0, 465, 444, 1, 0, 0, 0, 465, 447, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 453, 1, 0, 0, 0, 465, 456, 1, 0, 0, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 466, 55, 1, 0, 0, 0, 467, 471, 5, 26, 0, 0, 468, 470, 3, 58, 29, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 57, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 475, 3, 220, 110, 0, 475, 476, 5, 112, 0, 0, 476, 477, 3, 188, 94, 0, 477, 59, 1, 0, 0, 0, 478, 479, 5, 29, 0, 0, 479, 480, 5, 112, 0, 0, 480, 485, 3, 62, 31, 0, 481, 482, 5, 30, 0, 0, 482, 483, 5, 112, 0, 0, 483, 485, 3, 62, 31, 0, 484, 478, 1, 0, 0, 0, 484, 481, 1, 0, 0, 0, 485, 61, 1, 0, 0, 0, 486, 491, 3, 108, 54, 0, 487, 488, 5, 110, 0, 0, 488, 490, 3, 108, 54, 0, 489, 487, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 63, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 495, 3, 122, 61, 0, 495, 496, 5, 27, 0, 0, 496, 497, 3, 122, 61, 0, 497, 65, 1, 0, 0, 0, 498, 499, 5, 28, 0, 0, 499, 500, 3, 112, 56, 0, 500, 67, 1, 0, 0, 0, 501, 502, 5, 28, 0, 0, 502, 511, 3, 112, 56, 0, 503, 504, 5, 28, 0, 0, 504, 511, 3, 70, 35, 0, 505, 506, 5, 28, 0, 0, 506, 507, 3, 70, 35, 0, 507, 508, 5, 110, 0, 0, 508, 509, 3, 112, 56, 0, 509, 511, 1, 0, 0, 0, 510, 501, 1, 0, 0, 0, 510, 503, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 511, 69, 1, 0, 0, 0, 512, 515, 3, 72, 36, 0, 513, 514, 5, 27, 0, 0, 514, 516, 3, 214, 107, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 71, 1, 0, 0, 0, 517, 518, 5, 320, 0, 0, 518, 519, 5, 125, 0, 0, 519, 520, 3, 120, 60, 0, 520, 521, 5, 110, 0, 0, 521, 523, 3, 188, 94, 0, 522, 524, 3, 210, 105, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 126, 0, 0, 526, 73, 1, 0, 0, 0, 527, 532, 3, 116, 58, 0, 528, 529, 5, 110, 0, 0, 529, 531, 3, 116, 58, 0, 530, 528, 1, 0, 0, 0, 531, 534, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 75, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 535, 536, 3, 120, 60, 0, 536, 537, 5, 112, 0, 0, 537, 538, 3, 88, 44, 0, 538, 77, 1, 0, 0, 0, 539, 542, 3, 80, 40, 0, 540, 541, 5, 27, 0, 0, 541, 543, 3, 122, 61, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 79, 1, 0, 0, 0, 544, 545, 3, 82, 41, 0, 545, 546, 5, 125, 0, 0, 546, 547, 3, 94, 47, 0, 547, 548, 5, 126, 0, 0, 548, 560, 1, 0, 0, 0, 549, 550, 5, 136, 0, 0, 550, 551, 5, 125, 0, 0, 551, 560, 5, 126, 0, 0, 552, 553, 7, 2, 0, 0, 553, 554, 5, 125, 0, 0, 554, 555, 3, 94, 47, 0, 555, 556, 5, 126, 0, 0, 556, 560, 1, 0, 0, 0, 557, 560, 3, 86, 43, 0, 558, 560, 3, 84, 42, 0, 559, 544, 1, 0, 0, 0, 559, 549, 1, 0, 0, 0, 559, 552, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 559, 558, 1, 0, 0, 0, 560, 81, 1, 0, 0, 0, 561, 562, 7, 3, 0, 0, 562, 83, 1, 0, 0, 0, 563, 564, 5, 155, 0, 0, 564, 565, 5, 125, 0, 0, 565, 568, 3, 120, 60, 0, 566, 567, 5, 110, 0, 0, 567, 569, 3, 194, 97, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 5, 126, 0, 0, 571, 85, 1, 0, 0, 0, 572, 573, 5, 154, 0, 0, 573, 574, 5, 114, 0, 0, 574, 575, 3, 194, 97, 0, 575, 576, 5, 113, 0, 0, 576, 577, 5, 125, 0, 0, 577, 578, 3, 120, 60, 0, 578, 579, 5, 126, 0, 0, 579, 87, 1, 0, 0, 0, 580, 584, 3, 90, 45, 0, 581, 584, 3, 92, 46, 0, 582, 584, 3, 94, 47, 0, 583, 580, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 583, 582, 1, 0, 0, 0, 584, 89, 1, 0, 0, 0, 585, 586, 6, 45, -1, 0, 586, 592, 3, 92, 46, 0, 587, 588, 5, 61, 0, 0, 588, 592, 3, 90, 45, 6, 589, 592, 3, 100, 50, 0, 590, 592, 3, 102, 51, 0, 591, 585, 1, 0, 0, 0, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 591, 590, 1, 0, 0, 0, 592, 606, 1, 0, 0, 0, 593, 594, 10, 5, 0, 0, 594, 595, 5, 62, 0, 0, 595, 605, 3, 90, 45, 6, 596, 598, 10, 4, 0, 0, 597, 599, 5, 63, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 605, 3, 90, 45, 5, 601, 602, 10, 3, 0, 0, 602, 603, 5, 64, 0, 0, 603, 605, 3, 90, 45, 4, 604, 593, 1, 0, 0, 0, 604, 596, 1, 0, 0, 0, 604, 601, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 91, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 609, 610, 3, 94, 47, 0, 610, 611, 3, 182, 91, 0, 611, 612, 3, 94, 47, 0, 612, 618, 1, 0, 0, 0, 613, 614, 3, 94, 47, 0, 614, 615, 5, 60, 0, 0, 615, 616, 3, 212, 106, 0, 616, 618, 1, 0, 0, 0, 617, 609, 1, 0, 0, 0, 617, 613, 1, 0, 0, 0, 618, 93, 1, 0, 0, 0, 619, 620, 6, 47, -1, 0, 620, 630, 3, 96, 48, 0, 621, 630, 3, 98, 49, 0, 622, 630, 3, 162, 81, 0, 623, 630, 3, 158, 79, 0, 624, 630, 3, 170, 85, 0, 625, 626, 5, 125, 0, 0, 626, 627, 3, 94, 47, 0, 627, 628, 5, 126, 0, 0, 628, 630, 1, 0, 0, 0, 629, 619, 1, 0, 0, 0, 629, 621, 1, 0, 0, 0, 629, 622, 1, 0, 0, 0, 629, 623, 1, 0, 0, 0, 629, 624, 1, 0, 0, 0, 629, 625, 1, 0, 0, 0, 630, 639, 1, 0, 0, 0, 631, 632, 10, 8, 0, 0, 632, 633, 7, 4, 0, 0, 633, 638, 3, 94, 47, 9, 634, 635, 10, 7, 0, 0, 635, 636, 7, 0, 0, 0, 636, 638, 3, 94, 47, 8, 637, 631, 1, 0, 0, 0, 637, 634, 1, 0, 0, 0, 638, 641, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 95, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 642, 647, 3, 124, 62, 0, 643, 647, 3, 126, 63, 0, 644, 647, 3, 120, 60, 0, 645, 647, 3, 188, 94, 0, 646, 642, 1, 0, 0, 0, 646, 643, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 645, 1, 0, 0, 0, 647, 97, 1, 0, 0, 0, 648, 649, 3, 180, 90, 0, 649, 650, 5, 125, 0, 0, 650, 651, 3, 136, 68, 0, 651, 652, 5, 60, 0, 0, 652, 653, 3, 136, 68, 0, 653, 654, 5, 126, 0, 0, 654, 99, 1, 0, 0, 0, 655, 656, 3, 128, 64, 0, 656, 101, 1, 0, 0, 0, 657, 660, 3, 104, 52, 0, 658, 660, 3, 106, 53, 0, 659, 657, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 103, 1, 0, 0, 0, 661, 662, 3, 184, 92, 0, 662, 663, 5, 125, 0, 0, 663, 664, 3, 146, 73, 0, 664, 665, 5, 110, 0, 0, 665, 670, 3, 148, 74, 0, 666, 667, 5, 110, 0, 0, 667, 669, 3, 138, 69, 0, 668, 666, 1, 0, 0, 0, 669, 672, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 673, 674, 5, 126, 0, 0, 674, 105, 1, 0, 0, 0, 675, 676, 3, 186, 93, 0, 676, 677, 5, 125, 0, 0, 677, 678, 5, 127, 0, 0, 678, 683, 3, 142, 71, 0, 679, 680, 5, 110, 0, 0, 680, 682, 3, 142, 71, 0, 681, 679, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 128, 0, 0, 687, 688, 5, 110, 0, 0, 688, 693, 3, 148, 74, 0, 689, 690, 5, 110, 0, 0, 690, 692, 3, 138, 69, 0, 691, 689, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 696, 697, 5, 126, 0, 0, 697, 107, 1, 0, 0, 0, 698, 701, 3, 216, 108, 0, 699, 701, 5, 332, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 109, 1, 0, 0, 0, 702, 703, 3, 214, 107, 0, 703, 704, 5, 125, 0, 0, 704, 705, 3, 134, 67, 0, 705, 706, 5, 126, 0, 0, 706, 111, 1, 0, 0, 0, 707, 712, 3, 120, 60, 0, 708, 709, 5, 110, 0, 0, 709, 711, 3, 120, 60, 0, 710, 708, 1, 0, 0, 0, 711, 714, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 113, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 715, 720, 3, 122, 61, 0, 716, 717, 5, 110, 0, 0, 717, 719, 3, 122, 61, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 115, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 725, 7, 0, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 3, 118, 59, 0, 727, 117, 1, 0, 0, 0, 728, 750, 3, 120, 60, 0, 729, 730, 5, 35, 0, 0, 730, 731, 5, 125, 0, 0, 731, 732, 3, 120, 60, 0, 732, 733, 5, 126, 0, 0, 733, 750, 1, 0, 0, 0, 734, 735, 5, 36, 0, 0, 735, 736, 5, 125, 0, 0, 736, 737, 3, 120, 60, 0, 737, 738, 5, 126, 0, 0, 738, 750, 1, 0, 0, 0, 739, 740, 5, 37, 0, 0, 740, 741, 5, 125, 0, 0, 741, 742, 3, 120, 60, 0, 742, 743, 5, 126, 0, 0, 743, 750, 1, 0, 0, 0, 744, 745, 5, 38, 0, 0, 745, 746, 5, 125, 0, 0, 746, 747, 3, 120, 60, 0, 747, 748, 5, 126, 0, 0, 748, 750, 1, 0, 0, 0, 749, 728, 1, 0, 0, 0, 749, 729, 1, 0, 0, 0, 749, 734, 1, 0, 0, 0, 749, 739, 1, 0, 0, 0, 749, 744, 1, 0, 0, 0, 750, 119, 1, 0, 0, 0, 751, 752, 3, 214, 107, 0, 752, 121, 1, 0, 0, 0, 753, 754, 3, 218, 109, 0, 754, 123, 1, 0, 0, 0, 755, 756, 3, 132, 66, 0, 756, 757, 5, 125, 0, 0, 757, 758, 3, 134, 67, 0, 758, 759, 5, 126, 0, 0, 759, 125, 1, 0, 0, 0, 760, 761, 5, 274, 0, 0, 761, 762, 5, 125, 0, 0, 762, 763, 3, 88, 44, 0, 763, 764, 5, 27, 0, 0, 764, 765, 3, 130, 65, 0, 765, 766, 5, 126, 0, 0, 766, 127, 1, 0, 0, 0, 767, 768, 3, 174, 87, 0, 768, 769, 5, 125, 0, 0, 769, 770, 3, 134, 67, 0, 770, 771, 5, 126, 0, 0, 771, 129, 1, 0, 0, 0, 772, 783, 5, 212, 0, 0, 773, 783, 5, 241, 0, 0, 774, 783, 5, 243, 0, 0, 775, 783, 5, 102, 0, 0, 776, 783, 5, 103, 0, 0, 777, 783, 5, 104, 0, 0, 778, 783, 5, 105, 0, 0, 779, 783, 5, 106, 0, 0, 780, 783, 5, 107, 0, 0, 781, 783, 5, 108, 0, 0, 782, 772, 1, 0, 0, 0, 782, 773, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 775, 1, 0, 0, 0, 782, 776, 1, 0, 0, 0, 782, 777, 1, 0, 0, 0, 782, 778, 1, 0, 0, 0, 782, 779, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 781, 1, 0, 0, 0, 783, 131, 1, 0, 0, 0, 784, 791, 3, 152, 76, 0, 785, 791, 3, 156, 78, 0, 786, 791, 3, 178, 89, 0, 787, 791, 3, 174, 87, 0, 788, 791, 3, 176, 88, 0, 789, 791, 3, 180, 90, 0, 790, 784, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 790, 786, 1, 0, 0, 0, 790, 787, 1, 0, 0, 0, 790, 788, 1, 0, 0, 0, 790, 789, 1, 0, 0, 0, 791, 133, 1, 0, 0, 0, 792, 797, 3, 136, 68, 0, 793, 794, 5, 110, 0, 0, 794, 796, 3, 136, 68, 0, 795, 793, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 135, 1, 0, 0, 0, 802, 803, 3, 220, 110, 0, 803, 804, 5, 112, 0, 0, 804, 806, 1, 0, 0, 0, 805, 802, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 3, 94, 47, 0, 808, 137, 1, 0, 0, 0, 809, 810, 3, 140, 70, 0, 810, 811, 5, 112, 0, 0, 811, 812, 3, 150, 75, 0, 812, 139, 1, 0, 0, 0, 813, 814, 7, 5, 0, 0, 814, 141, 1, 0, 0, 0, 815, 824, 3, 146, 73, 0, 816, 817, 3, 146, 73, 0, 817, 818, 3, 144, 72, 0, 818, 824, 1, 0, 0, 0, 819, 820, 3, 146, 73, 0, 820, 821, 5, 134, 0, 0, 821, 822, 3, 144, 72, 0, 822, 824, 1, 0, 0, 0, 823, 815, 1, 0, 0, 0, 823, 816, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 143, 1, 0, 0, 0, 825, 828, 3, 194, 97, 0, 826, 828, 3, 196, 98, 0, 827, 825, 1, 0, 0, 0, 827, 826, 1, 0, 0, 0, 828, 145, 1, 0, 0, 0, 829, 832, 3, 214, 107, 0, 830, 832, 3, 192, 96, 0, 831, 829, 1, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 147, 1, 0, 0, 0, 833, 834, 3, 150, 75, 0, 834, 149, 1, 0, 0, 0, 835, 838, 3, 214, 107, 0, 836, 838, 3, 188, 94, 0, 837, 835, 1, 0, 0, 0, 837, 836, 1, 0, 0, 0, 838, 151, 1, 0, 0, 0, 839, 863, 5, 172, 0, 0, 840, 863, 5, 173, 0, 0, 841, 863, 5, 174, 0, 0, 842, 863, 5, 175, 0, 0, 843, 863, 5, 176, 0, 0, 844, 863, 5, 177, 0, 0, 845, 863, 5, 178, 0, 0, 846, 863, 5, 179, 0, 0, 847, 863, 5, 180, 0, 0, 848, 863, 5, 181, 0, 0, 849, 863, 5, 182, 0, 0, 850, 863, 5, 183, 0, 0, 851, 863, 5, 184, 0, 0, 852, 863, 5, 185, 0, 0, 853, 863, 5, 186, 0, 0, 854, 863, 5, 188, 0, 0, 855, 863, 5, 189, 0, 0, 856, 863, 5, 190, 0, 0, 857, 863, 5, 191, 0, 0, 858, 863, 5, 192, 0, 0, 859, 863, 5, 193, 0, 0, 860, 863, 5, 194, 0, 0, 861, 863, 3, 154, 77, 0, 862, 839, 1, 0, 0, 0, 862, 840, 1, 0, 0, 0, 862, 841, 1, 0, 0, 0, 862, 842, 1, 0, 0, 0, 862, 843, 1, 0, 0, 0, 862, 844, 1, 0, 0, 0, 862, 845, 1, 0, 0, 0, 862, 846, 1, 0, 0, 0, 862, 847, 1, 0, 0, 0, 862, 848, 1, 0, 0, 0, 862, 849, 1, 0, 0, 0, 862, 850, 1, 0, 0, 0, 862, 851, 1, 0, 0, 0, 862, 852, 1, 0, 0, 0, 862, 853, 1, 0, 0, 0, 862, 854, 1, 0, 0, 0, 862, 855, 1, 0, 0, 0, 862, 856, 1, 0, 0, 0, 862, 857, 1, 0, 0, 0, 862, 858, 1, 0, 0, 0, 862, 859, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 861, 1, 0, 0, 0, 863, 153, 1, 0, 0, 0, 864, 865, 7, 6, 0, 0, 865, 155, 1, 0, 0, 0, 866, 867, 7, 7, 0, 0, 867, 157, 1, 0, 0, 0, 868, 869, 5, 226, 0, 0, 869, 870, 5, 125, 0, 0, 870, 871, 3, 160, 80, 0, 871, 872, 5, 110, 0, 0, 872, 873, 3, 136, 68, 0, 873, 874, 5, 126, 0, 0, 874, 159, 1, 0, 0, 0, 875, 876, 7, 8, 0, 0, 876, 161, 1, 0, 0, 0, 877, 878, 5, 223, 0, 0, 878, 879, 5, 125, 0, 0, 879, 880, 3, 168, 84, 0, 880, 881, 5, 5, 0, 0, 881, 882, 3, 136, 68, 0, 882, 883, 5, 126, 0, 0, 883, 163, 1, 0, 0, 0, 884, 885, 7, 9, 0, 0, 885, 165, 1, 0, 0, 0, 886, 887, 7, 10, 0, 0, 887, 167, 1, 0, 0, 0, 888, 891, 3, 164, 82, 0, 889, 891, 3, 166, 83, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 169, 1, 0, 0, 0, 892, 893, 3, 172, 86, 0, 893, 894, 5, 125, 0, 0, 894, 895, 3, 164, 82, 0, 895, 896, 5, 110, 0, 0, 896, 897, 3, 136, 68, 0, 897, 898, 5, 110, 0, 0, 898, 899, 3, 136, 68, 0, 899, 900, 5, 126, 0, 0, 900, 171, 1, 0, 0, 0, 901, 902, 7, 11, 0, 0, 902, 173, 1, 0, 0, 0, 903, 904, 7, 12, 0, 0, 904, 175, 1, 0, 0, 0, 905, 906, 5, 281, 0, 0, 906, 177, 1, 0, 0, 0, 907, 908, 7, 13, 0, 0, 908, 179, 1, 0, 0, 0, 909, 910, 5, 187, 0, 0, 910, 181, 1, 0, 0, 0, 911, 912, 7, 14, 0, 0, 912, 183, 1, 0, 0, 0, 913, 914, 7, 15, 0, 0, 914, 185, 1, 0, 0, 0, 915, 916, 7, 16, 0, 0, 916, 187, 1, 0, 0, 0, 917, 924, 3, 190, 95, 0, 918, 924, 3, 192, 96, 0, 919, 924, 3, 194, 97, 0, 920, 924, 3, 196, 98, 0, 921, 924, 3, 198, 99, 0, 922, 924, 3, 200, 100, 0, 923, 917, 1, 0, 0, 0, 923, 918, 1, 0, 0, 0, 923, 919, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 923, 922, 1, 0, 0, 0, 924, 189, 1, 0, 0, 0, 925, 926, 5, 81, 0, 0, 926, 927, 3, 94, 47, 0, 927, 928, 3, 208, 104, 0, 928, 191, 1, 0, 0, 0, 929, 930, 7, 17, 0, 0, 930, 193, 1, 0, 0, 0, 931, 933, 7, 0, 0, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 330, 0, 0, 935, 195, 1, 0, 0, 0, 936, 938, 7, 0, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 5, 331, 0, 0, 940, 197, 1, 0, 0, 0, 941, 942, 7, 18, 0, 0, 942, 199, 1, 0, 0, 0, 943, 947, 3, 202, 101, 0, 944, 947, 3, 204, 102, 0, 945, 947, 3, 206, 103, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 201, 1, 0, 0, 0, 948, 949, 5, 212, 0, 0, 949, 950, 3, 192, 96, 0, 950, 203, 1, 0, 0, 0, 951, 952, 5, 241, 0, 0, 952, 953, 3, 192, 96, 0, 953, 205, 1, 0, 0, 0, 954, 955, 5, 243, 0, 0, 955, 956, 3, 192, 96, 0, 956, 207, 1, 0, 0, 0, 957, 958, 7, 19, 0, 0, 958, 209, 1, 0, 0, 0, 959, 960, 7, 20, 0, 0, 960, 211, 1, 0, 0, 0, 961, 962, 5, 125, 0, 0, 962, 967, 3, 188, 94, 0, 963, 964, 5, 110, 0, 0, 964, 966, 3, 188, 94, 0, 965, 963, 1, 0, 0, 0, 966, 969, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 970, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 970, 971, 5, 126, 0, 0, 971, 213, 1, 0, 0, 0, 972, 977, 3, 220, 110, 0, 973, 974, 5, 111, 0, 0, 974, 976, 3, 220, 110, 0, 975, 973, 1, 0, 0, 0, 976, 979, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 215, 1, 0, 0, 0, 979, 977, 1, 0, 0, 0, 980, 985, 3, 222, 111, 0, 981, 982, 5, 111, 0, 0, 982, 984, 3, 220, 110, 0, 983, 981, 1, 0, 0, 0, 984, 987, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 217, 1, 0, 0, 0, 987, 985, 1, 0, 0, 0, 988, 993, 3, 224, 112, 0, 989, 990, 5, 111, 0, 0, 990, 992, 3, 224, 112, 0, 991, 989, 1, 0, 0, 0, 992, 995, 1, 0, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 219, 1, 0, 0, 0, 995, 993, 1, 0, 0, 0, 996, 998, 5, 111, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1007, 5, 328, 0, 0, 1000, 1001, 5, 131, 0, 0, 1001, 1002, 3, 220, 110, 0, 1002, 1003, 5, 131, 0, 0, 1003, 1007, 1, 0, 0, 0, 1004, 1007, 5, 335, 0, 0, 1005, 1007, 3, 226, 113, 0, 1006, 997, 1, 0, 0, 0, 1006, 1000, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1005, 1, 0, 0, 0, 1007, 221, 1, 0, 0, 0, 1008, 1010, 5, 329, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1012, 3, 220, 110, 0, 1012, 223, 1, 0, 0, 0, 1013, 1018, 3, 220, 110, 0, 1014, 1015, 5, 122, 0, 0, 1015, 1017, 3, 220, 110, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1023, 5, 122, 0, 0, 1022, 1021, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1037, 1, 0, 0, 0, 1024, 1025, 5, 129, 0, 0, 1025, 1026, 3, 224, 112, 0, 1026, 1027, 5, 129, 0, 0, 1027, 1037, 1, 0, 0, 0, 1028, 1029, 5, 130, 0, 0, 1029, 1030, 3, 224, 112, 0, 1030, 1031, 5, 130, 0, 0, 1031, 1037, 1, 0, 0, 0, 1032, 1033, 5, 131, 0, 0, 1033, 1034, 3, 224, 112, 0, 1034, 1035, 5, 131, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1013, 1, 0, 0, 0, 1036, 1024, 1, 0, 0, 0, 1036, 1028, 1, 0, 0, 0, 1036, 1032, 1, 0, 0, 0, 1037, 225, 1, 0, 0, 0, 1038, 1139, 5, 31, 0, 0, 1039, 1139, 3, 210, 105, 0, 1040, 1139, 5, 320, 0, 0, 1041, 1139, 3, 132, 66, 0, 1042, 1139, 3, 140, 70, 0, 1043, 1139, 3, 208, 104, 0, 1044, 1139, 3, 156, 78, 0, 1045, 1139, 3, 178, 89, 0, 1046, 1139, 3, 152, 76, 0, 1047, 1139, 3, 180, 90, 0, 1048, 1139, 5, 2, 0, 0, 1049, 1139, 5, 3, 0, 0, 1050, 1139, 5, 4, 0, 0, 1051, 1139, 5, 5, 0, 0, 1052, 1139, 5, 6, 0, 0, 1053, 1139, 5, 7, 0, 0, 1054, 1139, 5, 8, 0, 0, 1055, 1139, 5, 9, 0, 0, 1056, 1139, 5, 10, 0, 0, 1057, 1139, 5, 11, 0, 0, 1058, 1139, 5, 12, 0, 0, 1059, 1139, 5, 13, 0, 0, 1060, 1139, 5, 14, 0, 0, 1061, 1139, 5, 15, 0, 0, 1062, 1139, 5, 16, 0, 0, 1063, 1139, 5, 17, 0, 0, 1064, 1139, 5, 18, 0, 0, 1065, 1139, 5, 19, 0, 0, 1066, 1139, 5, 20, 0, 0, 1067, 1139, 5, 21, 0, 0, 1068, 1139, 5, 22, 0, 0, 1069, 1139, 5, 23, 0, 0, 1070, 1139, 5, 24, 0, 0, 1071, 1139, 5, 25, 0, 0, 1072, 1139, 5, 26, 0, 0, 1073, 1139, 5, 29, 0, 0, 1074, 1139, 5, 30, 0, 0, 1075, 1139, 5, 32, 0, 0, 1076, 1139, 5, 33, 0, 0, 1077, 1139, 5, 34, 0, 0, 1078, 1139, 5, 36, 0, 0, 1079, 1139, 5, 37, 0, 0, 1080, 1139, 5, 38, 0, 0, 1081, 1139, 5, 39, 0, 0, 1082, 1139, 5, 40, 0, 0, 1083, 1139, 5, 41, 0, 0, 1084, 1139, 5, 42, 0, 0, 1085, 1139, 5, 43, 0, 0, 1086, 1139, 5, 44, 0, 0, 1087, 1139, 5, 45, 0, 0, 1088, 1139, 5, 46, 0, 0, 1089, 1139, 5, 47, 0, 0, 1090, 1139, 5, 48, 0, 0, 1091, 1139, 5, 49, 0, 0, 1092, 1139, 5, 50, 0, 0, 1093, 1139, 5, 51, 0, 0, 1094, 1139, 5, 52, 0, 0, 1095, 1139, 5, 53, 0, 0, 1096, 1139, 5, 54, 0, 0, 1097, 1139, 5, 55, 0, 0, 1098, 1139, 5, 56, 0, 0, 1099, 1139, 5, 57, 0, 0, 1100, 1139, 5, 58, 0, 0, 1101, 1139, 5, 135, 0, 0, 1102, 1139, 5, 136, 0, 0, 1103, 1139, 5, 137, 0, 0, 1104, 1139, 5, 138, 0, 0, 1105, 1139, 5, 139, 0, 0, 1106, 1139, 5, 140, 0, 0, 1107, 1139, 5, 141, 0, 0, 1108, 1139, 5, 142, 0, 0, 1109, 1139, 5, 143, 0, 0, 1110, 1139, 5, 144, 0, 0, 1111, 1139, 5, 145, 0, 0, 1112, 1139, 5, 146, 0, 0, 1113, 1139, 5, 147, 0, 0, 1114, 1139, 5, 148, 0, 0, 1115, 1139, 5, 149, 0, 0, 1116, 1139, 5, 150, 0, 0, 1117, 1139, 5, 151, 0, 0, 1118, 1139, 5, 152, 0, 0, 1119, 1139, 5, 153, 0, 0, 1120, 1139, 5, 154, 0, 0, 1121, 1139, 5, 155, 0, 0, 1122, 1139, 5, 156, 0, 0, 1123, 1139, 5, 157, 0, 0, 1124, 1139, 5, 158, 0, 0, 1125, 1139, 5, 159, 0, 0, 1126, 1139, 5, 160, 0, 0, 1127, 1139, 5, 161, 0, 0, 1128, 1139, 5, 162, 0, 0, 1129, 1139, 5, 163, 0, 0, 1130, 1139, 5, 164, 0, 0, 1131, 1139, 5, 165, 0, 0, 1132, 1139, 5, 166, 0, 0, 1133, 1139, 5, 167, 0, 0, 1134, 1139, 5, 168, 0, 0, 1135, 1139, 5, 169, 0, 0, 1136, 1139, 5, 170, 0, 0, 1137, 1139, 5, 171, 0, 0, 1138, 1038, 1, 0, 0, 0, 1138, 1039, 1, 0, 0, 0, 1138, 1040, 1, 0, 0, 0, 1138, 1041, 1, 0, 0, 0, 1138, 1042, 1, 0, 0, 0, 1138, 1043, 1, 0, 0, 0, 1138, 1044, 1, 0, 0, 0, 1138, 1045, 1, 0, 0, 0, 1138, 1046, 1, 0, 0, 0, 1138, 1047, 1, 0, 0, 0, 1138, 1048, 1, 0, 0, 0, 1138, 1049, 1, 0, 0, 0, 1138, 1050, 1, 0, 0, 0, 1138, 1051, 1, 0, 0, 0, 1138, 1052, 1, 0, 0, 0, 1138, 1053, 1, 0, 0, 0, 1138, 1054, 1, 0, 0, 0, 1138, 1055, 1, 0, 0, 0, 1138, 1056, 1, 0, 0, 0, 1138, 1057, 1, 0, 0, 0, 1138, 1058, 1, 0, 0, 0, 1138, 1059, 1, 0, 0, 0, 1138, 1060, 1, 0, 0, 0, 1138, 1061, 1, 0, 0, 0, 1138, 1062, 1, 0, 0, 0, 1138, 1063, 1, 0, 0, 0, 1138, 1064, 1, 0, 0, 0, 1138, 1065, 1, 0, 0, 0, 1138, 1066, 1, 0, 0, 0, 1138, 1067, 1, 0, 0, 0, 1138, 1068, 1, 0, 0, 0, 1138, 1069, 1, 0, 0, 0, 1138, 1070, 1, 0, 0, 0, 1138, 1071, 1, 0, 0, 0, 1138, 1072, 1, 0, 0, 0, 1138, 1073, 1, 0, 0, 0, 1138, 1074, 1, 0, 0, 0, 1138, 1075, 1, 0, 0, 0, 1138, 1076, 1, 0, 0, 0, 1138, 1077, 1, 0, 0, 0, 1138, 1078, 1, 0, 0, 0, 1138, 1079, 1, 0, 0, 0, 1138, 1080, 1, 0, 0, 0, 1138, 1081, 1, 0, 0, 0, 1138, 1082, 1, 0, 0, 0, 1138, 1083, 1, 0, 0, 0, 1138, 1084, 1, 0, 0, 0, 1138, 1085, 1, 0, 0, 0, 1138, 1086, 1, 0, 0, 0, 1138, 1087, 1, 0, 0, 0, 1138, 1088, 1, 0, 0, 0, 1138, 1089, 1, 0, 0, 0, 1138, 1090, 1, 0, 0, 0, 1138, 1091, 1, 0, 0, 0, 1138, 1092, 1, 0, 0, 0, 1138, 1093, 1, 0, 0, 0, 1138, 1094, 1, 0, 0, 0, 1138, 1095, 1, 0, 0, 0, 1138, 1096, 1, 0, 0, 0, 1138, 1097, 1, 0, 0, 0, 1138, 1098, 1, 0, 0, 0, 1138, 1099, 1, 0, 0, 0, 1138, 1100, 1, 0, 0, 0, 1138, 1101, 1, 0, 0, 0, 1138, 1102, 1, 0, 0, 0, 1138, 1103, 1, 0, 0, 0, 1138, 1104, 1, 0, 0, 0, 1138, 1105, 1, 0, 0, 0, 1138, 1106, 1, 0, 0, 0, 1138, 1107, 1, 0, 0, 0, 1138, 1108, 1, 0, 0, 0, 1138, 1109, 1, 0, 0, 0, 1138, 1110, 1, 0, 0, 0, 1138, 1111, 1, 0, 0, 0, 1138, 1112, 1, 0, 0, 0, 1138, 1113, 1, 0, 0, 0, 1138, 1114, 1, 0, 0, 0, 1138, 1115, 1, 0, 0, 0, 1138, 1116, 1, 0, 0, 0, 1138, 1117, 1, 0, 0, 0, 1138, 1118, 1, 0, 0, 0, 1138, 1119, 1, 0, 0, 0, 1138, 1120, 1, 0, 0, 0, 1138, 1121, 1, 0, 0, 0, 1138, 1122, 1, 0, 0, 0, 1138, 1123, 1, 0, 0, 0, 1138, 1124, 1, 0, 0, 0, 1138, 1125, 1, 0, 0, 0, 1138, 1126, 1, 0, 0, 0, 1138, 1127, 1, 0, 0, 0, 1138, 1128, 1, 0, 0, 0, 1138, 1129, 1, 0, 0, 0, 1138, 1130, 1, 0, 0, 0, 1138, 1131, 1, 0, 0, 0, 1138, 1132, 1, 0, 0, 0, 1138, 1133, 1, 0, 0, 0, 1138, 1134, 1, 0, 0, 0, 1138, 1135, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 227, 1, 0, 0, 0, 83, 229, 242, 248, 266, 269, 284, 294, 301, 306, 311, 318, 322, 327, 331, 337, 342, 353, 358, 362, 366, 370, 375, 389, 400, 408, 420, 426, 465, 471, 484, 491, 510, 515, 523, 532, 542, 559, 568, 583, 591, 598, 604, 606, 617, 629, 637, 639, 646, 659, 670, 683, 693, 700, 712, 720, 724, 749, 782, 790, 797, 800, 805, 823, 827, 831, 837, 862, 890, 923, 932, 937, 946, 967, 977, 985, 993, 997, 1006, 1009, 1018, 1022, 1036, 1138] \ No newline at end of file +[4, 1, 336, 1123, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 285, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 293, 8, 11, 10, 11, 12, 11, 296, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 302, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 307, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 312, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 317, 8, 12, 10, 12, 12, 12, 320, 9, 12, 1, 12, 3, 12, 323, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 328, 8, 12, 1, 13, 1, 13, 3, 13, 332, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 338, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 343, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 352, 8, 15, 10, 15, 12, 15, 355, 9, 15, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 3, 16, 363, 8, 16, 1, 17, 1, 17, 3, 17, 367, 8, 17, 1, 17, 1, 17, 3, 17, 371, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 376, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 388, 8, 21, 10, 21, 12, 21, 391, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 401, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 407, 8, 24, 10, 24, 12, 24, 410, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 421, 8, 25, 1, 26, 1, 26, 5, 26, 425, 8, 26, 10, 26, 12, 26, 428, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 466, 8, 27, 1, 28, 1, 28, 5, 28, 470, 8, 28, 10, 28, 12, 28, 473, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 485, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 505, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 510, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 518, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 525, 8, 37, 10, 37, 12, 37, 528, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 537, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 554, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 563, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 578, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 586, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 593, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 599, 8, 45, 10, 45, 12, 45, 602, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 612, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 624, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 632, 8, 47, 10, 47, 12, 47, 635, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 641, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 654, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 663, 8, 52, 10, 52, 12, 52, 666, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 676, 8, 53, 10, 53, 12, 53, 679, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 686, 8, 53, 10, 53, 12, 53, 689, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 695, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 705, 8, 56, 10, 56, 12, 56, 708, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 713, 8, 57, 10, 57, 12, 57, 716, 9, 57, 1, 58, 3, 58, 719, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 744, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 777, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 785, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 790, 8, 67, 10, 67, 12, 67, 793, 9, 67, 3, 67, 795, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 800, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 818, 8, 71, 1, 72, 1, 72, 3, 72, 822, 8, 72, 1, 73, 1, 73, 3, 73, 826, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 832, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 857, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 885, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 918, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 927, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 932, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 941, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 960, 8, 106, 10, 106, 12, 106, 963, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 5, 109, 974, 8, 109, 10, 109, 12, 109, 977, 9, 109, 1, 110, 3, 110, 980, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 989, 8, 110, 1, 111, 3, 111, 992, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 999, 8, 112, 10, 112, 12, 112, 1002, 9, 112, 1, 112, 3, 112, 1005, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1019, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1121, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1272, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 269, 1, 0, 0, 0, 14, 273, 1, 0, 0, 0, 16, 276, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 282, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 344, 1, 0, 0, 0, 30, 347, 1, 0, 0, 0, 32, 356, 1, 0, 0, 0, 34, 364, 1, 0, 0, 0, 36, 372, 1, 0, 0, 0, 38, 377, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 400, 1, 0, 0, 0, 46, 402, 1, 0, 0, 0, 48, 404, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 465, 1, 0, 0, 0, 56, 467, 1, 0, 0, 0, 58, 474, 1, 0, 0, 0, 60, 484, 1, 0, 0, 0, 62, 486, 1, 0, 0, 0, 64, 488, 1, 0, 0, 0, 66, 492, 1, 0, 0, 0, 68, 504, 1, 0, 0, 0, 70, 506, 1, 0, 0, 0, 72, 511, 1, 0, 0, 0, 74, 521, 1, 0, 0, 0, 76, 529, 1, 0, 0, 0, 78, 533, 1, 0, 0, 0, 80, 553, 1, 0, 0, 0, 82, 555, 1, 0, 0, 0, 84, 557, 1, 0, 0, 0, 86, 566, 1, 0, 0, 0, 88, 577, 1, 0, 0, 0, 90, 585, 1, 0, 0, 0, 92, 611, 1, 0, 0, 0, 94, 623, 1, 0, 0, 0, 96, 640, 1, 0, 0, 0, 98, 642, 1, 0, 0, 0, 100, 649, 1, 0, 0, 0, 102, 653, 1, 0, 0, 0, 104, 655, 1, 0, 0, 0, 106, 669, 1, 0, 0, 0, 108, 694, 1, 0, 0, 0, 110, 696, 1, 0, 0, 0, 112, 701, 1, 0, 0, 0, 114, 709, 1, 0, 0, 0, 116, 718, 1, 0, 0, 0, 118, 743, 1, 0, 0, 0, 120, 745, 1, 0, 0, 0, 122, 747, 1, 0, 0, 0, 124, 749, 1, 0, 0, 0, 126, 754, 1, 0, 0, 0, 128, 761, 1, 0, 0, 0, 130, 776, 1, 0, 0, 0, 132, 784, 1, 0, 0, 0, 134, 794, 1, 0, 0, 0, 136, 799, 1, 0, 0, 0, 138, 803, 1, 0, 0, 0, 140, 807, 1, 0, 0, 0, 142, 817, 1, 0, 0, 0, 144, 821, 1, 0, 0, 0, 146, 825, 1, 0, 0, 0, 148, 827, 1, 0, 0, 0, 150, 831, 1, 0, 0, 0, 152, 856, 1, 0, 0, 0, 154, 858, 1, 0, 0, 0, 156, 860, 1, 0, 0, 0, 158, 862, 1, 0, 0, 0, 160, 869, 1, 0, 0, 0, 162, 871, 1, 0, 0, 0, 164, 878, 1, 0, 0, 0, 166, 880, 1, 0, 0, 0, 168, 884, 1, 0, 0, 0, 170, 886, 1, 0, 0, 0, 172, 895, 1, 0, 0, 0, 174, 897, 1, 0, 0, 0, 176, 899, 1, 0, 0, 0, 178, 901, 1, 0, 0, 0, 180, 903, 1, 0, 0, 0, 182, 905, 1, 0, 0, 0, 184, 907, 1, 0, 0, 0, 186, 909, 1, 0, 0, 0, 188, 917, 1, 0, 0, 0, 190, 919, 1, 0, 0, 0, 192, 923, 1, 0, 0, 0, 194, 926, 1, 0, 0, 0, 196, 931, 1, 0, 0, 0, 198, 935, 1, 0, 0, 0, 200, 940, 1, 0, 0, 0, 202, 942, 1, 0, 0, 0, 204, 945, 1, 0, 0, 0, 206, 948, 1, 0, 0, 0, 208, 951, 1, 0, 0, 0, 210, 953, 1, 0, 0, 0, 212, 955, 1, 0, 0, 0, 214, 966, 1, 0, 0, 0, 216, 968, 1, 0, 0, 0, 218, 970, 1, 0, 0, 0, 220, 988, 1, 0, 0, 0, 222, 991, 1, 0, 0, 0, 224, 1018, 1, 0, 0, 0, 226, 1120, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 60, 30, 0, 272, 13, 1, 0, 0, 0, 273, 274, 5, 3, 0, 0, 274, 275, 3, 62, 31, 0, 275, 15, 1, 0, 0, 0, 276, 277, 5, 4, 0, 0, 277, 278, 5, 33, 0, 0, 278, 17, 1, 0, 0, 0, 279, 280, 5, 6, 0, 0, 280, 281, 3, 90, 45, 0, 281, 19, 1, 0, 0, 0, 282, 284, 5, 7, 0, 0, 283, 285, 7, 0, 0, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 3, 112, 56, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 8, 0, 0, 289, 294, 3, 64, 32, 0, 290, 291, 5, 110, 0, 0, 291, 293, 3, 64, 32, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 23, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 301, 5, 9, 0, 0, 298, 299, 5, 42, 0, 0, 299, 300, 5, 112, 0, 0, 300, 302, 3, 194, 97, 0, 301, 298, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 306, 1, 0, 0, 0, 303, 304, 5, 43, 0, 0, 304, 305, 5, 112, 0, 0, 305, 307, 3, 198, 99, 0, 306, 303, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 311, 1, 0, 0, 0, 308, 309, 5, 44, 0, 0, 309, 310, 5, 112, 0, 0, 310, 312, 3, 192, 96, 0, 311, 308, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 318, 3, 78, 39, 0, 314, 315, 5, 110, 0, 0, 315, 317, 3, 78, 39, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 68, 34, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 327, 1, 0, 0, 0, 324, 325, 5, 41, 0, 0, 325, 326, 5, 112, 0, 0, 326, 328, 3, 198, 99, 0, 327, 324, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 25, 1, 0, 0, 0, 329, 331, 5, 10, 0, 0, 330, 332, 3, 194, 97, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 3, 112, 56, 0, 334, 335, 5, 39, 0, 0, 335, 336, 5, 112, 0, 0, 336, 338, 3, 198, 99, 0, 337, 334, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 342, 1, 0, 0, 0, 339, 340, 5, 40, 0, 0, 340, 341, 5, 112, 0, 0, 341, 343, 3, 198, 99, 0, 342, 339, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 27, 1, 0, 0, 0, 344, 345, 5, 11, 0, 0, 345, 346, 3, 74, 37, 0, 346, 29, 1, 0, 0, 0, 347, 348, 5, 12, 0, 0, 348, 353, 3, 76, 38, 0, 349, 350, 5, 110, 0, 0, 350, 352, 3, 76, 38, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 31, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 358, 5, 13, 0, 0, 357, 359, 3, 194, 97, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 5, 0, 0, 361, 363, 3, 194, 97, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 33, 1, 0, 0, 0, 364, 366, 5, 14, 0, 0, 365, 367, 3, 194, 97, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 3, 112, 56, 0, 369, 371, 3, 66, 33, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 373, 5, 15, 0, 0, 373, 375, 3, 112, 56, 0, 374, 376, 3, 66, 33, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 37, 1, 0, 0, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 88, 44, 0, 379, 380, 3, 192, 96, 0, 380, 39, 1, 0, 0, 0, 381, 382, 5, 16, 0, 0, 382, 383, 3, 88, 44, 0, 383, 384, 3, 192, 96, 0, 384, 41, 1, 0, 0, 0, 385, 389, 5, 22, 0, 0, 386, 388, 3, 44, 22, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 88, 44, 0, 393, 43, 1, 0, 0, 0, 394, 395, 5, 23, 0, 0, 395, 396, 5, 112, 0, 0, 396, 401, 3, 192, 96, 0, 397, 398, 5, 21, 0, 0, 398, 399, 5, 112, 0, 0, 399, 401, 3, 192, 96, 0, 400, 394, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 401, 45, 1, 0, 0, 0, 402, 403, 7, 1, 0, 0, 403, 47, 1, 0, 0, 0, 404, 408, 5, 24, 0, 0, 405, 407, 3, 50, 25, 0, 406, 405, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 49, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 112, 0, 0, 413, 421, 3, 194, 97, 0, 414, 415, 5, 46, 0, 0, 415, 416, 5, 112, 0, 0, 416, 421, 3, 194, 97, 0, 417, 418, 5, 47, 0, 0, 418, 419, 5, 112, 0, 0, 419, 421, 3, 192, 96, 0, 420, 411, 1, 0, 0, 0, 420, 414, 1, 0, 0, 0, 420, 417, 1, 0, 0, 0, 421, 51, 1, 0, 0, 0, 422, 426, 5, 25, 0, 0, 423, 425, 3, 54, 27, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 53, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 48, 0, 0, 430, 431, 5, 112, 0, 0, 431, 466, 3, 194, 97, 0, 432, 433, 5, 49, 0, 0, 433, 434, 5, 112, 0, 0, 434, 466, 3, 194, 97, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 112, 0, 0, 437, 466, 3, 194, 97, 0, 438, 439, 5, 51, 0, 0, 439, 440, 5, 112, 0, 0, 440, 466, 3, 194, 97, 0, 441, 442, 5, 52, 0, 0, 442, 443, 5, 112, 0, 0, 443, 466, 3, 196, 98, 0, 444, 445, 5, 53, 0, 0, 445, 446, 5, 112, 0, 0, 446, 466, 3, 196, 98, 0, 447, 448, 5, 54, 0, 0, 448, 449, 5, 112, 0, 0, 449, 466, 3, 192, 96, 0, 450, 451, 5, 55, 0, 0, 451, 452, 5, 112, 0, 0, 452, 466, 3, 192, 96, 0, 453, 454, 5, 215, 0, 0, 454, 455, 5, 112, 0, 0, 455, 466, 3, 192, 96, 0, 456, 457, 5, 56, 0, 0, 457, 458, 5, 112, 0, 0, 458, 466, 3, 192, 96, 0, 459, 460, 5, 57, 0, 0, 460, 461, 5, 112, 0, 0, 461, 466, 3, 194, 97, 0, 462, 463, 5, 58, 0, 0, 463, 464, 5, 112, 0, 0, 464, 466, 3, 196, 98, 0, 465, 429, 1, 0, 0, 0, 465, 432, 1, 0, 0, 0, 465, 435, 1, 0, 0, 0, 465, 438, 1, 0, 0, 0, 465, 441, 1, 0, 0, 0, 465, 444, 1, 0, 0, 0, 465, 447, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 453, 1, 0, 0, 0, 465, 456, 1, 0, 0, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 466, 55, 1, 0, 0, 0, 467, 471, 5, 26, 0, 0, 468, 470, 3, 58, 29, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 57, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 475, 3, 220, 110, 0, 475, 476, 5, 112, 0, 0, 476, 477, 3, 188, 94, 0, 477, 59, 1, 0, 0, 0, 478, 479, 5, 29, 0, 0, 479, 480, 5, 112, 0, 0, 480, 485, 3, 62, 31, 0, 481, 482, 5, 30, 0, 0, 482, 483, 5, 112, 0, 0, 483, 485, 3, 62, 31, 0, 484, 478, 1, 0, 0, 0, 484, 481, 1, 0, 0, 0, 485, 61, 1, 0, 0, 0, 486, 487, 3, 108, 54, 0, 487, 63, 1, 0, 0, 0, 488, 489, 3, 122, 61, 0, 489, 490, 5, 27, 0, 0, 490, 491, 3, 122, 61, 0, 491, 65, 1, 0, 0, 0, 492, 493, 5, 28, 0, 0, 493, 494, 3, 112, 56, 0, 494, 67, 1, 0, 0, 0, 495, 496, 5, 28, 0, 0, 496, 505, 3, 112, 56, 0, 497, 498, 5, 28, 0, 0, 498, 505, 3, 70, 35, 0, 499, 500, 5, 28, 0, 0, 500, 501, 3, 70, 35, 0, 501, 502, 5, 110, 0, 0, 502, 503, 3, 112, 56, 0, 503, 505, 1, 0, 0, 0, 504, 495, 1, 0, 0, 0, 504, 497, 1, 0, 0, 0, 504, 499, 1, 0, 0, 0, 505, 69, 1, 0, 0, 0, 506, 509, 3, 72, 36, 0, 507, 508, 5, 27, 0, 0, 508, 510, 3, 214, 107, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 71, 1, 0, 0, 0, 511, 512, 5, 320, 0, 0, 512, 513, 5, 125, 0, 0, 513, 514, 3, 120, 60, 0, 514, 515, 5, 110, 0, 0, 515, 517, 3, 188, 94, 0, 516, 518, 3, 210, 105, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 5, 126, 0, 0, 520, 73, 1, 0, 0, 0, 521, 526, 3, 116, 58, 0, 522, 523, 5, 110, 0, 0, 523, 525, 3, 116, 58, 0, 524, 522, 1, 0, 0, 0, 525, 528, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 75, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 529, 530, 3, 120, 60, 0, 530, 531, 5, 112, 0, 0, 531, 532, 3, 88, 44, 0, 532, 77, 1, 0, 0, 0, 533, 536, 3, 80, 40, 0, 534, 535, 5, 27, 0, 0, 535, 537, 3, 122, 61, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 79, 1, 0, 0, 0, 538, 539, 3, 82, 41, 0, 539, 540, 5, 125, 0, 0, 540, 541, 3, 94, 47, 0, 541, 542, 5, 126, 0, 0, 542, 554, 1, 0, 0, 0, 543, 544, 5, 136, 0, 0, 544, 545, 5, 125, 0, 0, 545, 554, 5, 126, 0, 0, 546, 547, 7, 2, 0, 0, 547, 548, 5, 125, 0, 0, 548, 549, 3, 94, 47, 0, 549, 550, 5, 126, 0, 0, 550, 554, 1, 0, 0, 0, 551, 554, 3, 86, 43, 0, 552, 554, 3, 84, 42, 0, 553, 538, 1, 0, 0, 0, 553, 543, 1, 0, 0, 0, 553, 546, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 81, 1, 0, 0, 0, 555, 556, 7, 3, 0, 0, 556, 83, 1, 0, 0, 0, 557, 558, 5, 155, 0, 0, 558, 559, 5, 125, 0, 0, 559, 562, 3, 120, 60, 0, 560, 561, 5, 110, 0, 0, 561, 563, 3, 194, 97, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 5, 126, 0, 0, 565, 85, 1, 0, 0, 0, 566, 567, 5, 154, 0, 0, 567, 568, 5, 114, 0, 0, 568, 569, 3, 194, 97, 0, 569, 570, 5, 113, 0, 0, 570, 571, 5, 125, 0, 0, 571, 572, 3, 120, 60, 0, 572, 573, 5, 126, 0, 0, 573, 87, 1, 0, 0, 0, 574, 578, 3, 90, 45, 0, 575, 578, 3, 92, 46, 0, 576, 578, 3, 94, 47, 0, 577, 574, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 577, 576, 1, 0, 0, 0, 578, 89, 1, 0, 0, 0, 579, 580, 6, 45, -1, 0, 580, 586, 3, 92, 46, 0, 581, 582, 5, 61, 0, 0, 582, 586, 3, 90, 45, 6, 583, 586, 3, 100, 50, 0, 584, 586, 3, 102, 51, 0, 585, 579, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 584, 1, 0, 0, 0, 586, 600, 1, 0, 0, 0, 587, 588, 10, 5, 0, 0, 588, 589, 5, 62, 0, 0, 589, 599, 3, 90, 45, 6, 590, 592, 10, 4, 0, 0, 591, 593, 5, 63, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 599, 3, 90, 45, 5, 595, 596, 10, 3, 0, 0, 596, 597, 5, 64, 0, 0, 597, 599, 3, 90, 45, 4, 598, 587, 1, 0, 0, 0, 598, 590, 1, 0, 0, 0, 598, 595, 1, 0, 0, 0, 599, 602, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 91, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 604, 3, 94, 47, 0, 604, 605, 3, 182, 91, 0, 605, 606, 3, 94, 47, 0, 606, 612, 1, 0, 0, 0, 607, 608, 3, 94, 47, 0, 608, 609, 5, 60, 0, 0, 609, 610, 3, 212, 106, 0, 610, 612, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 611, 607, 1, 0, 0, 0, 612, 93, 1, 0, 0, 0, 613, 614, 6, 47, -1, 0, 614, 624, 3, 96, 48, 0, 615, 624, 3, 98, 49, 0, 616, 624, 3, 162, 81, 0, 617, 624, 3, 158, 79, 0, 618, 624, 3, 170, 85, 0, 619, 620, 5, 125, 0, 0, 620, 621, 3, 94, 47, 0, 621, 622, 5, 126, 0, 0, 622, 624, 1, 0, 0, 0, 623, 613, 1, 0, 0, 0, 623, 615, 1, 0, 0, 0, 623, 616, 1, 0, 0, 0, 623, 617, 1, 0, 0, 0, 623, 618, 1, 0, 0, 0, 623, 619, 1, 0, 0, 0, 624, 633, 1, 0, 0, 0, 625, 626, 10, 8, 0, 0, 626, 627, 7, 4, 0, 0, 627, 632, 3, 94, 47, 9, 628, 629, 10, 7, 0, 0, 629, 630, 7, 0, 0, 0, 630, 632, 3, 94, 47, 8, 631, 625, 1, 0, 0, 0, 631, 628, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 95, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 641, 3, 124, 62, 0, 637, 641, 3, 126, 63, 0, 638, 641, 3, 120, 60, 0, 639, 641, 3, 188, 94, 0, 640, 636, 1, 0, 0, 0, 640, 637, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 640, 639, 1, 0, 0, 0, 641, 97, 1, 0, 0, 0, 642, 643, 3, 180, 90, 0, 643, 644, 5, 125, 0, 0, 644, 645, 3, 136, 68, 0, 645, 646, 5, 60, 0, 0, 646, 647, 3, 136, 68, 0, 647, 648, 5, 126, 0, 0, 648, 99, 1, 0, 0, 0, 649, 650, 3, 128, 64, 0, 650, 101, 1, 0, 0, 0, 651, 654, 3, 104, 52, 0, 652, 654, 3, 106, 53, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, 0, 0, 654, 103, 1, 0, 0, 0, 655, 656, 3, 184, 92, 0, 656, 657, 5, 125, 0, 0, 657, 658, 3, 146, 73, 0, 658, 659, 5, 110, 0, 0, 659, 664, 3, 148, 74, 0, 660, 661, 5, 110, 0, 0, 661, 663, 3, 138, 69, 0, 662, 660, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 667, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 668, 5, 126, 0, 0, 668, 105, 1, 0, 0, 0, 669, 670, 3, 186, 93, 0, 670, 671, 5, 125, 0, 0, 671, 672, 5, 127, 0, 0, 672, 677, 3, 142, 71, 0, 673, 674, 5, 110, 0, 0, 674, 676, 3, 142, 71, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 5, 128, 0, 0, 681, 682, 5, 110, 0, 0, 682, 687, 3, 148, 74, 0, 683, 684, 5, 110, 0, 0, 684, 686, 3, 138, 69, 0, 685, 683, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 690, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 690, 691, 5, 126, 0, 0, 691, 107, 1, 0, 0, 0, 692, 695, 3, 216, 108, 0, 693, 695, 5, 332, 0, 0, 694, 692, 1, 0, 0, 0, 694, 693, 1, 0, 0, 0, 695, 109, 1, 0, 0, 0, 696, 697, 3, 214, 107, 0, 697, 698, 5, 125, 0, 0, 698, 699, 3, 134, 67, 0, 699, 700, 5, 126, 0, 0, 700, 111, 1, 0, 0, 0, 701, 706, 3, 120, 60, 0, 702, 703, 5, 110, 0, 0, 703, 705, 3, 120, 60, 0, 704, 702, 1, 0, 0, 0, 705, 708, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 113, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 714, 3, 122, 61, 0, 710, 711, 5, 110, 0, 0, 711, 713, 3, 122, 61, 0, 712, 710, 1, 0, 0, 0, 713, 716, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 115, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 717, 719, 7, 0, 0, 0, 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 3, 118, 59, 0, 721, 117, 1, 0, 0, 0, 722, 744, 3, 120, 60, 0, 723, 724, 5, 35, 0, 0, 724, 725, 5, 125, 0, 0, 725, 726, 3, 120, 60, 0, 726, 727, 5, 126, 0, 0, 727, 744, 1, 0, 0, 0, 728, 729, 5, 36, 0, 0, 729, 730, 5, 125, 0, 0, 730, 731, 3, 120, 60, 0, 731, 732, 5, 126, 0, 0, 732, 744, 1, 0, 0, 0, 733, 734, 5, 37, 0, 0, 734, 735, 5, 125, 0, 0, 735, 736, 3, 120, 60, 0, 736, 737, 5, 126, 0, 0, 737, 744, 1, 0, 0, 0, 738, 739, 5, 38, 0, 0, 739, 740, 5, 125, 0, 0, 740, 741, 3, 120, 60, 0, 741, 742, 5, 126, 0, 0, 742, 744, 1, 0, 0, 0, 743, 722, 1, 0, 0, 0, 743, 723, 1, 0, 0, 0, 743, 728, 1, 0, 0, 0, 743, 733, 1, 0, 0, 0, 743, 738, 1, 0, 0, 0, 744, 119, 1, 0, 0, 0, 745, 746, 3, 214, 107, 0, 746, 121, 1, 0, 0, 0, 747, 748, 3, 218, 109, 0, 748, 123, 1, 0, 0, 0, 749, 750, 3, 132, 66, 0, 750, 751, 5, 125, 0, 0, 751, 752, 3, 134, 67, 0, 752, 753, 5, 126, 0, 0, 753, 125, 1, 0, 0, 0, 754, 755, 5, 274, 0, 0, 755, 756, 5, 125, 0, 0, 756, 757, 3, 88, 44, 0, 757, 758, 5, 27, 0, 0, 758, 759, 3, 130, 65, 0, 759, 760, 5, 126, 0, 0, 760, 127, 1, 0, 0, 0, 761, 762, 3, 174, 87, 0, 762, 763, 5, 125, 0, 0, 763, 764, 3, 134, 67, 0, 764, 765, 5, 126, 0, 0, 765, 129, 1, 0, 0, 0, 766, 777, 5, 212, 0, 0, 767, 777, 5, 241, 0, 0, 768, 777, 5, 243, 0, 0, 769, 777, 5, 102, 0, 0, 770, 777, 5, 103, 0, 0, 771, 777, 5, 104, 0, 0, 772, 777, 5, 105, 0, 0, 773, 777, 5, 106, 0, 0, 774, 777, 5, 107, 0, 0, 775, 777, 5, 108, 0, 0, 776, 766, 1, 0, 0, 0, 776, 767, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 769, 1, 0, 0, 0, 776, 770, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 776, 773, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 775, 1, 0, 0, 0, 777, 131, 1, 0, 0, 0, 778, 785, 3, 152, 76, 0, 779, 785, 3, 156, 78, 0, 780, 785, 3, 178, 89, 0, 781, 785, 3, 174, 87, 0, 782, 785, 3, 176, 88, 0, 783, 785, 3, 180, 90, 0, 784, 778, 1, 0, 0, 0, 784, 779, 1, 0, 0, 0, 784, 780, 1, 0, 0, 0, 784, 781, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 783, 1, 0, 0, 0, 785, 133, 1, 0, 0, 0, 786, 791, 3, 136, 68, 0, 787, 788, 5, 110, 0, 0, 788, 790, 3, 136, 68, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 786, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 135, 1, 0, 0, 0, 796, 797, 3, 220, 110, 0, 797, 798, 5, 112, 0, 0, 798, 800, 1, 0, 0, 0, 799, 796, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 3, 94, 47, 0, 802, 137, 1, 0, 0, 0, 803, 804, 3, 140, 70, 0, 804, 805, 5, 112, 0, 0, 805, 806, 3, 150, 75, 0, 806, 139, 1, 0, 0, 0, 807, 808, 7, 5, 0, 0, 808, 141, 1, 0, 0, 0, 809, 818, 3, 146, 73, 0, 810, 811, 3, 146, 73, 0, 811, 812, 3, 144, 72, 0, 812, 818, 1, 0, 0, 0, 813, 814, 3, 146, 73, 0, 814, 815, 5, 134, 0, 0, 815, 816, 3, 144, 72, 0, 816, 818, 1, 0, 0, 0, 817, 809, 1, 0, 0, 0, 817, 810, 1, 0, 0, 0, 817, 813, 1, 0, 0, 0, 818, 143, 1, 0, 0, 0, 819, 822, 3, 194, 97, 0, 820, 822, 3, 196, 98, 0, 821, 819, 1, 0, 0, 0, 821, 820, 1, 0, 0, 0, 822, 145, 1, 0, 0, 0, 823, 826, 3, 214, 107, 0, 824, 826, 3, 192, 96, 0, 825, 823, 1, 0, 0, 0, 825, 824, 1, 0, 0, 0, 826, 147, 1, 0, 0, 0, 827, 828, 3, 150, 75, 0, 828, 149, 1, 0, 0, 0, 829, 832, 3, 214, 107, 0, 830, 832, 3, 188, 94, 0, 831, 829, 1, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 151, 1, 0, 0, 0, 833, 857, 5, 172, 0, 0, 834, 857, 5, 173, 0, 0, 835, 857, 5, 174, 0, 0, 836, 857, 5, 175, 0, 0, 837, 857, 5, 176, 0, 0, 838, 857, 5, 177, 0, 0, 839, 857, 5, 178, 0, 0, 840, 857, 5, 179, 0, 0, 841, 857, 5, 180, 0, 0, 842, 857, 5, 181, 0, 0, 843, 857, 5, 182, 0, 0, 844, 857, 5, 183, 0, 0, 845, 857, 5, 184, 0, 0, 846, 857, 5, 185, 0, 0, 847, 857, 5, 186, 0, 0, 848, 857, 5, 188, 0, 0, 849, 857, 5, 189, 0, 0, 850, 857, 5, 190, 0, 0, 851, 857, 5, 191, 0, 0, 852, 857, 5, 192, 0, 0, 853, 857, 5, 193, 0, 0, 854, 857, 5, 194, 0, 0, 855, 857, 3, 154, 77, 0, 856, 833, 1, 0, 0, 0, 856, 834, 1, 0, 0, 0, 856, 835, 1, 0, 0, 0, 856, 836, 1, 0, 0, 0, 856, 837, 1, 0, 0, 0, 856, 838, 1, 0, 0, 0, 856, 839, 1, 0, 0, 0, 856, 840, 1, 0, 0, 0, 856, 841, 1, 0, 0, 0, 856, 842, 1, 0, 0, 0, 856, 843, 1, 0, 0, 0, 856, 844, 1, 0, 0, 0, 856, 845, 1, 0, 0, 0, 856, 846, 1, 0, 0, 0, 856, 847, 1, 0, 0, 0, 856, 848, 1, 0, 0, 0, 856, 849, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 851, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 853, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 153, 1, 0, 0, 0, 858, 859, 7, 6, 0, 0, 859, 155, 1, 0, 0, 0, 860, 861, 7, 7, 0, 0, 861, 157, 1, 0, 0, 0, 862, 863, 5, 226, 0, 0, 863, 864, 5, 125, 0, 0, 864, 865, 3, 160, 80, 0, 865, 866, 5, 110, 0, 0, 866, 867, 3, 136, 68, 0, 867, 868, 5, 126, 0, 0, 868, 159, 1, 0, 0, 0, 869, 870, 7, 8, 0, 0, 870, 161, 1, 0, 0, 0, 871, 872, 5, 223, 0, 0, 872, 873, 5, 125, 0, 0, 873, 874, 3, 168, 84, 0, 874, 875, 5, 5, 0, 0, 875, 876, 3, 136, 68, 0, 876, 877, 5, 126, 0, 0, 877, 163, 1, 0, 0, 0, 878, 879, 7, 9, 0, 0, 879, 165, 1, 0, 0, 0, 880, 881, 7, 10, 0, 0, 881, 167, 1, 0, 0, 0, 882, 885, 3, 164, 82, 0, 883, 885, 3, 166, 83, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, 0, 885, 169, 1, 0, 0, 0, 886, 887, 3, 172, 86, 0, 887, 888, 5, 125, 0, 0, 888, 889, 3, 164, 82, 0, 889, 890, 5, 110, 0, 0, 890, 891, 3, 136, 68, 0, 891, 892, 5, 110, 0, 0, 892, 893, 3, 136, 68, 0, 893, 894, 5, 126, 0, 0, 894, 171, 1, 0, 0, 0, 895, 896, 7, 11, 0, 0, 896, 173, 1, 0, 0, 0, 897, 898, 7, 12, 0, 0, 898, 175, 1, 0, 0, 0, 899, 900, 5, 281, 0, 0, 900, 177, 1, 0, 0, 0, 901, 902, 7, 13, 0, 0, 902, 179, 1, 0, 0, 0, 903, 904, 5, 187, 0, 0, 904, 181, 1, 0, 0, 0, 905, 906, 7, 14, 0, 0, 906, 183, 1, 0, 0, 0, 907, 908, 7, 15, 0, 0, 908, 185, 1, 0, 0, 0, 909, 910, 7, 16, 0, 0, 910, 187, 1, 0, 0, 0, 911, 918, 3, 190, 95, 0, 912, 918, 3, 192, 96, 0, 913, 918, 3, 194, 97, 0, 914, 918, 3, 196, 98, 0, 915, 918, 3, 198, 99, 0, 916, 918, 3, 200, 100, 0, 917, 911, 1, 0, 0, 0, 917, 912, 1, 0, 0, 0, 917, 913, 1, 0, 0, 0, 917, 914, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 916, 1, 0, 0, 0, 918, 189, 1, 0, 0, 0, 919, 920, 5, 81, 0, 0, 920, 921, 3, 94, 47, 0, 921, 922, 3, 208, 104, 0, 922, 191, 1, 0, 0, 0, 923, 924, 7, 17, 0, 0, 924, 193, 1, 0, 0, 0, 925, 927, 7, 0, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 5, 330, 0, 0, 929, 195, 1, 0, 0, 0, 930, 932, 7, 0, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 5, 331, 0, 0, 934, 197, 1, 0, 0, 0, 935, 936, 7, 18, 0, 0, 936, 199, 1, 0, 0, 0, 937, 941, 3, 202, 101, 0, 938, 941, 3, 204, 102, 0, 939, 941, 3, 206, 103, 0, 940, 937, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 940, 939, 1, 0, 0, 0, 941, 201, 1, 0, 0, 0, 942, 943, 5, 212, 0, 0, 943, 944, 3, 192, 96, 0, 944, 203, 1, 0, 0, 0, 945, 946, 5, 241, 0, 0, 946, 947, 3, 192, 96, 0, 947, 205, 1, 0, 0, 0, 948, 949, 5, 243, 0, 0, 949, 950, 3, 192, 96, 0, 950, 207, 1, 0, 0, 0, 951, 952, 7, 19, 0, 0, 952, 209, 1, 0, 0, 0, 953, 954, 7, 20, 0, 0, 954, 211, 1, 0, 0, 0, 955, 956, 5, 125, 0, 0, 956, 961, 3, 188, 94, 0, 957, 958, 5, 110, 0, 0, 958, 960, 3, 188, 94, 0, 959, 957, 1, 0, 0, 0, 960, 963, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 964, 965, 5, 126, 0, 0, 965, 213, 1, 0, 0, 0, 966, 967, 5, 328, 0, 0, 967, 215, 1, 0, 0, 0, 968, 969, 5, 328, 0, 0, 969, 217, 1, 0, 0, 0, 970, 975, 3, 224, 112, 0, 971, 972, 5, 111, 0, 0, 972, 974, 3, 224, 112, 0, 973, 971, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 219, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 980, 5, 111, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 989, 5, 328, 0, 0, 982, 983, 5, 131, 0, 0, 983, 984, 3, 220, 110, 0, 984, 985, 5, 131, 0, 0, 985, 989, 1, 0, 0, 0, 986, 989, 5, 335, 0, 0, 987, 989, 3, 226, 113, 0, 988, 979, 1, 0, 0, 0, 988, 982, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 221, 1, 0, 0, 0, 990, 992, 5, 329, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 3, 220, 110, 0, 994, 223, 1, 0, 0, 0, 995, 1000, 3, 220, 110, 0, 996, 997, 5, 122, 0, 0, 997, 999, 3, 220, 110, 0, 998, 996, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 5, 122, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1019, 1, 0, 0, 0, 1006, 1007, 5, 129, 0, 0, 1007, 1008, 3, 224, 112, 0, 1008, 1009, 5, 129, 0, 0, 1009, 1019, 1, 0, 0, 0, 1010, 1011, 5, 130, 0, 0, 1011, 1012, 3, 224, 112, 0, 1012, 1013, 5, 130, 0, 0, 1013, 1019, 1, 0, 0, 0, 1014, 1015, 5, 131, 0, 0, 1015, 1016, 3, 224, 112, 0, 1016, 1017, 5, 131, 0, 0, 1017, 1019, 1, 0, 0, 0, 1018, 995, 1, 0, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1010, 1, 0, 0, 0, 1018, 1014, 1, 0, 0, 0, 1019, 225, 1, 0, 0, 0, 1020, 1121, 5, 31, 0, 0, 1021, 1121, 3, 210, 105, 0, 1022, 1121, 5, 320, 0, 0, 1023, 1121, 3, 132, 66, 0, 1024, 1121, 3, 140, 70, 0, 1025, 1121, 3, 208, 104, 0, 1026, 1121, 3, 156, 78, 0, 1027, 1121, 3, 178, 89, 0, 1028, 1121, 3, 152, 76, 0, 1029, 1121, 3, 180, 90, 0, 1030, 1121, 5, 2, 0, 0, 1031, 1121, 5, 3, 0, 0, 1032, 1121, 5, 4, 0, 0, 1033, 1121, 5, 5, 0, 0, 1034, 1121, 5, 6, 0, 0, 1035, 1121, 5, 7, 0, 0, 1036, 1121, 5, 8, 0, 0, 1037, 1121, 5, 9, 0, 0, 1038, 1121, 5, 10, 0, 0, 1039, 1121, 5, 11, 0, 0, 1040, 1121, 5, 12, 0, 0, 1041, 1121, 5, 13, 0, 0, 1042, 1121, 5, 14, 0, 0, 1043, 1121, 5, 15, 0, 0, 1044, 1121, 5, 16, 0, 0, 1045, 1121, 5, 17, 0, 0, 1046, 1121, 5, 18, 0, 0, 1047, 1121, 5, 19, 0, 0, 1048, 1121, 5, 20, 0, 0, 1049, 1121, 5, 21, 0, 0, 1050, 1121, 5, 22, 0, 0, 1051, 1121, 5, 23, 0, 0, 1052, 1121, 5, 24, 0, 0, 1053, 1121, 5, 25, 0, 0, 1054, 1121, 5, 26, 0, 0, 1055, 1121, 5, 29, 0, 0, 1056, 1121, 5, 30, 0, 0, 1057, 1121, 5, 32, 0, 0, 1058, 1121, 5, 33, 0, 0, 1059, 1121, 5, 34, 0, 0, 1060, 1121, 5, 36, 0, 0, 1061, 1121, 5, 37, 0, 0, 1062, 1121, 5, 38, 0, 0, 1063, 1121, 5, 39, 0, 0, 1064, 1121, 5, 40, 0, 0, 1065, 1121, 5, 41, 0, 0, 1066, 1121, 5, 42, 0, 0, 1067, 1121, 5, 43, 0, 0, 1068, 1121, 5, 44, 0, 0, 1069, 1121, 5, 45, 0, 0, 1070, 1121, 5, 46, 0, 0, 1071, 1121, 5, 47, 0, 0, 1072, 1121, 5, 48, 0, 0, 1073, 1121, 5, 49, 0, 0, 1074, 1121, 5, 50, 0, 0, 1075, 1121, 5, 51, 0, 0, 1076, 1121, 5, 52, 0, 0, 1077, 1121, 5, 53, 0, 0, 1078, 1121, 5, 54, 0, 0, 1079, 1121, 5, 55, 0, 0, 1080, 1121, 5, 56, 0, 0, 1081, 1121, 5, 57, 0, 0, 1082, 1121, 5, 58, 0, 0, 1083, 1121, 5, 135, 0, 0, 1084, 1121, 5, 136, 0, 0, 1085, 1121, 5, 137, 0, 0, 1086, 1121, 5, 138, 0, 0, 1087, 1121, 5, 139, 0, 0, 1088, 1121, 5, 140, 0, 0, 1089, 1121, 5, 141, 0, 0, 1090, 1121, 5, 142, 0, 0, 1091, 1121, 5, 143, 0, 0, 1092, 1121, 5, 144, 0, 0, 1093, 1121, 5, 145, 0, 0, 1094, 1121, 5, 146, 0, 0, 1095, 1121, 5, 147, 0, 0, 1096, 1121, 5, 148, 0, 0, 1097, 1121, 5, 149, 0, 0, 1098, 1121, 5, 150, 0, 0, 1099, 1121, 5, 151, 0, 0, 1100, 1121, 5, 152, 0, 0, 1101, 1121, 5, 153, 0, 0, 1102, 1121, 5, 154, 0, 0, 1103, 1121, 5, 155, 0, 0, 1104, 1121, 5, 156, 0, 0, 1105, 1121, 5, 157, 0, 0, 1106, 1121, 5, 158, 0, 0, 1107, 1121, 5, 159, 0, 0, 1108, 1121, 5, 160, 0, 0, 1109, 1121, 5, 161, 0, 0, 1110, 1121, 5, 162, 0, 0, 1111, 1121, 5, 163, 0, 0, 1112, 1121, 5, 164, 0, 0, 1113, 1121, 5, 165, 0, 0, 1114, 1121, 5, 166, 0, 0, 1115, 1121, 5, 167, 0, 0, 1116, 1121, 5, 168, 0, 0, 1117, 1121, 5, 169, 0, 0, 1118, 1121, 5, 170, 0, 0, 1119, 1121, 5, 171, 0, 0, 1120, 1020, 1, 0, 0, 0, 1120, 1021, 1, 0, 0, 0, 1120, 1022, 1, 0, 0, 0, 1120, 1023, 1, 0, 0, 0, 1120, 1024, 1, 0, 0, 0, 1120, 1025, 1, 0, 0, 0, 1120, 1026, 1, 0, 0, 0, 1120, 1027, 1, 0, 0, 0, 1120, 1028, 1, 0, 0, 0, 1120, 1029, 1, 0, 0, 0, 1120, 1030, 1, 0, 0, 0, 1120, 1031, 1, 0, 0, 0, 1120, 1032, 1, 0, 0, 0, 1120, 1033, 1, 0, 0, 0, 1120, 1034, 1, 0, 0, 0, 1120, 1035, 1, 0, 0, 0, 1120, 1036, 1, 0, 0, 0, 1120, 1037, 1, 0, 0, 0, 1120, 1038, 1, 0, 0, 0, 1120, 1039, 1, 0, 0, 0, 1120, 1040, 1, 0, 0, 0, 1120, 1041, 1, 0, 0, 0, 1120, 1042, 1, 0, 0, 0, 1120, 1043, 1, 0, 0, 0, 1120, 1044, 1, 0, 0, 0, 1120, 1045, 1, 0, 0, 0, 1120, 1046, 1, 0, 0, 0, 1120, 1047, 1, 0, 0, 0, 1120, 1048, 1, 0, 0, 0, 1120, 1049, 1, 0, 0, 0, 1120, 1050, 1, 0, 0, 0, 1120, 1051, 1, 0, 0, 0, 1120, 1052, 1, 0, 0, 0, 1120, 1053, 1, 0, 0, 0, 1120, 1054, 1, 0, 0, 0, 1120, 1055, 1, 0, 0, 0, 1120, 1056, 1, 0, 0, 0, 1120, 1057, 1, 0, 0, 0, 1120, 1058, 1, 0, 0, 0, 1120, 1059, 1, 0, 0, 0, 1120, 1060, 1, 0, 0, 0, 1120, 1061, 1, 0, 0, 0, 1120, 1062, 1, 0, 0, 0, 1120, 1063, 1, 0, 0, 0, 1120, 1064, 1, 0, 0, 0, 1120, 1065, 1, 0, 0, 0, 1120, 1066, 1, 0, 0, 0, 1120, 1067, 1, 0, 0, 0, 1120, 1068, 1, 0, 0, 0, 1120, 1069, 1, 0, 0, 0, 1120, 1070, 1, 0, 0, 0, 1120, 1071, 1, 0, 0, 0, 1120, 1072, 1, 0, 0, 0, 1120, 1073, 1, 0, 0, 0, 1120, 1074, 1, 0, 0, 0, 1120, 1075, 1, 0, 0, 0, 1120, 1076, 1, 0, 0, 0, 1120, 1077, 1, 0, 0, 0, 1120, 1078, 1, 0, 0, 0, 1120, 1079, 1, 0, 0, 0, 1120, 1080, 1, 0, 0, 0, 1120, 1081, 1, 0, 0, 0, 1120, 1082, 1, 0, 0, 0, 1120, 1083, 1, 0, 0, 0, 1120, 1084, 1, 0, 0, 0, 1120, 1085, 1, 0, 0, 0, 1120, 1086, 1, 0, 0, 0, 1120, 1087, 1, 0, 0, 0, 1120, 1088, 1, 0, 0, 0, 1120, 1089, 1, 0, 0, 0, 1120, 1090, 1, 0, 0, 0, 1120, 1091, 1, 0, 0, 0, 1120, 1092, 1, 0, 0, 0, 1120, 1093, 1, 0, 0, 0, 1120, 1094, 1, 0, 0, 0, 1120, 1095, 1, 0, 0, 0, 1120, 1096, 1, 0, 0, 0, 1120, 1097, 1, 0, 0, 0, 1120, 1098, 1, 0, 0, 0, 1120, 1099, 1, 0, 0, 0, 1120, 1100, 1, 0, 0, 0, 1120, 1101, 1, 0, 0, 0, 1120, 1102, 1, 0, 0, 0, 1120, 1103, 1, 0, 0, 0, 1120, 1104, 1, 0, 0, 0, 1120, 1105, 1, 0, 0, 0, 1120, 1106, 1, 0, 0, 0, 1120, 1107, 1, 0, 0, 0, 1120, 1108, 1, 0, 0, 0, 1120, 1109, 1, 0, 0, 0, 1120, 1110, 1, 0, 0, 0, 1120, 1111, 1, 0, 0, 0, 1120, 1112, 1, 0, 0, 0, 1120, 1113, 1, 0, 0, 0, 1120, 1114, 1, 0, 0, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1116, 1, 0, 0, 0, 1120, 1117, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 227, 1, 0, 0, 0, 80, 229, 242, 248, 266, 269, 284, 294, 301, 306, 311, 318, 322, 327, 331, 337, 342, 353, 358, 362, 366, 370, 375, 389, 400, 408, 420, 426, 465, 471, 484, 504, 509, 517, 526, 536, 553, 562, 577, 585, 592, 598, 600, 611, 623, 631, 633, 640, 653, 664, 677, 687, 694, 706, 714, 718, 743, 776, 784, 791, 794, 799, 817, 821, 825, 831, 856, 884, 917, 926, 931, 940, 961, 975, 979, 988, 991, 1000, 1004, 1018, 1120] \ No newline at end of file diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts index 9e7618b05b8e..00e83bcc4608 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts @@ -1563,27 +1563,25 @@ export class OpenSearchPPLParser extends antlr.Parser { public patternsCommand(): PatternsCommandContext { let localContext = new PatternsCommandContext(this.context, this.state); this.enterRule(localContext, 42, OpenSearchPPLParser.RULE_patternsCommand); + let _la: number; try { - let alternative: number; this.enterOuterAlt(localContext, 1); { this.state = 385; this.match(OpenSearchPPLParser.PATTERNS); this.state = 389; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 22, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 386; - this.patternsParameter(); - } - } + _la = this.tokenStream.LA(1); + while (_la === 21 || _la === 23) { + { + { + this.state = 386; + this.patternsParameter(); + } } this.state = 391; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 22, this.context); + _la = this.tokenStream.LA(1); } { this.state = 392; @@ -2120,28 +2118,11 @@ export class OpenSearchPPLParser extends antlr.Parser { public tableSourceClause(): TableSourceClauseContext { let localContext = new TableSourceClauseContext(this.context, this.state); this.enterRule(localContext, 62, OpenSearchPPLParser.RULE_tableSourceClause); - let _la: number; try { this.enterOuterAlt(localContext, 1); { this.state = 486; this.tableSource(); - this.state = 491; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 110) { - { - { - this.state = 487; - this.match(OpenSearchPPLParser.COMMA); - this.state = 488; - this.tableSource(); - } - } - this.state = 493; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } } } catch (re) { @@ -2163,11 +2144,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 494; + this.state = 488; localContext._orignalField = this.wcFieldExpression(); - this.state = 495; + this.state = 489; this.match(OpenSearchPPLParser.AS); - this.state = 496; + this.state = 490; localContext._renamedField = this.wcFieldExpression(); } } @@ -2190,9 +2171,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 498; + this.state = 492; this.match(OpenSearchPPLParser.BY); - this.state = 499; + this.state = 493; this.fieldList(); } } @@ -2213,37 +2194,37 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new StatsByClauseContext(this.context, this.state); this.enterRule(localContext, 68, OpenSearchPPLParser.RULE_statsByClause); try { - this.state = 510; + this.state = 504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 501; + this.state = 495; this.match(OpenSearchPPLParser.BY); - this.state = 502; + this.state = 496; this.fieldList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 503; + this.state = 497; this.match(OpenSearchPPLParser.BY); - this.state = 504; + this.state = 498; this.bySpanClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 505; + this.state = 499; this.match(OpenSearchPPLParser.BY); - this.state = 506; + this.state = 500; this.bySpanClause(); - this.state = 507; + this.state = 501; this.match(OpenSearchPPLParser.COMMA); - this.state = 508; + this.state = 502; this.fieldList(); } break; @@ -2269,16 +2250,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 512; + this.state = 506; this.spanClause(); - this.state = 515; + this.state = 509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 513; + this.state = 507; this.match(OpenSearchPPLParser.AS); - this.state = 514; + this.state = 508; localContext._alias = this.qualifiedName(); } } @@ -2305,27 +2286,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 517; + this.state = 511; this.match(OpenSearchPPLParser.SPAN); - this.state = 518; + this.state = 512; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 519; + this.state = 513; this.fieldExpression(); - this.state = 520; + this.state = 514; this.match(OpenSearchPPLParser.COMMA); - this.state = 521; + this.state = 515; localContext._value = this.literalValue(); - this.state = 523; + this.state = 517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0)) { { - this.state = 522; + this.state = 516; localContext._unit = this.timespanUnit(); } } - this.state = 525; + this.state = 519; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2349,21 +2330,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 527; + this.state = 521; this.sortField(); - this.state = 532; + this.state = 526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 528; + this.state = 522; this.match(OpenSearchPPLParser.COMMA); - this.state = 529; + this.state = 523; this.sortField(); } } - this.state = 534; + this.state = 528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2388,11 +2369,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 535; + this.state = 529; this.fieldExpression(); - this.state = 536; + this.state = 530; this.match(OpenSearchPPLParser.EQUAL); - this.state = 537; + this.state = 531; this.expression(); } } @@ -2416,16 +2397,16 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 539; + this.state = 533; this.statsFunction(); - this.state = 542; + this.state = 536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 540; + this.state = 534; this.match(OpenSearchPPLParser.AS); - this.state = 541; + this.state = 535; localContext._alias = this.wcFieldExpression(); } } @@ -2450,20 +2431,20 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 80, OpenSearchPPLParser.RULE_statsFunction); let _la: number; try { - this.state = 559; + this.state = 553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: localContext = new StatsFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 544; + this.state = 538; this.statsFunctionName(); - this.state = 545; + this.state = 539; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 546; + this.state = 540; this.valueExpression(0); - this.state = 547; + this.state = 541; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2471,11 +2452,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new CountAllFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 549; + this.state = 543; this.match(OpenSearchPPLParser.COUNT); - this.state = 550; + this.state = 544; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 551; + this.state = 545; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2483,7 +2464,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new DistinctCountFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 552; + this.state = 546; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -2492,11 +2473,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 553; + this.state = 547; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 554; + this.state = 548; this.valueExpression(0); - this.state = 555; + this.state = 549; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -2504,7 +2485,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PercentileAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 557; + this.state = 551; this.percentileAggFunction(); } break; @@ -2512,7 +2493,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TakeAggFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 558; + this.state = 552; this.takeAggFunction(); } break; @@ -2538,7 +2519,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 561; + this.state = 555; _la = this.tokenStream.LA(1); if(!(((((_la - 135)) & ~0x1F) === 0 && ((1 << (_la - 135)) & 500003) !== 0))) { this.errorHandler.recoverInline(this); @@ -2569,25 +2550,25 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 563; + this.state = 557; this.match(OpenSearchPPLParser.TAKE); - this.state = 564; + this.state = 558; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 565; + this.state = 559; this.fieldExpression(); - this.state = 568; + this.state = 562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 566; + this.state = 560; this.match(OpenSearchPPLParser.COMMA); - this.state = 567; + this.state = 561; localContext._size = this.integerLiteral(); } } - this.state = 570; + this.state = 564; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2610,19 +2591,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 572; + this.state = 566; this.match(OpenSearchPPLParser.PERCENTILE); - this.state = 573; + this.state = 567; this.match(OpenSearchPPLParser.LESS); - this.state = 574; + this.state = 568; localContext._value = this.integerLiteral(); - this.state = 575; + this.state = 569; this.match(OpenSearchPPLParser.GREATER); - this.state = 576; + this.state = 570; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 577; + this.state = 571; localContext._aggField = this.fieldExpression(); - this.state = 578; + this.state = 572; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -2643,27 +2624,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ExpressionContext(this.context, this.state); this.enterRule(localContext, 88, OpenSearchPPLParser.RULE_expression); try { - this.state = 583; + this.state = 577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 580; + this.state = 574; this.logicalExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 581; + this.state = 575; this.comparisonExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 582; + this.state = 576; this.valueExpression(0); } break; @@ -2701,16 +2682,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 591; + this.state = 585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { localContext = new ComparsionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 586; + this.state = 580; this.comparisonExpression(); } break; @@ -2719,9 +2700,9 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 587; + this.state = 581; this.match(OpenSearchPPLParser.NOT); - this.state = 588; + this.state = 582; this.logicalExpression(6); } break; @@ -2730,7 +2711,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BooleanExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 589; + this.state = 583; this.booleanExpression(); } break; @@ -2739,15 +2720,15 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new RelevanceExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 590; + this.state = 584; this.relevanceExpression(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 606; + this.state = 600; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 42, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 41, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -2755,21 +2736,21 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 604; + this.state = 598; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { localContext = new LogicalOrContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalOrContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 593; + this.state = 587; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 594; + this.state = 588; this.match(OpenSearchPPLParser.OR); - this.state = 595; + this.state = 589; (localContext as LogicalOrContext)._right = this.logicalExpression(6); } break; @@ -2778,21 +2759,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalAndContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalAndContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 596; + this.state = 590; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 598; + this.state = 592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 597; + this.state = 591; this.match(OpenSearchPPLParser.AND); } } - this.state = 600; + this.state = 594; (localContext as LogicalAndContext)._right = this.logicalExpression(5); } break; @@ -2801,22 +2782,22 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new LogicalXorContext(new LogicalExpressionContext(parentContext, parentState)); (localContext as LogicalXorContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_logicalExpression); - this.state = 601; + this.state = 595; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 602; + this.state = 596; this.match(OpenSearchPPLParser.XOR); - this.state = 603; + this.state = 597; (localContext as LogicalXorContext)._right = this.logicalExpression(4); } break; } } } - this.state = 608; + this.state = 602; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 42, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 41, this.context); } } } @@ -2837,18 +2818,18 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ComparisonExpressionContext(this.context, this.state); this.enterRule(localContext, 92, OpenSearchPPLParser.RULE_comparisonExpression); try { - this.state = 617; + this.state = 611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: localContext = new CompareExprContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 609; + this.state = 603; (localContext as CompareExprContext)._left = this.valueExpression(0); - this.state = 610; + this.state = 604; this.comparisonOperator(); - this.state = 611; + this.state = 605; (localContext as CompareExprContext)._right = this.valueExpression(0); } break; @@ -2856,11 +2837,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new InExprContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 613; + this.state = 607; this.valueExpression(0); - this.state = 614; + this.state = 608; this.match(OpenSearchPPLParser.IN); - this.state = 615; + this.state = 609; this.valueList(); } break; @@ -2898,16 +2879,16 @@ export class OpenSearchPPLParser extends antlr.Parser { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 629; + this.state = 623; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 620; + this.state = 614; this.primaryExpression(); } break; @@ -2916,7 +2897,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new PositionFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 621; + this.state = 615; this.positionFunction(); } break; @@ -2925,7 +2906,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ExtractFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 622; + this.state = 616; this.extractFunction(); } break; @@ -2934,7 +2915,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new GetFormatFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 623; + this.state = 617; this.getFormatFunction(); } break; @@ -2943,7 +2924,7 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new TimestampFunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 624; + this.state = 618; this.timestampFunction(); } break; @@ -2952,19 +2933,19 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new ParentheticValueExprContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 625; + this.state = 619; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 626; + this.state = 620; this.valueExpression(0); - this.state = 627; + this.state = 621; this.match(OpenSearchPPLParser.RT_PRTHS); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 639; + this.state = 633; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 46, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this.parseListeners != null) { @@ -2972,19 +2953,19 @@ export class OpenSearchPPLParser extends antlr.Parser { } previousContext = localContext; { - this.state = 637; + this.state = 631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 631; + this.state = 625; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 632; + this.state = 626; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 7) !== 0))) { @@ -2994,7 +2975,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 633; + this.state = 627; (localContext as BinaryArithmeticContext)._right = this.valueExpression(9); } break; @@ -3003,11 +2984,11 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); (localContext as BinaryArithmeticContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 634; + this.state = 628; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 635; + this.state = 629; (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { @@ -3017,16 +2998,16 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 636; + this.state = 630; (localContext as BinaryArithmeticContext)._right = this.valueExpression(8); } break; } } } - this.state = 641; + this.state = 635; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 46, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); } } } @@ -3047,34 +3028,34 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PrimaryExpressionContext(this.context, this.state); this.enterRule(localContext, 96, OpenSearchPPLParser.RULE_primaryExpression); try { - this.state = 646; + this.state = 640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 642; + this.state = 636; this.evalFunctionCall(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 643; + this.state = 637; this.dataTypeFunctionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 644; + this.state = 638; this.fieldExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 645; + this.state = 639; this.literalValue(); } break; @@ -3099,17 +3080,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 648; + this.state = 642; this.positionFunctionName(); - this.state = 649; + this.state = 643; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 650; + this.state = 644; this.functionArg(); - this.state = 651; + this.state = 645; this.match(OpenSearchPPLParser.IN); - this.state = 652; + this.state = 646; this.functionArg(); - this.state = 653; + this.state = 647; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3132,7 +3113,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 655; + this.state = 649; this.booleanFunctionCall(); } } @@ -3153,7 +3134,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceExpressionContext(this.context, this.state); this.enterRule(localContext, 102, OpenSearchPPLParser.RULE_relevanceExpression); try { - this.state = 659; + this.state = 653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.MATCH: @@ -3162,7 +3143,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.MATCH_BOOL_PREFIX: this.enterOuterAlt(localContext, 1); { - this.state = 657; + this.state = 651; this.singleFieldRelevanceFunction(); } break; @@ -3171,7 +3152,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.QUERY_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 658; + this.state = 652; this.multiFieldRelevanceFunction(); } break; @@ -3199,33 +3180,33 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 661; + this.state = 655; this.singleFieldRelevanceFunctionName(); - this.state = 662; + this.state = 656; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 663; + this.state = 657; localContext._field = this.relevanceField(); - this.state = 664; + this.state = 658; this.match(OpenSearchPPLParser.COMMA); - this.state = 665; + this.state = 659; localContext._query = this.relevanceQuery(); - this.state = 670; + this.state = 664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 666; + this.state = 660; this.match(OpenSearchPPLParser.COMMA); - this.state = 667; + this.state = 661; this.relevanceArg(); } } - this.state = 672; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 673; + this.state = 667; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3249,53 +3230,53 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 675; + this.state = 669; this.multiFieldRelevanceFunctionName(); - this.state = 676; + this.state = 670; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 677; + this.state = 671; this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 678; + this.state = 672; localContext._field = this.relevanceFieldAndWeight(); - this.state = 683; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 679; + this.state = 673; this.match(OpenSearchPPLParser.COMMA); - this.state = 680; + this.state = 674; localContext._field = this.relevanceFieldAndWeight(); } } - this.state = 685; + this.state = 679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 686; + this.state = 680; this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 687; + this.state = 681; this.match(OpenSearchPPLParser.COMMA); - this.state = 688; + this.state = 682; localContext._query = this.relevanceQuery(); - this.state = 693; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 689; + this.state = 683; this.match(OpenSearchPPLParser.COMMA); - this.state = 690; + this.state = 684; this.relevanceArg(); } } - this.state = 695; + this.state = 689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 696; + this.state = 690; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3316,288 +3297,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new TableSourceContext(this.context, this.state); this.enterRule(localContext, 108, OpenSearchPPLParser.RULE_tableSource); try { - this.state = 700; + this.state = 694; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case OpenSearchPPLParser.SEARCH: - case OpenSearchPPLParser.DESCRIBE: - case OpenSearchPPLParser.SHOW: - case OpenSearchPPLParser.FROM: - case OpenSearchPPLParser.WHERE: - case OpenSearchPPLParser.FIELDS: - case OpenSearchPPLParser.RENAME: - case OpenSearchPPLParser.STATS: - case OpenSearchPPLParser.DEDUP: - case OpenSearchPPLParser.SORT: - case OpenSearchPPLParser.EVAL: - case OpenSearchPPLParser.HEAD: - case OpenSearchPPLParser.TOP: - case OpenSearchPPLParser.RARE: - case OpenSearchPPLParser.PARSE: - case OpenSearchPPLParser.METHOD: - case OpenSearchPPLParser.REGEX: - case OpenSearchPPLParser.PUNCT: - case OpenSearchPPLParser.GROK: - case OpenSearchPPLParser.PATTERN: - case OpenSearchPPLParser.PATTERNS: - case OpenSearchPPLParser.NEW_FIELD: - case OpenSearchPPLParser.KMEANS: - case OpenSearchPPLParser.AD: - case OpenSearchPPLParser.ML: - case OpenSearchPPLParser.SOURCE: - case OpenSearchPPLParser.INDEX: - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.DESC: - case OpenSearchPPLParser.DATASOURCES: - case OpenSearchPPLParser.SORTBY: - case OpenSearchPPLParser.STR: - case OpenSearchPPLParser.IP: - case OpenSearchPPLParser.NUM: - case OpenSearchPPLParser.KEEPEMPTY: - case OpenSearchPPLParser.CONSECUTIVE: - case OpenSearchPPLParser.DEDUP_SPLITVALUES: - case OpenSearchPPLParser.PARTITIONS: - case OpenSearchPPLParser.ALLNUM: - case OpenSearchPPLParser.DELIM: - case OpenSearchPPLParser.CENTROIDS: - case OpenSearchPPLParser.ITERATIONS: - case OpenSearchPPLParser.DISTANCE_TYPE: - case OpenSearchPPLParser.NUMBER_OF_TREES: - case OpenSearchPPLParser.SHINGLE_SIZE: - case OpenSearchPPLParser.SAMPLE_SIZE: - case OpenSearchPPLParser.OUTPUT_AFTER: - case OpenSearchPPLParser.TIME_DECAY: - case OpenSearchPPLParser.ANOMALY_RATE: - case OpenSearchPPLParser.CATEGORY_FIELD: - case OpenSearchPPLParser.TIME_FIELD: - case OpenSearchPPLParser.TIME_ZONE: - case OpenSearchPPLParser.TRAINING_DATA_SIZE: - case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: - case OpenSearchPPLParser.CONVERT_TZ: - case OpenSearchPPLParser.DATETIME: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.DAY_HOUR: - case OpenSearchPPLParser.DAY_MICROSECOND: - case OpenSearchPPLParser.DAY_MINUTE: - case OpenSearchPPLParser.DAY_OF_YEAR: - case OpenSearchPPLParser.DAY_SECOND: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.HOUR_MICROSECOND: - case OpenSearchPPLParser.HOUR_MINUTE: - case OpenSearchPPLParser.HOUR_OF_DAY: - case OpenSearchPPLParser.HOUR_SECOND: - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.MINUTE_MICROSECOND: - case OpenSearchPPLParser.MINUTE_OF_DAY: - case OpenSearchPPLParser.MINUTE_OF_HOUR: - case OpenSearchPPLParser.MINUTE_SECOND: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.MONTH_OF_YEAR: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.SECOND_MICROSECOND: - case OpenSearchPPLParser.SECOND_OF_MINUTE: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.WEEK_OF_YEAR: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.YEAR_MONTH: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.DISTINCT_COUNT: - case OpenSearchPPLParser.ESTDC: - case OpenSearchPPLParser.ESTDC_ERROR: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MEAN: - case OpenSearchPPLParser.MEDIAN: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.MODE: - case OpenSearchPPLParser.RANGE: - case OpenSearchPPLParser.STDEV: - case OpenSearchPPLParser.STDEVP: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.SUMSQ: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.PERCENTILE: - case OpenSearchPPLParser.TAKE: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.LIST: - case OpenSearchPPLParser.VALUES: - case OpenSearchPPLParser.EARLIEST: - case OpenSearchPPLParser.EARLIEST_TIME: - case OpenSearchPPLParser.LATEST: - case OpenSearchPPLParser.LATEST_TIME: - case OpenSearchPPLParser.PER_DAY: - case OpenSearchPPLParser.PER_HOUR: - case OpenSearchPPLParser.PER_MINUTE: - case OpenSearchPPLParser.PER_SECOND: - case OpenSearchPPLParser.RATE: - case OpenSearchPPLParser.SPARKLINE: - case OpenSearchPPLParser.C: - case OpenSearchPPLParser.DC: - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CBRT: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POSITION: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.ADDTIME: - case OpenSearchPPLParser.CURDATE: - case OpenSearchPPLParser.CURRENT_DATE: - case OpenSearchPPLParser.CURRENT_TIME: - case OpenSearchPPLParser.CURRENT_TIMESTAMP: - case OpenSearchPPLParser.CURTIME: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATEDIFF: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAY_OF_MONTH: - case OpenSearchPPLParser.DAY_OF_WEEK: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.FROM_UNIXTIME: - case OpenSearchPPLParser.LAST_DAY: - case OpenSearchPPLParser.LOCALTIME: - case OpenSearchPPLParser.LOCALTIMESTAMP: - case OpenSearchPPLParser.MAKEDATE: - case OpenSearchPPLParser.MAKETIME: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.NOW: - case OpenSearchPPLParser.PERIOD_ADD: - case OpenSearchPPLParser.PERIOD_DIFF: - case OpenSearchPPLParser.SEC_TO_TIME: - case OpenSearchPPLParser.STR_TO_DATE: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.SUBTIME: - case OpenSearchPPLParser.SYSDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMEDIFF: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.TIME_FORMAT: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TO_DAYS: - case OpenSearchPPLParser.TO_SECONDS: - case OpenSearchPPLParser.UNIX_TIMESTAMP: - case OpenSearchPPLParser.UTC_DATE: - case OpenSearchPPLParser.UTC_TIME: - case OpenSearchPPLParser.UTC_TIMESTAMP: - case OpenSearchPPLParser.WEEKDAY: - case OpenSearchPPLParser.YEARWEEK: - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - case OpenSearchPPLParser.REVERSE: - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - case OpenSearchPPLParser.TYPEOF: - case OpenSearchPPLParser.ALLOW_LEADING_WILDCARD: - case OpenSearchPPLParser.ANALYZE_WILDCARD: - case OpenSearchPPLParser.ANALYZER: - case OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY: - case OpenSearchPPLParser.BOOST: - case OpenSearchPPLParser.CUTOFF_FREQUENCY: - case OpenSearchPPLParser.DEFAULT_FIELD: - case OpenSearchPPLParser.DEFAULT_OPERATOR: - case OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS: - case OpenSearchPPLParser.ESCAPE: - case OpenSearchPPLParser.FLAGS: - case OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS: - case OpenSearchPPLParser.FUZZY_PREFIX_LENGTH: - case OpenSearchPPLParser.FUZZY_TRANSPOSITIONS: - case OpenSearchPPLParser.FUZZY_REWRITE: - case OpenSearchPPLParser.FUZZINESS: - case OpenSearchPPLParser.LENIENT: - case OpenSearchPPLParser.LOW_FREQ_OPERATOR: - case OpenSearchPPLParser.MAX_DETERMINIZED_STATES: - case OpenSearchPPLParser.MAX_EXPANSIONS: - case OpenSearchPPLParser.MINIMUM_SHOULD_MATCH: - case OpenSearchPPLParser.OPERATOR: - case OpenSearchPPLParser.PHRASE_SLOP: - case OpenSearchPPLParser.PREFIX_LENGTH: - case OpenSearchPPLParser.QUOTE_ANALYZER: - case OpenSearchPPLParser.QUOTE_FIELD_SUFFIX: - case OpenSearchPPLParser.REWRITE: - case OpenSearchPPLParser.SLOP: - case OpenSearchPPLParser.TIE_BREAKER: - case OpenSearchPPLParser.TYPE: - case OpenSearchPPLParser.ZERO_TERMS_QUERY: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.CLUSTER: - case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 698; + this.state = 692; this.tableQualifiedName(); } break; case OpenSearchPPLParser.ID_DATE_SUFFIX: this.enterOuterAlt(localContext, 2); { - this.state = 699; + this.state = 693; this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); } break; @@ -3624,13 +3337,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 702; + this.state = 696; this.qualifiedName(); - this.state = 703; + this.state = 697; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 704; + this.state = 698; this.functionArgs(); - this.state = 705; + this.state = 699; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3654,21 +3367,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 707; + this.state = 701; this.fieldExpression(); - this.state = 712; + this.state = 706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 708; + this.state = 702; this.match(OpenSearchPPLParser.COMMA); - this.state = 709; + this.state = 703; this.fieldExpression(); } } - this.state = 714; + this.state = 708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3694,21 +3407,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 715; + this.state = 709; this.wcFieldExpression(); - this.state = 720; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 716; + this.state = 710; this.match(OpenSearchPPLParser.COMMA); - this.state = 717; + this.state = 711; this.wcFieldExpression(); } } - this.state = 722; + this.state = 716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3734,12 +3447,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 724; + this.state = 718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 723; + this.state = 717; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -3751,7 +3464,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 726; + this.state = 720; this.sortFieldExpression(); } } @@ -3772,68 +3485,70 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new SortFieldExpressionContext(this.context, this.state); this.enterRule(localContext, 118, OpenSearchPPLParser.RULE_sortFieldExpression); try { - this.state = 749; + this.state = 743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 728; + this.state = 722; this.fieldExpression(); } break; - case 2: + case OpenSearchPPLParser.AUTO: this.enterOuterAlt(localContext, 2); { - this.state = 729; + this.state = 723; this.match(OpenSearchPPLParser.AUTO); - this.state = 730; + this.state = 724; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 731; + this.state = 725; this.fieldExpression(); - this.state = 732; + this.state = 726; this.match(OpenSearchPPLParser.RT_PRTHS); } break; - case 3: + case OpenSearchPPLParser.STR: this.enterOuterAlt(localContext, 3); { - this.state = 734; + this.state = 728; this.match(OpenSearchPPLParser.STR); - this.state = 735; + this.state = 729; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 736; + this.state = 730; this.fieldExpression(); - this.state = 737; + this.state = 731; this.match(OpenSearchPPLParser.RT_PRTHS); } break; - case 4: + case OpenSearchPPLParser.IP: this.enterOuterAlt(localContext, 4); { - this.state = 739; + this.state = 733; this.match(OpenSearchPPLParser.IP); - this.state = 740; + this.state = 734; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 741; + this.state = 735; this.fieldExpression(); - this.state = 742; + this.state = 736; this.match(OpenSearchPPLParser.RT_PRTHS); } break; - case 5: + case OpenSearchPPLParser.NUM: this.enterOuterAlt(localContext, 5); { - this.state = 744; + this.state = 738; this.match(OpenSearchPPLParser.NUM); - this.state = 745; + this.state = 739; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 746; + this.state = 740; this.fieldExpression(); - this.state = 747; + this.state = 741; this.match(OpenSearchPPLParser.RT_PRTHS); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -3855,7 +3570,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 751; + this.state = 745; this.qualifiedName(); } } @@ -3878,7 +3593,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 753; + this.state = 747; this.wcQualifiedName(); } } @@ -3901,13 +3616,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 755; + this.state = 749; this.evalFunctionName(); - this.state = 756; + this.state = 750; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 757; + this.state = 751; this.functionArgs(); - this.state = 758; + this.state = 752; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3930,17 +3645,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 760; + this.state = 754; this.match(OpenSearchPPLParser.CAST); - this.state = 761; + this.state = 755; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 762; + this.state = 756; this.expression(); - this.state = 763; + this.state = 757; this.match(OpenSearchPPLParser.AS); - this.state = 764; + this.state = 758; this.convertedDataType(); - this.state = 765; + this.state = 759; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3963,13 +3678,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 767; + this.state = 761; this.conditionFunctionBase(); - this.state = 768; + this.state = 762; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 769; + this.state = 763; this.functionArgs(); - this.state = 770; + this.state = 764; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3990,76 +3705,76 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ConvertedDataTypeContext(this.context, this.state); this.enterRule(localContext, 130, OpenSearchPPLParser.RULE_convertedDataType); try { - this.state = 782; + this.state = 776; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 772; + this.state = 766; localContext._typeName = this.match(OpenSearchPPLParser.DATE); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 773; + this.state = 767; localContext._typeName = this.match(OpenSearchPPLParser.TIME); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 774; + this.state = 768; localContext._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); } break; case OpenSearchPPLParser.INT: this.enterOuterAlt(localContext, 4); { - this.state = 775; + this.state = 769; localContext._typeName = this.match(OpenSearchPPLParser.INT); } break; case OpenSearchPPLParser.INTEGER: this.enterOuterAlt(localContext, 5); { - this.state = 776; + this.state = 770; localContext._typeName = this.match(OpenSearchPPLParser.INTEGER); } break; case OpenSearchPPLParser.DOUBLE: this.enterOuterAlt(localContext, 6); { - this.state = 777; + this.state = 771; localContext._typeName = this.match(OpenSearchPPLParser.DOUBLE); } break; case OpenSearchPPLParser.LONG: this.enterOuterAlt(localContext, 7); { - this.state = 778; + this.state = 772; localContext._typeName = this.match(OpenSearchPPLParser.LONG); } break; case OpenSearchPPLParser.FLOAT: this.enterOuterAlt(localContext, 8); { - this.state = 779; + this.state = 773; localContext._typeName = this.match(OpenSearchPPLParser.FLOAT); } break; case OpenSearchPPLParser.STRING: this.enterOuterAlt(localContext, 9); { - this.state = 780; + this.state = 774; localContext._typeName = this.match(OpenSearchPPLParser.STRING); } break; case OpenSearchPPLParser.BOOLEAN: this.enterOuterAlt(localContext, 10); { - this.state = 781; + this.state = 775; localContext._typeName = this.match(OpenSearchPPLParser.BOOLEAN); } break; @@ -4084,7 +3799,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new EvalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 132, OpenSearchPPLParser.RULE_evalFunctionName); try { - this.state = 790; + this.state = 784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: @@ -4121,7 +3836,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 1); { - this.state = 784; + this.state = 778; this.mathematicalFunctionName(); } break; @@ -4192,7 +3907,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEARWEEK: this.enterOuterAlt(localContext, 2); { - this.state = 785; + this.state = 779; this.dateTimeFunctionName(); } break; @@ -4215,7 +3930,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.REVERSE: this.enterOuterAlt(localContext, 3); { - this.state = 786; + this.state = 780; this.textFunctionName(); } break; @@ -4227,21 +3942,21 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.IF: this.enterOuterAlt(localContext, 4); { - this.state = 787; + this.state = 781; this.conditionFunctionBase(); } break; case OpenSearchPPLParser.TYPEOF: this.enterOuterAlt(localContext, 5); { - this.state = 788; + this.state = 782; this.systemFunctionName(); } break; case OpenSearchPPLParser.POSITION: this.enterOuterAlt(localContext, 6); { - this.state = 789; + this.state = 783; this.positionFunctionName(); } break; @@ -4269,26 +3984,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 800; + this.state = 794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 4294967291) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 274743299) !== 0) || ((((_la - 131)) & ~0x1F) === 0 && ((1 << (_la - 131)) & 4294967281) !== 0) || ((((_la - 163)) & ~0x1F) === 0 && ((1 << (_la - 163)) & 4294967295) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 4294967295) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 4294967295) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 3229614075) !== 0) || ((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 4294967295) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 7615) !== 0)) { { - this.state = 792; + this.state = 786; this.functionArg(); - this.state = 797; + this.state = 791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 793; + this.state = 787; this.match(OpenSearchPPLParser.COMMA); - this.state = 794; + this.state = 788; this.functionArg(); } } - this.state = 799; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4316,19 +4031,19 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 805; + this.state = 799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 802; + this.state = 796; this.ident(); - this.state = 803; + this.state = 797; this.match(OpenSearchPPLParser.EQUAL); } break; } - this.state = 807; + this.state = 801; this.valueExpression(0); } } @@ -4351,11 +4066,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 809; + this.state = 803; this.relevanceArgName(); - this.state = 810; + this.state = 804; this.match(OpenSearchPPLParser.EQUAL); - this.state = 811; + this.state = 805; this.relevanceArgValue(); } } @@ -4379,7 +4094,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 813; + this.state = 807; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 56 || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 2147483647) !== 0))) { this.errorHandler.recoverInline(this); @@ -4395,377 +4110,110 @@ export class OpenSearchPPLParser extends antlr.Parser { this.errorHandler.reportError(this, re); this.errorHandler.recover(this, re); } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { - let localContext = new RelevanceFieldAndWeightContext(this.context, this.state); - this.enterRule(localContext, 142, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); - try { - this.state = 823; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 815; - localContext._field = this.relevanceField(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 816; - localContext._field = this.relevanceField(); - this.state = 817; - localContext._weight = this.relevanceFieldWeight(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 819; - localContext._field = this.relevanceField(); - this.state = 820; - this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 821; - localContext._weight = this.relevanceFieldWeight(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public relevanceFieldWeight(): RelevanceFieldWeightContext { - let localContext = new RelevanceFieldWeightContext(this.context, this.state); - this.enterRule(localContext, 144, OpenSearchPPLParser.RULE_relevanceFieldWeight); - try { - this.state = 827; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 825; - this.integerLiteral(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 826; - this.decimalLiteral(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public relevanceField(): RelevanceFieldContext { - let localContext = new RelevanceFieldContext(this.context, this.state); - this.enterRule(localContext, 146, OpenSearchPPLParser.RULE_relevanceField); - try { - this.state = 831; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case OpenSearchPPLParser.SEARCH: - case OpenSearchPPLParser.DESCRIBE: - case OpenSearchPPLParser.SHOW: - case OpenSearchPPLParser.FROM: - case OpenSearchPPLParser.WHERE: - case OpenSearchPPLParser.FIELDS: - case OpenSearchPPLParser.RENAME: - case OpenSearchPPLParser.STATS: - case OpenSearchPPLParser.DEDUP: - case OpenSearchPPLParser.SORT: - case OpenSearchPPLParser.EVAL: - case OpenSearchPPLParser.HEAD: - case OpenSearchPPLParser.TOP: - case OpenSearchPPLParser.RARE: - case OpenSearchPPLParser.PARSE: - case OpenSearchPPLParser.METHOD: - case OpenSearchPPLParser.REGEX: - case OpenSearchPPLParser.PUNCT: - case OpenSearchPPLParser.GROK: - case OpenSearchPPLParser.PATTERN: - case OpenSearchPPLParser.PATTERNS: - case OpenSearchPPLParser.NEW_FIELD: - case OpenSearchPPLParser.KMEANS: - case OpenSearchPPLParser.AD: - case OpenSearchPPLParser.ML: - case OpenSearchPPLParser.SOURCE: - case OpenSearchPPLParser.INDEX: - case OpenSearchPPLParser.D: - case OpenSearchPPLParser.DESC: - case OpenSearchPPLParser.DATASOURCES: - case OpenSearchPPLParser.SORTBY: - case OpenSearchPPLParser.STR: - case OpenSearchPPLParser.IP: - case OpenSearchPPLParser.NUM: - case OpenSearchPPLParser.KEEPEMPTY: - case OpenSearchPPLParser.CONSECUTIVE: - case OpenSearchPPLParser.DEDUP_SPLITVALUES: - case OpenSearchPPLParser.PARTITIONS: - case OpenSearchPPLParser.ALLNUM: - case OpenSearchPPLParser.DELIM: - case OpenSearchPPLParser.CENTROIDS: - case OpenSearchPPLParser.ITERATIONS: - case OpenSearchPPLParser.DISTANCE_TYPE: - case OpenSearchPPLParser.NUMBER_OF_TREES: - case OpenSearchPPLParser.SHINGLE_SIZE: - case OpenSearchPPLParser.SAMPLE_SIZE: - case OpenSearchPPLParser.OUTPUT_AFTER: - case OpenSearchPPLParser.TIME_DECAY: - case OpenSearchPPLParser.ANOMALY_RATE: - case OpenSearchPPLParser.CATEGORY_FIELD: - case OpenSearchPPLParser.TIME_FIELD: - case OpenSearchPPLParser.TIME_ZONE: - case OpenSearchPPLParser.TRAINING_DATA_SIZE: - case OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD: - case OpenSearchPPLParser.CONVERT_TZ: - case OpenSearchPPLParser.DATETIME: - case OpenSearchPPLParser.DAY: - case OpenSearchPPLParser.DAY_HOUR: - case OpenSearchPPLParser.DAY_MICROSECOND: - case OpenSearchPPLParser.DAY_MINUTE: - case OpenSearchPPLParser.DAY_OF_YEAR: - case OpenSearchPPLParser.DAY_SECOND: - case OpenSearchPPLParser.HOUR: - case OpenSearchPPLParser.HOUR_MICROSECOND: - case OpenSearchPPLParser.HOUR_MINUTE: - case OpenSearchPPLParser.HOUR_OF_DAY: - case OpenSearchPPLParser.HOUR_SECOND: - case OpenSearchPPLParser.MICROSECOND: - case OpenSearchPPLParser.MILLISECOND: - case OpenSearchPPLParser.MINUTE: - case OpenSearchPPLParser.MINUTE_MICROSECOND: - case OpenSearchPPLParser.MINUTE_OF_DAY: - case OpenSearchPPLParser.MINUTE_OF_HOUR: - case OpenSearchPPLParser.MINUTE_SECOND: - case OpenSearchPPLParser.MONTH: - case OpenSearchPPLParser.MONTH_OF_YEAR: - case OpenSearchPPLParser.QUARTER: - case OpenSearchPPLParser.SECOND: - case OpenSearchPPLParser.SECOND_MICROSECOND: - case OpenSearchPPLParser.SECOND_OF_MINUTE: - case OpenSearchPPLParser.WEEK: - case OpenSearchPPLParser.WEEK_OF_YEAR: - case OpenSearchPPLParser.YEAR: - case OpenSearchPPLParser.YEAR_MONTH: - case OpenSearchPPLParser.DOT: - case OpenSearchPPLParser.BACKTICK: - case OpenSearchPPLParser.AVG: - case OpenSearchPPLParser.COUNT: - case OpenSearchPPLParser.DISTINCT_COUNT: - case OpenSearchPPLParser.ESTDC: - case OpenSearchPPLParser.ESTDC_ERROR: - case OpenSearchPPLParser.MAX: - case OpenSearchPPLParser.MEAN: - case OpenSearchPPLParser.MEDIAN: - case OpenSearchPPLParser.MIN: - case OpenSearchPPLParser.MODE: - case OpenSearchPPLParser.RANGE: - case OpenSearchPPLParser.STDEV: - case OpenSearchPPLParser.STDEVP: - case OpenSearchPPLParser.SUM: - case OpenSearchPPLParser.SUMSQ: - case OpenSearchPPLParser.VAR_SAMP: - case OpenSearchPPLParser.VAR_POP: - case OpenSearchPPLParser.STDDEV_SAMP: - case OpenSearchPPLParser.STDDEV_POP: - case OpenSearchPPLParser.PERCENTILE: - case OpenSearchPPLParser.TAKE: - case OpenSearchPPLParser.FIRST: - case OpenSearchPPLParser.LAST: - case OpenSearchPPLParser.LIST: - case OpenSearchPPLParser.VALUES: - case OpenSearchPPLParser.EARLIEST: - case OpenSearchPPLParser.EARLIEST_TIME: - case OpenSearchPPLParser.LATEST: - case OpenSearchPPLParser.LATEST_TIME: - case OpenSearchPPLParser.PER_DAY: - case OpenSearchPPLParser.PER_HOUR: - case OpenSearchPPLParser.PER_MINUTE: - case OpenSearchPPLParser.PER_SECOND: - case OpenSearchPPLParser.RATE: - case OpenSearchPPLParser.SPARKLINE: - case OpenSearchPPLParser.C: - case OpenSearchPPLParser.DC: - case OpenSearchPPLParser.ABS: - case OpenSearchPPLParser.CBRT: - case OpenSearchPPLParser.CEIL: - case OpenSearchPPLParser.CEILING: - case OpenSearchPPLParser.CONV: - case OpenSearchPPLParser.CRC32: - case OpenSearchPPLParser.E: - case OpenSearchPPLParser.EXP: - case OpenSearchPPLParser.FLOOR: - case OpenSearchPPLParser.LN: - case OpenSearchPPLParser.LOG: - case OpenSearchPPLParser.LOG10: - case OpenSearchPPLParser.LOG2: - case OpenSearchPPLParser.MOD: - case OpenSearchPPLParser.PI: - case OpenSearchPPLParser.POSITION: - case OpenSearchPPLParser.POW: - case OpenSearchPPLParser.POWER: - case OpenSearchPPLParser.RAND: - case OpenSearchPPLParser.ROUND: - case OpenSearchPPLParser.SIGN: - case OpenSearchPPLParser.SQRT: - case OpenSearchPPLParser.TRUNCATE: - case OpenSearchPPLParser.ACOS: - case OpenSearchPPLParser.ASIN: - case OpenSearchPPLParser.ATAN: - case OpenSearchPPLParser.ATAN2: - case OpenSearchPPLParser.COS: - case OpenSearchPPLParser.COT: - case OpenSearchPPLParser.DEGREES: - case OpenSearchPPLParser.RADIANS: - case OpenSearchPPLParser.SIN: - case OpenSearchPPLParser.TAN: - case OpenSearchPPLParser.ADDDATE: - case OpenSearchPPLParser.ADDTIME: - case OpenSearchPPLParser.CURDATE: - case OpenSearchPPLParser.CURRENT_DATE: - case OpenSearchPPLParser.CURRENT_TIME: - case OpenSearchPPLParser.CURRENT_TIMESTAMP: - case OpenSearchPPLParser.CURTIME: - case OpenSearchPPLParser.DATE: - case OpenSearchPPLParser.DATEDIFF: - case OpenSearchPPLParser.DATE_ADD: - case OpenSearchPPLParser.DATE_FORMAT: - case OpenSearchPPLParser.DATE_SUB: - case OpenSearchPPLParser.DAYNAME: - case OpenSearchPPLParser.DAYOFMONTH: - case OpenSearchPPLParser.DAYOFWEEK: - case OpenSearchPPLParser.DAYOFYEAR: - case OpenSearchPPLParser.DAY_OF_MONTH: - case OpenSearchPPLParser.DAY_OF_WEEK: - case OpenSearchPPLParser.FROM_DAYS: - case OpenSearchPPLParser.FROM_UNIXTIME: - case OpenSearchPPLParser.LAST_DAY: - case OpenSearchPPLParser.LOCALTIME: - case OpenSearchPPLParser.LOCALTIMESTAMP: - case OpenSearchPPLParser.MAKEDATE: - case OpenSearchPPLParser.MAKETIME: - case OpenSearchPPLParser.MONTHNAME: - case OpenSearchPPLParser.NOW: - case OpenSearchPPLParser.PERIOD_ADD: - case OpenSearchPPLParser.PERIOD_DIFF: - case OpenSearchPPLParser.SEC_TO_TIME: - case OpenSearchPPLParser.STR_TO_DATE: - case OpenSearchPPLParser.SUBDATE: - case OpenSearchPPLParser.SUBTIME: - case OpenSearchPPLParser.SYSDATE: - case OpenSearchPPLParser.TIME: - case OpenSearchPPLParser.TIMEDIFF: - case OpenSearchPPLParser.TIMESTAMP: - case OpenSearchPPLParser.TIME_FORMAT: - case OpenSearchPPLParser.TIME_TO_SEC: - case OpenSearchPPLParser.TO_DAYS: - case OpenSearchPPLParser.TO_SECONDS: - case OpenSearchPPLParser.UNIX_TIMESTAMP: - case OpenSearchPPLParser.UTC_DATE: - case OpenSearchPPLParser.UTC_TIME: - case OpenSearchPPLParser.UTC_TIMESTAMP: - case OpenSearchPPLParser.WEEKDAY: - case OpenSearchPPLParser.YEARWEEK: - case OpenSearchPPLParser.SUBSTR: - case OpenSearchPPLParser.SUBSTRING: - case OpenSearchPPLParser.LTRIM: - case OpenSearchPPLParser.RTRIM: - case OpenSearchPPLParser.TRIM: - case OpenSearchPPLParser.LOWER: - case OpenSearchPPLParser.UPPER: - case OpenSearchPPLParser.CONCAT: - case OpenSearchPPLParser.CONCAT_WS: - case OpenSearchPPLParser.LENGTH: - case OpenSearchPPLParser.STRCMP: - case OpenSearchPPLParser.RIGHT: - case OpenSearchPPLParser.LEFT: - case OpenSearchPPLParser.ASCII: - case OpenSearchPPLParser.LOCATE: - case OpenSearchPPLParser.REPLACE: - case OpenSearchPPLParser.REVERSE: - case OpenSearchPPLParser.LIKE: - case OpenSearchPPLParser.ISNULL: - case OpenSearchPPLParser.ISNOTNULL: - case OpenSearchPPLParser.IFNULL: - case OpenSearchPPLParser.NULLIF: - case OpenSearchPPLParser.IF: - case OpenSearchPPLParser.TYPEOF: - case OpenSearchPPLParser.ALLOW_LEADING_WILDCARD: - case OpenSearchPPLParser.ANALYZE_WILDCARD: - case OpenSearchPPLParser.ANALYZER: - case OpenSearchPPLParser.AUTO_GENERATE_SYNONYMS_PHRASE_QUERY: - case OpenSearchPPLParser.BOOST: - case OpenSearchPPLParser.CUTOFF_FREQUENCY: - case OpenSearchPPLParser.DEFAULT_FIELD: - case OpenSearchPPLParser.DEFAULT_OPERATOR: - case OpenSearchPPLParser.ENABLE_POSITION_INCREMENTS: - case OpenSearchPPLParser.ESCAPE: - case OpenSearchPPLParser.FLAGS: - case OpenSearchPPLParser.FUZZY_MAX_EXPANSIONS: - case OpenSearchPPLParser.FUZZY_PREFIX_LENGTH: - case OpenSearchPPLParser.FUZZY_TRANSPOSITIONS: - case OpenSearchPPLParser.FUZZY_REWRITE: - case OpenSearchPPLParser.FUZZINESS: - case OpenSearchPPLParser.LENIENT: - case OpenSearchPPLParser.LOW_FREQ_OPERATOR: - case OpenSearchPPLParser.MAX_DETERMINIZED_STATES: - case OpenSearchPPLParser.MAX_EXPANSIONS: - case OpenSearchPPLParser.MINIMUM_SHOULD_MATCH: - case OpenSearchPPLParser.OPERATOR: - case OpenSearchPPLParser.PHRASE_SLOP: - case OpenSearchPPLParser.PREFIX_LENGTH: - case OpenSearchPPLParser.QUOTE_ANALYZER: - case OpenSearchPPLParser.QUOTE_FIELD_SUFFIX: - case OpenSearchPPLParser.REWRITE: - case OpenSearchPPLParser.SLOP: - case OpenSearchPPLParser.TIE_BREAKER: - case OpenSearchPPLParser.TYPE: - case OpenSearchPPLParser.ZERO_TERMS_QUERY: - case OpenSearchPPLParser.SPAN: - case OpenSearchPPLParser.MS: - case OpenSearchPPLParser.S: - case OpenSearchPPLParser.M: - case OpenSearchPPLParser.H: - case OpenSearchPPLParser.W: - case OpenSearchPPLParser.Q: - case OpenSearchPPLParser.Y: + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public relevanceFieldAndWeight(): RelevanceFieldAndWeightContext { + let localContext = new RelevanceFieldAndWeightContext(this.context, this.state); + this.enterRule(localContext, 142, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); + try { + this.state = 817; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 809; + localContext._field = this.relevanceField(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 810; + localContext._field = this.relevanceField(); + this.state = 811; + localContext._weight = this.relevanceFieldWeight(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 813; + localContext._field = this.relevanceField(); + this.state = 814; + this.match(OpenSearchPPLParser.BIT_XOR_OP); + this.state = 815; + localContext._weight = this.relevanceFieldWeight(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public relevanceFieldWeight(): RelevanceFieldWeightContext { + let localContext = new RelevanceFieldWeightContext(this.context, this.state); + this.enterRule(localContext, 144, OpenSearchPPLParser.RULE_relevanceFieldWeight); + try { + this.state = 821; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 819; + this.integerLiteral(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 820; + this.decimalLiteral(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public relevanceField(): RelevanceFieldContext { + let localContext = new RelevanceFieldContext(this.context, this.state); + this.enterRule(localContext, 146, OpenSearchPPLParser.RULE_relevanceField); + try { + this.state = 825; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ID: - case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 823; this.qualifiedName(); } break; @@ -4773,7 +4221,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 830; + this.state = 824; this.stringLiteral(); } break; @@ -4800,7 +4248,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 827; this.relevanceArgValue(); } } @@ -4821,23 +4269,36 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceArgValueContext(this.context, this.state); this.enterRule(localContext, 150, OpenSearchPPLParser.RULE_relevanceArgValue); try { - this.state = 837; + this.state = 831; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 829; this.qualifiedName(); } break; - case 2: + case OpenSearchPPLParser.TRUE: + case OpenSearchPPLParser.FALSE: + case OpenSearchPPLParser.INTERVAL: + case OpenSearchPPLParser.PLUS: + case OpenSearchPPLParser.MINUS: + case OpenSearchPPLParser.DATE: + case OpenSearchPPLParser.TIME: + case OpenSearchPPLParser.TIMESTAMP: + case OpenSearchPPLParser.INTEGER_LITERAL: + case OpenSearchPPLParser.DECIMAL_LITERAL: + case OpenSearchPPLParser.DQUOTA_STRING: + case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 836; + this.state = 830; this.literalValue(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -4857,160 +4318,160 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new MathematicalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 152, OpenSearchPPLParser.RULE_mathematicalFunctionName); try { - this.state = 862; + this.state = 856; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: this.enterOuterAlt(localContext, 1); { - this.state = 839; + this.state = 833; this.match(OpenSearchPPLParser.ABS); } break; case OpenSearchPPLParser.CBRT: this.enterOuterAlt(localContext, 2); { - this.state = 840; + this.state = 834; this.match(OpenSearchPPLParser.CBRT); } break; case OpenSearchPPLParser.CEIL: this.enterOuterAlt(localContext, 3); { - this.state = 841; + this.state = 835; this.match(OpenSearchPPLParser.CEIL); } break; case OpenSearchPPLParser.CEILING: this.enterOuterAlt(localContext, 4); { - this.state = 842; + this.state = 836; this.match(OpenSearchPPLParser.CEILING); } break; case OpenSearchPPLParser.CONV: this.enterOuterAlt(localContext, 5); { - this.state = 843; + this.state = 837; this.match(OpenSearchPPLParser.CONV); } break; case OpenSearchPPLParser.CRC32: this.enterOuterAlt(localContext, 6); { - this.state = 844; + this.state = 838; this.match(OpenSearchPPLParser.CRC32); } break; case OpenSearchPPLParser.E: this.enterOuterAlt(localContext, 7); { - this.state = 845; + this.state = 839; this.match(OpenSearchPPLParser.E); } break; case OpenSearchPPLParser.EXP: this.enterOuterAlt(localContext, 8); { - this.state = 846; + this.state = 840; this.match(OpenSearchPPLParser.EXP); } break; case OpenSearchPPLParser.FLOOR: this.enterOuterAlt(localContext, 9); { - this.state = 847; + this.state = 841; this.match(OpenSearchPPLParser.FLOOR); } break; case OpenSearchPPLParser.LN: this.enterOuterAlt(localContext, 10); { - this.state = 848; + this.state = 842; this.match(OpenSearchPPLParser.LN); } break; case OpenSearchPPLParser.LOG: this.enterOuterAlt(localContext, 11); { - this.state = 849; + this.state = 843; this.match(OpenSearchPPLParser.LOG); } break; case OpenSearchPPLParser.LOG10: this.enterOuterAlt(localContext, 12); { - this.state = 850; + this.state = 844; this.match(OpenSearchPPLParser.LOG10); } break; case OpenSearchPPLParser.LOG2: this.enterOuterAlt(localContext, 13); { - this.state = 851; + this.state = 845; this.match(OpenSearchPPLParser.LOG2); } break; case OpenSearchPPLParser.MOD: this.enterOuterAlt(localContext, 14); { - this.state = 852; + this.state = 846; this.match(OpenSearchPPLParser.MOD); } break; case OpenSearchPPLParser.PI: this.enterOuterAlt(localContext, 15); { - this.state = 853; + this.state = 847; this.match(OpenSearchPPLParser.PI); } break; case OpenSearchPPLParser.POW: this.enterOuterAlt(localContext, 16); { - this.state = 854; + this.state = 848; this.match(OpenSearchPPLParser.POW); } break; case OpenSearchPPLParser.POWER: this.enterOuterAlt(localContext, 17); { - this.state = 855; + this.state = 849; this.match(OpenSearchPPLParser.POWER); } break; case OpenSearchPPLParser.RAND: this.enterOuterAlt(localContext, 18); { - this.state = 856; + this.state = 850; this.match(OpenSearchPPLParser.RAND); } break; case OpenSearchPPLParser.ROUND: this.enterOuterAlt(localContext, 19); { - this.state = 857; + this.state = 851; this.match(OpenSearchPPLParser.ROUND); } break; case OpenSearchPPLParser.SIGN: this.enterOuterAlt(localContext, 20); { - this.state = 858; + this.state = 852; this.match(OpenSearchPPLParser.SIGN); } break; case OpenSearchPPLParser.SQRT: this.enterOuterAlt(localContext, 21); { - this.state = 859; + this.state = 853; this.match(OpenSearchPPLParser.SQRT); } break; case OpenSearchPPLParser.TRUNCATE: this.enterOuterAlt(localContext, 22); { - this.state = 860; + this.state = 854; this.match(OpenSearchPPLParser.TRUNCATE); } break; @@ -5026,7 +4487,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 23); { - this.state = 861; + this.state = 855; this.trigonometricFunctionName(); } break; @@ -5054,7 +4515,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 858; _la = this.tokenStream.LA(1); if(!(((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -5085,7 +4546,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 866; + this.state = 860; _la = this.tokenStream.LA(1); if(!(((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 1038960967) !== 0) || ((((_la - 205)) & ~0x1F) === 0 && ((1 << (_la - 205)) & 4292607999) !== 0) || ((((_la - 237)) & ~0x1F) === 0 && ((1 << (_la - 237)) & 523903) !== 0))) { this.errorHandler.recoverInline(this); @@ -5115,17 +4576,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 868; + this.state = 862; this.match(OpenSearchPPLParser.GET_FORMAT); - this.state = 869; + this.state = 863; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 870; + this.state = 864; this.getFormatType(); - this.state = 871; + this.state = 865; this.match(OpenSearchPPLParser.COMMA); - this.state = 872; + this.state = 866; this.functionArg(); - this.state = 873; + this.state = 867; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5149,7 +4610,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 875; + this.state = 869; _la = this.tokenStream.LA(1); if(!(_la === 69 || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 2684354561) !== 0))) { this.errorHandler.recoverInline(this); @@ -5179,17 +4640,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 877; + this.state = 871; this.match(OpenSearchPPLParser.EXTRACT); - this.state = 878; + this.state = 872; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 879; + this.state = 873; this.datetimePart(); - this.state = 880; + this.state = 874; this.match(OpenSearchPPLParser.FROM); - this.state = 881; + this.state = 875; this.functionArg(); - this.state = 882; + this.state = 876; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5213,7 +4674,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 878; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174608449) !== 0))) { this.errorHandler.recoverInline(this); @@ -5244,7 +4705,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 880; _la = this.tokenStream.LA(1); if(!(((((_la - 71)) & ~0x1F) === 0 && ((1 << (_la - 71)) & 138560215) !== 0))) { this.errorHandler.recoverInline(this); @@ -5272,7 +4733,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimePartContext(this.context, this.state); this.enterRule(localContext, 168, OpenSearchPPLParser.RULE_datetimePart); try { - this.state = 890; + this.state = 884; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DAY: @@ -5286,7 +4747,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR: this.enterOuterAlt(localContext, 1); { - this.state = 888; + this.state = 882; this.simpleDateTimePart(); } break; @@ -5303,7 +4764,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR_MONTH: this.enterOuterAlt(localContext, 2); { - this.state = 889; + this.state = 883; this.complexDateTimePart(); } break; @@ -5330,21 +4791,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 892; + this.state = 886; this.timestampFunctionName(); - this.state = 893; + this.state = 887; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 894; + this.state = 888; this.simpleDateTimePart(); - this.state = 895; + this.state = 889; this.match(OpenSearchPPLParser.COMMA); - this.state = 896; + this.state = 890; localContext._firstArg = this.functionArg(); - this.state = 897; + this.state = 891; this.match(OpenSearchPPLParser.COMMA); - this.state = 898; + this.state = 892; localContext._secondArg = this.functionArg(); - this.state = 899; + this.state = 893; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5368,7 +4829,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 901; + this.state = 895; _la = this.tokenStream.LA(1); if(!(_la === 244 || _la === 245)) { this.errorHandler.recoverInline(this); @@ -5399,7 +4860,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 903; + this.state = 897; _la = this.tokenStream.LA(1); if(!(((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5429,7 +4890,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 905; + this.state = 899; this.match(OpenSearchPPLParser.TYPEOF); } } @@ -5453,7 +4914,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 901; _la = this.tokenStream.LA(1); if(!(((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 262111) !== 0))) { this.errorHandler.recoverInline(this); @@ -5483,7 +4944,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 909; + this.state = 903; this.match(OpenSearchPPLParser.POSITION); } } @@ -5507,7 +4968,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 905; _la = this.tokenStream.LA(1); if(!(_la === 67 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -5538,7 +4999,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 913; + this.state = 907; _la = this.tokenStream.LA(1); if(!(((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -5569,7 +5030,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 909; _la = this.tokenStream.LA(1); if(!(((((_la - 286)) & ~0x1F) === 0 && ((1 << (_la - 286)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -5597,48 +5058,48 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new LiteralValueContext(this.context, this.state); this.enterRule(localContext, 188, OpenSearchPPLParser.RULE_literalValue); try { - this.state = 923; + this.state = 917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 917; + this.state = 911; this.intervalLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 918; + this.state = 912; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 919; + this.state = 913; this.integerLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 920; + this.state = 914; this.decimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 921; + this.state = 915; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 922; + this.state = 916; this.datetimeLiteral(); } break; @@ -5663,11 +5124,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 919; this.match(OpenSearchPPLParser.INTERVAL); - this.state = 926; + this.state = 920; this.valueExpression(0); - this.state = 927; + this.state = 921; this.intervalUnit(); } } @@ -5691,7 +5152,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 923; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -5722,12 +5183,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 932; + this.state = 926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 931; + this.state = 925; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5739,7 +5200,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 934; + this.state = 928; this.match(OpenSearchPPLParser.INTEGER_LITERAL); } } @@ -5763,12 +5224,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 937; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 936; + this.state = 930; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5780,7 +5241,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 939; + this.state = 933; this.match(OpenSearchPPLParser.DECIMAL_LITERAL); } } @@ -5804,7 +5265,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 941; + this.state = 935; _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 66)) { this.errorHandler.recoverInline(this); @@ -5832,27 +5293,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimeLiteralContext(this.context, this.state); this.enterRule(localContext, 200, OpenSearchPPLParser.RULE_datetimeLiteral); try { - this.state = 946; + this.state = 940; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 943; + this.state = 937; this.dateLiteral(); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 944; + this.state = 938; this.timeLiteral(); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 945; + this.state = 939; this.timestampLiteral(); } break; @@ -5879,9 +5340,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; + this.state = 942; this.match(OpenSearchPPLParser.DATE); - this.state = 949; + this.state = 943; localContext._date = this.stringLiteral(); } } @@ -5904,9 +5365,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 951; + this.state = 945; this.match(OpenSearchPPLParser.TIME); - this.state = 952; + this.state = 946; localContext._time = this.stringLiteral(); } } @@ -5929,9 +5390,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 954; + this.state = 948; this.match(OpenSearchPPLParser.TIMESTAMP); - this.state = 955; + this.state = 949; localContext._timestamp = this.stringLiteral(); } } @@ -5955,7 +5416,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 957; + this.state = 951; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 451728879) !== 0))) { this.errorHandler.recoverInline(this); @@ -5986,7 +5447,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 959; + this.state = 953; _la = this.tokenStream.LA(1); if(!(_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -6017,27 +5478,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 955; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 962; + this.state = 956; this.literalValue(); - this.state = 967; + this.state = 961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 963; + this.state = 957; this.match(OpenSearchPPLParser.COMMA); - this.state = 964; + this.state = 958; this.literalValue(); } } - this.state = 969; + this.state = 963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 970; + this.state = 964; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -6058,30 +5519,10 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new QualifiedNameContext(this.context, this.state); this.enterRule(localContext, 214, OpenSearchPPLParser.RULE_qualifiedName); try { - let alternative: number; - localContext = new IdentsAsQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 972; - this.ident(); - this.state = 977; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 73, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 973; - this.match(OpenSearchPPLParser.DOT); - this.state = 974; - this.ident(); - } - } - } - this.state = 979; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 73, this.context); - } + this.state = 966; + this.match(OpenSearchPPLParser.ID); } } catch (re) { @@ -6100,29 +5541,11 @@ export class OpenSearchPPLParser extends antlr.Parser { public tableQualifiedName(): TableQualifiedNameContext { let localContext = new TableQualifiedNameContext(this.context, this.state); this.enterRule(localContext, 216, OpenSearchPPLParser.RULE_tableQualifiedName); - let _la: number; try { - localContext = new IdentsAsTableQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 980; - this.tableIdent(); - this.state = 985; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 111) { - { - { - this.state = 981; - this.match(OpenSearchPPLParser.DOT); - this.state = 982; - this.ident(); - } - } - this.state = 987; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + this.state = 968; + this.match(OpenSearchPPLParser.ID); } } catch (re) { @@ -6146,21 +5569,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsWildcardQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 988; + this.state = 970; this.wildcard(); - this.state = 993; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 111) { { { - this.state = 989; + this.state = 971; this.match(OpenSearchPPLParser.DOT); - this.state = 990; + this.state = 972; this.wildcard(); } } - this.state = 995; + this.state = 977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6184,42 +5607,42 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 220, OpenSearchPPLParser.RULE_ident); let _la: number; try { - this.state = 1006; + this.state = 988; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DOT: case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 997; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 996; + this.state = 978; this.match(OpenSearchPPLParser.DOT); } } - this.state = 999; + this.state = 981; this.match(OpenSearchPPLParser.ID); } break; case OpenSearchPPLParser.BACKTICK: this.enterOuterAlt(localContext, 2); { - this.state = 1000; + this.state = 982; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1001; + this.state = 983; this.ident(); - this.state = 1002; + this.state = 984; this.match(OpenSearchPPLParser.BACKTICK); } break; case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 3); { - this.state = 1004; + this.state = 986; this.match(OpenSearchPPLParser.BQUOTA_STRING); } break; @@ -6489,7 +5912,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.Y: this.enterOuterAlt(localContext, 4); { - this.state = 1005; + this.state = 987; this.keywordsCanBeId(); } break; @@ -6517,17 +5940,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 1009; + this.state = 991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1008; + this.state = 990; this.match(OpenSearchPPLParser.CLUSTER); } } - this.state = 1011; + this.state = 993; this.ident(); } } @@ -6550,38 +5973,38 @@ export class OpenSearchPPLParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1036; + this.state = 1018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1013; + this.state = 995; this.ident(); - this.state = 1018; + this.state = 1000; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1014; + this.state = 996; this.match(OpenSearchPPLParser.MODULE); - this.state = 1015; + this.state = 997; this.ident(); } } } - this.state = 1020; + this.state = 1002; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); } - this.state = 1022; + this.state = 1004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1021; + this.state = 1003; this.match(OpenSearchPPLParser.MODULE); } } @@ -6591,33 +6014,33 @@ export class OpenSearchPPLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1024; + this.state = 1006; this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 1025; + this.state = 1007; this.wildcard(); - this.state = 1026; + this.state = 1008; this.match(OpenSearchPPLParser.SINGLE_QUOTE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1028; + this.state = 1010; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 1029; + this.state = 1011; this.wildcard(); - this.state = 1030; + this.state = 1012; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1032; + this.state = 1014; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1033; + this.state = 1015; this.wildcard(); - this.state = 1034; + this.state = 1016; this.match(OpenSearchPPLParser.BACKTICK); } break; @@ -6640,706 +6063,706 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KeywordsCanBeIdContext(this.context, this.state); this.enterRule(localContext, 226, OpenSearchPPLParser.RULE_keywordsCanBeId); try { - this.state = 1138; + this.state = 1120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1038; + this.state = 1020; this.match(OpenSearchPPLParser.D); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1039; + this.state = 1021; this.timespanUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1040; + this.state = 1022; this.match(OpenSearchPPLParser.SPAN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1041; + this.state = 1023; this.evalFunctionName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1042; + this.state = 1024; this.relevanceArgName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1043; + this.state = 1025; this.intervalUnit(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1044; + this.state = 1026; this.dateTimeFunctionName(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1045; + this.state = 1027; this.textFunctionName(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1046; + this.state = 1028; this.mathematicalFunctionName(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1047; + this.state = 1029; this.positionFunctionName(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1048; + this.state = 1030; this.match(OpenSearchPPLParser.SEARCH); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1049; + this.state = 1031; this.match(OpenSearchPPLParser.DESCRIBE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1050; + this.state = 1032; this.match(OpenSearchPPLParser.SHOW); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1051; + this.state = 1033; this.match(OpenSearchPPLParser.FROM); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1052; + this.state = 1034; this.match(OpenSearchPPLParser.WHERE); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1053; + this.state = 1035; this.match(OpenSearchPPLParser.FIELDS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1054; + this.state = 1036; this.match(OpenSearchPPLParser.RENAME); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1055; + this.state = 1037; this.match(OpenSearchPPLParser.STATS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1056; + this.state = 1038; this.match(OpenSearchPPLParser.DEDUP); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1057; + this.state = 1039; this.match(OpenSearchPPLParser.SORT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1058; + this.state = 1040; this.match(OpenSearchPPLParser.EVAL); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1059; + this.state = 1041; this.match(OpenSearchPPLParser.HEAD); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1060; + this.state = 1042; this.match(OpenSearchPPLParser.TOP); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1061; + this.state = 1043; this.match(OpenSearchPPLParser.RARE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1062; + this.state = 1044; this.match(OpenSearchPPLParser.PARSE); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1063; + this.state = 1045; this.match(OpenSearchPPLParser.METHOD); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1064; + this.state = 1046; this.match(OpenSearchPPLParser.REGEX); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1065; + this.state = 1047; this.match(OpenSearchPPLParser.PUNCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1066; + this.state = 1048; this.match(OpenSearchPPLParser.GROK); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1067; + this.state = 1049; this.match(OpenSearchPPLParser.PATTERN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1068; + this.state = 1050; this.match(OpenSearchPPLParser.PATTERNS); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1069; + this.state = 1051; this.match(OpenSearchPPLParser.NEW_FIELD); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1070; + this.state = 1052; this.match(OpenSearchPPLParser.KMEANS); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1071; + this.state = 1053; this.match(OpenSearchPPLParser.AD); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1072; + this.state = 1054; this.match(OpenSearchPPLParser.ML); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1073; + this.state = 1055; this.match(OpenSearchPPLParser.SOURCE); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1074; + this.state = 1056; this.match(OpenSearchPPLParser.INDEX); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1075; + this.state = 1057; this.match(OpenSearchPPLParser.DESC); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1076; + this.state = 1058; this.match(OpenSearchPPLParser.DATASOURCES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1077; + this.state = 1059; this.match(OpenSearchPPLParser.SORTBY); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1078; + this.state = 1060; this.match(OpenSearchPPLParser.STR); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1079; + this.state = 1061; this.match(OpenSearchPPLParser.IP); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1080; + this.state = 1062; this.match(OpenSearchPPLParser.NUM); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1081; + this.state = 1063; this.match(OpenSearchPPLParser.KEEPEMPTY); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1082; + this.state = 1064; this.match(OpenSearchPPLParser.CONSECUTIVE); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1083; + this.state = 1065; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1084; + this.state = 1066; this.match(OpenSearchPPLParser.PARTITIONS); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1085; + this.state = 1067; this.match(OpenSearchPPLParser.ALLNUM); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1086; + this.state = 1068; this.match(OpenSearchPPLParser.DELIM); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1087; + this.state = 1069; this.match(OpenSearchPPLParser.CENTROIDS); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1088; + this.state = 1070; this.match(OpenSearchPPLParser.ITERATIONS); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1089; + this.state = 1071; this.match(OpenSearchPPLParser.DISTANCE_TYPE); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1090; + this.state = 1072; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1091; + this.state = 1073; this.match(OpenSearchPPLParser.SHINGLE_SIZE); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1092; + this.state = 1074; this.match(OpenSearchPPLParser.SAMPLE_SIZE); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1093; + this.state = 1075; this.match(OpenSearchPPLParser.OUTPUT_AFTER); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1094; + this.state = 1076; this.match(OpenSearchPPLParser.TIME_DECAY); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1095; + this.state = 1077; this.match(OpenSearchPPLParser.ANOMALY_RATE); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1096; + this.state = 1078; this.match(OpenSearchPPLParser.CATEGORY_FIELD); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1097; + this.state = 1079; this.match(OpenSearchPPLParser.TIME_FIELD); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1098; + this.state = 1080; this.match(OpenSearchPPLParser.TIME_ZONE); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1099; + this.state = 1081; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1100; + this.state = 1082; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1101; + this.state = 1083; this.match(OpenSearchPPLParser.AVG); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1102; + this.state = 1084; this.match(OpenSearchPPLParser.COUNT); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1103; + this.state = 1085; this.match(OpenSearchPPLParser.DISTINCT_COUNT); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1104; + this.state = 1086; this.match(OpenSearchPPLParser.ESTDC); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1105; + this.state = 1087; this.match(OpenSearchPPLParser.ESTDC_ERROR); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1106; + this.state = 1088; this.match(OpenSearchPPLParser.MAX); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1107; + this.state = 1089; this.match(OpenSearchPPLParser.MEAN); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1108; + this.state = 1090; this.match(OpenSearchPPLParser.MEDIAN); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1109; + this.state = 1091; this.match(OpenSearchPPLParser.MIN); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1110; + this.state = 1092; this.match(OpenSearchPPLParser.MODE); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1111; + this.state = 1093; this.match(OpenSearchPPLParser.RANGE); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1112; + this.state = 1094; this.match(OpenSearchPPLParser.STDEV); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1113; + this.state = 1095; this.match(OpenSearchPPLParser.STDEVP); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1114; + this.state = 1096; this.match(OpenSearchPPLParser.SUM); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1115; + this.state = 1097; this.match(OpenSearchPPLParser.SUMSQ); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1116; + this.state = 1098; this.match(OpenSearchPPLParser.VAR_SAMP); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1117; + this.state = 1099; this.match(OpenSearchPPLParser.VAR_POP); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1118; + this.state = 1100; this.match(OpenSearchPPLParser.STDDEV_SAMP); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1119; + this.state = 1101; this.match(OpenSearchPPLParser.STDDEV_POP); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1120; + this.state = 1102; this.match(OpenSearchPPLParser.PERCENTILE); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1121; + this.state = 1103; this.match(OpenSearchPPLParser.TAKE); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1122; + this.state = 1104; this.match(OpenSearchPPLParser.FIRST); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1123; + this.state = 1105; this.match(OpenSearchPPLParser.LAST); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1124; + this.state = 1106; this.match(OpenSearchPPLParser.LIST); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1125; + this.state = 1107; this.match(OpenSearchPPLParser.VALUES); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1126; + this.state = 1108; this.match(OpenSearchPPLParser.EARLIEST); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1127; + this.state = 1109; this.match(OpenSearchPPLParser.EARLIEST_TIME); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1128; + this.state = 1110; this.match(OpenSearchPPLParser.LATEST); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1129; + this.state = 1111; this.match(OpenSearchPPLParser.LATEST_TIME); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1130; + this.state = 1112; this.match(OpenSearchPPLParser.PER_DAY); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1131; + this.state = 1113; this.match(OpenSearchPPLParser.PER_HOUR); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1132; + this.state = 1114; this.match(OpenSearchPPLParser.PER_MINUTE); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1133; + this.state = 1115; this.match(OpenSearchPPLParser.PER_SECOND); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1134; + this.state = 1116; this.match(OpenSearchPPLParser.RATE); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1135; + this.state = 1117; this.match(OpenSearchPPLParser.SPARKLINE); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1136; + this.state = 1118; this.match(OpenSearchPPLParser.C); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1137; + this.state = 1119; this.match(OpenSearchPPLParser.DC); } break; @@ -7390,7 +6813,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4,1,336,1141,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, + 4,1,336,1123,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, @@ -7429,56 +6852,53 @@ export class OpenSearchPPLParser extends antlr.Parser { 27,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, 27,1,27,1,27,1,27,1,27,1,27,1,27,3,27,466,8,27,1,28,1,28,5,28,470, 8,28,10,28,12,28,473,9,28,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30, - 1,30,1,30,3,30,485,8,30,1,31,1,31,1,31,5,31,490,8,31,10,31,12,31, - 493,9,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,3,34,511,8,34,1,35,1,35,1,35,3,35,516,8, - 35,1,36,1,36,1,36,1,36,1,36,1,36,3,36,524,8,36,1,36,1,36,1,37,1, - 37,1,37,5,37,531,8,37,10,37,12,37,534,9,37,1,38,1,38,1,38,1,38,1, - 39,1,39,1,39,3,39,543,8,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1, - 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,3,40,560,8,40,1,41,1,41,1, - 42,1,42,1,42,1,42,1,42,3,42,569,8,42,1,42,1,42,1,43,1,43,1,43,1, - 43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,3,44,584,8,44,1,45,1,45,1, - 45,1,45,1,45,1,45,3,45,592,8,45,1,45,1,45,1,45,1,45,1,45,3,45,599, - 8,45,1,45,1,45,1,45,1,45,5,45,605,8,45,10,45,12,45,608,9,45,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,618,8,46,1,47,1,47,1,47, - 1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,630,8,47,1,47,1,47,1,47, - 1,47,1,47,1,47,5,47,638,8,47,10,47,12,47,641,9,47,1,48,1,48,1,48, - 1,48,3,48,647,8,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50, - 1,51,1,51,3,51,660,8,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,5,52, - 669,8,52,10,52,12,52,672,9,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53, - 1,53,5,53,682,8,53,10,53,12,53,685,9,53,1,53,1,53,1,53,1,53,1,53, - 5,53,692,8,53,10,53,12,53,695,9,53,1,53,1,53,1,54,1,54,3,54,701, - 8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,5,56,711,8,56,10,56, - 12,56,714,9,56,1,57,1,57,1,57,5,57,719,8,57,10,57,12,57,722,9,57, - 1,58,3,58,725,8,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59, + 1,30,1,30,3,30,485,8,30,1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33, + 1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,505,8,34, + 1,35,1,35,1,35,3,35,510,8,35,1,36,1,36,1,36,1,36,1,36,1,36,3,36, + 518,8,36,1,36,1,36,1,37,1,37,1,37,5,37,525,8,37,10,37,12,37,528, + 9,37,1,38,1,38,1,38,1,38,1,39,1,39,1,39,3,39,537,8,39,1,40,1,40, + 1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40, + 3,40,554,8,40,1,41,1,41,1,42,1,42,1,42,1,42,1,42,3,42,563,8,42,1, + 42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,3, + 44,578,8,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45,586,8,45,1,45,1,45, + 1,45,1,45,1,45,3,45,593,8,45,1,45,1,45,1,45,1,45,5,45,599,8,45,10, + 45,12,45,602,9,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,612, + 8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,624, + 8,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,632,8,47,10,47,12,47,635, + 9,47,1,48,1,48,1,48,1,48,3,48,641,8,48,1,49,1,49,1,49,1,49,1,49, + 1,49,1,49,1,50,1,50,1,51,1,51,3,51,654,8,51,1,52,1,52,1,52,1,52, + 1,52,1,52,1,52,5,52,663,8,52,10,52,12,52,666,9,52,1,52,1,52,1,53, + 1,53,1,53,1,53,1,53,1,53,5,53,676,8,53,10,53,12,53,679,9,53,1,53, + 1,53,1,53,1,53,1,53,5,53,686,8,53,10,53,12,53,689,9,53,1,53,1,53, + 1,54,1,54,3,54,695,8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56, + 5,56,705,8,56,10,56,12,56,708,9,56,1,57,1,57,1,57,5,57,713,8,57, + 10,57,12,57,716,9,57,1,58,3,58,719,8,58,1,58,1,58,1,59,1,59,1,59, 1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59, - 1,59,3,59,750,8,59,1,60,1,60,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,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,65,3,65,783,8,65,1,66, - 1,66,1,66,1,66,1,66,1,66,3,66,791,8,66,1,67,1,67,1,67,5,67,796,8, - 67,10,67,12,67,799,9,67,3,67,801,8,67,1,68,1,68,1,68,3,68,806,8, - 68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70,1,71,1,71,1,71,1,71,1, - 71,1,71,1,71,1,71,3,71,824,8,71,1,72,1,72,3,72,828,8,72,1,73,1,73, - 3,73,832,8,73,1,74,1,74,1,75,1,75,3,75,838,8,75,1,76,1,76,1,76,1, - 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, - 76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,863,8,76,1,77,1,77,1,78,1, - 78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,81,1,81,1,81,1, - 81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84,1,84,3,84,891,8,84,1, - 85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1,86,1,87,1,87,1, - 88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,1, - 94,1,94,1,94,1,94,1,94,3,94,924,8,94,1,95,1,95,1,95,1,95,1,96,1, - 96,1,97,3,97,933,8,97,1,97,1,97,1,98,3,98,938,8,98,1,98,1,98,1,99, - 1,99,1,100,1,100,1,100,3,100,947,8,100,1,101,1,101,1,101,1,102,1, - 102,1,102,1,103,1,103,1,103,1,104,1,104,1,105,1,105,1,106,1,106, - 1,106,1,106,5,106,966,8,106,10,106,12,106,969,9,106,1,106,1,106, - 1,107,1,107,1,107,5,107,976,8,107,10,107,12,107,979,9,107,1,108, - 1,108,1,108,5,108,984,8,108,10,108,12,108,987,9,108,1,109,1,109, - 1,109,5,109,992,8,109,10,109,12,109,995,9,109,1,110,3,110,998,8, - 110,1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,1007,8,110,1, - 111,3,111,1010,8,111,1,111,1,111,1,112,1,112,1,112,5,112,1017,8, - 112,10,112,12,112,1020,9,112,1,112,3,112,1023,8,112,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112, - 1037,8,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, + 1,59,1,59,1,59,1,59,1,59,3,59,744,8,59,1,60,1,60,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,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,65, + 3,65,777,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3,66,785,8,66,1,67,1, + 67,1,67,5,67,790,8,67,10,67,12,67,793,9,67,3,67,795,8,67,1,68,1, + 68,1,68,3,68,800,8,68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,818,8,71,1,72,1,72,3, + 72,822,8,72,1,73,1,73,3,73,826,8,73,1,74,1,74,1,75,1,75,3,75,832, + 8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,857, + 8,76,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80, + 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84, + 1,84,3,84,885,8,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, + 1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92, + 1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3,94,918,8,94,1,95, + 1,95,1,95,1,95,1,96,1,96,1,97,3,97,927,8,97,1,97,1,97,1,98,3,98, + 932,8,98,1,98,1,98,1,99,1,99,1,100,1,100,1,100,3,100,941,8,100,1, + 101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1,103,1,104,1,104, + 1,105,1,105,1,106,1,106,1,106,1,106,5,106,960,8,106,10,106,12,106, + 963,9,106,1,106,1,106,1,107,1,107,1,108,1,108,1,109,1,109,1,109, + 5,109,974,8,109,10,109,12,109,977,9,109,1,110,3,110,980,8,110,1, + 110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,989,8,110,1,111,3, + 111,992,8,111,1,111,1,111,1,112,1,112,1,112,5,112,999,8,112,10,112, + 12,112,1002,9,112,1,112,3,112,1005,8,112,1,112,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,1019,8,112, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, @@ -7487,74 +6907,75 @@ export class OpenSearchPPLParser extends antlr.Parser { 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, - 1,113,1,113,1,113,3,113,1139,8,113,1,113,0,2,90,94,114,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, - 0,21,1,0,118,119,1,0,18,19,2,0,137,137,171,171,5,0,135,136,140,140, - 143,143,148,148,150,153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195, - 204,13,0,68,70,74,74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205, - 222,224,225,227,243,246,255,4,0,69,69,212,212,241,241,243,243,8, - 0,70,70,76,76,82,82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75, - 77,78,80,80,85,85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0, - 256,260,262,273,2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333, - 334,1,0,65,66,9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95, - 97,98,9,0,31,31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327, - 1293,0,229,1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248, - 1,0,0,0,10,266,1,0,0,0,12,269,1,0,0,0,14,273,1,0,0,0,16,276,1,0, - 0,0,18,279,1,0,0,0,20,282,1,0,0,0,22,288,1,0,0,0,24,297,1,0,0,0, - 26,329,1,0,0,0,28,344,1,0,0,0,30,347,1,0,0,0,32,356,1,0,0,0,34,364, + 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, + 1,113,3,113,1121,8,113,1,113,0,2,90,94,114,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,0,21,1,0, + 118,119,1,0,18,19,2,0,137,137,171,171,5,0,135,136,140,140,143,143, + 148,148,150,153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195,204,13, + 0,68,70,74,74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205,222, + 224,225,227,243,246,255,4,0,69,69,212,212,241,241,243,243,8,0,70, + 70,76,76,82,82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75,77, + 78,80,80,85,85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0,256, + 260,262,273,2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333,334, + 1,0,65,66,9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95,97, + 98,9,0,31,31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327,1272, + 0,229,1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248,1, + 0,0,0,10,266,1,0,0,0,12,269,1,0,0,0,14,273,1,0,0,0,16,276,1,0,0, + 0,18,279,1,0,0,0,20,282,1,0,0,0,22,288,1,0,0,0,24,297,1,0,0,0,26, + 329,1,0,0,0,28,344,1,0,0,0,30,347,1,0,0,0,32,356,1,0,0,0,34,364, 1,0,0,0,36,372,1,0,0,0,38,377,1,0,0,0,40,381,1,0,0,0,42,385,1,0, 0,0,44,400,1,0,0,0,46,402,1,0,0,0,48,404,1,0,0,0,50,420,1,0,0,0, 52,422,1,0,0,0,54,465,1,0,0,0,56,467,1,0,0,0,58,474,1,0,0,0,60,484, - 1,0,0,0,62,486,1,0,0,0,64,494,1,0,0,0,66,498,1,0,0,0,68,510,1,0, - 0,0,70,512,1,0,0,0,72,517,1,0,0,0,74,527,1,0,0,0,76,535,1,0,0,0, - 78,539,1,0,0,0,80,559,1,0,0,0,82,561,1,0,0,0,84,563,1,0,0,0,86,572, - 1,0,0,0,88,583,1,0,0,0,90,591,1,0,0,0,92,617,1,0,0,0,94,629,1,0, - 0,0,96,646,1,0,0,0,98,648,1,0,0,0,100,655,1,0,0,0,102,659,1,0,0, - 0,104,661,1,0,0,0,106,675,1,0,0,0,108,700,1,0,0,0,110,702,1,0,0, - 0,112,707,1,0,0,0,114,715,1,0,0,0,116,724,1,0,0,0,118,749,1,0,0, - 0,120,751,1,0,0,0,122,753,1,0,0,0,124,755,1,0,0,0,126,760,1,0,0, - 0,128,767,1,0,0,0,130,782,1,0,0,0,132,790,1,0,0,0,134,800,1,0,0, - 0,136,805,1,0,0,0,138,809,1,0,0,0,140,813,1,0,0,0,142,823,1,0,0, - 0,144,827,1,0,0,0,146,831,1,0,0,0,148,833,1,0,0,0,150,837,1,0,0, - 0,152,862,1,0,0,0,154,864,1,0,0,0,156,866,1,0,0,0,158,868,1,0,0, - 0,160,875,1,0,0,0,162,877,1,0,0,0,164,884,1,0,0,0,166,886,1,0,0, - 0,168,890,1,0,0,0,170,892,1,0,0,0,172,901,1,0,0,0,174,903,1,0,0, - 0,176,905,1,0,0,0,178,907,1,0,0,0,180,909,1,0,0,0,182,911,1,0,0, - 0,184,913,1,0,0,0,186,915,1,0,0,0,188,923,1,0,0,0,190,925,1,0,0, - 0,192,929,1,0,0,0,194,932,1,0,0,0,196,937,1,0,0,0,198,941,1,0,0, - 0,200,946,1,0,0,0,202,948,1,0,0,0,204,951,1,0,0,0,206,954,1,0,0, - 0,208,957,1,0,0,0,210,959,1,0,0,0,212,961,1,0,0,0,214,972,1,0,0, - 0,216,980,1,0,0,0,218,988,1,0,0,0,220,1006,1,0,0,0,222,1009,1,0, - 0,0,224,1036,1,0,0,0,226,1138,1,0,0,0,228,230,3,2,1,0,229,228,1, - 0,0,0,229,230,1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0, - 0,0,233,234,3,4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0, - 237,242,3,8,4,0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0, - 0,241,244,1,0,0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0, - 244,242,1,0,0,0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8, - 0,248,245,1,0,0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0, - 250,267,3,18,9,0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24, - 12,0,254,267,3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267, - 3,32,16,0,258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0, - 261,267,3,40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3, - 52,26,0,265,267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252, - 1,0,0,0,266,253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256, - 1,0,0,0,266,257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260, - 1,0,0,0,266,261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264, - 1,0,0,0,266,265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1, - 0,0,0,269,270,1,0,0,0,270,271,1,0,0,0,271,272,3,60,30,0,272,13,1, - 0,0,0,273,274,5,3,0,0,274,275,3,62,31,0,275,15,1,0,0,0,276,277,5, - 4,0,0,277,278,5,33,0,0,278,17,1,0,0,0,279,280,5,6,0,0,280,281,3, - 90,45,0,281,19,1,0,0,0,282,284,5,7,0,0,283,285,7,0,0,0,284,283,1, - 0,0,0,284,285,1,0,0,0,285,286,1,0,0,0,286,287,3,112,56,0,287,21, - 1,0,0,0,288,289,5,8,0,0,289,294,3,64,32,0,290,291,5,110,0,0,291, - 293,3,64,32,0,292,290,1,0,0,0,293,296,1,0,0,0,294,292,1,0,0,0,294, - 295,1,0,0,0,295,23,1,0,0,0,296,294,1,0,0,0,297,301,5,9,0,0,298,299, - 5,42,0,0,299,300,5,112,0,0,300,302,3,194,97,0,301,298,1,0,0,0,301, + 1,0,0,0,62,486,1,0,0,0,64,488,1,0,0,0,66,492,1,0,0,0,68,504,1,0, + 0,0,70,506,1,0,0,0,72,511,1,0,0,0,74,521,1,0,0,0,76,529,1,0,0,0, + 78,533,1,0,0,0,80,553,1,0,0,0,82,555,1,0,0,0,84,557,1,0,0,0,86,566, + 1,0,0,0,88,577,1,0,0,0,90,585,1,0,0,0,92,611,1,0,0,0,94,623,1,0, + 0,0,96,640,1,0,0,0,98,642,1,0,0,0,100,649,1,0,0,0,102,653,1,0,0, + 0,104,655,1,0,0,0,106,669,1,0,0,0,108,694,1,0,0,0,110,696,1,0,0, + 0,112,701,1,0,0,0,114,709,1,0,0,0,116,718,1,0,0,0,118,743,1,0,0, + 0,120,745,1,0,0,0,122,747,1,0,0,0,124,749,1,0,0,0,126,754,1,0,0, + 0,128,761,1,0,0,0,130,776,1,0,0,0,132,784,1,0,0,0,134,794,1,0,0, + 0,136,799,1,0,0,0,138,803,1,0,0,0,140,807,1,0,0,0,142,817,1,0,0, + 0,144,821,1,0,0,0,146,825,1,0,0,0,148,827,1,0,0,0,150,831,1,0,0, + 0,152,856,1,0,0,0,154,858,1,0,0,0,156,860,1,0,0,0,158,862,1,0,0, + 0,160,869,1,0,0,0,162,871,1,0,0,0,164,878,1,0,0,0,166,880,1,0,0, + 0,168,884,1,0,0,0,170,886,1,0,0,0,172,895,1,0,0,0,174,897,1,0,0, + 0,176,899,1,0,0,0,178,901,1,0,0,0,180,903,1,0,0,0,182,905,1,0,0, + 0,184,907,1,0,0,0,186,909,1,0,0,0,188,917,1,0,0,0,190,919,1,0,0, + 0,192,923,1,0,0,0,194,926,1,0,0,0,196,931,1,0,0,0,198,935,1,0,0, + 0,200,940,1,0,0,0,202,942,1,0,0,0,204,945,1,0,0,0,206,948,1,0,0, + 0,208,951,1,0,0,0,210,953,1,0,0,0,212,955,1,0,0,0,214,966,1,0,0, + 0,216,968,1,0,0,0,218,970,1,0,0,0,220,988,1,0,0,0,222,991,1,0,0, + 0,224,1018,1,0,0,0,226,1120,1,0,0,0,228,230,3,2,1,0,229,228,1,0, + 0,0,229,230,1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0,0, + 0,233,234,3,4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0,237, + 242,3,8,4,0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0,0,241, + 244,1,0,0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0,244,242, + 1,0,0,0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8,0,248,245, + 1,0,0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0,250,267,3, + 18,9,0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24,12,0,254, + 267,3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267,3,32,16, + 0,258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0,261,267, + 3,40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3,52,26,0, + 265,267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252,1,0,0, + 0,266,253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256,1,0,0, + 0,266,257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260,1,0,0, + 0,266,261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264,1,0,0, + 0,266,265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1,0,0,0, + 269,270,1,0,0,0,270,271,1,0,0,0,271,272,3,60,30,0,272,13,1,0,0,0, + 273,274,5,3,0,0,274,275,3,62,31,0,275,15,1,0,0,0,276,277,5,4,0,0, + 277,278,5,33,0,0,278,17,1,0,0,0,279,280,5,6,0,0,280,281,3,90,45, + 0,281,19,1,0,0,0,282,284,5,7,0,0,283,285,7,0,0,0,284,283,1,0,0,0, + 284,285,1,0,0,0,285,286,1,0,0,0,286,287,3,112,56,0,287,21,1,0,0, + 0,288,289,5,8,0,0,289,294,3,64,32,0,290,291,5,110,0,0,291,293,3, + 64,32,0,292,290,1,0,0,0,293,296,1,0,0,0,294,292,1,0,0,0,294,295, + 1,0,0,0,295,23,1,0,0,0,296,294,1,0,0,0,297,301,5,9,0,0,298,299,5, + 42,0,0,299,300,5,112,0,0,300,302,3,194,97,0,301,298,1,0,0,0,301, 302,1,0,0,0,302,306,1,0,0,0,303,304,5,43,0,0,304,305,5,112,0,0,305, 307,3,198,99,0,306,303,1,0,0,0,306,307,1,0,0,0,307,311,1,0,0,0,308, 309,5,44,0,0,309,310,5,112,0,0,310,312,3,192,96,0,311,308,1,0,0, @@ -7611,246 +7032,240 @@ export class OpenSearchPPLParser extends antlr.Parser { 0,0,0,473,471,1,0,0,0,474,475,3,220,110,0,475,476,5,112,0,0,476, 477,3,188,94,0,477,59,1,0,0,0,478,479,5,29,0,0,479,480,5,112,0,0, 480,485,3,62,31,0,481,482,5,30,0,0,482,483,5,112,0,0,483,485,3,62, - 31,0,484,478,1,0,0,0,484,481,1,0,0,0,485,61,1,0,0,0,486,491,3,108, - 54,0,487,488,5,110,0,0,488,490,3,108,54,0,489,487,1,0,0,0,490,493, - 1,0,0,0,491,489,1,0,0,0,491,492,1,0,0,0,492,63,1,0,0,0,493,491,1, - 0,0,0,494,495,3,122,61,0,495,496,5,27,0,0,496,497,3,122,61,0,497, - 65,1,0,0,0,498,499,5,28,0,0,499,500,3,112,56,0,500,67,1,0,0,0,501, - 502,5,28,0,0,502,511,3,112,56,0,503,504,5,28,0,0,504,511,3,70,35, - 0,505,506,5,28,0,0,506,507,3,70,35,0,507,508,5,110,0,0,508,509,3, - 112,56,0,509,511,1,0,0,0,510,501,1,0,0,0,510,503,1,0,0,0,510,505, - 1,0,0,0,511,69,1,0,0,0,512,515,3,72,36,0,513,514,5,27,0,0,514,516, - 3,214,107,0,515,513,1,0,0,0,515,516,1,0,0,0,516,71,1,0,0,0,517,518, - 5,320,0,0,518,519,5,125,0,0,519,520,3,120,60,0,520,521,5,110,0,0, - 521,523,3,188,94,0,522,524,3,210,105,0,523,522,1,0,0,0,523,524,1, - 0,0,0,524,525,1,0,0,0,525,526,5,126,0,0,526,73,1,0,0,0,527,532,3, - 116,58,0,528,529,5,110,0,0,529,531,3,116,58,0,530,528,1,0,0,0,531, - 534,1,0,0,0,532,530,1,0,0,0,532,533,1,0,0,0,533,75,1,0,0,0,534,532, - 1,0,0,0,535,536,3,120,60,0,536,537,5,112,0,0,537,538,3,88,44,0,538, - 77,1,0,0,0,539,542,3,80,40,0,540,541,5,27,0,0,541,543,3,122,61,0, - 542,540,1,0,0,0,542,543,1,0,0,0,543,79,1,0,0,0,544,545,3,82,41,0, - 545,546,5,125,0,0,546,547,3,94,47,0,547,548,5,126,0,0,548,560,1, - 0,0,0,549,550,5,136,0,0,550,551,5,125,0,0,551,560,5,126,0,0,552, - 553,7,2,0,0,553,554,5,125,0,0,554,555,3,94,47,0,555,556,5,126,0, - 0,556,560,1,0,0,0,557,560,3,86,43,0,558,560,3,84,42,0,559,544,1, - 0,0,0,559,549,1,0,0,0,559,552,1,0,0,0,559,557,1,0,0,0,559,558,1, - 0,0,0,560,81,1,0,0,0,561,562,7,3,0,0,562,83,1,0,0,0,563,564,5,155, - 0,0,564,565,5,125,0,0,565,568,3,120,60,0,566,567,5,110,0,0,567,569, - 3,194,97,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570,1,0,0,0,570,571, - 5,126,0,0,571,85,1,0,0,0,572,573,5,154,0,0,573,574,5,114,0,0,574, - 575,3,194,97,0,575,576,5,113,0,0,576,577,5,125,0,0,577,578,3,120, - 60,0,578,579,5,126,0,0,579,87,1,0,0,0,580,584,3,90,45,0,581,584, - 3,92,46,0,582,584,3,94,47,0,583,580,1,0,0,0,583,581,1,0,0,0,583, - 582,1,0,0,0,584,89,1,0,0,0,585,586,6,45,-1,0,586,592,3,92,46,0,587, - 588,5,61,0,0,588,592,3,90,45,6,589,592,3,100,50,0,590,592,3,102, - 51,0,591,585,1,0,0,0,591,587,1,0,0,0,591,589,1,0,0,0,591,590,1,0, - 0,0,592,606,1,0,0,0,593,594,10,5,0,0,594,595,5,62,0,0,595,605,3, - 90,45,6,596,598,10,4,0,0,597,599,5,63,0,0,598,597,1,0,0,0,598,599, - 1,0,0,0,599,600,1,0,0,0,600,605,3,90,45,5,601,602,10,3,0,0,602,603, - 5,64,0,0,603,605,3,90,45,4,604,593,1,0,0,0,604,596,1,0,0,0,604,601, - 1,0,0,0,605,608,1,0,0,0,606,604,1,0,0,0,606,607,1,0,0,0,607,91,1, - 0,0,0,608,606,1,0,0,0,609,610,3,94,47,0,610,611,3,182,91,0,611,612, - 3,94,47,0,612,618,1,0,0,0,613,614,3,94,47,0,614,615,5,60,0,0,615, - 616,3,212,106,0,616,618,1,0,0,0,617,609,1,0,0,0,617,613,1,0,0,0, - 618,93,1,0,0,0,619,620,6,47,-1,0,620,630,3,96,48,0,621,630,3,98, - 49,0,622,630,3,162,81,0,623,630,3,158,79,0,624,630,3,170,85,0,625, - 626,5,125,0,0,626,627,3,94,47,0,627,628,5,126,0,0,628,630,1,0,0, - 0,629,619,1,0,0,0,629,621,1,0,0,0,629,622,1,0,0,0,629,623,1,0,0, - 0,629,624,1,0,0,0,629,625,1,0,0,0,630,639,1,0,0,0,631,632,10,8,0, - 0,632,633,7,4,0,0,633,638,3,94,47,9,634,635,10,7,0,0,635,636,7,0, - 0,0,636,638,3,94,47,8,637,631,1,0,0,0,637,634,1,0,0,0,638,641,1, - 0,0,0,639,637,1,0,0,0,639,640,1,0,0,0,640,95,1,0,0,0,641,639,1,0, - 0,0,642,647,3,124,62,0,643,647,3,126,63,0,644,647,3,120,60,0,645, - 647,3,188,94,0,646,642,1,0,0,0,646,643,1,0,0,0,646,644,1,0,0,0,646, - 645,1,0,0,0,647,97,1,0,0,0,648,649,3,180,90,0,649,650,5,125,0,0, - 650,651,3,136,68,0,651,652,5,60,0,0,652,653,3,136,68,0,653,654,5, - 126,0,0,654,99,1,0,0,0,655,656,3,128,64,0,656,101,1,0,0,0,657,660, - 3,104,52,0,658,660,3,106,53,0,659,657,1,0,0,0,659,658,1,0,0,0,660, - 103,1,0,0,0,661,662,3,184,92,0,662,663,5,125,0,0,663,664,3,146,73, - 0,664,665,5,110,0,0,665,670,3,148,74,0,666,667,5,110,0,0,667,669, - 3,138,69,0,668,666,1,0,0,0,669,672,1,0,0,0,670,668,1,0,0,0,670,671, - 1,0,0,0,671,673,1,0,0,0,672,670,1,0,0,0,673,674,5,126,0,0,674,105, - 1,0,0,0,675,676,3,186,93,0,676,677,5,125,0,0,677,678,5,127,0,0,678, - 683,3,142,71,0,679,680,5,110,0,0,680,682,3,142,71,0,681,679,1,0, - 0,0,682,685,1,0,0,0,683,681,1,0,0,0,683,684,1,0,0,0,684,686,1,0, - 0,0,685,683,1,0,0,0,686,687,5,128,0,0,687,688,5,110,0,0,688,693, - 3,148,74,0,689,690,5,110,0,0,690,692,3,138,69,0,691,689,1,0,0,0, - 692,695,1,0,0,0,693,691,1,0,0,0,693,694,1,0,0,0,694,696,1,0,0,0, - 695,693,1,0,0,0,696,697,5,126,0,0,697,107,1,0,0,0,698,701,3,216, - 108,0,699,701,5,332,0,0,700,698,1,0,0,0,700,699,1,0,0,0,701,109, - 1,0,0,0,702,703,3,214,107,0,703,704,5,125,0,0,704,705,3,134,67,0, - 705,706,5,126,0,0,706,111,1,0,0,0,707,712,3,120,60,0,708,709,5,110, - 0,0,709,711,3,120,60,0,710,708,1,0,0,0,711,714,1,0,0,0,712,710,1, - 0,0,0,712,713,1,0,0,0,713,113,1,0,0,0,714,712,1,0,0,0,715,720,3, - 122,61,0,716,717,5,110,0,0,717,719,3,122,61,0,718,716,1,0,0,0,719, - 722,1,0,0,0,720,718,1,0,0,0,720,721,1,0,0,0,721,115,1,0,0,0,722, - 720,1,0,0,0,723,725,7,0,0,0,724,723,1,0,0,0,724,725,1,0,0,0,725, - 726,1,0,0,0,726,727,3,118,59,0,727,117,1,0,0,0,728,750,3,120,60, - 0,729,730,5,35,0,0,730,731,5,125,0,0,731,732,3,120,60,0,732,733, - 5,126,0,0,733,750,1,0,0,0,734,735,5,36,0,0,735,736,5,125,0,0,736, - 737,3,120,60,0,737,738,5,126,0,0,738,750,1,0,0,0,739,740,5,37,0, - 0,740,741,5,125,0,0,741,742,3,120,60,0,742,743,5,126,0,0,743,750, - 1,0,0,0,744,745,5,38,0,0,745,746,5,125,0,0,746,747,3,120,60,0,747, - 748,5,126,0,0,748,750,1,0,0,0,749,728,1,0,0,0,749,729,1,0,0,0,749, - 734,1,0,0,0,749,739,1,0,0,0,749,744,1,0,0,0,750,119,1,0,0,0,751, - 752,3,214,107,0,752,121,1,0,0,0,753,754,3,218,109,0,754,123,1,0, - 0,0,755,756,3,132,66,0,756,757,5,125,0,0,757,758,3,134,67,0,758, - 759,5,126,0,0,759,125,1,0,0,0,760,761,5,274,0,0,761,762,5,125,0, - 0,762,763,3,88,44,0,763,764,5,27,0,0,764,765,3,130,65,0,765,766, - 5,126,0,0,766,127,1,0,0,0,767,768,3,174,87,0,768,769,5,125,0,0,769, - 770,3,134,67,0,770,771,5,126,0,0,771,129,1,0,0,0,772,783,5,212,0, - 0,773,783,5,241,0,0,774,783,5,243,0,0,775,783,5,102,0,0,776,783, - 5,103,0,0,777,783,5,104,0,0,778,783,5,105,0,0,779,783,5,106,0,0, - 780,783,5,107,0,0,781,783,5,108,0,0,782,772,1,0,0,0,782,773,1,0, - 0,0,782,774,1,0,0,0,782,775,1,0,0,0,782,776,1,0,0,0,782,777,1,0, - 0,0,782,778,1,0,0,0,782,779,1,0,0,0,782,780,1,0,0,0,782,781,1,0, - 0,0,783,131,1,0,0,0,784,791,3,152,76,0,785,791,3,156,78,0,786,791, - 3,178,89,0,787,791,3,174,87,0,788,791,3,176,88,0,789,791,3,180,90, - 0,790,784,1,0,0,0,790,785,1,0,0,0,790,786,1,0,0,0,790,787,1,0,0, - 0,790,788,1,0,0,0,790,789,1,0,0,0,791,133,1,0,0,0,792,797,3,136, - 68,0,793,794,5,110,0,0,794,796,3,136,68,0,795,793,1,0,0,0,796,799, - 1,0,0,0,797,795,1,0,0,0,797,798,1,0,0,0,798,801,1,0,0,0,799,797, - 1,0,0,0,800,792,1,0,0,0,800,801,1,0,0,0,801,135,1,0,0,0,802,803, - 3,220,110,0,803,804,5,112,0,0,804,806,1,0,0,0,805,802,1,0,0,0,805, - 806,1,0,0,0,806,807,1,0,0,0,807,808,3,94,47,0,808,137,1,0,0,0,809, - 810,3,140,70,0,810,811,5,112,0,0,811,812,3,150,75,0,812,139,1,0, - 0,0,813,814,7,5,0,0,814,141,1,0,0,0,815,824,3,146,73,0,816,817,3, - 146,73,0,817,818,3,144,72,0,818,824,1,0,0,0,819,820,3,146,73,0,820, - 821,5,134,0,0,821,822,3,144,72,0,822,824,1,0,0,0,823,815,1,0,0,0, - 823,816,1,0,0,0,823,819,1,0,0,0,824,143,1,0,0,0,825,828,3,194,97, - 0,826,828,3,196,98,0,827,825,1,0,0,0,827,826,1,0,0,0,828,145,1,0, - 0,0,829,832,3,214,107,0,830,832,3,192,96,0,831,829,1,0,0,0,831,830, - 1,0,0,0,832,147,1,0,0,0,833,834,3,150,75,0,834,149,1,0,0,0,835,838, - 3,214,107,0,836,838,3,188,94,0,837,835,1,0,0,0,837,836,1,0,0,0,838, - 151,1,0,0,0,839,863,5,172,0,0,840,863,5,173,0,0,841,863,5,174,0, - 0,842,863,5,175,0,0,843,863,5,176,0,0,844,863,5,177,0,0,845,863, - 5,178,0,0,846,863,5,179,0,0,847,863,5,180,0,0,848,863,5,181,0,0, - 849,863,5,182,0,0,850,863,5,183,0,0,851,863,5,184,0,0,852,863,5, - 185,0,0,853,863,5,186,0,0,854,863,5,188,0,0,855,863,5,189,0,0,856, - 863,5,190,0,0,857,863,5,191,0,0,858,863,5,192,0,0,859,863,5,193, - 0,0,860,863,5,194,0,0,861,863,3,154,77,0,862,839,1,0,0,0,862,840, - 1,0,0,0,862,841,1,0,0,0,862,842,1,0,0,0,862,843,1,0,0,0,862,844, - 1,0,0,0,862,845,1,0,0,0,862,846,1,0,0,0,862,847,1,0,0,0,862,848, - 1,0,0,0,862,849,1,0,0,0,862,850,1,0,0,0,862,851,1,0,0,0,862,852, - 1,0,0,0,862,853,1,0,0,0,862,854,1,0,0,0,862,855,1,0,0,0,862,856, - 1,0,0,0,862,857,1,0,0,0,862,858,1,0,0,0,862,859,1,0,0,0,862,860, - 1,0,0,0,862,861,1,0,0,0,863,153,1,0,0,0,864,865,7,6,0,0,865,155, - 1,0,0,0,866,867,7,7,0,0,867,157,1,0,0,0,868,869,5,226,0,0,869,870, - 5,125,0,0,870,871,3,160,80,0,871,872,5,110,0,0,872,873,3,136,68, - 0,873,874,5,126,0,0,874,159,1,0,0,0,875,876,7,8,0,0,876,161,1,0, - 0,0,877,878,5,223,0,0,878,879,5,125,0,0,879,880,3,168,84,0,880,881, - 5,5,0,0,881,882,3,136,68,0,882,883,5,126,0,0,883,163,1,0,0,0,884, - 885,7,9,0,0,885,165,1,0,0,0,886,887,7,10,0,0,887,167,1,0,0,0,888, - 891,3,164,82,0,889,891,3,166,83,0,890,888,1,0,0,0,890,889,1,0,0, - 0,891,169,1,0,0,0,892,893,3,172,86,0,893,894,5,125,0,0,894,895,3, - 164,82,0,895,896,5,110,0,0,896,897,3,136,68,0,897,898,5,110,0,0, - 898,899,3,136,68,0,899,900,5,126,0,0,900,171,1,0,0,0,901,902,7,11, - 0,0,902,173,1,0,0,0,903,904,7,12,0,0,904,175,1,0,0,0,905,906,5,281, - 0,0,906,177,1,0,0,0,907,908,7,13,0,0,908,179,1,0,0,0,909,910,5,187, - 0,0,910,181,1,0,0,0,911,912,7,14,0,0,912,183,1,0,0,0,913,914,7,15, - 0,0,914,185,1,0,0,0,915,916,7,16,0,0,916,187,1,0,0,0,917,924,3,190, - 95,0,918,924,3,192,96,0,919,924,3,194,97,0,920,924,3,196,98,0,921, - 924,3,198,99,0,922,924,3,200,100,0,923,917,1,0,0,0,923,918,1,0,0, - 0,923,919,1,0,0,0,923,920,1,0,0,0,923,921,1,0,0,0,923,922,1,0,0, - 0,924,189,1,0,0,0,925,926,5,81,0,0,926,927,3,94,47,0,927,928,3,208, - 104,0,928,191,1,0,0,0,929,930,7,17,0,0,930,193,1,0,0,0,931,933,7, - 0,0,0,932,931,1,0,0,0,932,933,1,0,0,0,933,934,1,0,0,0,934,935,5, - 330,0,0,935,195,1,0,0,0,936,938,7,0,0,0,937,936,1,0,0,0,937,938, - 1,0,0,0,938,939,1,0,0,0,939,940,5,331,0,0,940,197,1,0,0,0,941,942, - 7,18,0,0,942,199,1,0,0,0,943,947,3,202,101,0,944,947,3,204,102,0, - 945,947,3,206,103,0,946,943,1,0,0,0,946,944,1,0,0,0,946,945,1,0, - 0,0,947,201,1,0,0,0,948,949,5,212,0,0,949,950,3,192,96,0,950,203, - 1,0,0,0,951,952,5,241,0,0,952,953,3,192,96,0,953,205,1,0,0,0,954, - 955,5,243,0,0,955,956,3,192,96,0,956,207,1,0,0,0,957,958,7,19,0, - 0,958,209,1,0,0,0,959,960,7,20,0,0,960,211,1,0,0,0,961,962,5,125, - 0,0,962,967,3,188,94,0,963,964,5,110,0,0,964,966,3,188,94,0,965, - 963,1,0,0,0,966,969,1,0,0,0,967,965,1,0,0,0,967,968,1,0,0,0,968, - 970,1,0,0,0,969,967,1,0,0,0,970,971,5,126,0,0,971,213,1,0,0,0,972, - 977,3,220,110,0,973,974,5,111,0,0,974,976,3,220,110,0,975,973,1, - 0,0,0,976,979,1,0,0,0,977,975,1,0,0,0,977,978,1,0,0,0,978,215,1, - 0,0,0,979,977,1,0,0,0,980,985,3,222,111,0,981,982,5,111,0,0,982, - 984,3,220,110,0,983,981,1,0,0,0,984,987,1,0,0,0,985,983,1,0,0,0, - 985,986,1,0,0,0,986,217,1,0,0,0,987,985,1,0,0,0,988,993,3,224,112, - 0,989,990,5,111,0,0,990,992,3,224,112,0,991,989,1,0,0,0,992,995, - 1,0,0,0,993,991,1,0,0,0,993,994,1,0,0,0,994,219,1,0,0,0,995,993, - 1,0,0,0,996,998,5,111,0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,999, - 1,0,0,0,999,1007,5,328,0,0,1000,1001,5,131,0,0,1001,1002,3,220,110, - 0,1002,1003,5,131,0,0,1003,1007,1,0,0,0,1004,1007,5,335,0,0,1005, - 1007,3,226,113,0,1006,997,1,0,0,0,1006,1000,1,0,0,0,1006,1004,1, - 0,0,0,1006,1005,1,0,0,0,1007,221,1,0,0,0,1008,1010,5,329,0,0,1009, - 1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0,1011,1012,3,220, - 110,0,1012,223,1,0,0,0,1013,1018,3,220,110,0,1014,1015,5,122,0,0, - 1015,1017,3,220,110,0,1016,1014,1,0,0,0,1017,1020,1,0,0,0,1018,1016, - 1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020,1018,1,0,0,0,1021, - 1023,5,122,0,0,1022,1021,1,0,0,0,1022,1023,1,0,0,0,1023,1037,1,0, - 0,0,1024,1025,5,129,0,0,1025,1026,3,224,112,0,1026,1027,5,129,0, - 0,1027,1037,1,0,0,0,1028,1029,5,130,0,0,1029,1030,3,224,112,0,1030, - 1031,5,130,0,0,1031,1037,1,0,0,0,1032,1033,5,131,0,0,1033,1034,3, - 224,112,0,1034,1035,5,131,0,0,1035,1037,1,0,0,0,1036,1013,1,0,0, - 0,1036,1024,1,0,0,0,1036,1028,1,0,0,0,1036,1032,1,0,0,0,1037,225, - 1,0,0,0,1038,1139,5,31,0,0,1039,1139,3,210,105,0,1040,1139,5,320, - 0,0,1041,1139,3,132,66,0,1042,1139,3,140,70,0,1043,1139,3,208,104, - 0,1044,1139,3,156,78,0,1045,1139,3,178,89,0,1046,1139,3,152,76,0, - 1047,1139,3,180,90,0,1048,1139,5,2,0,0,1049,1139,5,3,0,0,1050,1139, - 5,4,0,0,1051,1139,5,5,0,0,1052,1139,5,6,0,0,1053,1139,5,7,0,0,1054, - 1139,5,8,0,0,1055,1139,5,9,0,0,1056,1139,5,10,0,0,1057,1139,5,11, - 0,0,1058,1139,5,12,0,0,1059,1139,5,13,0,0,1060,1139,5,14,0,0,1061, - 1139,5,15,0,0,1062,1139,5,16,0,0,1063,1139,5,17,0,0,1064,1139,5, - 18,0,0,1065,1139,5,19,0,0,1066,1139,5,20,0,0,1067,1139,5,21,0,0, - 1068,1139,5,22,0,0,1069,1139,5,23,0,0,1070,1139,5,24,0,0,1071,1139, - 5,25,0,0,1072,1139,5,26,0,0,1073,1139,5,29,0,0,1074,1139,5,30,0, - 0,1075,1139,5,32,0,0,1076,1139,5,33,0,0,1077,1139,5,34,0,0,1078, - 1139,5,36,0,0,1079,1139,5,37,0,0,1080,1139,5,38,0,0,1081,1139,5, - 39,0,0,1082,1139,5,40,0,0,1083,1139,5,41,0,0,1084,1139,5,42,0,0, - 1085,1139,5,43,0,0,1086,1139,5,44,0,0,1087,1139,5,45,0,0,1088,1139, - 5,46,0,0,1089,1139,5,47,0,0,1090,1139,5,48,0,0,1091,1139,5,49,0, - 0,1092,1139,5,50,0,0,1093,1139,5,51,0,0,1094,1139,5,52,0,0,1095, - 1139,5,53,0,0,1096,1139,5,54,0,0,1097,1139,5,55,0,0,1098,1139,5, - 56,0,0,1099,1139,5,57,0,0,1100,1139,5,58,0,0,1101,1139,5,135,0,0, - 1102,1139,5,136,0,0,1103,1139,5,137,0,0,1104,1139,5,138,0,0,1105, - 1139,5,139,0,0,1106,1139,5,140,0,0,1107,1139,5,141,0,0,1108,1139, - 5,142,0,0,1109,1139,5,143,0,0,1110,1139,5,144,0,0,1111,1139,5,145, - 0,0,1112,1139,5,146,0,0,1113,1139,5,147,0,0,1114,1139,5,148,0,0, - 1115,1139,5,149,0,0,1116,1139,5,150,0,0,1117,1139,5,151,0,0,1118, - 1139,5,152,0,0,1119,1139,5,153,0,0,1120,1139,5,154,0,0,1121,1139, - 5,155,0,0,1122,1139,5,156,0,0,1123,1139,5,157,0,0,1124,1139,5,158, - 0,0,1125,1139,5,159,0,0,1126,1139,5,160,0,0,1127,1139,5,161,0,0, - 1128,1139,5,162,0,0,1129,1139,5,163,0,0,1130,1139,5,164,0,0,1131, - 1139,5,165,0,0,1132,1139,5,166,0,0,1133,1139,5,167,0,0,1134,1139, - 5,168,0,0,1135,1139,5,169,0,0,1136,1139,5,170,0,0,1137,1139,5,171, - 0,0,1138,1038,1,0,0,0,1138,1039,1,0,0,0,1138,1040,1,0,0,0,1138,1041, - 1,0,0,0,1138,1042,1,0,0,0,1138,1043,1,0,0,0,1138,1044,1,0,0,0,1138, - 1045,1,0,0,0,1138,1046,1,0,0,0,1138,1047,1,0,0,0,1138,1048,1,0,0, - 0,1138,1049,1,0,0,0,1138,1050,1,0,0,0,1138,1051,1,0,0,0,1138,1052, - 1,0,0,0,1138,1053,1,0,0,0,1138,1054,1,0,0,0,1138,1055,1,0,0,0,1138, - 1056,1,0,0,0,1138,1057,1,0,0,0,1138,1058,1,0,0,0,1138,1059,1,0,0, - 0,1138,1060,1,0,0,0,1138,1061,1,0,0,0,1138,1062,1,0,0,0,1138,1063, - 1,0,0,0,1138,1064,1,0,0,0,1138,1065,1,0,0,0,1138,1066,1,0,0,0,1138, - 1067,1,0,0,0,1138,1068,1,0,0,0,1138,1069,1,0,0,0,1138,1070,1,0,0, - 0,1138,1071,1,0,0,0,1138,1072,1,0,0,0,1138,1073,1,0,0,0,1138,1074, - 1,0,0,0,1138,1075,1,0,0,0,1138,1076,1,0,0,0,1138,1077,1,0,0,0,1138, - 1078,1,0,0,0,1138,1079,1,0,0,0,1138,1080,1,0,0,0,1138,1081,1,0,0, - 0,1138,1082,1,0,0,0,1138,1083,1,0,0,0,1138,1084,1,0,0,0,1138,1085, - 1,0,0,0,1138,1086,1,0,0,0,1138,1087,1,0,0,0,1138,1088,1,0,0,0,1138, - 1089,1,0,0,0,1138,1090,1,0,0,0,1138,1091,1,0,0,0,1138,1092,1,0,0, - 0,1138,1093,1,0,0,0,1138,1094,1,0,0,0,1138,1095,1,0,0,0,1138,1096, - 1,0,0,0,1138,1097,1,0,0,0,1138,1098,1,0,0,0,1138,1099,1,0,0,0,1138, - 1100,1,0,0,0,1138,1101,1,0,0,0,1138,1102,1,0,0,0,1138,1103,1,0,0, - 0,1138,1104,1,0,0,0,1138,1105,1,0,0,0,1138,1106,1,0,0,0,1138,1107, - 1,0,0,0,1138,1108,1,0,0,0,1138,1109,1,0,0,0,1138,1110,1,0,0,0,1138, - 1111,1,0,0,0,1138,1112,1,0,0,0,1138,1113,1,0,0,0,1138,1114,1,0,0, - 0,1138,1115,1,0,0,0,1138,1116,1,0,0,0,1138,1117,1,0,0,0,1138,1118, - 1,0,0,0,1138,1119,1,0,0,0,1138,1120,1,0,0,0,1138,1121,1,0,0,0,1138, - 1122,1,0,0,0,1138,1123,1,0,0,0,1138,1124,1,0,0,0,1138,1125,1,0,0, - 0,1138,1126,1,0,0,0,1138,1127,1,0,0,0,1138,1128,1,0,0,0,1138,1129, - 1,0,0,0,1138,1130,1,0,0,0,1138,1131,1,0,0,0,1138,1132,1,0,0,0,1138, - 1133,1,0,0,0,1138,1134,1,0,0,0,1138,1135,1,0,0,0,1138,1136,1,0,0, - 0,1138,1137,1,0,0,0,1139,227,1,0,0,0,83,229,242,248,266,269,284, + 31,0,484,478,1,0,0,0,484,481,1,0,0,0,485,61,1,0,0,0,486,487,3,108, + 54,0,487,63,1,0,0,0,488,489,3,122,61,0,489,490,5,27,0,0,490,491, + 3,122,61,0,491,65,1,0,0,0,492,493,5,28,0,0,493,494,3,112,56,0,494, + 67,1,0,0,0,495,496,5,28,0,0,496,505,3,112,56,0,497,498,5,28,0,0, + 498,505,3,70,35,0,499,500,5,28,0,0,500,501,3,70,35,0,501,502,5,110, + 0,0,502,503,3,112,56,0,503,505,1,0,0,0,504,495,1,0,0,0,504,497,1, + 0,0,0,504,499,1,0,0,0,505,69,1,0,0,0,506,509,3,72,36,0,507,508,5, + 27,0,0,508,510,3,214,107,0,509,507,1,0,0,0,509,510,1,0,0,0,510,71, + 1,0,0,0,511,512,5,320,0,0,512,513,5,125,0,0,513,514,3,120,60,0,514, + 515,5,110,0,0,515,517,3,188,94,0,516,518,3,210,105,0,517,516,1,0, + 0,0,517,518,1,0,0,0,518,519,1,0,0,0,519,520,5,126,0,0,520,73,1,0, + 0,0,521,526,3,116,58,0,522,523,5,110,0,0,523,525,3,116,58,0,524, + 522,1,0,0,0,525,528,1,0,0,0,526,524,1,0,0,0,526,527,1,0,0,0,527, + 75,1,0,0,0,528,526,1,0,0,0,529,530,3,120,60,0,530,531,5,112,0,0, + 531,532,3,88,44,0,532,77,1,0,0,0,533,536,3,80,40,0,534,535,5,27, + 0,0,535,537,3,122,61,0,536,534,1,0,0,0,536,537,1,0,0,0,537,79,1, + 0,0,0,538,539,3,82,41,0,539,540,5,125,0,0,540,541,3,94,47,0,541, + 542,5,126,0,0,542,554,1,0,0,0,543,544,5,136,0,0,544,545,5,125,0, + 0,545,554,5,126,0,0,546,547,7,2,0,0,547,548,5,125,0,0,548,549,3, + 94,47,0,549,550,5,126,0,0,550,554,1,0,0,0,551,554,3,86,43,0,552, + 554,3,84,42,0,553,538,1,0,0,0,553,543,1,0,0,0,553,546,1,0,0,0,553, + 551,1,0,0,0,553,552,1,0,0,0,554,81,1,0,0,0,555,556,7,3,0,0,556,83, + 1,0,0,0,557,558,5,155,0,0,558,559,5,125,0,0,559,562,3,120,60,0,560, + 561,5,110,0,0,561,563,3,194,97,0,562,560,1,0,0,0,562,563,1,0,0,0, + 563,564,1,0,0,0,564,565,5,126,0,0,565,85,1,0,0,0,566,567,5,154,0, + 0,567,568,5,114,0,0,568,569,3,194,97,0,569,570,5,113,0,0,570,571, + 5,125,0,0,571,572,3,120,60,0,572,573,5,126,0,0,573,87,1,0,0,0,574, + 578,3,90,45,0,575,578,3,92,46,0,576,578,3,94,47,0,577,574,1,0,0, + 0,577,575,1,0,0,0,577,576,1,0,0,0,578,89,1,0,0,0,579,580,6,45,-1, + 0,580,586,3,92,46,0,581,582,5,61,0,0,582,586,3,90,45,6,583,586,3, + 100,50,0,584,586,3,102,51,0,585,579,1,0,0,0,585,581,1,0,0,0,585, + 583,1,0,0,0,585,584,1,0,0,0,586,600,1,0,0,0,587,588,10,5,0,0,588, + 589,5,62,0,0,589,599,3,90,45,6,590,592,10,4,0,0,591,593,5,63,0,0, + 592,591,1,0,0,0,592,593,1,0,0,0,593,594,1,0,0,0,594,599,3,90,45, + 5,595,596,10,3,0,0,596,597,5,64,0,0,597,599,3,90,45,4,598,587,1, + 0,0,0,598,590,1,0,0,0,598,595,1,0,0,0,599,602,1,0,0,0,600,598,1, + 0,0,0,600,601,1,0,0,0,601,91,1,0,0,0,602,600,1,0,0,0,603,604,3,94, + 47,0,604,605,3,182,91,0,605,606,3,94,47,0,606,612,1,0,0,0,607,608, + 3,94,47,0,608,609,5,60,0,0,609,610,3,212,106,0,610,612,1,0,0,0,611, + 603,1,0,0,0,611,607,1,0,0,0,612,93,1,0,0,0,613,614,6,47,-1,0,614, + 624,3,96,48,0,615,624,3,98,49,0,616,624,3,162,81,0,617,624,3,158, + 79,0,618,624,3,170,85,0,619,620,5,125,0,0,620,621,3,94,47,0,621, + 622,5,126,0,0,622,624,1,0,0,0,623,613,1,0,0,0,623,615,1,0,0,0,623, + 616,1,0,0,0,623,617,1,0,0,0,623,618,1,0,0,0,623,619,1,0,0,0,624, + 633,1,0,0,0,625,626,10,8,0,0,626,627,7,4,0,0,627,632,3,94,47,9,628, + 629,10,7,0,0,629,630,7,0,0,0,630,632,3,94,47,8,631,625,1,0,0,0,631, + 628,1,0,0,0,632,635,1,0,0,0,633,631,1,0,0,0,633,634,1,0,0,0,634, + 95,1,0,0,0,635,633,1,0,0,0,636,641,3,124,62,0,637,641,3,126,63,0, + 638,641,3,120,60,0,639,641,3,188,94,0,640,636,1,0,0,0,640,637,1, + 0,0,0,640,638,1,0,0,0,640,639,1,0,0,0,641,97,1,0,0,0,642,643,3,180, + 90,0,643,644,5,125,0,0,644,645,3,136,68,0,645,646,5,60,0,0,646,647, + 3,136,68,0,647,648,5,126,0,0,648,99,1,0,0,0,649,650,3,128,64,0,650, + 101,1,0,0,0,651,654,3,104,52,0,652,654,3,106,53,0,653,651,1,0,0, + 0,653,652,1,0,0,0,654,103,1,0,0,0,655,656,3,184,92,0,656,657,5,125, + 0,0,657,658,3,146,73,0,658,659,5,110,0,0,659,664,3,148,74,0,660, + 661,5,110,0,0,661,663,3,138,69,0,662,660,1,0,0,0,663,666,1,0,0,0, + 664,662,1,0,0,0,664,665,1,0,0,0,665,667,1,0,0,0,666,664,1,0,0,0, + 667,668,5,126,0,0,668,105,1,0,0,0,669,670,3,186,93,0,670,671,5,125, + 0,0,671,672,5,127,0,0,672,677,3,142,71,0,673,674,5,110,0,0,674,676, + 3,142,71,0,675,673,1,0,0,0,676,679,1,0,0,0,677,675,1,0,0,0,677,678, + 1,0,0,0,678,680,1,0,0,0,679,677,1,0,0,0,680,681,5,128,0,0,681,682, + 5,110,0,0,682,687,3,148,74,0,683,684,5,110,0,0,684,686,3,138,69, + 0,685,683,1,0,0,0,686,689,1,0,0,0,687,685,1,0,0,0,687,688,1,0,0, + 0,688,690,1,0,0,0,689,687,1,0,0,0,690,691,5,126,0,0,691,107,1,0, + 0,0,692,695,3,216,108,0,693,695,5,332,0,0,694,692,1,0,0,0,694,693, + 1,0,0,0,695,109,1,0,0,0,696,697,3,214,107,0,697,698,5,125,0,0,698, + 699,3,134,67,0,699,700,5,126,0,0,700,111,1,0,0,0,701,706,3,120,60, + 0,702,703,5,110,0,0,703,705,3,120,60,0,704,702,1,0,0,0,705,708,1, + 0,0,0,706,704,1,0,0,0,706,707,1,0,0,0,707,113,1,0,0,0,708,706,1, + 0,0,0,709,714,3,122,61,0,710,711,5,110,0,0,711,713,3,122,61,0,712, + 710,1,0,0,0,713,716,1,0,0,0,714,712,1,0,0,0,714,715,1,0,0,0,715, + 115,1,0,0,0,716,714,1,0,0,0,717,719,7,0,0,0,718,717,1,0,0,0,718, + 719,1,0,0,0,719,720,1,0,0,0,720,721,3,118,59,0,721,117,1,0,0,0,722, + 744,3,120,60,0,723,724,5,35,0,0,724,725,5,125,0,0,725,726,3,120, + 60,0,726,727,5,126,0,0,727,744,1,0,0,0,728,729,5,36,0,0,729,730, + 5,125,0,0,730,731,3,120,60,0,731,732,5,126,0,0,732,744,1,0,0,0,733, + 734,5,37,0,0,734,735,5,125,0,0,735,736,3,120,60,0,736,737,5,126, + 0,0,737,744,1,0,0,0,738,739,5,38,0,0,739,740,5,125,0,0,740,741,3, + 120,60,0,741,742,5,126,0,0,742,744,1,0,0,0,743,722,1,0,0,0,743,723, + 1,0,0,0,743,728,1,0,0,0,743,733,1,0,0,0,743,738,1,0,0,0,744,119, + 1,0,0,0,745,746,3,214,107,0,746,121,1,0,0,0,747,748,3,218,109,0, + 748,123,1,0,0,0,749,750,3,132,66,0,750,751,5,125,0,0,751,752,3,134, + 67,0,752,753,5,126,0,0,753,125,1,0,0,0,754,755,5,274,0,0,755,756, + 5,125,0,0,756,757,3,88,44,0,757,758,5,27,0,0,758,759,3,130,65,0, + 759,760,5,126,0,0,760,127,1,0,0,0,761,762,3,174,87,0,762,763,5,125, + 0,0,763,764,3,134,67,0,764,765,5,126,0,0,765,129,1,0,0,0,766,777, + 5,212,0,0,767,777,5,241,0,0,768,777,5,243,0,0,769,777,5,102,0,0, + 770,777,5,103,0,0,771,777,5,104,0,0,772,777,5,105,0,0,773,777,5, + 106,0,0,774,777,5,107,0,0,775,777,5,108,0,0,776,766,1,0,0,0,776, + 767,1,0,0,0,776,768,1,0,0,0,776,769,1,0,0,0,776,770,1,0,0,0,776, + 771,1,0,0,0,776,772,1,0,0,0,776,773,1,0,0,0,776,774,1,0,0,0,776, + 775,1,0,0,0,777,131,1,0,0,0,778,785,3,152,76,0,779,785,3,156,78, + 0,780,785,3,178,89,0,781,785,3,174,87,0,782,785,3,176,88,0,783,785, + 3,180,90,0,784,778,1,0,0,0,784,779,1,0,0,0,784,780,1,0,0,0,784,781, + 1,0,0,0,784,782,1,0,0,0,784,783,1,0,0,0,785,133,1,0,0,0,786,791, + 3,136,68,0,787,788,5,110,0,0,788,790,3,136,68,0,789,787,1,0,0,0, + 790,793,1,0,0,0,791,789,1,0,0,0,791,792,1,0,0,0,792,795,1,0,0,0, + 793,791,1,0,0,0,794,786,1,0,0,0,794,795,1,0,0,0,795,135,1,0,0,0, + 796,797,3,220,110,0,797,798,5,112,0,0,798,800,1,0,0,0,799,796,1, + 0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,802,3,94,47,0,802,137, + 1,0,0,0,803,804,3,140,70,0,804,805,5,112,0,0,805,806,3,150,75,0, + 806,139,1,0,0,0,807,808,7,5,0,0,808,141,1,0,0,0,809,818,3,146,73, + 0,810,811,3,146,73,0,811,812,3,144,72,0,812,818,1,0,0,0,813,814, + 3,146,73,0,814,815,5,134,0,0,815,816,3,144,72,0,816,818,1,0,0,0, + 817,809,1,0,0,0,817,810,1,0,0,0,817,813,1,0,0,0,818,143,1,0,0,0, + 819,822,3,194,97,0,820,822,3,196,98,0,821,819,1,0,0,0,821,820,1, + 0,0,0,822,145,1,0,0,0,823,826,3,214,107,0,824,826,3,192,96,0,825, + 823,1,0,0,0,825,824,1,0,0,0,826,147,1,0,0,0,827,828,3,150,75,0,828, + 149,1,0,0,0,829,832,3,214,107,0,830,832,3,188,94,0,831,829,1,0,0, + 0,831,830,1,0,0,0,832,151,1,0,0,0,833,857,5,172,0,0,834,857,5,173, + 0,0,835,857,5,174,0,0,836,857,5,175,0,0,837,857,5,176,0,0,838,857, + 5,177,0,0,839,857,5,178,0,0,840,857,5,179,0,0,841,857,5,180,0,0, + 842,857,5,181,0,0,843,857,5,182,0,0,844,857,5,183,0,0,845,857,5, + 184,0,0,846,857,5,185,0,0,847,857,5,186,0,0,848,857,5,188,0,0,849, + 857,5,189,0,0,850,857,5,190,0,0,851,857,5,191,0,0,852,857,5,192, + 0,0,853,857,5,193,0,0,854,857,5,194,0,0,855,857,3,154,77,0,856,833, + 1,0,0,0,856,834,1,0,0,0,856,835,1,0,0,0,856,836,1,0,0,0,856,837, + 1,0,0,0,856,838,1,0,0,0,856,839,1,0,0,0,856,840,1,0,0,0,856,841, + 1,0,0,0,856,842,1,0,0,0,856,843,1,0,0,0,856,844,1,0,0,0,856,845, + 1,0,0,0,856,846,1,0,0,0,856,847,1,0,0,0,856,848,1,0,0,0,856,849, + 1,0,0,0,856,850,1,0,0,0,856,851,1,0,0,0,856,852,1,0,0,0,856,853, + 1,0,0,0,856,854,1,0,0,0,856,855,1,0,0,0,857,153,1,0,0,0,858,859, + 7,6,0,0,859,155,1,0,0,0,860,861,7,7,0,0,861,157,1,0,0,0,862,863, + 5,226,0,0,863,864,5,125,0,0,864,865,3,160,80,0,865,866,5,110,0,0, + 866,867,3,136,68,0,867,868,5,126,0,0,868,159,1,0,0,0,869,870,7,8, + 0,0,870,161,1,0,0,0,871,872,5,223,0,0,872,873,5,125,0,0,873,874, + 3,168,84,0,874,875,5,5,0,0,875,876,3,136,68,0,876,877,5,126,0,0, + 877,163,1,0,0,0,878,879,7,9,0,0,879,165,1,0,0,0,880,881,7,10,0,0, + 881,167,1,0,0,0,882,885,3,164,82,0,883,885,3,166,83,0,884,882,1, + 0,0,0,884,883,1,0,0,0,885,169,1,0,0,0,886,887,3,172,86,0,887,888, + 5,125,0,0,888,889,3,164,82,0,889,890,5,110,0,0,890,891,3,136,68, + 0,891,892,5,110,0,0,892,893,3,136,68,0,893,894,5,126,0,0,894,171, + 1,0,0,0,895,896,7,11,0,0,896,173,1,0,0,0,897,898,7,12,0,0,898,175, + 1,0,0,0,899,900,5,281,0,0,900,177,1,0,0,0,901,902,7,13,0,0,902,179, + 1,0,0,0,903,904,5,187,0,0,904,181,1,0,0,0,905,906,7,14,0,0,906,183, + 1,0,0,0,907,908,7,15,0,0,908,185,1,0,0,0,909,910,7,16,0,0,910,187, + 1,0,0,0,911,918,3,190,95,0,912,918,3,192,96,0,913,918,3,194,97,0, + 914,918,3,196,98,0,915,918,3,198,99,0,916,918,3,200,100,0,917,911, + 1,0,0,0,917,912,1,0,0,0,917,913,1,0,0,0,917,914,1,0,0,0,917,915, + 1,0,0,0,917,916,1,0,0,0,918,189,1,0,0,0,919,920,5,81,0,0,920,921, + 3,94,47,0,921,922,3,208,104,0,922,191,1,0,0,0,923,924,7,17,0,0,924, + 193,1,0,0,0,925,927,7,0,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927, + 928,1,0,0,0,928,929,5,330,0,0,929,195,1,0,0,0,930,932,7,0,0,0,931, + 930,1,0,0,0,931,932,1,0,0,0,932,933,1,0,0,0,933,934,5,331,0,0,934, + 197,1,0,0,0,935,936,7,18,0,0,936,199,1,0,0,0,937,941,3,202,101,0, + 938,941,3,204,102,0,939,941,3,206,103,0,940,937,1,0,0,0,940,938, + 1,0,0,0,940,939,1,0,0,0,941,201,1,0,0,0,942,943,5,212,0,0,943,944, + 3,192,96,0,944,203,1,0,0,0,945,946,5,241,0,0,946,947,3,192,96,0, + 947,205,1,0,0,0,948,949,5,243,0,0,949,950,3,192,96,0,950,207,1,0, + 0,0,951,952,7,19,0,0,952,209,1,0,0,0,953,954,7,20,0,0,954,211,1, + 0,0,0,955,956,5,125,0,0,956,961,3,188,94,0,957,958,5,110,0,0,958, + 960,3,188,94,0,959,957,1,0,0,0,960,963,1,0,0,0,961,959,1,0,0,0,961, + 962,1,0,0,0,962,964,1,0,0,0,963,961,1,0,0,0,964,965,5,126,0,0,965, + 213,1,0,0,0,966,967,5,328,0,0,967,215,1,0,0,0,968,969,5,328,0,0, + 969,217,1,0,0,0,970,975,3,224,112,0,971,972,5,111,0,0,972,974,3, + 224,112,0,973,971,1,0,0,0,974,977,1,0,0,0,975,973,1,0,0,0,975,976, + 1,0,0,0,976,219,1,0,0,0,977,975,1,0,0,0,978,980,5,111,0,0,979,978, + 1,0,0,0,979,980,1,0,0,0,980,981,1,0,0,0,981,989,5,328,0,0,982,983, + 5,131,0,0,983,984,3,220,110,0,984,985,5,131,0,0,985,989,1,0,0,0, + 986,989,5,335,0,0,987,989,3,226,113,0,988,979,1,0,0,0,988,982,1, + 0,0,0,988,986,1,0,0,0,988,987,1,0,0,0,989,221,1,0,0,0,990,992,5, + 329,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,994, + 3,220,110,0,994,223,1,0,0,0,995,1000,3,220,110,0,996,997,5,122,0, + 0,997,999,3,220,110,0,998,996,1,0,0,0,999,1002,1,0,0,0,1000,998, + 1,0,0,0,1000,1001,1,0,0,0,1001,1004,1,0,0,0,1002,1000,1,0,0,0,1003, + 1005,5,122,0,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1019,1,0, + 0,0,1006,1007,5,129,0,0,1007,1008,3,224,112,0,1008,1009,5,129,0, + 0,1009,1019,1,0,0,0,1010,1011,5,130,0,0,1011,1012,3,224,112,0,1012, + 1013,5,130,0,0,1013,1019,1,0,0,0,1014,1015,5,131,0,0,1015,1016,3, + 224,112,0,1016,1017,5,131,0,0,1017,1019,1,0,0,0,1018,995,1,0,0,0, + 1018,1006,1,0,0,0,1018,1010,1,0,0,0,1018,1014,1,0,0,0,1019,225,1, + 0,0,0,1020,1121,5,31,0,0,1021,1121,3,210,105,0,1022,1121,5,320,0, + 0,1023,1121,3,132,66,0,1024,1121,3,140,70,0,1025,1121,3,208,104, + 0,1026,1121,3,156,78,0,1027,1121,3,178,89,0,1028,1121,3,152,76,0, + 1029,1121,3,180,90,0,1030,1121,5,2,0,0,1031,1121,5,3,0,0,1032,1121, + 5,4,0,0,1033,1121,5,5,0,0,1034,1121,5,6,0,0,1035,1121,5,7,0,0,1036, + 1121,5,8,0,0,1037,1121,5,9,0,0,1038,1121,5,10,0,0,1039,1121,5,11, + 0,0,1040,1121,5,12,0,0,1041,1121,5,13,0,0,1042,1121,5,14,0,0,1043, + 1121,5,15,0,0,1044,1121,5,16,0,0,1045,1121,5,17,0,0,1046,1121,5, + 18,0,0,1047,1121,5,19,0,0,1048,1121,5,20,0,0,1049,1121,5,21,0,0, + 1050,1121,5,22,0,0,1051,1121,5,23,0,0,1052,1121,5,24,0,0,1053,1121, + 5,25,0,0,1054,1121,5,26,0,0,1055,1121,5,29,0,0,1056,1121,5,30,0, + 0,1057,1121,5,32,0,0,1058,1121,5,33,0,0,1059,1121,5,34,0,0,1060, + 1121,5,36,0,0,1061,1121,5,37,0,0,1062,1121,5,38,0,0,1063,1121,5, + 39,0,0,1064,1121,5,40,0,0,1065,1121,5,41,0,0,1066,1121,5,42,0,0, + 1067,1121,5,43,0,0,1068,1121,5,44,0,0,1069,1121,5,45,0,0,1070,1121, + 5,46,0,0,1071,1121,5,47,0,0,1072,1121,5,48,0,0,1073,1121,5,49,0, + 0,1074,1121,5,50,0,0,1075,1121,5,51,0,0,1076,1121,5,52,0,0,1077, + 1121,5,53,0,0,1078,1121,5,54,0,0,1079,1121,5,55,0,0,1080,1121,5, + 56,0,0,1081,1121,5,57,0,0,1082,1121,5,58,0,0,1083,1121,5,135,0,0, + 1084,1121,5,136,0,0,1085,1121,5,137,0,0,1086,1121,5,138,0,0,1087, + 1121,5,139,0,0,1088,1121,5,140,0,0,1089,1121,5,141,0,0,1090,1121, + 5,142,0,0,1091,1121,5,143,0,0,1092,1121,5,144,0,0,1093,1121,5,145, + 0,0,1094,1121,5,146,0,0,1095,1121,5,147,0,0,1096,1121,5,148,0,0, + 1097,1121,5,149,0,0,1098,1121,5,150,0,0,1099,1121,5,151,0,0,1100, + 1121,5,152,0,0,1101,1121,5,153,0,0,1102,1121,5,154,0,0,1103,1121, + 5,155,0,0,1104,1121,5,156,0,0,1105,1121,5,157,0,0,1106,1121,5,158, + 0,0,1107,1121,5,159,0,0,1108,1121,5,160,0,0,1109,1121,5,161,0,0, + 1110,1121,5,162,0,0,1111,1121,5,163,0,0,1112,1121,5,164,0,0,1113, + 1121,5,165,0,0,1114,1121,5,166,0,0,1115,1121,5,167,0,0,1116,1121, + 5,168,0,0,1117,1121,5,169,0,0,1118,1121,5,170,0,0,1119,1121,5,171, + 0,0,1120,1020,1,0,0,0,1120,1021,1,0,0,0,1120,1022,1,0,0,0,1120,1023, + 1,0,0,0,1120,1024,1,0,0,0,1120,1025,1,0,0,0,1120,1026,1,0,0,0,1120, + 1027,1,0,0,0,1120,1028,1,0,0,0,1120,1029,1,0,0,0,1120,1030,1,0,0, + 0,1120,1031,1,0,0,0,1120,1032,1,0,0,0,1120,1033,1,0,0,0,1120,1034, + 1,0,0,0,1120,1035,1,0,0,0,1120,1036,1,0,0,0,1120,1037,1,0,0,0,1120, + 1038,1,0,0,0,1120,1039,1,0,0,0,1120,1040,1,0,0,0,1120,1041,1,0,0, + 0,1120,1042,1,0,0,0,1120,1043,1,0,0,0,1120,1044,1,0,0,0,1120,1045, + 1,0,0,0,1120,1046,1,0,0,0,1120,1047,1,0,0,0,1120,1048,1,0,0,0,1120, + 1049,1,0,0,0,1120,1050,1,0,0,0,1120,1051,1,0,0,0,1120,1052,1,0,0, + 0,1120,1053,1,0,0,0,1120,1054,1,0,0,0,1120,1055,1,0,0,0,1120,1056, + 1,0,0,0,1120,1057,1,0,0,0,1120,1058,1,0,0,0,1120,1059,1,0,0,0,1120, + 1060,1,0,0,0,1120,1061,1,0,0,0,1120,1062,1,0,0,0,1120,1063,1,0,0, + 0,1120,1064,1,0,0,0,1120,1065,1,0,0,0,1120,1066,1,0,0,0,1120,1067, + 1,0,0,0,1120,1068,1,0,0,0,1120,1069,1,0,0,0,1120,1070,1,0,0,0,1120, + 1071,1,0,0,0,1120,1072,1,0,0,0,1120,1073,1,0,0,0,1120,1074,1,0,0, + 0,1120,1075,1,0,0,0,1120,1076,1,0,0,0,1120,1077,1,0,0,0,1120,1078, + 1,0,0,0,1120,1079,1,0,0,0,1120,1080,1,0,0,0,1120,1081,1,0,0,0,1120, + 1082,1,0,0,0,1120,1083,1,0,0,0,1120,1084,1,0,0,0,1120,1085,1,0,0, + 0,1120,1086,1,0,0,0,1120,1087,1,0,0,0,1120,1088,1,0,0,0,1120,1089, + 1,0,0,0,1120,1090,1,0,0,0,1120,1091,1,0,0,0,1120,1092,1,0,0,0,1120, + 1093,1,0,0,0,1120,1094,1,0,0,0,1120,1095,1,0,0,0,1120,1096,1,0,0, + 0,1120,1097,1,0,0,0,1120,1098,1,0,0,0,1120,1099,1,0,0,0,1120,1100, + 1,0,0,0,1120,1101,1,0,0,0,1120,1102,1,0,0,0,1120,1103,1,0,0,0,1120, + 1104,1,0,0,0,1120,1105,1,0,0,0,1120,1106,1,0,0,0,1120,1107,1,0,0, + 0,1120,1108,1,0,0,0,1120,1109,1,0,0,0,1120,1110,1,0,0,0,1120,1111, + 1,0,0,0,1120,1112,1,0,0,0,1120,1113,1,0,0,0,1120,1114,1,0,0,0,1120, + 1115,1,0,0,0,1120,1116,1,0,0,0,1120,1117,1,0,0,0,1120,1118,1,0,0, + 0,1120,1119,1,0,0,0,1121,227,1,0,0,0,80,229,242,248,266,269,284, 294,301,306,311,318,322,327,331,337,342,353,358,362,366,370,375, - 389,400,408,420,426,465,471,484,491,510,515,523,532,542,559,568, - 583,591,598,604,606,617,629,637,639,646,659,670,683,693,700,712, - 720,724,749,782,790,797,800,805,823,827,831,837,862,890,923,932, - 937,946,967,977,985,993,997,1006,1009,1018,1022,1036,1138 + 389,400,408,420,426,465,471,484,504,509,517,526,536,553,562,577, + 585,592,598,600,611,623,631,633,640,653,664,677,687,694,706,714, + 718,743,776,784,791,794,799,817,821,825,831,856,884,917,926,931, + 940,961,975,979,988,991,1000,1004,1018,1120 ]; private static __ATN: antlr.ATN; @@ -8923,23 +8338,8 @@ export class TableSourceClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableSource(): TableSourceContext[]; - public tableSource(i: number): TableSourceContext | null; - public tableSource(i?: number): TableSourceContext[] | TableSourceContext | null { - if (i === undefined) { - return this.getRuleContexts(TableSourceContext); - } - - return this.getRuleContext(i, TableSourceContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.COMMA); - } else { - return this.getToken(OpenSearchPPLParser.COMMA, i); - } + public tableSource(): TableSourceContext { + return this.getRuleContext(0, TableSourceContext)!; } public override get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableSourceClause; @@ -12100,39 +11500,15 @@ export class QualifiedNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public ID(): antlr.TerminalNode { + return this.getToken(OpenSearchPPLParser.ID, 0)!; + } public override get ruleIndex(): number { return OpenSearchPPLParser.RULE_qualifiedName; } - public override copyFrom(ctx: QualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsQualifiedNameContext extends QualifiedNameContext { - public constructor(ctx: QualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public ident(): IdentContext[]; - public ident(i: number): IdentContext | null; - public ident(i?: number): IdentContext[] | IdentContext | null { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } - - return this.getRuleContext(i, IdentContext); - } - public DOT(): antlr.TerminalNode[]; - public DOT(i: number): antlr.TerminalNode | null; - public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } public override accept(visitor: OpenSearchPPLParserVisitor): Result | null { - if (visitor.visitIdentsAsQualifiedName) { - return visitor.visitIdentsAsQualifiedName(this); + if (visitor.visitQualifiedName) { + return visitor.visitQualifiedName(this); } else { return visitor.visitChildren(this); } @@ -12144,42 +11520,15 @@ export class TableQualifiedNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public ID(): antlr.TerminalNode { + return this.getToken(OpenSearchPPLParser.ID, 0)!; + } public override get ruleIndex(): number { return OpenSearchPPLParser.RULE_tableQualifiedName; } - public override copyFrom(ctx: TableQualifiedNameContext): void { - super.copyFrom(ctx); - } -} -export class IdentsAsTableQualifiedNameContext extends TableQualifiedNameContext { - public constructor(ctx: TableQualifiedNameContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public tableIdent(): TableIdentContext { - return this.getRuleContext(0, TableIdentContext)!; - } - public DOT(): antlr.TerminalNode[]; - public DOT(i: number): antlr.TerminalNode | null; - public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(OpenSearchPPLParser.DOT); - } else { - return this.getToken(OpenSearchPPLParser.DOT, i); - } - } - public ident(): IdentContext[]; - public ident(i: number): IdentContext | null; - public ident(i?: number): IdentContext[] | IdentContext | null { - if (i === undefined) { - return this.getRuleContexts(IdentContext); - } - - return this.getRuleContext(i, IdentContext); - } public override accept(visitor: OpenSearchPPLParserVisitor): Result | null { - if (visitor.visitIdentsAsTableQualifiedName) { - return visitor.visitIdentsAsTableQualifiedName(this); + if (visitor.visitTableQualifiedName) { + return visitor.visitTableQualifiedName(this); } else { return visitor.visitChildren(this); } diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts index ea9de0d567d0..d795e6959cb4 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts @@ -127,8 +127,8 @@ import { TimestampLiteralContext } from "./OpenSearchPPLParser.js"; import { IntervalUnitContext } from "./OpenSearchPPLParser.js"; import { TimespanUnitContext } from "./OpenSearchPPLParser.js"; import { ValueListContext } from "./OpenSearchPPLParser.js"; -import { IdentsAsQualifiedNameContext } from "./OpenSearchPPLParser.js"; -import { IdentsAsTableQualifiedNameContext } from "./OpenSearchPPLParser.js"; +import { QualifiedNameContext } from "./OpenSearchPPLParser.js"; +import { TableQualifiedNameContext } from "./OpenSearchPPLParser.js"; import { IdentsAsWildcardQualifiedNameContext } from "./OpenSearchPPLParser.js"; import { IdentContext } from "./OpenSearchPPLParser.js"; import { TableIdentContext } from "./OpenSearchPPLParser.js"; @@ -911,19 +911,17 @@ export class OpenSearchPPLParserVisitor extends AbstractParseTreeVisitor */ visitValueList?: (ctx: ValueListContext) => Result; /** - * Visit a parse tree produced by the `identsAsQualifiedName` - * labeled alternative in `OpenSearchPPLParser.qualifiedName`. + * Visit a parse tree produced by `OpenSearchPPLParser.qualifiedName`. * @param ctx the parse tree * @return the visitor result */ - visitIdentsAsQualifiedName?: (ctx: IdentsAsQualifiedNameContext) => Result; + visitQualifiedName?: (ctx: QualifiedNameContext) => Result; /** - * Visit a parse tree produced by the `identsAsTableQualifiedName` - * labeled alternative in `OpenSearchPPLParser.tableQualifiedName`. + * Visit a parse tree produced by `OpenSearchPPLParser.tableQualifiedName`. * @param ctx the parse tree * @return the visitor result */ - visitIdentsAsTableQualifiedName?: (ctx: IdentsAsTableQualifiedNameContext) => Result; + visitTableQualifiedName?: (ctx: TableQualifiedNameContext) => Result; /** * Visit a parse tree produced by the `identsAsWildcardQualifiedName` * labeled alternative in `OpenSearchPPLParser.wcQualifiedName`. diff --git a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 index e8c27eb4674f..85a591e7d70c 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 +++ b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 @@ -173,7 +173,7 @@ fromClause ; tableSourceClause - : tableSource (COMMA tableSource)* + : tableSource // (COMMA tableSource)* ; renameClasue @@ -775,11 +775,11 @@ valueList ; qualifiedName - : ident (DOT ident)* # identsAsQualifiedName + : ID // (DOT ident)* # identsAsQualifiedName ; tableQualifiedName - : tableIdent (DOT ident)* # identsAsTableQualifiedName + : ID // tableIdent (DOT ident)* # identsAsTableQualifiedName ; wcQualifiedName diff --git a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts index 5883b32e08df..c08496f14012 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts @@ -18,7 +18,8 @@ import { OpenSearchPPLParser } from './.generated/OpenSearchPPLParser'; // These are keywords that we do not want to show in autocomplete export function getIgnoredTokens(): number[] { - const tokens = [OpenSearchPPLParser.SPACE, OpenSearchPPLParser.EOF]; + // const tokens = [OpenSearchPPLParser.SPACE, OpenSearchPPLParser.EOF]; + const tokens = []; const firstOperatorIndex = OpenSearchPPLParser.MATCH; const lastOperatorIndex = OpenSearchPPLParser.ERROR_RECOGNITION; @@ -32,6 +33,16 @@ export function getIgnoredTokens(): number[] { OpenSearchPPLParser.PIPE, OpenSearchPPLParser.EQUAL, OpenSearchPPLParser.COMMA, + // OpenSearchPPLParser.EQUAL, + // OpenSearchPPLParser.NOT_EQUAL, + // OpenSearchPPLParser.LESS, + // OpenSearchPPLParser.NOT_LESS, + // OpenSearchPPLParser.GREATER, + // OpenSearchPPLParser.NOT_GREATER, + // OpenSearchPPLParser.OR, + // OpenSearchPPLParser.AND, + // OpenSearchPPLParser.XOR, + // OpenSearchPPLParser.NOT, ]; for (let i = firstFunctionIndex; i <= lastFunctionIndex; i++) { if (!operatorsToInclude.includes(i)) { From 79331c7fb4656308b5266c5abc28e1607c34aeda Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 17:23:58 -0700 Subject: [PATCH 06/10] add some priority based tokens to appear at the top Signed-off-by: Paul Sebastian --- .../public/antlr/opensearch_ppl/code_completion.ts | 11 +++++++++++ src/plugins/data/public/antlr/shared/types.ts | 1 + src/plugins/data/public/antlr/shared/utils.ts | 1 + .../providers/query_suggestion_provider.ts | 1 + .../data/public/ui/query_editor/query_editor.tsx | 3 ++- 5 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts index bcade49beaf3..eda46d0d66b6 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/code_completion.ts @@ -16,6 +16,7 @@ import { openSearchPplAutocompleteData } from './opensearch_ppl_autocomplete'; import { QuerySuggestion, QuerySuggestionGetFnArgs } from '../../autocomplete'; import { SuggestionItemDetailsTags } from '../shared/constants'; import { PPL_AGGREGATE_FUNTIONS } from './constants'; +import { OpenSearchPPLParser } from './.generated/OpenSearchPPLParser'; export const getSuggestions = async ({ selectionStart, @@ -60,6 +61,15 @@ export const getSuggestions = async ({ }); } + // create the sortlist + const suggestionImportance = new Map(); + suggestionImportance.set(OpenSearchPPLParser.PIPE, '0'); + suggestionImportance.set(OpenSearchPPLParser.COMMA, '1'); + suggestionImportance.set(OpenSearchPPLParser.PLUS, '2'); + suggestionImportance.set(OpenSearchPPLParser.MINUS, '2'); + suggestionImportance.set(OpenSearchPPLParser.EQUAL, '2'); + suggestionImportance.set(OpenSearchPPLParser.SOURCE, '2'); + // Fill in PPL keywords if (suggestions.suggestKeywords?.length) { finalSuggestions.push( @@ -68,6 +78,7 @@ export const getSuggestions = async ({ insertText: `${sk.value.toLowerCase()} `, type: monaco.languages.CompletionItemKind.Keyword, detail: SuggestionItemDetailsTags.Keyword, + sortText: suggestionImportance.get(sk.id) ?? sk.value.toLowerCase(), })) ); } diff --git a/src/plugins/data/public/antlr/shared/types.ts b/src/plugins/data/public/antlr/shared/types.ts index 8941a8469d4b..36a9748bd719 100644 --- a/src/plugins/data/public/antlr/shared/types.ts +++ b/src/plugins/data/public/antlr/shared/types.ts @@ -41,6 +41,7 @@ export interface TokenPosition { export interface KeywordSuggestion { value: string; + id: number; } export type ColumnSuggestion = TableContextSuggestion; diff --git a/src/plugins/data/public/antlr/shared/utils.ts b/src/plugins/data/public/antlr/shared/utils.ts index 6136aa0f9ae9..7f40eaecf4ae 100644 --- a/src/plugins/data/public/antlr/shared/utils.ts +++ b/src/plugins/data/public/antlr/shared/utils.ts @@ -179,6 +179,7 @@ export const parseQuery = < suggestKeywords.push({ value: literalName, + id: tokenType, }); }); diff --git a/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts b/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts index 546c5589de04..64485c60cb0d 100644 --- a/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts +++ b/src/plugins/data/public/autocomplete/providers/query_suggestion_provider.ts @@ -81,6 +81,7 @@ export interface MonacoCompatibleQuerySuggestion insertText?: string; insertTextRules?: monaco.languages.CompletionItemInsertTextRule; replacePosition?: monaco.Range; + sortText?: string; } /** @public **/ diff --git a/src/plugins/data/public/ui/query_editor/query_editor.tsx b/src/plugins/data/public/ui/query_editor/query_editor.tsx index 5be8b53bcbb9..f68c601db185 100644 --- a/src/plugins/data/public/ui/query_editor/query_editor.tsx +++ b/src/plugins/data/public/ui/query_editor/query_editor.tsx @@ -301,7 +301,7 @@ export default class QueryEditorUI extends Component { suggestions: suggestions && suggestions.length > 0 ? suggestions - .filter((s) => 'detail' in s) // remove suggestion not of type MonacoCompatible + .filter((s) => 'detail' in s) // designed to remove suggestion not of type MonacoCompatible .map((s: MonacoCompatibleQuerySuggestion) => { return { label: s.text, @@ -311,6 +311,7 @@ export default class QueryEditorUI extends Component { range: s.replacePosition ?? defaultRange, detail: s.detail, command: { id: 'editor.action.triggerSuggest', title: 'Trigger Next Suggestion' }, + sortText: s.sortText, // when undefined, the falsy value will default to the label }; }) : [], From 209220dc0472c12dfb1af9d57d05eed7825d8925 Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Fri, 6 Sep 2024 17:40:51 -0700 Subject: [PATCH 07/10] reenable plus and minus for sort command Signed-off-by: Paul Sebastian --- .../.generated/OpenSearchPPLParser.interp | 2 +- .../.generated/OpenSearchPPLParser.ts | 1766 ++++++++--------- .../.generated/OpenSearchPPLParserVisitor.ts | 34 +- .../grammar/OpenSearchPPLParser.g4 | 6 +- .../opensearch_ppl_autocomplete.ts | 2 + 5 files changed, 829 insertions(+), 981 deletions(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp index 1b4eb300be96..d7aef0145ffd 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.interp @@ -794,4 +794,4 @@ keywordsCanBeId atn: -[4, 1, 336, 1123, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 285, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 293, 8, 11, 10, 11, 12, 11, 296, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 302, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 307, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 312, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 317, 8, 12, 10, 12, 12, 12, 320, 9, 12, 1, 12, 3, 12, 323, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 328, 8, 12, 1, 13, 1, 13, 3, 13, 332, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 338, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 343, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 352, 8, 15, 10, 15, 12, 15, 355, 9, 15, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 3, 16, 363, 8, 16, 1, 17, 1, 17, 3, 17, 367, 8, 17, 1, 17, 1, 17, 3, 17, 371, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 376, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 388, 8, 21, 10, 21, 12, 21, 391, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 401, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 407, 8, 24, 10, 24, 12, 24, 410, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 421, 8, 25, 1, 26, 1, 26, 5, 26, 425, 8, 26, 10, 26, 12, 26, 428, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 466, 8, 27, 1, 28, 1, 28, 5, 28, 470, 8, 28, 10, 28, 12, 28, 473, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 485, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 505, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 510, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 518, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 525, 8, 37, 10, 37, 12, 37, 528, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 537, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 554, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 563, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 578, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 586, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 593, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 599, 8, 45, 10, 45, 12, 45, 602, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 612, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 624, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 632, 8, 47, 10, 47, 12, 47, 635, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 641, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 654, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 663, 8, 52, 10, 52, 12, 52, 666, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 676, 8, 53, 10, 53, 12, 53, 679, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 686, 8, 53, 10, 53, 12, 53, 689, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 695, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 705, 8, 56, 10, 56, 12, 56, 708, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 713, 8, 57, 10, 57, 12, 57, 716, 9, 57, 1, 58, 3, 58, 719, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 744, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 777, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 785, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 790, 8, 67, 10, 67, 12, 67, 793, 9, 67, 3, 67, 795, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 800, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 818, 8, 71, 1, 72, 1, 72, 3, 72, 822, 8, 72, 1, 73, 1, 73, 3, 73, 826, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 832, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 857, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 885, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 918, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 927, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 932, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 941, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 960, 8, 106, 10, 106, 12, 106, 963, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 5, 109, 974, 8, 109, 10, 109, 12, 109, 977, 9, 109, 1, 110, 3, 110, 980, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 989, 8, 110, 1, 111, 3, 111, 992, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 999, 8, 112, 10, 112, 12, 112, 1002, 9, 112, 1, 112, 3, 112, 1005, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1019, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1121, 8, 113, 1, 113, 0, 2, 90, 94, 114, 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, 0, 21, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 1, 0, 120, 122, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1272, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 269, 1, 0, 0, 0, 14, 273, 1, 0, 0, 0, 16, 276, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 282, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 344, 1, 0, 0, 0, 30, 347, 1, 0, 0, 0, 32, 356, 1, 0, 0, 0, 34, 364, 1, 0, 0, 0, 36, 372, 1, 0, 0, 0, 38, 377, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 400, 1, 0, 0, 0, 46, 402, 1, 0, 0, 0, 48, 404, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 465, 1, 0, 0, 0, 56, 467, 1, 0, 0, 0, 58, 474, 1, 0, 0, 0, 60, 484, 1, 0, 0, 0, 62, 486, 1, 0, 0, 0, 64, 488, 1, 0, 0, 0, 66, 492, 1, 0, 0, 0, 68, 504, 1, 0, 0, 0, 70, 506, 1, 0, 0, 0, 72, 511, 1, 0, 0, 0, 74, 521, 1, 0, 0, 0, 76, 529, 1, 0, 0, 0, 78, 533, 1, 0, 0, 0, 80, 553, 1, 0, 0, 0, 82, 555, 1, 0, 0, 0, 84, 557, 1, 0, 0, 0, 86, 566, 1, 0, 0, 0, 88, 577, 1, 0, 0, 0, 90, 585, 1, 0, 0, 0, 92, 611, 1, 0, 0, 0, 94, 623, 1, 0, 0, 0, 96, 640, 1, 0, 0, 0, 98, 642, 1, 0, 0, 0, 100, 649, 1, 0, 0, 0, 102, 653, 1, 0, 0, 0, 104, 655, 1, 0, 0, 0, 106, 669, 1, 0, 0, 0, 108, 694, 1, 0, 0, 0, 110, 696, 1, 0, 0, 0, 112, 701, 1, 0, 0, 0, 114, 709, 1, 0, 0, 0, 116, 718, 1, 0, 0, 0, 118, 743, 1, 0, 0, 0, 120, 745, 1, 0, 0, 0, 122, 747, 1, 0, 0, 0, 124, 749, 1, 0, 0, 0, 126, 754, 1, 0, 0, 0, 128, 761, 1, 0, 0, 0, 130, 776, 1, 0, 0, 0, 132, 784, 1, 0, 0, 0, 134, 794, 1, 0, 0, 0, 136, 799, 1, 0, 0, 0, 138, 803, 1, 0, 0, 0, 140, 807, 1, 0, 0, 0, 142, 817, 1, 0, 0, 0, 144, 821, 1, 0, 0, 0, 146, 825, 1, 0, 0, 0, 148, 827, 1, 0, 0, 0, 150, 831, 1, 0, 0, 0, 152, 856, 1, 0, 0, 0, 154, 858, 1, 0, 0, 0, 156, 860, 1, 0, 0, 0, 158, 862, 1, 0, 0, 0, 160, 869, 1, 0, 0, 0, 162, 871, 1, 0, 0, 0, 164, 878, 1, 0, 0, 0, 166, 880, 1, 0, 0, 0, 168, 884, 1, 0, 0, 0, 170, 886, 1, 0, 0, 0, 172, 895, 1, 0, 0, 0, 174, 897, 1, 0, 0, 0, 176, 899, 1, 0, 0, 0, 178, 901, 1, 0, 0, 0, 180, 903, 1, 0, 0, 0, 182, 905, 1, 0, 0, 0, 184, 907, 1, 0, 0, 0, 186, 909, 1, 0, 0, 0, 188, 917, 1, 0, 0, 0, 190, 919, 1, 0, 0, 0, 192, 923, 1, 0, 0, 0, 194, 926, 1, 0, 0, 0, 196, 931, 1, 0, 0, 0, 198, 935, 1, 0, 0, 0, 200, 940, 1, 0, 0, 0, 202, 942, 1, 0, 0, 0, 204, 945, 1, 0, 0, 0, 206, 948, 1, 0, 0, 0, 208, 951, 1, 0, 0, 0, 210, 953, 1, 0, 0, 0, 212, 955, 1, 0, 0, 0, 214, 966, 1, 0, 0, 0, 216, 968, 1, 0, 0, 0, 218, 970, 1, 0, 0, 0, 220, 988, 1, 0, 0, 0, 222, 991, 1, 0, 0, 0, 224, 1018, 1, 0, 0, 0, 226, 1120, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 60, 30, 0, 272, 13, 1, 0, 0, 0, 273, 274, 5, 3, 0, 0, 274, 275, 3, 62, 31, 0, 275, 15, 1, 0, 0, 0, 276, 277, 5, 4, 0, 0, 277, 278, 5, 33, 0, 0, 278, 17, 1, 0, 0, 0, 279, 280, 5, 6, 0, 0, 280, 281, 3, 90, 45, 0, 281, 19, 1, 0, 0, 0, 282, 284, 5, 7, 0, 0, 283, 285, 7, 0, 0, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 3, 112, 56, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 8, 0, 0, 289, 294, 3, 64, 32, 0, 290, 291, 5, 110, 0, 0, 291, 293, 3, 64, 32, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 23, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 301, 5, 9, 0, 0, 298, 299, 5, 42, 0, 0, 299, 300, 5, 112, 0, 0, 300, 302, 3, 194, 97, 0, 301, 298, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 306, 1, 0, 0, 0, 303, 304, 5, 43, 0, 0, 304, 305, 5, 112, 0, 0, 305, 307, 3, 198, 99, 0, 306, 303, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 311, 1, 0, 0, 0, 308, 309, 5, 44, 0, 0, 309, 310, 5, 112, 0, 0, 310, 312, 3, 192, 96, 0, 311, 308, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 318, 3, 78, 39, 0, 314, 315, 5, 110, 0, 0, 315, 317, 3, 78, 39, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 68, 34, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 327, 1, 0, 0, 0, 324, 325, 5, 41, 0, 0, 325, 326, 5, 112, 0, 0, 326, 328, 3, 198, 99, 0, 327, 324, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 25, 1, 0, 0, 0, 329, 331, 5, 10, 0, 0, 330, 332, 3, 194, 97, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 3, 112, 56, 0, 334, 335, 5, 39, 0, 0, 335, 336, 5, 112, 0, 0, 336, 338, 3, 198, 99, 0, 337, 334, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 342, 1, 0, 0, 0, 339, 340, 5, 40, 0, 0, 340, 341, 5, 112, 0, 0, 341, 343, 3, 198, 99, 0, 342, 339, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 27, 1, 0, 0, 0, 344, 345, 5, 11, 0, 0, 345, 346, 3, 74, 37, 0, 346, 29, 1, 0, 0, 0, 347, 348, 5, 12, 0, 0, 348, 353, 3, 76, 38, 0, 349, 350, 5, 110, 0, 0, 350, 352, 3, 76, 38, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 31, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 358, 5, 13, 0, 0, 357, 359, 3, 194, 97, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 5, 0, 0, 361, 363, 3, 194, 97, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 33, 1, 0, 0, 0, 364, 366, 5, 14, 0, 0, 365, 367, 3, 194, 97, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 3, 112, 56, 0, 369, 371, 3, 66, 33, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 373, 5, 15, 0, 0, 373, 375, 3, 112, 56, 0, 374, 376, 3, 66, 33, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 37, 1, 0, 0, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 88, 44, 0, 379, 380, 3, 192, 96, 0, 380, 39, 1, 0, 0, 0, 381, 382, 5, 16, 0, 0, 382, 383, 3, 88, 44, 0, 383, 384, 3, 192, 96, 0, 384, 41, 1, 0, 0, 0, 385, 389, 5, 22, 0, 0, 386, 388, 3, 44, 22, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 88, 44, 0, 393, 43, 1, 0, 0, 0, 394, 395, 5, 23, 0, 0, 395, 396, 5, 112, 0, 0, 396, 401, 3, 192, 96, 0, 397, 398, 5, 21, 0, 0, 398, 399, 5, 112, 0, 0, 399, 401, 3, 192, 96, 0, 400, 394, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 401, 45, 1, 0, 0, 0, 402, 403, 7, 1, 0, 0, 403, 47, 1, 0, 0, 0, 404, 408, 5, 24, 0, 0, 405, 407, 3, 50, 25, 0, 406, 405, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 49, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 112, 0, 0, 413, 421, 3, 194, 97, 0, 414, 415, 5, 46, 0, 0, 415, 416, 5, 112, 0, 0, 416, 421, 3, 194, 97, 0, 417, 418, 5, 47, 0, 0, 418, 419, 5, 112, 0, 0, 419, 421, 3, 192, 96, 0, 420, 411, 1, 0, 0, 0, 420, 414, 1, 0, 0, 0, 420, 417, 1, 0, 0, 0, 421, 51, 1, 0, 0, 0, 422, 426, 5, 25, 0, 0, 423, 425, 3, 54, 27, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 53, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 48, 0, 0, 430, 431, 5, 112, 0, 0, 431, 466, 3, 194, 97, 0, 432, 433, 5, 49, 0, 0, 433, 434, 5, 112, 0, 0, 434, 466, 3, 194, 97, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 112, 0, 0, 437, 466, 3, 194, 97, 0, 438, 439, 5, 51, 0, 0, 439, 440, 5, 112, 0, 0, 440, 466, 3, 194, 97, 0, 441, 442, 5, 52, 0, 0, 442, 443, 5, 112, 0, 0, 443, 466, 3, 196, 98, 0, 444, 445, 5, 53, 0, 0, 445, 446, 5, 112, 0, 0, 446, 466, 3, 196, 98, 0, 447, 448, 5, 54, 0, 0, 448, 449, 5, 112, 0, 0, 449, 466, 3, 192, 96, 0, 450, 451, 5, 55, 0, 0, 451, 452, 5, 112, 0, 0, 452, 466, 3, 192, 96, 0, 453, 454, 5, 215, 0, 0, 454, 455, 5, 112, 0, 0, 455, 466, 3, 192, 96, 0, 456, 457, 5, 56, 0, 0, 457, 458, 5, 112, 0, 0, 458, 466, 3, 192, 96, 0, 459, 460, 5, 57, 0, 0, 460, 461, 5, 112, 0, 0, 461, 466, 3, 194, 97, 0, 462, 463, 5, 58, 0, 0, 463, 464, 5, 112, 0, 0, 464, 466, 3, 196, 98, 0, 465, 429, 1, 0, 0, 0, 465, 432, 1, 0, 0, 0, 465, 435, 1, 0, 0, 0, 465, 438, 1, 0, 0, 0, 465, 441, 1, 0, 0, 0, 465, 444, 1, 0, 0, 0, 465, 447, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 453, 1, 0, 0, 0, 465, 456, 1, 0, 0, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 466, 55, 1, 0, 0, 0, 467, 471, 5, 26, 0, 0, 468, 470, 3, 58, 29, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 57, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 475, 3, 220, 110, 0, 475, 476, 5, 112, 0, 0, 476, 477, 3, 188, 94, 0, 477, 59, 1, 0, 0, 0, 478, 479, 5, 29, 0, 0, 479, 480, 5, 112, 0, 0, 480, 485, 3, 62, 31, 0, 481, 482, 5, 30, 0, 0, 482, 483, 5, 112, 0, 0, 483, 485, 3, 62, 31, 0, 484, 478, 1, 0, 0, 0, 484, 481, 1, 0, 0, 0, 485, 61, 1, 0, 0, 0, 486, 487, 3, 108, 54, 0, 487, 63, 1, 0, 0, 0, 488, 489, 3, 122, 61, 0, 489, 490, 5, 27, 0, 0, 490, 491, 3, 122, 61, 0, 491, 65, 1, 0, 0, 0, 492, 493, 5, 28, 0, 0, 493, 494, 3, 112, 56, 0, 494, 67, 1, 0, 0, 0, 495, 496, 5, 28, 0, 0, 496, 505, 3, 112, 56, 0, 497, 498, 5, 28, 0, 0, 498, 505, 3, 70, 35, 0, 499, 500, 5, 28, 0, 0, 500, 501, 3, 70, 35, 0, 501, 502, 5, 110, 0, 0, 502, 503, 3, 112, 56, 0, 503, 505, 1, 0, 0, 0, 504, 495, 1, 0, 0, 0, 504, 497, 1, 0, 0, 0, 504, 499, 1, 0, 0, 0, 505, 69, 1, 0, 0, 0, 506, 509, 3, 72, 36, 0, 507, 508, 5, 27, 0, 0, 508, 510, 3, 214, 107, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 71, 1, 0, 0, 0, 511, 512, 5, 320, 0, 0, 512, 513, 5, 125, 0, 0, 513, 514, 3, 120, 60, 0, 514, 515, 5, 110, 0, 0, 515, 517, 3, 188, 94, 0, 516, 518, 3, 210, 105, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 5, 126, 0, 0, 520, 73, 1, 0, 0, 0, 521, 526, 3, 116, 58, 0, 522, 523, 5, 110, 0, 0, 523, 525, 3, 116, 58, 0, 524, 522, 1, 0, 0, 0, 525, 528, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 75, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 529, 530, 3, 120, 60, 0, 530, 531, 5, 112, 0, 0, 531, 532, 3, 88, 44, 0, 532, 77, 1, 0, 0, 0, 533, 536, 3, 80, 40, 0, 534, 535, 5, 27, 0, 0, 535, 537, 3, 122, 61, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 79, 1, 0, 0, 0, 538, 539, 3, 82, 41, 0, 539, 540, 5, 125, 0, 0, 540, 541, 3, 94, 47, 0, 541, 542, 5, 126, 0, 0, 542, 554, 1, 0, 0, 0, 543, 544, 5, 136, 0, 0, 544, 545, 5, 125, 0, 0, 545, 554, 5, 126, 0, 0, 546, 547, 7, 2, 0, 0, 547, 548, 5, 125, 0, 0, 548, 549, 3, 94, 47, 0, 549, 550, 5, 126, 0, 0, 550, 554, 1, 0, 0, 0, 551, 554, 3, 86, 43, 0, 552, 554, 3, 84, 42, 0, 553, 538, 1, 0, 0, 0, 553, 543, 1, 0, 0, 0, 553, 546, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 81, 1, 0, 0, 0, 555, 556, 7, 3, 0, 0, 556, 83, 1, 0, 0, 0, 557, 558, 5, 155, 0, 0, 558, 559, 5, 125, 0, 0, 559, 562, 3, 120, 60, 0, 560, 561, 5, 110, 0, 0, 561, 563, 3, 194, 97, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 5, 126, 0, 0, 565, 85, 1, 0, 0, 0, 566, 567, 5, 154, 0, 0, 567, 568, 5, 114, 0, 0, 568, 569, 3, 194, 97, 0, 569, 570, 5, 113, 0, 0, 570, 571, 5, 125, 0, 0, 571, 572, 3, 120, 60, 0, 572, 573, 5, 126, 0, 0, 573, 87, 1, 0, 0, 0, 574, 578, 3, 90, 45, 0, 575, 578, 3, 92, 46, 0, 576, 578, 3, 94, 47, 0, 577, 574, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 577, 576, 1, 0, 0, 0, 578, 89, 1, 0, 0, 0, 579, 580, 6, 45, -1, 0, 580, 586, 3, 92, 46, 0, 581, 582, 5, 61, 0, 0, 582, 586, 3, 90, 45, 6, 583, 586, 3, 100, 50, 0, 584, 586, 3, 102, 51, 0, 585, 579, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 584, 1, 0, 0, 0, 586, 600, 1, 0, 0, 0, 587, 588, 10, 5, 0, 0, 588, 589, 5, 62, 0, 0, 589, 599, 3, 90, 45, 6, 590, 592, 10, 4, 0, 0, 591, 593, 5, 63, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 599, 3, 90, 45, 5, 595, 596, 10, 3, 0, 0, 596, 597, 5, 64, 0, 0, 597, 599, 3, 90, 45, 4, 598, 587, 1, 0, 0, 0, 598, 590, 1, 0, 0, 0, 598, 595, 1, 0, 0, 0, 599, 602, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 91, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 604, 3, 94, 47, 0, 604, 605, 3, 182, 91, 0, 605, 606, 3, 94, 47, 0, 606, 612, 1, 0, 0, 0, 607, 608, 3, 94, 47, 0, 608, 609, 5, 60, 0, 0, 609, 610, 3, 212, 106, 0, 610, 612, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 611, 607, 1, 0, 0, 0, 612, 93, 1, 0, 0, 0, 613, 614, 6, 47, -1, 0, 614, 624, 3, 96, 48, 0, 615, 624, 3, 98, 49, 0, 616, 624, 3, 162, 81, 0, 617, 624, 3, 158, 79, 0, 618, 624, 3, 170, 85, 0, 619, 620, 5, 125, 0, 0, 620, 621, 3, 94, 47, 0, 621, 622, 5, 126, 0, 0, 622, 624, 1, 0, 0, 0, 623, 613, 1, 0, 0, 0, 623, 615, 1, 0, 0, 0, 623, 616, 1, 0, 0, 0, 623, 617, 1, 0, 0, 0, 623, 618, 1, 0, 0, 0, 623, 619, 1, 0, 0, 0, 624, 633, 1, 0, 0, 0, 625, 626, 10, 8, 0, 0, 626, 627, 7, 4, 0, 0, 627, 632, 3, 94, 47, 9, 628, 629, 10, 7, 0, 0, 629, 630, 7, 0, 0, 0, 630, 632, 3, 94, 47, 8, 631, 625, 1, 0, 0, 0, 631, 628, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 95, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 641, 3, 124, 62, 0, 637, 641, 3, 126, 63, 0, 638, 641, 3, 120, 60, 0, 639, 641, 3, 188, 94, 0, 640, 636, 1, 0, 0, 0, 640, 637, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 640, 639, 1, 0, 0, 0, 641, 97, 1, 0, 0, 0, 642, 643, 3, 180, 90, 0, 643, 644, 5, 125, 0, 0, 644, 645, 3, 136, 68, 0, 645, 646, 5, 60, 0, 0, 646, 647, 3, 136, 68, 0, 647, 648, 5, 126, 0, 0, 648, 99, 1, 0, 0, 0, 649, 650, 3, 128, 64, 0, 650, 101, 1, 0, 0, 0, 651, 654, 3, 104, 52, 0, 652, 654, 3, 106, 53, 0, 653, 651, 1, 0, 0, 0, 653, 652, 1, 0, 0, 0, 654, 103, 1, 0, 0, 0, 655, 656, 3, 184, 92, 0, 656, 657, 5, 125, 0, 0, 657, 658, 3, 146, 73, 0, 658, 659, 5, 110, 0, 0, 659, 664, 3, 148, 74, 0, 660, 661, 5, 110, 0, 0, 661, 663, 3, 138, 69, 0, 662, 660, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 667, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 668, 5, 126, 0, 0, 668, 105, 1, 0, 0, 0, 669, 670, 3, 186, 93, 0, 670, 671, 5, 125, 0, 0, 671, 672, 5, 127, 0, 0, 672, 677, 3, 142, 71, 0, 673, 674, 5, 110, 0, 0, 674, 676, 3, 142, 71, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 5, 128, 0, 0, 681, 682, 5, 110, 0, 0, 682, 687, 3, 148, 74, 0, 683, 684, 5, 110, 0, 0, 684, 686, 3, 138, 69, 0, 685, 683, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 690, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 690, 691, 5, 126, 0, 0, 691, 107, 1, 0, 0, 0, 692, 695, 3, 216, 108, 0, 693, 695, 5, 332, 0, 0, 694, 692, 1, 0, 0, 0, 694, 693, 1, 0, 0, 0, 695, 109, 1, 0, 0, 0, 696, 697, 3, 214, 107, 0, 697, 698, 5, 125, 0, 0, 698, 699, 3, 134, 67, 0, 699, 700, 5, 126, 0, 0, 700, 111, 1, 0, 0, 0, 701, 706, 3, 120, 60, 0, 702, 703, 5, 110, 0, 0, 703, 705, 3, 120, 60, 0, 704, 702, 1, 0, 0, 0, 705, 708, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 113, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 714, 3, 122, 61, 0, 710, 711, 5, 110, 0, 0, 711, 713, 3, 122, 61, 0, 712, 710, 1, 0, 0, 0, 713, 716, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 115, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 717, 719, 7, 0, 0, 0, 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 3, 118, 59, 0, 721, 117, 1, 0, 0, 0, 722, 744, 3, 120, 60, 0, 723, 724, 5, 35, 0, 0, 724, 725, 5, 125, 0, 0, 725, 726, 3, 120, 60, 0, 726, 727, 5, 126, 0, 0, 727, 744, 1, 0, 0, 0, 728, 729, 5, 36, 0, 0, 729, 730, 5, 125, 0, 0, 730, 731, 3, 120, 60, 0, 731, 732, 5, 126, 0, 0, 732, 744, 1, 0, 0, 0, 733, 734, 5, 37, 0, 0, 734, 735, 5, 125, 0, 0, 735, 736, 3, 120, 60, 0, 736, 737, 5, 126, 0, 0, 737, 744, 1, 0, 0, 0, 738, 739, 5, 38, 0, 0, 739, 740, 5, 125, 0, 0, 740, 741, 3, 120, 60, 0, 741, 742, 5, 126, 0, 0, 742, 744, 1, 0, 0, 0, 743, 722, 1, 0, 0, 0, 743, 723, 1, 0, 0, 0, 743, 728, 1, 0, 0, 0, 743, 733, 1, 0, 0, 0, 743, 738, 1, 0, 0, 0, 744, 119, 1, 0, 0, 0, 745, 746, 3, 214, 107, 0, 746, 121, 1, 0, 0, 0, 747, 748, 3, 218, 109, 0, 748, 123, 1, 0, 0, 0, 749, 750, 3, 132, 66, 0, 750, 751, 5, 125, 0, 0, 751, 752, 3, 134, 67, 0, 752, 753, 5, 126, 0, 0, 753, 125, 1, 0, 0, 0, 754, 755, 5, 274, 0, 0, 755, 756, 5, 125, 0, 0, 756, 757, 3, 88, 44, 0, 757, 758, 5, 27, 0, 0, 758, 759, 3, 130, 65, 0, 759, 760, 5, 126, 0, 0, 760, 127, 1, 0, 0, 0, 761, 762, 3, 174, 87, 0, 762, 763, 5, 125, 0, 0, 763, 764, 3, 134, 67, 0, 764, 765, 5, 126, 0, 0, 765, 129, 1, 0, 0, 0, 766, 777, 5, 212, 0, 0, 767, 777, 5, 241, 0, 0, 768, 777, 5, 243, 0, 0, 769, 777, 5, 102, 0, 0, 770, 777, 5, 103, 0, 0, 771, 777, 5, 104, 0, 0, 772, 777, 5, 105, 0, 0, 773, 777, 5, 106, 0, 0, 774, 777, 5, 107, 0, 0, 775, 777, 5, 108, 0, 0, 776, 766, 1, 0, 0, 0, 776, 767, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 769, 1, 0, 0, 0, 776, 770, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 776, 773, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 775, 1, 0, 0, 0, 777, 131, 1, 0, 0, 0, 778, 785, 3, 152, 76, 0, 779, 785, 3, 156, 78, 0, 780, 785, 3, 178, 89, 0, 781, 785, 3, 174, 87, 0, 782, 785, 3, 176, 88, 0, 783, 785, 3, 180, 90, 0, 784, 778, 1, 0, 0, 0, 784, 779, 1, 0, 0, 0, 784, 780, 1, 0, 0, 0, 784, 781, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 783, 1, 0, 0, 0, 785, 133, 1, 0, 0, 0, 786, 791, 3, 136, 68, 0, 787, 788, 5, 110, 0, 0, 788, 790, 3, 136, 68, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 786, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 135, 1, 0, 0, 0, 796, 797, 3, 220, 110, 0, 797, 798, 5, 112, 0, 0, 798, 800, 1, 0, 0, 0, 799, 796, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 3, 94, 47, 0, 802, 137, 1, 0, 0, 0, 803, 804, 3, 140, 70, 0, 804, 805, 5, 112, 0, 0, 805, 806, 3, 150, 75, 0, 806, 139, 1, 0, 0, 0, 807, 808, 7, 5, 0, 0, 808, 141, 1, 0, 0, 0, 809, 818, 3, 146, 73, 0, 810, 811, 3, 146, 73, 0, 811, 812, 3, 144, 72, 0, 812, 818, 1, 0, 0, 0, 813, 814, 3, 146, 73, 0, 814, 815, 5, 134, 0, 0, 815, 816, 3, 144, 72, 0, 816, 818, 1, 0, 0, 0, 817, 809, 1, 0, 0, 0, 817, 810, 1, 0, 0, 0, 817, 813, 1, 0, 0, 0, 818, 143, 1, 0, 0, 0, 819, 822, 3, 194, 97, 0, 820, 822, 3, 196, 98, 0, 821, 819, 1, 0, 0, 0, 821, 820, 1, 0, 0, 0, 822, 145, 1, 0, 0, 0, 823, 826, 3, 214, 107, 0, 824, 826, 3, 192, 96, 0, 825, 823, 1, 0, 0, 0, 825, 824, 1, 0, 0, 0, 826, 147, 1, 0, 0, 0, 827, 828, 3, 150, 75, 0, 828, 149, 1, 0, 0, 0, 829, 832, 3, 214, 107, 0, 830, 832, 3, 188, 94, 0, 831, 829, 1, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 151, 1, 0, 0, 0, 833, 857, 5, 172, 0, 0, 834, 857, 5, 173, 0, 0, 835, 857, 5, 174, 0, 0, 836, 857, 5, 175, 0, 0, 837, 857, 5, 176, 0, 0, 838, 857, 5, 177, 0, 0, 839, 857, 5, 178, 0, 0, 840, 857, 5, 179, 0, 0, 841, 857, 5, 180, 0, 0, 842, 857, 5, 181, 0, 0, 843, 857, 5, 182, 0, 0, 844, 857, 5, 183, 0, 0, 845, 857, 5, 184, 0, 0, 846, 857, 5, 185, 0, 0, 847, 857, 5, 186, 0, 0, 848, 857, 5, 188, 0, 0, 849, 857, 5, 189, 0, 0, 850, 857, 5, 190, 0, 0, 851, 857, 5, 191, 0, 0, 852, 857, 5, 192, 0, 0, 853, 857, 5, 193, 0, 0, 854, 857, 5, 194, 0, 0, 855, 857, 3, 154, 77, 0, 856, 833, 1, 0, 0, 0, 856, 834, 1, 0, 0, 0, 856, 835, 1, 0, 0, 0, 856, 836, 1, 0, 0, 0, 856, 837, 1, 0, 0, 0, 856, 838, 1, 0, 0, 0, 856, 839, 1, 0, 0, 0, 856, 840, 1, 0, 0, 0, 856, 841, 1, 0, 0, 0, 856, 842, 1, 0, 0, 0, 856, 843, 1, 0, 0, 0, 856, 844, 1, 0, 0, 0, 856, 845, 1, 0, 0, 0, 856, 846, 1, 0, 0, 0, 856, 847, 1, 0, 0, 0, 856, 848, 1, 0, 0, 0, 856, 849, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 851, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 853, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 153, 1, 0, 0, 0, 858, 859, 7, 6, 0, 0, 859, 155, 1, 0, 0, 0, 860, 861, 7, 7, 0, 0, 861, 157, 1, 0, 0, 0, 862, 863, 5, 226, 0, 0, 863, 864, 5, 125, 0, 0, 864, 865, 3, 160, 80, 0, 865, 866, 5, 110, 0, 0, 866, 867, 3, 136, 68, 0, 867, 868, 5, 126, 0, 0, 868, 159, 1, 0, 0, 0, 869, 870, 7, 8, 0, 0, 870, 161, 1, 0, 0, 0, 871, 872, 5, 223, 0, 0, 872, 873, 5, 125, 0, 0, 873, 874, 3, 168, 84, 0, 874, 875, 5, 5, 0, 0, 875, 876, 3, 136, 68, 0, 876, 877, 5, 126, 0, 0, 877, 163, 1, 0, 0, 0, 878, 879, 7, 9, 0, 0, 879, 165, 1, 0, 0, 0, 880, 881, 7, 10, 0, 0, 881, 167, 1, 0, 0, 0, 882, 885, 3, 164, 82, 0, 883, 885, 3, 166, 83, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, 0, 885, 169, 1, 0, 0, 0, 886, 887, 3, 172, 86, 0, 887, 888, 5, 125, 0, 0, 888, 889, 3, 164, 82, 0, 889, 890, 5, 110, 0, 0, 890, 891, 3, 136, 68, 0, 891, 892, 5, 110, 0, 0, 892, 893, 3, 136, 68, 0, 893, 894, 5, 126, 0, 0, 894, 171, 1, 0, 0, 0, 895, 896, 7, 11, 0, 0, 896, 173, 1, 0, 0, 0, 897, 898, 7, 12, 0, 0, 898, 175, 1, 0, 0, 0, 899, 900, 5, 281, 0, 0, 900, 177, 1, 0, 0, 0, 901, 902, 7, 13, 0, 0, 902, 179, 1, 0, 0, 0, 903, 904, 5, 187, 0, 0, 904, 181, 1, 0, 0, 0, 905, 906, 7, 14, 0, 0, 906, 183, 1, 0, 0, 0, 907, 908, 7, 15, 0, 0, 908, 185, 1, 0, 0, 0, 909, 910, 7, 16, 0, 0, 910, 187, 1, 0, 0, 0, 911, 918, 3, 190, 95, 0, 912, 918, 3, 192, 96, 0, 913, 918, 3, 194, 97, 0, 914, 918, 3, 196, 98, 0, 915, 918, 3, 198, 99, 0, 916, 918, 3, 200, 100, 0, 917, 911, 1, 0, 0, 0, 917, 912, 1, 0, 0, 0, 917, 913, 1, 0, 0, 0, 917, 914, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 916, 1, 0, 0, 0, 918, 189, 1, 0, 0, 0, 919, 920, 5, 81, 0, 0, 920, 921, 3, 94, 47, 0, 921, 922, 3, 208, 104, 0, 922, 191, 1, 0, 0, 0, 923, 924, 7, 17, 0, 0, 924, 193, 1, 0, 0, 0, 925, 927, 7, 0, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 5, 330, 0, 0, 929, 195, 1, 0, 0, 0, 930, 932, 7, 0, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 934, 5, 331, 0, 0, 934, 197, 1, 0, 0, 0, 935, 936, 7, 18, 0, 0, 936, 199, 1, 0, 0, 0, 937, 941, 3, 202, 101, 0, 938, 941, 3, 204, 102, 0, 939, 941, 3, 206, 103, 0, 940, 937, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 940, 939, 1, 0, 0, 0, 941, 201, 1, 0, 0, 0, 942, 943, 5, 212, 0, 0, 943, 944, 3, 192, 96, 0, 944, 203, 1, 0, 0, 0, 945, 946, 5, 241, 0, 0, 946, 947, 3, 192, 96, 0, 947, 205, 1, 0, 0, 0, 948, 949, 5, 243, 0, 0, 949, 950, 3, 192, 96, 0, 950, 207, 1, 0, 0, 0, 951, 952, 7, 19, 0, 0, 952, 209, 1, 0, 0, 0, 953, 954, 7, 20, 0, 0, 954, 211, 1, 0, 0, 0, 955, 956, 5, 125, 0, 0, 956, 961, 3, 188, 94, 0, 957, 958, 5, 110, 0, 0, 958, 960, 3, 188, 94, 0, 959, 957, 1, 0, 0, 0, 960, 963, 1, 0, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 964, 965, 5, 126, 0, 0, 965, 213, 1, 0, 0, 0, 966, 967, 5, 328, 0, 0, 967, 215, 1, 0, 0, 0, 968, 969, 5, 328, 0, 0, 969, 217, 1, 0, 0, 0, 970, 975, 3, 224, 112, 0, 971, 972, 5, 111, 0, 0, 972, 974, 3, 224, 112, 0, 973, 971, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 219, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 980, 5, 111, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 989, 5, 328, 0, 0, 982, 983, 5, 131, 0, 0, 983, 984, 3, 220, 110, 0, 984, 985, 5, 131, 0, 0, 985, 989, 1, 0, 0, 0, 986, 989, 5, 335, 0, 0, 987, 989, 3, 226, 113, 0, 988, 979, 1, 0, 0, 0, 988, 982, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 221, 1, 0, 0, 0, 990, 992, 5, 329, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 3, 220, 110, 0, 994, 223, 1, 0, 0, 0, 995, 1000, 3, 220, 110, 0, 996, 997, 5, 122, 0, 0, 997, 999, 3, 220, 110, 0, 998, 996, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1004, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1005, 5, 122, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1019, 1, 0, 0, 0, 1006, 1007, 5, 129, 0, 0, 1007, 1008, 3, 224, 112, 0, 1008, 1009, 5, 129, 0, 0, 1009, 1019, 1, 0, 0, 0, 1010, 1011, 5, 130, 0, 0, 1011, 1012, 3, 224, 112, 0, 1012, 1013, 5, 130, 0, 0, 1013, 1019, 1, 0, 0, 0, 1014, 1015, 5, 131, 0, 0, 1015, 1016, 3, 224, 112, 0, 1016, 1017, 5, 131, 0, 0, 1017, 1019, 1, 0, 0, 0, 1018, 995, 1, 0, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1010, 1, 0, 0, 0, 1018, 1014, 1, 0, 0, 0, 1019, 225, 1, 0, 0, 0, 1020, 1121, 5, 31, 0, 0, 1021, 1121, 3, 210, 105, 0, 1022, 1121, 5, 320, 0, 0, 1023, 1121, 3, 132, 66, 0, 1024, 1121, 3, 140, 70, 0, 1025, 1121, 3, 208, 104, 0, 1026, 1121, 3, 156, 78, 0, 1027, 1121, 3, 178, 89, 0, 1028, 1121, 3, 152, 76, 0, 1029, 1121, 3, 180, 90, 0, 1030, 1121, 5, 2, 0, 0, 1031, 1121, 5, 3, 0, 0, 1032, 1121, 5, 4, 0, 0, 1033, 1121, 5, 5, 0, 0, 1034, 1121, 5, 6, 0, 0, 1035, 1121, 5, 7, 0, 0, 1036, 1121, 5, 8, 0, 0, 1037, 1121, 5, 9, 0, 0, 1038, 1121, 5, 10, 0, 0, 1039, 1121, 5, 11, 0, 0, 1040, 1121, 5, 12, 0, 0, 1041, 1121, 5, 13, 0, 0, 1042, 1121, 5, 14, 0, 0, 1043, 1121, 5, 15, 0, 0, 1044, 1121, 5, 16, 0, 0, 1045, 1121, 5, 17, 0, 0, 1046, 1121, 5, 18, 0, 0, 1047, 1121, 5, 19, 0, 0, 1048, 1121, 5, 20, 0, 0, 1049, 1121, 5, 21, 0, 0, 1050, 1121, 5, 22, 0, 0, 1051, 1121, 5, 23, 0, 0, 1052, 1121, 5, 24, 0, 0, 1053, 1121, 5, 25, 0, 0, 1054, 1121, 5, 26, 0, 0, 1055, 1121, 5, 29, 0, 0, 1056, 1121, 5, 30, 0, 0, 1057, 1121, 5, 32, 0, 0, 1058, 1121, 5, 33, 0, 0, 1059, 1121, 5, 34, 0, 0, 1060, 1121, 5, 36, 0, 0, 1061, 1121, 5, 37, 0, 0, 1062, 1121, 5, 38, 0, 0, 1063, 1121, 5, 39, 0, 0, 1064, 1121, 5, 40, 0, 0, 1065, 1121, 5, 41, 0, 0, 1066, 1121, 5, 42, 0, 0, 1067, 1121, 5, 43, 0, 0, 1068, 1121, 5, 44, 0, 0, 1069, 1121, 5, 45, 0, 0, 1070, 1121, 5, 46, 0, 0, 1071, 1121, 5, 47, 0, 0, 1072, 1121, 5, 48, 0, 0, 1073, 1121, 5, 49, 0, 0, 1074, 1121, 5, 50, 0, 0, 1075, 1121, 5, 51, 0, 0, 1076, 1121, 5, 52, 0, 0, 1077, 1121, 5, 53, 0, 0, 1078, 1121, 5, 54, 0, 0, 1079, 1121, 5, 55, 0, 0, 1080, 1121, 5, 56, 0, 0, 1081, 1121, 5, 57, 0, 0, 1082, 1121, 5, 58, 0, 0, 1083, 1121, 5, 135, 0, 0, 1084, 1121, 5, 136, 0, 0, 1085, 1121, 5, 137, 0, 0, 1086, 1121, 5, 138, 0, 0, 1087, 1121, 5, 139, 0, 0, 1088, 1121, 5, 140, 0, 0, 1089, 1121, 5, 141, 0, 0, 1090, 1121, 5, 142, 0, 0, 1091, 1121, 5, 143, 0, 0, 1092, 1121, 5, 144, 0, 0, 1093, 1121, 5, 145, 0, 0, 1094, 1121, 5, 146, 0, 0, 1095, 1121, 5, 147, 0, 0, 1096, 1121, 5, 148, 0, 0, 1097, 1121, 5, 149, 0, 0, 1098, 1121, 5, 150, 0, 0, 1099, 1121, 5, 151, 0, 0, 1100, 1121, 5, 152, 0, 0, 1101, 1121, 5, 153, 0, 0, 1102, 1121, 5, 154, 0, 0, 1103, 1121, 5, 155, 0, 0, 1104, 1121, 5, 156, 0, 0, 1105, 1121, 5, 157, 0, 0, 1106, 1121, 5, 158, 0, 0, 1107, 1121, 5, 159, 0, 0, 1108, 1121, 5, 160, 0, 0, 1109, 1121, 5, 161, 0, 0, 1110, 1121, 5, 162, 0, 0, 1111, 1121, 5, 163, 0, 0, 1112, 1121, 5, 164, 0, 0, 1113, 1121, 5, 165, 0, 0, 1114, 1121, 5, 166, 0, 0, 1115, 1121, 5, 167, 0, 0, 1116, 1121, 5, 168, 0, 0, 1117, 1121, 5, 169, 0, 0, 1118, 1121, 5, 170, 0, 0, 1119, 1121, 5, 171, 0, 0, 1120, 1020, 1, 0, 0, 0, 1120, 1021, 1, 0, 0, 0, 1120, 1022, 1, 0, 0, 0, 1120, 1023, 1, 0, 0, 0, 1120, 1024, 1, 0, 0, 0, 1120, 1025, 1, 0, 0, 0, 1120, 1026, 1, 0, 0, 0, 1120, 1027, 1, 0, 0, 0, 1120, 1028, 1, 0, 0, 0, 1120, 1029, 1, 0, 0, 0, 1120, 1030, 1, 0, 0, 0, 1120, 1031, 1, 0, 0, 0, 1120, 1032, 1, 0, 0, 0, 1120, 1033, 1, 0, 0, 0, 1120, 1034, 1, 0, 0, 0, 1120, 1035, 1, 0, 0, 0, 1120, 1036, 1, 0, 0, 0, 1120, 1037, 1, 0, 0, 0, 1120, 1038, 1, 0, 0, 0, 1120, 1039, 1, 0, 0, 0, 1120, 1040, 1, 0, 0, 0, 1120, 1041, 1, 0, 0, 0, 1120, 1042, 1, 0, 0, 0, 1120, 1043, 1, 0, 0, 0, 1120, 1044, 1, 0, 0, 0, 1120, 1045, 1, 0, 0, 0, 1120, 1046, 1, 0, 0, 0, 1120, 1047, 1, 0, 0, 0, 1120, 1048, 1, 0, 0, 0, 1120, 1049, 1, 0, 0, 0, 1120, 1050, 1, 0, 0, 0, 1120, 1051, 1, 0, 0, 0, 1120, 1052, 1, 0, 0, 0, 1120, 1053, 1, 0, 0, 0, 1120, 1054, 1, 0, 0, 0, 1120, 1055, 1, 0, 0, 0, 1120, 1056, 1, 0, 0, 0, 1120, 1057, 1, 0, 0, 0, 1120, 1058, 1, 0, 0, 0, 1120, 1059, 1, 0, 0, 0, 1120, 1060, 1, 0, 0, 0, 1120, 1061, 1, 0, 0, 0, 1120, 1062, 1, 0, 0, 0, 1120, 1063, 1, 0, 0, 0, 1120, 1064, 1, 0, 0, 0, 1120, 1065, 1, 0, 0, 0, 1120, 1066, 1, 0, 0, 0, 1120, 1067, 1, 0, 0, 0, 1120, 1068, 1, 0, 0, 0, 1120, 1069, 1, 0, 0, 0, 1120, 1070, 1, 0, 0, 0, 1120, 1071, 1, 0, 0, 0, 1120, 1072, 1, 0, 0, 0, 1120, 1073, 1, 0, 0, 0, 1120, 1074, 1, 0, 0, 0, 1120, 1075, 1, 0, 0, 0, 1120, 1076, 1, 0, 0, 0, 1120, 1077, 1, 0, 0, 0, 1120, 1078, 1, 0, 0, 0, 1120, 1079, 1, 0, 0, 0, 1120, 1080, 1, 0, 0, 0, 1120, 1081, 1, 0, 0, 0, 1120, 1082, 1, 0, 0, 0, 1120, 1083, 1, 0, 0, 0, 1120, 1084, 1, 0, 0, 0, 1120, 1085, 1, 0, 0, 0, 1120, 1086, 1, 0, 0, 0, 1120, 1087, 1, 0, 0, 0, 1120, 1088, 1, 0, 0, 0, 1120, 1089, 1, 0, 0, 0, 1120, 1090, 1, 0, 0, 0, 1120, 1091, 1, 0, 0, 0, 1120, 1092, 1, 0, 0, 0, 1120, 1093, 1, 0, 0, 0, 1120, 1094, 1, 0, 0, 0, 1120, 1095, 1, 0, 0, 0, 1120, 1096, 1, 0, 0, 0, 1120, 1097, 1, 0, 0, 0, 1120, 1098, 1, 0, 0, 0, 1120, 1099, 1, 0, 0, 0, 1120, 1100, 1, 0, 0, 0, 1120, 1101, 1, 0, 0, 0, 1120, 1102, 1, 0, 0, 0, 1120, 1103, 1, 0, 0, 0, 1120, 1104, 1, 0, 0, 0, 1120, 1105, 1, 0, 0, 0, 1120, 1106, 1, 0, 0, 0, 1120, 1107, 1, 0, 0, 0, 1120, 1108, 1, 0, 0, 0, 1120, 1109, 1, 0, 0, 0, 1120, 1110, 1, 0, 0, 0, 1120, 1111, 1, 0, 0, 0, 1120, 1112, 1, 0, 0, 0, 1120, 1113, 1, 0, 0, 0, 1120, 1114, 1, 0, 0, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1116, 1, 0, 0, 0, 1120, 1117, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 227, 1, 0, 0, 0, 80, 229, 242, 248, 266, 269, 284, 294, 301, 306, 311, 318, 322, 327, 331, 337, 342, 353, 358, 362, 366, 370, 375, 389, 400, 408, 420, 426, 465, 471, 484, 504, 509, 517, 526, 536, 553, 562, 577, 585, 592, 598, 600, 611, 623, 631, 633, 640, 653, 664, 677, 687, 694, 706, 714, 718, 743, 776, 784, 791, 794, 799, 817, 821, 825, 831, 856, 884, 917, 926, 931, 940, 961, 975, 979, 988, 991, 1000, 1004, 1018, 1120] \ No newline at end of file +[4, 1, 336, 1111, 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, 1, 0, 3, 0, 230, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 5, 3, 241, 8, 3, 10, 3, 12, 3, 244, 9, 3, 1, 4, 1, 4, 1, 4, 3, 4, 249, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 267, 8, 5, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 285, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 293, 8, 11, 10, 11, 12, 11, 296, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 302, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 307, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 312, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 317, 8, 12, 10, 12, 12, 12, 320, 9, 12, 1, 12, 3, 12, 323, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 328, 8, 12, 1, 13, 1, 13, 3, 13, 332, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 338, 8, 13, 1, 13, 1, 13, 1, 13, 3, 13, 343, 8, 13, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 5, 15, 352, 8, 15, 10, 15, 12, 15, 355, 9, 15, 1, 16, 1, 16, 3, 16, 359, 8, 16, 1, 16, 1, 16, 3, 16, 363, 8, 16, 1, 17, 1, 17, 3, 17, 367, 8, 17, 1, 17, 1, 17, 3, 17, 371, 8, 17, 1, 18, 1, 18, 1, 18, 3, 18, 376, 8, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 5, 21, 388, 8, 21, 10, 21, 12, 21, 391, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 401, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 5, 24, 407, 8, 24, 10, 24, 12, 24, 410, 9, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 421, 8, 25, 1, 26, 1, 26, 5, 26, 425, 8, 26, 10, 26, 12, 26, 428, 9, 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, 27, 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, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 466, 8, 27, 1, 28, 1, 28, 5, 28, 470, 8, 28, 10, 28, 12, 28, 473, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 485, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 505, 8, 34, 1, 35, 1, 35, 1, 35, 3, 35, 510, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 518, 8, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 525, 8, 37, 10, 37, 12, 37, 528, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 537, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 554, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 563, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 3, 44, 578, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 586, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 593, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 599, 8, 45, 10, 45, 12, 45, 602, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 612, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 623, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 629, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 642, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 651, 8, 52, 10, 52, 12, 52, 654, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 664, 8, 53, 10, 53, 12, 53, 667, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 674, 8, 53, 10, 53, 12, 53, 677, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 683, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 5, 56, 693, 8, 56, 10, 56, 12, 56, 696, 9, 56, 1, 57, 1, 57, 1, 57, 5, 57, 701, 8, 57, 10, 57, 12, 57, 704, 9, 57, 1, 58, 3, 58, 707, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 732, 8, 59, 1, 60, 1, 60, 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, 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, 65, 3, 65, 765, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 773, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 778, 8, 67, 10, 67, 12, 67, 781, 9, 67, 3, 67, 783, 8, 67, 1, 68, 1, 68, 1, 68, 3, 68, 788, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 806, 8, 71, 1, 72, 1, 72, 3, 72, 810, 8, 72, 1, 73, 1, 73, 3, 73, 814, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 820, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 845, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 3, 84, 873, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 906, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 3, 97, 915, 8, 97, 1, 97, 1, 97, 1, 98, 3, 98, 920, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 3, 100, 929, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 948, 8, 106, 10, 106, 12, 106, 951, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 5, 109, 962, 8, 109, 10, 109, 12, 109, 965, 9, 109, 1, 110, 3, 110, 968, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 977, 8, 110, 1, 111, 3, 111, 980, 8, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 987, 8, 112, 10, 112, 12, 112, 990, 9, 112, 1, 112, 3, 112, 993, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1007, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1109, 8, 113, 1, 113, 0, 1, 90, 114, 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, 0, 20, 1, 0, 118, 119, 1, 0, 18, 19, 2, 0, 137, 137, 171, 171, 5, 0, 135, 136, 140, 140, 143, 143, 148, 148, 150, 153, 3, 0, 7, 7, 56, 56, 289, 319, 1, 0, 195, 204, 13, 0, 68, 70, 74, 74, 76, 76, 79, 79, 82, 82, 84, 84, 86, 87, 89, 92, 94, 97, 205, 222, 224, 225, 227, 243, 246, 255, 4, 0, 69, 69, 212, 212, 241, 241, 243, 243, 8, 0, 70, 70, 76, 76, 82, 82, 84, 84, 89, 89, 91, 92, 95, 95, 97, 97, 8, 0, 71, 73, 75, 75, 77, 78, 80, 80, 85, 85, 88, 88, 93, 93, 98, 98, 1, 0, 244, 245, 1, 0, 275, 280, 2, 0, 256, 260, 262, 273, 2, 0, 67, 67, 112, 117, 1, 0, 282, 285, 1, 0, 286, 288, 1, 0, 333, 334, 1, 0, 65, 66, 9, 0, 70, 73, 75, 78, 80, 80, 82, 82, 84, 85, 88, 89, 91, 93, 95, 95, 97, 98, 9, 0, 31, 31, 70, 70, 76, 76, 83, 84, 89, 89, 91, 92, 95, 95, 97, 97, 321, 327, 1258, 0, 229, 1, 0, 0, 0, 2, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 8, 248, 1, 0, 0, 0, 10, 266, 1, 0, 0, 0, 12, 269, 1, 0, 0, 0, 14, 273, 1, 0, 0, 0, 16, 276, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 282, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 297, 1, 0, 0, 0, 26, 329, 1, 0, 0, 0, 28, 344, 1, 0, 0, 0, 30, 347, 1, 0, 0, 0, 32, 356, 1, 0, 0, 0, 34, 364, 1, 0, 0, 0, 36, 372, 1, 0, 0, 0, 38, 377, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 400, 1, 0, 0, 0, 46, 402, 1, 0, 0, 0, 48, 404, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 465, 1, 0, 0, 0, 56, 467, 1, 0, 0, 0, 58, 474, 1, 0, 0, 0, 60, 484, 1, 0, 0, 0, 62, 486, 1, 0, 0, 0, 64, 488, 1, 0, 0, 0, 66, 492, 1, 0, 0, 0, 68, 504, 1, 0, 0, 0, 70, 506, 1, 0, 0, 0, 72, 511, 1, 0, 0, 0, 74, 521, 1, 0, 0, 0, 76, 529, 1, 0, 0, 0, 78, 533, 1, 0, 0, 0, 80, 553, 1, 0, 0, 0, 82, 555, 1, 0, 0, 0, 84, 557, 1, 0, 0, 0, 86, 566, 1, 0, 0, 0, 88, 577, 1, 0, 0, 0, 90, 585, 1, 0, 0, 0, 92, 611, 1, 0, 0, 0, 94, 622, 1, 0, 0, 0, 96, 628, 1, 0, 0, 0, 98, 630, 1, 0, 0, 0, 100, 637, 1, 0, 0, 0, 102, 641, 1, 0, 0, 0, 104, 643, 1, 0, 0, 0, 106, 657, 1, 0, 0, 0, 108, 682, 1, 0, 0, 0, 110, 684, 1, 0, 0, 0, 112, 689, 1, 0, 0, 0, 114, 697, 1, 0, 0, 0, 116, 706, 1, 0, 0, 0, 118, 731, 1, 0, 0, 0, 120, 733, 1, 0, 0, 0, 122, 735, 1, 0, 0, 0, 124, 737, 1, 0, 0, 0, 126, 742, 1, 0, 0, 0, 128, 749, 1, 0, 0, 0, 130, 764, 1, 0, 0, 0, 132, 772, 1, 0, 0, 0, 134, 782, 1, 0, 0, 0, 136, 787, 1, 0, 0, 0, 138, 791, 1, 0, 0, 0, 140, 795, 1, 0, 0, 0, 142, 805, 1, 0, 0, 0, 144, 809, 1, 0, 0, 0, 146, 813, 1, 0, 0, 0, 148, 815, 1, 0, 0, 0, 150, 819, 1, 0, 0, 0, 152, 844, 1, 0, 0, 0, 154, 846, 1, 0, 0, 0, 156, 848, 1, 0, 0, 0, 158, 850, 1, 0, 0, 0, 160, 857, 1, 0, 0, 0, 162, 859, 1, 0, 0, 0, 164, 866, 1, 0, 0, 0, 166, 868, 1, 0, 0, 0, 168, 872, 1, 0, 0, 0, 170, 874, 1, 0, 0, 0, 172, 883, 1, 0, 0, 0, 174, 885, 1, 0, 0, 0, 176, 887, 1, 0, 0, 0, 178, 889, 1, 0, 0, 0, 180, 891, 1, 0, 0, 0, 182, 893, 1, 0, 0, 0, 184, 895, 1, 0, 0, 0, 186, 897, 1, 0, 0, 0, 188, 905, 1, 0, 0, 0, 190, 907, 1, 0, 0, 0, 192, 911, 1, 0, 0, 0, 194, 914, 1, 0, 0, 0, 196, 919, 1, 0, 0, 0, 198, 923, 1, 0, 0, 0, 200, 928, 1, 0, 0, 0, 202, 930, 1, 0, 0, 0, 204, 933, 1, 0, 0, 0, 206, 936, 1, 0, 0, 0, 208, 939, 1, 0, 0, 0, 210, 941, 1, 0, 0, 0, 212, 943, 1, 0, 0, 0, 214, 954, 1, 0, 0, 0, 216, 956, 1, 0, 0, 0, 218, 958, 1, 0, 0, 0, 220, 976, 1, 0, 0, 0, 222, 979, 1, 0, 0, 0, 224, 1006, 1, 0, 0, 0, 226, 1108, 1, 0, 0, 0, 228, 230, 3, 2, 1, 0, 229, 228, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 232, 5, 0, 0, 1, 232, 1, 1, 0, 0, 0, 233, 234, 3, 4, 2, 0, 234, 3, 1, 0, 0, 0, 235, 236, 3, 6, 3, 0, 236, 5, 1, 0, 0, 0, 237, 242, 3, 8, 4, 0, 238, 239, 5, 109, 0, 0, 239, 241, 3, 10, 5, 0, 240, 238, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 7, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 249, 3, 12, 6, 0, 246, 249, 3, 14, 7, 0, 247, 249, 3, 16, 8, 0, 248, 245, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 247, 1, 0, 0, 0, 249, 9, 1, 0, 0, 0, 250, 267, 3, 18, 9, 0, 251, 267, 3, 20, 10, 0, 252, 267, 3, 22, 11, 0, 253, 267, 3, 24, 12, 0, 254, 267, 3, 26, 13, 0, 255, 267, 3, 28, 14, 0, 256, 267, 3, 30, 15, 0, 257, 267, 3, 32, 16, 0, 258, 267, 3, 34, 17, 0, 259, 267, 3, 36, 18, 0, 260, 267, 3, 38, 19, 0, 261, 267, 3, 40, 20, 0, 262, 267, 3, 42, 21, 0, 263, 267, 3, 48, 24, 0, 264, 267, 3, 52, 26, 0, 265, 267, 3, 56, 28, 0, 266, 250, 1, 0, 0, 0, 266, 251, 1, 0, 0, 0, 266, 252, 1, 0, 0, 0, 266, 253, 1, 0, 0, 0, 266, 254, 1, 0, 0, 0, 266, 255, 1, 0, 0, 0, 266, 256, 1, 0, 0, 0, 266, 257, 1, 0, 0, 0, 266, 258, 1, 0, 0, 0, 266, 259, 1, 0, 0, 0, 266, 260, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 266, 263, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 265, 1, 0, 0, 0, 267, 11, 1, 0, 0, 0, 268, 270, 5, 2, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 3, 60, 30, 0, 272, 13, 1, 0, 0, 0, 273, 274, 5, 3, 0, 0, 274, 275, 3, 62, 31, 0, 275, 15, 1, 0, 0, 0, 276, 277, 5, 4, 0, 0, 277, 278, 5, 33, 0, 0, 278, 17, 1, 0, 0, 0, 279, 280, 5, 6, 0, 0, 280, 281, 3, 90, 45, 0, 281, 19, 1, 0, 0, 0, 282, 284, 5, 7, 0, 0, 283, 285, 7, 0, 0, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 3, 112, 56, 0, 287, 21, 1, 0, 0, 0, 288, 289, 5, 8, 0, 0, 289, 294, 3, 64, 32, 0, 290, 291, 5, 110, 0, 0, 291, 293, 3, 64, 32, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 23, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 301, 5, 9, 0, 0, 298, 299, 5, 42, 0, 0, 299, 300, 5, 112, 0, 0, 300, 302, 3, 194, 97, 0, 301, 298, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 306, 1, 0, 0, 0, 303, 304, 5, 43, 0, 0, 304, 305, 5, 112, 0, 0, 305, 307, 3, 198, 99, 0, 306, 303, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 311, 1, 0, 0, 0, 308, 309, 5, 44, 0, 0, 309, 310, 5, 112, 0, 0, 310, 312, 3, 192, 96, 0, 311, 308, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 318, 3, 78, 39, 0, 314, 315, 5, 110, 0, 0, 315, 317, 3, 78, 39, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 322, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 323, 3, 68, 34, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 327, 1, 0, 0, 0, 324, 325, 5, 41, 0, 0, 325, 326, 5, 112, 0, 0, 326, 328, 3, 198, 99, 0, 327, 324, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 25, 1, 0, 0, 0, 329, 331, 5, 10, 0, 0, 330, 332, 3, 194, 97, 0, 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 3, 112, 56, 0, 334, 335, 5, 39, 0, 0, 335, 336, 5, 112, 0, 0, 336, 338, 3, 198, 99, 0, 337, 334, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 342, 1, 0, 0, 0, 339, 340, 5, 40, 0, 0, 340, 341, 5, 112, 0, 0, 341, 343, 3, 198, 99, 0, 342, 339, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 27, 1, 0, 0, 0, 344, 345, 5, 11, 0, 0, 345, 346, 3, 74, 37, 0, 346, 29, 1, 0, 0, 0, 347, 348, 5, 12, 0, 0, 348, 353, 3, 76, 38, 0, 349, 350, 5, 110, 0, 0, 350, 352, 3, 76, 38, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 31, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 358, 5, 13, 0, 0, 357, 359, 3, 194, 97, 0, 358, 357, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 362, 1, 0, 0, 0, 360, 361, 5, 5, 0, 0, 361, 363, 3, 194, 97, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 33, 1, 0, 0, 0, 364, 366, 5, 14, 0, 0, 365, 367, 3, 194, 97, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 3, 112, 56, 0, 369, 371, 3, 66, 33, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 373, 5, 15, 0, 0, 373, 375, 3, 112, 56, 0, 374, 376, 3, 66, 33, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 37, 1, 0, 0, 0, 377, 378, 5, 20, 0, 0, 378, 379, 3, 88, 44, 0, 379, 380, 3, 192, 96, 0, 380, 39, 1, 0, 0, 0, 381, 382, 5, 16, 0, 0, 382, 383, 3, 88, 44, 0, 383, 384, 3, 192, 96, 0, 384, 41, 1, 0, 0, 0, 385, 389, 5, 22, 0, 0, 386, 388, 3, 44, 22, 0, 387, 386, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 3, 88, 44, 0, 393, 43, 1, 0, 0, 0, 394, 395, 5, 23, 0, 0, 395, 396, 5, 112, 0, 0, 396, 401, 3, 192, 96, 0, 397, 398, 5, 21, 0, 0, 398, 399, 5, 112, 0, 0, 399, 401, 3, 192, 96, 0, 400, 394, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 401, 45, 1, 0, 0, 0, 402, 403, 7, 1, 0, 0, 403, 47, 1, 0, 0, 0, 404, 408, 5, 24, 0, 0, 405, 407, 3, 50, 25, 0, 406, 405, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 49, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 412, 5, 45, 0, 0, 412, 413, 5, 112, 0, 0, 413, 421, 3, 194, 97, 0, 414, 415, 5, 46, 0, 0, 415, 416, 5, 112, 0, 0, 416, 421, 3, 194, 97, 0, 417, 418, 5, 47, 0, 0, 418, 419, 5, 112, 0, 0, 419, 421, 3, 192, 96, 0, 420, 411, 1, 0, 0, 0, 420, 414, 1, 0, 0, 0, 420, 417, 1, 0, 0, 0, 421, 51, 1, 0, 0, 0, 422, 426, 5, 25, 0, 0, 423, 425, 3, 54, 27, 0, 424, 423, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 53, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 5, 48, 0, 0, 430, 431, 5, 112, 0, 0, 431, 466, 3, 194, 97, 0, 432, 433, 5, 49, 0, 0, 433, 434, 5, 112, 0, 0, 434, 466, 3, 194, 97, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 112, 0, 0, 437, 466, 3, 194, 97, 0, 438, 439, 5, 51, 0, 0, 439, 440, 5, 112, 0, 0, 440, 466, 3, 194, 97, 0, 441, 442, 5, 52, 0, 0, 442, 443, 5, 112, 0, 0, 443, 466, 3, 196, 98, 0, 444, 445, 5, 53, 0, 0, 445, 446, 5, 112, 0, 0, 446, 466, 3, 196, 98, 0, 447, 448, 5, 54, 0, 0, 448, 449, 5, 112, 0, 0, 449, 466, 3, 192, 96, 0, 450, 451, 5, 55, 0, 0, 451, 452, 5, 112, 0, 0, 452, 466, 3, 192, 96, 0, 453, 454, 5, 215, 0, 0, 454, 455, 5, 112, 0, 0, 455, 466, 3, 192, 96, 0, 456, 457, 5, 56, 0, 0, 457, 458, 5, 112, 0, 0, 458, 466, 3, 192, 96, 0, 459, 460, 5, 57, 0, 0, 460, 461, 5, 112, 0, 0, 461, 466, 3, 194, 97, 0, 462, 463, 5, 58, 0, 0, 463, 464, 5, 112, 0, 0, 464, 466, 3, 196, 98, 0, 465, 429, 1, 0, 0, 0, 465, 432, 1, 0, 0, 0, 465, 435, 1, 0, 0, 0, 465, 438, 1, 0, 0, 0, 465, 441, 1, 0, 0, 0, 465, 444, 1, 0, 0, 0, 465, 447, 1, 0, 0, 0, 465, 450, 1, 0, 0, 0, 465, 453, 1, 0, 0, 0, 465, 456, 1, 0, 0, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 466, 55, 1, 0, 0, 0, 467, 471, 5, 26, 0, 0, 468, 470, 3, 58, 29, 0, 469, 468, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 57, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 475, 3, 220, 110, 0, 475, 476, 5, 112, 0, 0, 476, 477, 3, 188, 94, 0, 477, 59, 1, 0, 0, 0, 478, 479, 5, 29, 0, 0, 479, 480, 5, 112, 0, 0, 480, 485, 3, 62, 31, 0, 481, 482, 5, 30, 0, 0, 482, 483, 5, 112, 0, 0, 483, 485, 3, 62, 31, 0, 484, 478, 1, 0, 0, 0, 484, 481, 1, 0, 0, 0, 485, 61, 1, 0, 0, 0, 486, 487, 3, 108, 54, 0, 487, 63, 1, 0, 0, 0, 488, 489, 3, 122, 61, 0, 489, 490, 5, 27, 0, 0, 490, 491, 3, 122, 61, 0, 491, 65, 1, 0, 0, 0, 492, 493, 5, 28, 0, 0, 493, 494, 3, 112, 56, 0, 494, 67, 1, 0, 0, 0, 495, 496, 5, 28, 0, 0, 496, 505, 3, 112, 56, 0, 497, 498, 5, 28, 0, 0, 498, 505, 3, 70, 35, 0, 499, 500, 5, 28, 0, 0, 500, 501, 3, 70, 35, 0, 501, 502, 5, 110, 0, 0, 502, 503, 3, 112, 56, 0, 503, 505, 1, 0, 0, 0, 504, 495, 1, 0, 0, 0, 504, 497, 1, 0, 0, 0, 504, 499, 1, 0, 0, 0, 505, 69, 1, 0, 0, 0, 506, 509, 3, 72, 36, 0, 507, 508, 5, 27, 0, 0, 508, 510, 3, 214, 107, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 71, 1, 0, 0, 0, 511, 512, 5, 320, 0, 0, 512, 513, 5, 125, 0, 0, 513, 514, 3, 120, 60, 0, 514, 515, 5, 110, 0, 0, 515, 517, 3, 188, 94, 0, 516, 518, 3, 210, 105, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 5, 126, 0, 0, 520, 73, 1, 0, 0, 0, 521, 526, 3, 116, 58, 0, 522, 523, 5, 110, 0, 0, 523, 525, 3, 116, 58, 0, 524, 522, 1, 0, 0, 0, 525, 528, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 75, 1, 0, 0, 0, 528, 526, 1, 0, 0, 0, 529, 530, 3, 120, 60, 0, 530, 531, 5, 112, 0, 0, 531, 532, 3, 88, 44, 0, 532, 77, 1, 0, 0, 0, 533, 536, 3, 80, 40, 0, 534, 535, 5, 27, 0, 0, 535, 537, 3, 122, 61, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 79, 1, 0, 0, 0, 538, 539, 3, 82, 41, 0, 539, 540, 5, 125, 0, 0, 540, 541, 3, 94, 47, 0, 541, 542, 5, 126, 0, 0, 542, 554, 1, 0, 0, 0, 543, 544, 5, 136, 0, 0, 544, 545, 5, 125, 0, 0, 545, 554, 5, 126, 0, 0, 546, 547, 7, 2, 0, 0, 547, 548, 5, 125, 0, 0, 548, 549, 3, 94, 47, 0, 549, 550, 5, 126, 0, 0, 550, 554, 1, 0, 0, 0, 551, 554, 3, 86, 43, 0, 552, 554, 3, 84, 42, 0, 553, 538, 1, 0, 0, 0, 553, 543, 1, 0, 0, 0, 553, 546, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 81, 1, 0, 0, 0, 555, 556, 7, 3, 0, 0, 556, 83, 1, 0, 0, 0, 557, 558, 5, 155, 0, 0, 558, 559, 5, 125, 0, 0, 559, 562, 3, 120, 60, 0, 560, 561, 5, 110, 0, 0, 561, 563, 3, 194, 97, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 5, 126, 0, 0, 565, 85, 1, 0, 0, 0, 566, 567, 5, 154, 0, 0, 567, 568, 5, 114, 0, 0, 568, 569, 3, 194, 97, 0, 569, 570, 5, 113, 0, 0, 570, 571, 5, 125, 0, 0, 571, 572, 3, 120, 60, 0, 572, 573, 5, 126, 0, 0, 573, 87, 1, 0, 0, 0, 574, 578, 3, 90, 45, 0, 575, 578, 3, 92, 46, 0, 576, 578, 3, 94, 47, 0, 577, 574, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 577, 576, 1, 0, 0, 0, 578, 89, 1, 0, 0, 0, 579, 580, 6, 45, -1, 0, 580, 586, 3, 92, 46, 0, 581, 582, 5, 61, 0, 0, 582, 586, 3, 90, 45, 6, 583, 586, 3, 100, 50, 0, 584, 586, 3, 102, 51, 0, 585, 579, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 584, 1, 0, 0, 0, 586, 600, 1, 0, 0, 0, 587, 588, 10, 5, 0, 0, 588, 589, 5, 62, 0, 0, 589, 599, 3, 90, 45, 6, 590, 592, 10, 4, 0, 0, 591, 593, 5, 63, 0, 0, 592, 591, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 599, 3, 90, 45, 5, 595, 596, 10, 3, 0, 0, 596, 597, 5, 64, 0, 0, 597, 599, 3, 90, 45, 4, 598, 587, 1, 0, 0, 0, 598, 590, 1, 0, 0, 0, 598, 595, 1, 0, 0, 0, 599, 602, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 91, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 604, 3, 94, 47, 0, 604, 605, 3, 182, 91, 0, 605, 606, 3, 94, 47, 0, 606, 612, 1, 0, 0, 0, 607, 608, 3, 94, 47, 0, 608, 609, 5, 60, 0, 0, 609, 610, 3, 212, 106, 0, 610, 612, 1, 0, 0, 0, 611, 603, 1, 0, 0, 0, 611, 607, 1, 0, 0, 0, 612, 93, 1, 0, 0, 0, 613, 623, 3, 96, 48, 0, 614, 623, 3, 98, 49, 0, 615, 623, 3, 162, 81, 0, 616, 623, 3, 158, 79, 0, 617, 623, 3, 170, 85, 0, 618, 619, 5, 125, 0, 0, 619, 620, 3, 94, 47, 0, 620, 621, 5, 126, 0, 0, 621, 623, 1, 0, 0, 0, 622, 613, 1, 0, 0, 0, 622, 614, 1, 0, 0, 0, 622, 615, 1, 0, 0, 0, 622, 616, 1, 0, 0, 0, 622, 617, 1, 0, 0, 0, 622, 618, 1, 0, 0, 0, 623, 95, 1, 0, 0, 0, 624, 629, 3, 124, 62, 0, 625, 629, 3, 126, 63, 0, 626, 629, 3, 120, 60, 0, 627, 629, 3, 188, 94, 0, 628, 624, 1, 0, 0, 0, 628, 625, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 628, 627, 1, 0, 0, 0, 629, 97, 1, 0, 0, 0, 630, 631, 3, 180, 90, 0, 631, 632, 5, 125, 0, 0, 632, 633, 3, 136, 68, 0, 633, 634, 5, 60, 0, 0, 634, 635, 3, 136, 68, 0, 635, 636, 5, 126, 0, 0, 636, 99, 1, 0, 0, 0, 637, 638, 3, 128, 64, 0, 638, 101, 1, 0, 0, 0, 639, 642, 3, 104, 52, 0, 640, 642, 3, 106, 53, 0, 641, 639, 1, 0, 0, 0, 641, 640, 1, 0, 0, 0, 642, 103, 1, 0, 0, 0, 643, 644, 3, 184, 92, 0, 644, 645, 5, 125, 0, 0, 645, 646, 3, 146, 73, 0, 646, 647, 5, 110, 0, 0, 647, 652, 3, 148, 74, 0, 648, 649, 5, 110, 0, 0, 649, 651, 3, 138, 69, 0, 650, 648, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 655, 656, 5, 126, 0, 0, 656, 105, 1, 0, 0, 0, 657, 658, 3, 186, 93, 0, 658, 659, 5, 125, 0, 0, 659, 660, 5, 127, 0, 0, 660, 665, 3, 142, 71, 0, 661, 662, 5, 110, 0, 0, 662, 664, 3, 142, 71, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 668, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 5, 128, 0, 0, 669, 670, 5, 110, 0, 0, 670, 675, 3, 148, 74, 0, 671, 672, 5, 110, 0, 0, 672, 674, 3, 138, 69, 0, 673, 671, 1, 0, 0, 0, 674, 677, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 678, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 678, 679, 5, 126, 0, 0, 679, 107, 1, 0, 0, 0, 680, 683, 3, 216, 108, 0, 681, 683, 5, 332, 0, 0, 682, 680, 1, 0, 0, 0, 682, 681, 1, 0, 0, 0, 683, 109, 1, 0, 0, 0, 684, 685, 3, 214, 107, 0, 685, 686, 5, 125, 0, 0, 686, 687, 3, 134, 67, 0, 687, 688, 5, 126, 0, 0, 688, 111, 1, 0, 0, 0, 689, 694, 3, 120, 60, 0, 690, 691, 5, 110, 0, 0, 691, 693, 3, 120, 60, 0, 692, 690, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 113, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 702, 3, 122, 61, 0, 698, 699, 5, 110, 0, 0, 699, 701, 3, 122, 61, 0, 700, 698, 1, 0, 0, 0, 701, 704, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 115, 1, 0, 0, 0, 704, 702, 1, 0, 0, 0, 705, 707, 7, 0, 0, 0, 706, 705, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 3, 118, 59, 0, 709, 117, 1, 0, 0, 0, 710, 732, 3, 120, 60, 0, 711, 712, 5, 35, 0, 0, 712, 713, 5, 125, 0, 0, 713, 714, 3, 120, 60, 0, 714, 715, 5, 126, 0, 0, 715, 732, 1, 0, 0, 0, 716, 717, 5, 36, 0, 0, 717, 718, 5, 125, 0, 0, 718, 719, 3, 120, 60, 0, 719, 720, 5, 126, 0, 0, 720, 732, 1, 0, 0, 0, 721, 722, 5, 37, 0, 0, 722, 723, 5, 125, 0, 0, 723, 724, 3, 120, 60, 0, 724, 725, 5, 126, 0, 0, 725, 732, 1, 0, 0, 0, 726, 727, 5, 38, 0, 0, 727, 728, 5, 125, 0, 0, 728, 729, 3, 120, 60, 0, 729, 730, 5, 126, 0, 0, 730, 732, 1, 0, 0, 0, 731, 710, 1, 0, 0, 0, 731, 711, 1, 0, 0, 0, 731, 716, 1, 0, 0, 0, 731, 721, 1, 0, 0, 0, 731, 726, 1, 0, 0, 0, 732, 119, 1, 0, 0, 0, 733, 734, 3, 214, 107, 0, 734, 121, 1, 0, 0, 0, 735, 736, 3, 218, 109, 0, 736, 123, 1, 0, 0, 0, 737, 738, 3, 132, 66, 0, 738, 739, 5, 125, 0, 0, 739, 740, 3, 134, 67, 0, 740, 741, 5, 126, 0, 0, 741, 125, 1, 0, 0, 0, 742, 743, 5, 274, 0, 0, 743, 744, 5, 125, 0, 0, 744, 745, 3, 88, 44, 0, 745, 746, 5, 27, 0, 0, 746, 747, 3, 130, 65, 0, 747, 748, 5, 126, 0, 0, 748, 127, 1, 0, 0, 0, 749, 750, 3, 174, 87, 0, 750, 751, 5, 125, 0, 0, 751, 752, 3, 134, 67, 0, 752, 753, 5, 126, 0, 0, 753, 129, 1, 0, 0, 0, 754, 765, 5, 212, 0, 0, 755, 765, 5, 241, 0, 0, 756, 765, 5, 243, 0, 0, 757, 765, 5, 102, 0, 0, 758, 765, 5, 103, 0, 0, 759, 765, 5, 104, 0, 0, 760, 765, 5, 105, 0, 0, 761, 765, 5, 106, 0, 0, 762, 765, 5, 107, 0, 0, 763, 765, 5, 108, 0, 0, 764, 754, 1, 0, 0, 0, 764, 755, 1, 0, 0, 0, 764, 756, 1, 0, 0, 0, 764, 757, 1, 0, 0, 0, 764, 758, 1, 0, 0, 0, 764, 759, 1, 0, 0, 0, 764, 760, 1, 0, 0, 0, 764, 761, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 763, 1, 0, 0, 0, 765, 131, 1, 0, 0, 0, 766, 773, 3, 152, 76, 0, 767, 773, 3, 156, 78, 0, 768, 773, 3, 178, 89, 0, 769, 773, 3, 174, 87, 0, 770, 773, 3, 176, 88, 0, 771, 773, 3, 180, 90, 0, 772, 766, 1, 0, 0, 0, 772, 767, 1, 0, 0, 0, 772, 768, 1, 0, 0, 0, 772, 769, 1, 0, 0, 0, 772, 770, 1, 0, 0, 0, 772, 771, 1, 0, 0, 0, 773, 133, 1, 0, 0, 0, 774, 779, 3, 136, 68, 0, 775, 776, 5, 110, 0, 0, 776, 778, 3, 136, 68, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 135, 1, 0, 0, 0, 784, 785, 3, 220, 110, 0, 785, 786, 5, 112, 0, 0, 786, 788, 1, 0, 0, 0, 787, 784, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 3, 94, 47, 0, 790, 137, 1, 0, 0, 0, 791, 792, 3, 140, 70, 0, 792, 793, 5, 112, 0, 0, 793, 794, 3, 150, 75, 0, 794, 139, 1, 0, 0, 0, 795, 796, 7, 4, 0, 0, 796, 141, 1, 0, 0, 0, 797, 806, 3, 146, 73, 0, 798, 799, 3, 146, 73, 0, 799, 800, 3, 144, 72, 0, 800, 806, 1, 0, 0, 0, 801, 802, 3, 146, 73, 0, 802, 803, 5, 134, 0, 0, 803, 804, 3, 144, 72, 0, 804, 806, 1, 0, 0, 0, 805, 797, 1, 0, 0, 0, 805, 798, 1, 0, 0, 0, 805, 801, 1, 0, 0, 0, 806, 143, 1, 0, 0, 0, 807, 810, 3, 194, 97, 0, 808, 810, 3, 196, 98, 0, 809, 807, 1, 0, 0, 0, 809, 808, 1, 0, 0, 0, 810, 145, 1, 0, 0, 0, 811, 814, 3, 214, 107, 0, 812, 814, 3, 192, 96, 0, 813, 811, 1, 0, 0, 0, 813, 812, 1, 0, 0, 0, 814, 147, 1, 0, 0, 0, 815, 816, 3, 150, 75, 0, 816, 149, 1, 0, 0, 0, 817, 820, 3, 214, 107, 0, 818, 820, 3, 188, 94, 0, 819, 817, 1, 0, 0, 0, 819, 818, 1, 0, 0, 0, 820, 151, 1, 0, 0, 0, 821, 845, 5, 172, 0, 0, 822, 845, 5, 173, 0, 0, 823, 845, 5, 174, 0, 0, 824, 845, 5, 175, 0, 0, 825, 845, 5, 176, 0, 0, 826, 845, 5, 177, 0, 0, 827, 845, 5, 178, 0, 0, 828, 845, 5, 179, 0, 0, 829, 845, 5, 180, 0, 0, 830, 845, 5, 181, 0, 0, 831, 845, 5, 182, 0, 0, 832, 845, 5, 183, 0, 0, 833, 845, 5, 184, 0, 0, 834, 845, 5, 185, 0, 0, 835, 845, 5, 186, 0, 0, 836, 845, 5, 188, 0, 0, 837, 845, 5, 189, 0, 0, 838, 845, 5, 190, 0, 0, 839, 845, 5, 191, 0, 0, 840, 845, 5, 192, 0, 0, 841, 845, 5, 193, 0, 0, 842, 845, 5, 194, 0, 0, 843, 845, 3, 154, 77, 0, 844, 821, 1, 0, 0, 0, 844, 822, 1, 0, 0, 0, 844, 823, 1, 0, 0, 0, 844, 824, 1, 0, 0, 0, 844, 825, 1, 0, 0, 0, 844, 826, 1, 0, 0, 0, 844, 827, 1, 0, 0, 0, 844, 828, 1, 0, 0, 0, 844, 829, 1, 0, 0, 0, 844, 830, 1, 0, 0, 0, 844, 831, 1, 0, 0, 0, 844, 832, 1, 0, 0, 0, 844, 833, 1, 0, 0, 0, 844, 834, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 836, 1, 0, 0, 0, 844, 837, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 839, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 841, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 843, 1, 0, 0, 0, 845, 153, 1, 0, 0, 0, 846, 847, 7, 5, 0, 0, 847, 155, 1, 0, 0, 0, 848, 849, 7, 6, 0, 0, 849, 157, 1, 0, 0, 0, 850, 851, 5, 226, 0, 0, 851, 852, 5, 125, 0, 0, 852, 853, 3, 160, 80, 0, 853, 854, 5, 110, 0, 0, 854, 855, 3, 136, 68, 0, 855, 856, 5, 126, 0, 0, 856, 159, 1, 0, 0, 0, 857, 858, 7, 7, 0, 0, 858, 161, 1, 0, 0, 0, 859, 860, 5, 223, 0, 0, 860, 861, 5, 125, 0, 0, 861, 862, 3, 168, 84, 0, 862, 863, 5, 5, 0, 0, 863, 864, 3, 136, 68, 0, 864, 865, 5, 126, 0, 0, 865, 163, 1, 0, 0, 0, 866, 867, 7, 8, 0, 0, 867, 165, 1, 0, 0, 0, 868, 869, 7, 9, 0, 0, 869, 167, 1, 0, 0, 0, 870, 873, 3, 164, 82, 0, 871, 873, 3, 166, 83, 0, 872, 870, 1, 0, 0, 0, 872, 871, 1, 0, 0, 0, 873, 169, 1, 0, 0, 0, 874, 875, 3, 172, 86, 0, 875, 876, 5, 125, 0, 0, 876, 877, 3, 164, 82, 0, 877, 878, 5, 110, 0, 0, 878, 879, 3, 136, 68, 0, 879, 880, 5, 110, 0, 0, 880, 881, 3, 136, 68, 0, 881, 882, 5, 126, 0, 0, 882, 171, 1, 0, 0, 0, 883, 884, 7, 10, 0, 0, 884, 173, 1, 0, 0, 0, 885, 886, 7, 11, 0, 0, 886, 175, 1, 0, 0, 0, 887, 888, 5, 281, 0, 0, 888, 177, 1, 0, 0, 0, 889, 890, 7, 12, 0, 0, 890, 179, 1, 0, 0, 0, 891, 892, 5, 187, 0, 0, 892, 181, 1, 0, 0, 0, 893, 894, 7, 13, 0, 0, 894, 183, 1, 0, 0, 0, 895, 896, 7, 14, 0, 0, 896, 185, 1, 0, 0, 0, 897, 898, 7, 15, 0, 0, 898, 187, 1, 0, 0, 0, 899, 906, 3, 190, 95, 0, 900, 906, 3, 192, 96, 0, 901, 906, 3, 194, 97, 0, 902, 906, 3, 196, 98, 0, 903, 906, 3, 198, 99, 0, 904, 906, 3, 200, 100, 0, 905, 899, 1, 0, 0, 0, 905, 900, 1, 0, 0, 0, 905, 901, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 903, 1, 0, 0, 0, 905, 904, 1, 0, 0, 0, 906, 189, 1, 0, 0, 0, 907, 908, 5, 81, 0, 0, 908, 909, 3, 94, 47, 0, 909, 910, 3, 208, 104, 0, 910, 191, 1, 0, 0, 0, 911, 912, 7, 16, 0, 0, 912, 193, 1, 0, 0, 0, 913, 915, 7, 0, 0, 0, 914, 913, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 330, 0, 0, 917, 195, 1, 0, 0, 0, 918, 920, 7, 0, 0, 0, 919, 918, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 5, 331, 0, 0, 922, 197, 1, 0, 0, 0, 923, 924, 7, 17, 0, 0, 924, 199, 1, 0, 0, 0, 925, 929, 3, 202, 101, 0, 926, 929, 3, 204, 102, 0, 927, 929, 3, 206, 103, 0, 928, 925, 1, 0, 0, 0, 928, 926, 1, 0, 0, 0, 928, 927, 1, 0, 0, 0, 929, 201, 1, 0, 0, 0, 930, 931, 5, 212, 0, 0, 931, 932, 3, 192, 96, 0, 932, 203, 1, 0, 0, 0, 933, 934, 5, 241, 0, 0, 934, 935, 3, 192, 96, 0, 935, 205, 1, 0, 0, 0, 936, 937, 5, 243, 0, 0, 937, 938, 3, 192, 96, 0, 938, 207, 1, 0, 0, 0, 939, 940, 7, 18, 0, 0, 940, 209, 1, 0, 0, 0, 941, 942, 7, 19, 0, 0, 942, 211, 1, 0, 0, 0, 943, 944, 5, 125, 0, 0, 944, 949, 3, 188, 94, 0, 945, 946, 5, 110, 0, 0, 946, 948, 3, 188, 94, 0, 947, 945, 1, 0, 0, 0, 948, 951, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 952, 953, 5, 126, 0, 0, 953, 213, 1, 0, 0, 0, 954, 955, 5, 328, 0, 0, 955, 215, 1, 0, 0, 0, 956, 957, 5, 328, 0, 0, 957, 217, 1, 0, 0, 0, 958, 963, 3, 224, 112, 0, 959, 960, 5, 111, 0, 0, 960, 962, 3, 224, 112, 0, 961, 959, 1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 219, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 968, 5, 111, 0, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 977, 5, 328, 0, 0, 970, 971, 5, 131, 0, 0, 971, 972, 3, 220, 110, 0, 972, 973, 5, 131, 0, 0, 973, 977, 1, 0, 0, 0, 974, 977, 5, 335, 0, 0, 975, 977, 3, 226, 113, 0, 976, 967, 1, 0, 0, 0, 976, 970, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 976, 975, 1, 0, 0, 0, 977, 221, 1, 0, 0, 0, 978, 980, 5, 329, 0, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 3, 220, 110, 0, 982, 223, 1, 0, 0, 0, 983, 988, 3, 220, 110, 0, 984, 985, 5, 122, 0, 0, 985, 987, 3, 220, 110, 0, 986, 984, 1, 0, 0, 0, 987, 990, 1, 0, 0, 0, 988, 986, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 992, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 991, 993, 5, 122, 0, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 1007, 1, 0, 0, 0, 994, 995, 5, 129, 0, 0, 995, 996, 3, 224, 112, 0, 996, 997, 5, 129, 0, 0, 997, 1007, 1, 0, 0, 0, 998, 999, 5, 130, 0, 0, 999, 1000, 3, 224, 112, 0, 1000, 1001, 5, 130, 0, 0, 1001, 1007, 1, 0, 0, 0, 1002, 1003, 5, 131, 0, 0, 1003, 1004, 3, 224, 112, 0, 1004, 1005, 5, 131, 0, 0, 1005, 1007, 1, 0, 0, 0, 1006, 983, 1, 0, 0, 0, 1006, 994, 1, 0, 0, 0, 1006, 998, 1, 0, 0, 0, 1006, 1002, 1, 0, 0, 0, 1007, 225, 1, 0, 0, 0, 1008, 1109, 5, 31, 0, 0, 1009, 1109, 3, 210, 105, 0, 1010, 1109, 5, 320, 0, 0, 1011, 1109, 3, 132, 66, 0, 1012, 1109, 3, 140, 70, 0, 1013, 1109, 3, 208, 104, 0, 1014, 1109, 3, 156, 78, 0, 1015, 1109, 3, 178, 89, 0, 1016, 1109, 3, 152, 76, 0, 1017, 1109, 3, 180, 90, 0, 1018, 1109, 5, 2, 0, 0, 1019, 1109, 5, 3, 0, 0, 1020, 1109, 5, 4, 0, 0, 1021, 1109, 5, 5, 0, 0, 1022, 1109, 5, 6, 0, 0, 1023, 1109, 5, 7, 0, 0, 1024, 1109, 5, 8, 0, 0, 1025, 1109, 5, 9, 0, 0, 1026, 1109, 5, 10, 0, 0, 1027, 1109, 5, 11, 0, 0, 1028, 1109, 5, 12, 0, 0, 1029, 1109, 5, 13, 0, 0, 1030, 1109, 5, 14, 0, 0, 1031, 1109, 5, 15, 0, 0, 1032, 1109, 5, 16, 0, 0, 1033, 1109, 5, 17, 0, 0, 1034, 1109, 5, 18, 0, 0, 1035, 1109, 5, 19, 0, 0, 1036, 1109, 5, 20, 0, 0, 1037, 1109, 5, 21, 0, 0, 1038, 1109, 5, 22, 0, 0, 1039, 1109, 5, 23, 0, 0, 1040, 1109, 5, 24, 0, 0, 1041, 1109, 5, 25, 0, 0, 1042, 1109, 5, 26, 0, 0, 1043, 1109, 5, 29, 0, 0, 1044, 1109, 5, 30, 0, 0, 1045, 1109, 5, 32, 0, 0, 1046, 1109, 5, 33, 0, 0, 1047, 1109, 5, 34, 0, 0, 1048, 1109, 5, 36, 0, 0, 1049, 1109, 5, 37, 0, 0, 1050, 1109, 5, 38, 0, 0, 1051, 1109, 5, 39, 0, 0, 1052, 1109, 5, 40, 0, 0, 1053, 1109, 5, 41, 0, 0, 1054, 1109, 5, 42, 0, 0, 1055, 1109, 5, 43, 0, 0, 1056, 1109, 5, 44, 0, 0, 1057, 1109, 5, 45, 0, 0, 1058, 1109, 5, 46, 0, 0, 1059, 1109, 5, 47, 0, 0, 1060, 1109, 5, 48, 0, 0, 1061, 1109, 5, 49, 0, 0, 1062, 1109, 5, 50, 0, 0, 1063, 1109, 5, 51, 0, 0, 1064, 1109, 5, 52, 0, 0, 1065, 1109, 5, 53, 0, 0, 1066, 1109, 5, 54, 0, 0, 1067, 1109, 5, 55, 0, 0, 1068, 1109, 5, 56, 0, 0, 1069, 1109, 5, 57, 0, 0, 1070, 1109, 5, 58, 0, 0, 1071, 1109, 5, 135, 0, 0, 1072, 1109, 5, 136, 0, 0, 1073, 1109, 5, 137, 0, 0, 1074, 1109, 5, 138, 0, 0, 1075, 1109, 5, 139, 0, 0, 1076, 1109, 5, 140, 0, 0, 1077, 1109, 5, 141, 0, 0, 1078, 1109, 5, 142, 0, 0, 1079, 1109, 5, 143, 0, 0, 1080, 1109, 5, 144, 0, 0, 1081, 1109, 5, 145, 0, 0, 1082, 1109, 5, 146, 0, 0, 1083, 1109, 5, 147, 0, 0, 1084, 1109, 5, 148, 0, 0, 1085, 1109, 5, 149, 0, 0, 1086, 1109, 5, 150, 0, 0, 1087, 1109, 5, 151, 0, 0, 1088, 1109, 5, 152, 0, 0, 1089, 1109, 5, 153, 0, 0, 1090, 1109, 5, 154, 0, 0, 1091, 1109, 5, 155, 0, 0, 1092, 1109, 5, 156, 0, 0, 1093, 1109, 5, 157, 0, 0, 1094, 1109, 5, 158, 0, 0, 1095, 1109, 5, 159, 0, 0, 1096, 1109, 5, 160, 0, 0, 1097, 1109, 5, 161, 0, 0, 1098, 1109, 5, 162, 0, 0, 1099, 1109, 5, 163, 0, 0, 1100, 1109, 5, 164, 0, 0, 1101, 1109, 5, 165, 0, 0, 1102, 1109, 5, 166, 0, 0, 1103, 1109, 5, 167, 0, 0, 1104, 1109, 5, 168, 0, 0, 1105, 1109, 5, 169, 0, 0, 1106, 1109, 5, 170, 0, 0, 1107, 1109, 5, 171, 0, 0, 1108, 1008, 1, 0, 0, 0, 1108, 1009, 1, 0, 0, 0, 1108, 1010, 1, 0, 0, 0, 1108, 1011, 1, 0, 0, 0, 1108, 1012, 1, 0, 0, 0, 1108, 1013, 1, 0, 0, 0, 1108, 1014, 1, 0, 0, 0, 1108, 1015, 1, 0, 0, 0, 1108, 1016, 1, 0, 0, 0, 1108, 1017, 1, 0, 0, 0, 1108, 1018, 1, 0, 0, 0, 1108, 1019, 1, 0, 0, 0, 1108, 1020, 1, 0, 0, 0, 1108, 1021, 1, 0, 0, 0, 1108, 1022, 1, 0, 0, 0, 1108, 1023, 1, 0, 0, 0, 1108, 1024, 1, 0, 0, 0, 1108, 1025, 1, 0, 0, 0, 1108, 1026, 1, 0, 0, 0, 1108, 1027, 1, 0, 0, 0, 1108, 1028, 1, 0, 0, 0, 1108, 1029, 1, 0, 0, 0, 1108, 1030, 1, 0, 0, 0, 1108, 1031, 1, 0, 0, 0, 1108, 1032, 1, 0, 0, 0, 1108, 1033, 1, 0, 0, 0, 1108, 1034, 1, 0, 0, 0, 1108, 1035, 1, 0, 0, 0, 1108, 1036, 1, 0, 0, 0, 1108, 1037, 1, 0, 0, 0, 1108, 1038, 1, 0, 0, 0, 1108, 1039, 1, 0, 0, 0, 1108, 1040, 1, 0, 0, 0, 1108, 1041, 1, 0, 0, 0, 1108, 1042, 1, 0, 0, 0, 1108, 1043, 1, 0, 0, 0, 1108, 1044, 1, 0, 0, 0, 1108, 1045, 1, 0, 0, 0, 1108, 1046, 1, 0, 0, 0, 1108, 1047, 1, 0, 0, 0, 1108, 1048, 1, 0, 0, 0, 1108, 1049, 1, 0, 0, 0, 1108, 1050, 1, 0, 0, 0, 1108, 1051, 1, 0, 0, 0, 1108, 1052, 1, 0, 0, 0, 1108, 1053, 1, 0, 0, 0, 1108, 1054, 1, 0, 0, 0, 1108, 1055, 1, 0, 0, 0, 1108, 1056, 1, 0, 0, 0, 1108, 1057, 1, 0, 0, 0, 1108, 1058, 1, 0, 0, 0, 1108, 1059, 1, 0, 0, 0, 1108, 1060, 1, 0, 0, 0, 1108, 1061, 1, 0, 0, 0, 1108, 1062, 1, 0, 0, 0, 1108, 1063, 1, 0, 0, 0, 1108, 1064, 1, 0, 0, 0, 1108, 1065, 1, 0, 0, 0, 1108, 1066, 1, 0, 0, 0, 1108, 1067, 1, 0, 0, 0, 1108, 1068, 1, 0, 0, 0, 1108, 1069, 1, 0, 0, 0, 1108, 1070, 1, 0, 0, 0, 1108, 1071, 1, 0, 0, 0, 1108, 1072, 1, 0, 0, 0, 1108, 1073, 1, 0, 0, 0, 1108, 1074, 1, 0, 0, 0, 1108, 1075, 1, 0, 0, 0, 1108, 1076, 1, 0, 0, 0, 1108, 1077, 1, 0, 0, 0, 1108, 1078, 1, 0, 0, 0, 1108, 1079, 1, 0, 0, 0, 1108, 1080, 1, 0, 0, 0, 1108, 1081, 1, 0, 0, 0, 1108, 1082, 1, 0, 0, 0, 1108, 1083, 1, 0, 0, 0, 1108, 1084, 1, 0, 0, 0, 1108, 1085, 1, 0, 0, 0, 1108, 1086, 1, 0, 0, 0, 1108, 1087, 1, 0, 0, 0, 1108, 1088, 1, 0, 0, 0, 1108, 1089, 1, 0, 0, 0, 1108, 1090, 1, 0, 0, 0, 1108, 1091, 1, 0, 0, 0, 1108, 1092, 1, 0, 0, 0, 1108, 1093, 1, 0, 0, 0, 1108, 1094, 1, 0, 0, 0, 1108, 1095, 1, 0, 0, 0, 1108, 1096, 1, 0, 0, 0, 1108, 1097, 1, 0, 0, 0, 1108, 1098, 1, 0, 0, 0, 1108, 1099, 1, 0, 0, 0, 1108, 1100, 1, 0, 0, 0, 1108, 1101, 1, 0, 0, 0, 1108, 1102, 1, 0, 0, 0, 1108, 1103, 1, 0, 0, 0, 1108, 1104, 1, 0, 0, 0, 1108, 1105, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1107, 1, 0, 0, 0, 1109, 227, 1, 0, 0, 0, 78, 229, 242, 248, 266, 269, 284, 294, 301, 306, 311, 318, 322, 327, 331, 337, 342, 353, 358, 362, 366, 370, 375, 389, 400, 408, 420, 426, 465, 471, 484, 504, 509, 517, 526, 536, 553, 562, 577, 585, 592, 598, 600, 611, 622, 628, 641, 652, 665, 675, 682, 694, 702, 706, 731, 764, 772, 779, 782, 787, 805, 809, 813, 819, 844, 872, 905, 914, 919, 928, 949, 963, 967, 976, 979, 988, 992, 1006, 1108] \ No newline at end of file diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts index 00e83bcc4608..d5c14af0840a 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParser.ts @@ -2443,7 +2443,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.state = 539; this.match(OpenSearchPPLParser.LT_PRTHS); this.state = 540; - this.valueExpression(0); + this.valueExpression(); this.state = 541; this.match(OpenSearchPPLParser.RT_PRTHS); } @@ -2476,7 +2476,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.state = 547; this.match(OpenSearchPPLParser.LT_PRTHS); this.state = 548; - this.valueExpression(0); + this.valueExpression(); this.state = 549; this.match(OpenSearchPPLParser.RT_PRTHS); } @@ -2645,7 +2645,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 3); { this.state = 576; - this.valueExpression(0); + this.valueExpression(); } break; } @@ -2826,11 +2826,11 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 1); { this.state = 603; - (localContext as CompareExprContext)._left = this.valueExpression(0); + (localContext as CompareExprContext)._left = this.valueExpression(); this.state = 604; this.comparisonOperator(); this.state = 605; - (localContext as CompareExprContext)._right = this.valueExpression(0); + (localContext as CompareExprContext)._right = this.valueExpression(); } break; case 2: @@ -2838,7 +2838,7 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterOuterAlt(localContext, 2); { this.state = 607; - this.valueExpression(0); + this.valueExpression(); this.state = 608; this.match(OpenSearchPPLParser.IN); this.state = 609; @@ -2860,156 +2860,66 @@ export class OpenSearchPPLParser extends antlr.Parser { } return localContext; } - - public valueExpression(): ValueExpressionContext; - public valueExpression(_p: number): ValueExpressionContext; - public valueExpression(_p?: number): ValueExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let parentContext = this.context; - let parentState = this.state; - let localContext = new ValueExpressionContext(this.context, parentState); - let previousContext = localContext; - let _startState = 94; - this.enterRecursionRule(localContext, 94, OpenSearchPPLParser.RULE_valueExpression, _p); - let _la: number; + public valueExpression(): ValueExpressionContext { + let localContext = new ValueExpressionContext(this.context, this.state); + this.enterRule(localContext, 94, OpenSearchPPLParser.RULE_valueExpression); try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 623; + this.state = 622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: - { localContext = new ValueExpressionDefaultContext(localContext); - this.context = localContext; - previousContext = localContext; - - this.state = 614; + this.enterOuterAlt(localContext, 1); + { + this.state = 613; this.primaryExpression(); } break; case 2: - { localContext = new PositionFunctionCallContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 615; + this.enterOuterAlt(localContext, 2); + { + this.state = 614; this.positionFunction(); } break; case 3: - { localContext = new ExtractFunctionCallContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 616; + this.enterOuterAlt(localContext, 3); + { + this.state = 615; this.extractFunction(); } break; case 4: - { localContext = new GetFormatFunctionCallContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 617; + this.enterOuterAlt(localContext, 4); + { + this.state = 616; this.getFormatFunction(); } break; case 5: - { localContext = new TimestampFunctionCallContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 618; + this.enterOuterAlt(localContext, 5); + { + this.state = 617; this.timestampFunction(); } break; case 6: - { localContext = new ParentheticValueExprContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 619; + this.enterOuterAlt(localContext, 6); + { + this.state = 618; this.match(OpenSearchPPLParser.LT_PRTHS); + this.state = 619; + this.valueExpression(); this.state = 620; - this.valueExpression(0); - this.state = 621; this.match(OpenSearchPPLParser.RT_PRTHS); } break; } - this.context!.stop = this.tokenStream.LT(-1); - this.state = 633; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - if (this.parseListeners != null) { - this.triggerExitRuleEvent(); - } - previousContext = localContext; - { - this.state = 631; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { - case 1: - { - localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); - (localContext as BinaryArithmeticContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 625; - if (!(this.precpred(this.context, 8))) { - throw this.createFailedPredicateException("this.precpred(this.context, 8)"); - } - this.state = 626; - (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 7) !== 0))) { - (localContext as BinaryArithmeticContext)._binaryOperator = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 627; - (localContext as BinaryArithmeticContext)._right = this.valueExpression(9); - } - break; - case 2: - { - localContext = new BinaryArithmeticContext(new ValueExpressionContext(parentContext, parentState)); - (localContext as BinaryArithmeticContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, OpenSearchPPLParser.RULE_valueExpression); - this.state = 628; - if (!(this.precpred(this.context, 7))) { - throw this.createFailedPredicateException("this.precpred(this.context, 7)"); - } - this.state = 629; - (localContext as BinaryArithmeticContext)._binaryOperator = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 118 || _la === 119)) { - (localContext as BinaryArithmeticContext)._binaryOperator = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 630; - (localContext as BinaryArithmeticContext)._right = this.valueExpression(8); - } - break; - } - } - } - this.state = 635; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 45, this.context); - } - } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -3020,7 +2930,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } finally { - this.unrollRecursionContexts(parentContext); + this.exitRule(); } return localContext; } @@ -3028,34 +2938,34 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new PrimaryExpressionContext(this.context, this.state); this.enterRule(localContext, 96, OpenSearchPPLParser.RULE_primaryExpression); try { - this.state = 640; + this.state = 628; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 636; + this.state = 624; this.evalFunctionCall(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 637; + this.state = 625; this.dataTypeFunctionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 638; + this.state = 626; this.fieldExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 639; + this.state = 627; this.literalValue(); } break; @@ -3080,17 +2990,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 642; + this.state = 630; this.positionFunctionName(); - this.state = 643; + this.state = 631; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 644; + this.state = 632; this.functionArg(); - this.state = 645; + this.state = 633; this.match(OpenSearchPPLParser.IN); - this.state = 646; + this.state = 634; this.functionArg(); - this.state = 647; + this.state = 635; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3113,7 +3023,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 649; + this.state = 637; this.booleanFunctionCall(); } } @@ -3134,7 +3044,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceExpressionContext(this.context, this.state); this.enterRule(localContext, 102, OpenSearchPPLParser.RULE_relevanceExpression); try { - this.state = 653; + this.state = 641; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.MATCH: @@ -3143,7 +3053,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.MATCH_BOOL_PREFIX: this.enterOuterAlt(localContext, 1); { - this.state = 651; + this.state = 639; this.singleFieldRelevanceFunction(); } break; @@ -3152,7 +3062,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.QUERY_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 652; + this.state = 640; this.multiFieldRelevanceFunction(); } break; @@ -3180,33 +3090,33 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 655; + this.state = 643; this.singleFieldRelevanceFunctionName(); - this.state = 656; + this.state = 644; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 657; + this.state = 645; localContext._field = this.relevanceField(); - this.state = 658; + this.state = 646; this.match(OpenSearchPPLParser.COMMA); - this.state = 659; + this.state = 647; localContext._query = this.relevanceQuery(); - this.state = 664; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 660; + this.state = 648; this.match(OpenSearchPPLParser.COMMA); - this.state = 661; + this.state = 649; this.relevanceArg(); } } - this.state = 666; + this.state = 654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 667; + this.state = 655; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3230,53 +3140,53 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 669; + this.state = 657; this.multiFieldRelevanceFunctionName(); - this.state = 670; + this.state = 658; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 671; + this.state = 659; this.match(OpenSearchPPLParser.LT_SQR_PRTHS); - this.state = 672; + this.state = 660; localContext._field = this.relevanceFieldAndWeight(); - this.state = 677; + this.state = 665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 673; + this.state = 661; this.match(OpenSearchPPLParser.COMMA); - this.state = 674; + this.state = 662; localContext._field = this.relevanceFieldAndWeight(); } } - this.state = 679; + this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 680; + this.state = 668; this.match(OpenSearchPPLParser.RT_SQR_PRTHS); - this.state = 681; + this.state = 669; this.match(OpenSearchPPLParser.COMMA); - this.state = 682; + this.state = 670; localContext._query = this.relevanceQuery(); - this.state = 687; + this.state = 675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 683; + this.state = 671; this.match(OpenSearchPPLParser.COMMA); - this.state = 684; + this.state = 672; this.relevanceArg(); } } - this.state = 689; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 690; + this.state = 678; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3297,20 +3207,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new TableSourceContext(this.context, this.state); this.enterRule(localContext, 108, OpenSearchPPLParser.RULE_tableSource); try { - this.state = 694; + this.state = 682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 692; + this.state = 680; this.tableQualifiedName(); } break; case OpenSearchPPLParser.ID_DATE_SUFFIX: this.enterOuterAlt(localContext, 2); { - this.state = 693; + this.state = 681; this.match(OpenSearchPPLParser.ID_DATE_SUFFIX); } break; @@ -3337,13 +3247,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 696; + this.state = 684; this.qualifiedName(); - this.state = 697; + this.state = 685; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 698; + this.state = 686; this.functionArgs(); - this.state = 699; + this.state = 687; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3367,21 +3277,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 701; + this.state = 689; this.fieldExpression(); - this.state = 706; + this.state = 694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 702; + this.state = 690; this.match(OpenSearchPPLParser.COMMA); - this.state = 703; + this.state = 691; this.fieldExpression(); } } - this.state = 708; + this.state = 696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3407,21 +3317,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 709; + this.state = 697; this.wcFieldExpression(); - this.state = 714; + this.state = 702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 710; + this.state = 698; this.match(OpenSearchPPLParser.COMMA); - this.state = 711; + this.state = 699; this.wcFieldExpression(); } } - this.state = 716; + this.state = 704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3447,12 +3357,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 718; + this.state = 706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 717; + this.state = 705; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -3464,7 +3374,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 720; + this.state = 708; this.sortFieldExpression(); } } @@ -3485,65 +3395,65 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new SortFieldExpressionContext(this.context, this.state); this.enterRule(localContext, 118, OpenSearchPPLParser.RULE_sortFieldExpression); try { - this.state = 743; + this.state = 731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 722; + this.state = 710; this.fieldExpression(); } break; case OpenSearchPPLParser.AUTO: this.enterOuterAlt(localContext, 2); { - this.state = 723; + this.state = 711; this.match(OpenSearchPPLParser.AUTO); - this.state = 724; + this.state = 712; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 725; + this.state = 713; this.fieldExpression(); - this.state = 726; + this.state = 714; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case OpenSearchPPLParser.STR: this.enterOuterAlt(localContext, 3); { - this.state = 728; + this.state = 716; this.match(OpenSearchPPLParser.STR); - this.state = 729; + this.state = 717; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 730; + this.state = 718; this.fieldExpression(); - this.state = 731; + this.state = 719; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case OpenSearchPPLParser.IP: this.enterOuterAlt(localContext, 4); { - this.state = 733; + this.state = 721; this.match(OpenSearchPPLParser.IP); - this.state = 734; + this.state = 722; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 735; + this.state = 723; this.fieldExpression(); - this.state = 736; + this.state = 724; this.match(OpenSearchPPLParser.RT_PRTHS); } break; case OpenSearchPPLParser.NUM: this.enterOuterAlt(localContext, 5); { - this.state = 738; + this.state = 726; this.match(OpenSearchPPLParser.NUM); - this.state = 739; + this.state = 727; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 740; + this.state = 728; this.fieldExpression(); - this.state = 741; + this.state = 729; this.match(OpenSearchPPLParser.RT_PRTHS); } break; @@ -3570,7 +3480,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 745; + this.state = 733; this.qualifiedName(); } } @@ -3593,7 +3503,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 735; this.wcQualifiedName(); } } @@ -3616,13 +3526,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 749; + this.state = 737; this.evalFunctionName(); - this.state = 750; + this.state = 738; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 751; + this.state = 739; this.functionArgs(); - this.state = 752; + this.state = 740; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3645,17 +3555,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 742; this.match(OpenSearchPPLParser.CAST); - this.state = 755; + this.state = 743; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 756; + this.state = 744; this.expression(); - this.state = 757; + this.state = 745; this.match(OpenSearchPPLParser.AS); - this.state = 758; + this.state = 746; this.convertedDataType(); - this.state = 759; + this.state = 747; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3678,13 +3588,13 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 761; + this.state = 749; this.conditionFunctionBase(); - this.state = 762; + this.state = 750; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 763; + this.state = 751; this.functionArgs(); - this.state = 764; + this.state = 752; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -3705,76 +3615,76 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new ConvertedDataTypeContext(this.context, this.state); this.enterRule(localContext, 130, OpenSearchPPLParser.RULE_convertedDataType); try { - this.state = 776; + this.state = 764; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 766; + this.state = 754; localContext._typeName = this.match(OpenSearchPPLParser.DATE); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 767; + this.state = 755; localContext._typeName = this.match(OpenSearchPPLParser.TIME); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 768; + this.state = 756; localContext._typeName = this.match(OpenSearchPPLParser.TIMESTAMP); } break; case OpenSearchPPLParser.INT: this.enterOuterAlt(localContext, 4); { - this.state = 769; + this.state = 757; localContext._typeName = this.match(OpenSearchPPLParser.INT); } break; case OpenSearchPPLParser.INTEGER: this.enterOuterAlt(localContext, 5); { - this.state = 770; + this.state = 758; localContext._typeName = this.match(OpenSearchPPLParser.INTEGER); } break; case OpenSearchPPLParser.DOUBLE: this.enterOuterAlt(localContext, 6); { - this.state = 771; + this.state = 759; localContext._typeName = this.match(OpenSearchPPLParser.DOUBLE); } break; case OpenSearchPPLParser.LONG: this.enterOuterAlt(localContext, 7); { - this.state = 772; + this.state = 760; localContext._typeName = this.match(OpenSearchPPLParser.LONG); } break; case OpenSearchPPLParser.FLOAT: this.enterOuterAlt(localContext, 8); { - this.state = 773; + this.state = 761; localContext._typeName = this.match(OpenSearchPPLParser.FLOAT); } break; case OpenSearchPPLParser.STRING: this.enterOuterAlt(localContext, 9); { - this.state = 774; + this.state = 762; localContext._typeName = this.match(OpenSearchPPLParser.STRING); } break; case OpenSearchPPLParser.BOOLEAN: this.enterOuterAlt(localContext, 10); { - this.state = 775; + this.state = 763; localContext._typeName = this.match(OpenSearchPPLParser.BOOLEAN); } break; @@ -3799,7 +3709,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new EvalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 132, OpenSearchPPLParser.RULE_evalFunctionName); try { - this.state = 784; + this.state = 772; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: @@ -3836,7 +3746,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 1); { - this.state = 778; + this.state = 766; this.mathematicalFunctionName(); } break; @@ -3907,7 +3817,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEARWEEK: this.enterOuterAlt(localContext, 2); { - this.state = 779; + this.state = 767; this.dateTimeFunctionName(); } break; @@ -3930,7 +3840,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.REVERSE: this.enterOuterAlt(localContext, 3); { - this.state = 780; + this.state = 768; this.textFunctionName(); } break; @@ -3942,21 +3852,21 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.IF: this.enterOuterAlt(localContext, 4); { - this.state = 781; + this.state = 769; this.conditionFunctionBase(); } break; case OpenSearchPPLParser.TYPEOF: this.enterOuterAlt(localContext, 5); { - this.state = 782; + this.state = 770; this.systemFunctionName(); } break; case OpenSearchPPLParser.POSITION: this.enterOuterAlt(localContext, 6); { - this.state = 783; + this.state = 771; this.positionFunctionName(); } break; @@ -3984,26 +3894,26 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 794; + this.state = 782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3892314108) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 134217719) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 4294967291) !== 0) || ((((_la - 97)) & ~0x1F) === 0 && ((1 << (_la - 97)) & 274743299) !== 0) || ((((_la - 131)) & ~0x1F) === 0 && ((1 << (_la - 131)) & 4294967281) !== 0) || ((((_la - 163)) & ~0x1F) === 0 && ((1 << (_la - 163)) & 4294967295) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 4294967295) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 4294967295) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 3229614075) !== 0) || ((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 4294967295) !== 0) || ((((_la - 323)) & ~0x1F) === 0 && ((1 << (_la - 323)) & 7615) !== 0)) { { - this.state = 786; + this.state = 774; this.functionArg(); - this.state = 791; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 787; + this.state = 775; this.match(OpenSearchPPLParser.COMMA); - this.state = 788; + this.state = 776; this.functionArg(); } } - this.state = 793; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4031,20 +3941,20 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 799; + this.state = 787; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 796; + this.state = 784; this.ident(); - this.state = 797; + this.state = 785; this.match(OpenSearchPPLParser.EQUAL); } break; } - this.state = 801; - this.valueExpression(0); + this.state = 789; + this.valueExpression(); } } catch (re) { @@ -4066,11 +3976,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 803; + this.state = 791; this.relevanceArgName(); - this.state = 804; + this.state = 792; this.match(OpenSearchPPLParser.EQUAL); - this.state = 805; + this.state = 793; this.relevanceArgValue(); } } @@ -4094,7 +4004,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 807; + this.state = 795; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 56 || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 2147483647) !== 0))) { this.errorHandler.recoverInline(this); @@ -4122,33 +4032,33 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldAndWeightContext(this.context, this.state); this.enterRule(localContext, 142, OpenSearchPPLParser.RULE_relevanceFieldAndWeight); try { - this.state = 817; + this.state = 805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 809; + this.state = 797; localContext._field = this.relevanceField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 810; + this.state = 798; localContext._field = this.relevanceField(); - this.state = 811; + this.state = 799; localContext._weight = this.relevanceFieldWeight(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 813; + this.state = 801; localContext._field = this.relevanceField(); - this.state = 814; + this.state = 802; this.match(OpenSearchPPLParser.BIT_XOR_OP); - this.state = 815; + this.state = 803; localContext._weight = this.relevanceFieldWeight(); } break; @@ -4171,20 +4081,20 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldWeightContext(this.context, this.state); this.enterRule(localContext, 144, OpenSearchPPLParser.RULE_relevanceFieldWeight); try { - this.state = 821; + this.state = 809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 819; + this.state = 807; this.integerLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 820; + this.state = 808; this.decimalLiteral(); } break; @@ -4207,13 +4117,13 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceFieldContext(this.context, this.state); this.enterRule(localContext, 146, OpenSearchPPLParser.RULE_relevanceField); try { - this.state = 825; + this.state = 813; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 823; + this.state = 811; this.qualifiedName(); } break; @@ -4221,7 +4131,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 824; + this.state = 812; this.stringLiteral(); } break; @@ -4248,7 +4158,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 827; + this.state = 815; this.relevanceArgValue(); } } @@ -4269,13 +4179,13 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new RelevanceArgValueContext(this.context, this.state); this.enterRule(localContext, 150, OpenSearchPPLParser.RULE_relevanceArgValue); try { - this.state = 831; + this.state = 819; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 817; this.qualifiedName(); } break; @@ -4293,7 +4203,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.SQUOTA_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 830; + this.state = 818; this.literalValue(); } break; @@ -4318,160 +4228,160 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new MathematicalFunctionNameContext(this.context, this.state); this.enterRule(localContext, 152, OpenSearchPPLParser.RULE_mathematicalFunctionName); try { - this.state = 856; + this.state = 844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.ABS: this.enterOuterAlt(localContext, 1); { - this.state = 833; + this.state = 821; this.match(OpenSearchPPLParser.ABS); } break; case OpenSearchPPLParser.CBRT: this.enterOuterAlt(localContext, 2); { - this.state = 834; + this.state = 822; this.match(OpenSearchPPLParser.CBRT); } break; case OpenSearchPPLParser.CEIL: this.enterOuterAlt(localContext, 3); { - this.state = 835; + this.state = 823; this.match(OpenSearchPPLParser.CEIL); } break; case OpenSearchPPLParser.CEILING: this.enterOuterAlt(localContext, 4); { - this.state = 836; + this.state = 824; this.match(OpenSearchPPLParser.CEILING); } break; case OpenSearchPPLParser.CONV: this.enterOuterAlt(localContext, 5); { - this.state = 837; + this.state = 825; this.match(OpenSearchPPLParser.CONV); } break; case OpenSearchPPLParser.CRC32: this.enterOuterAlt(localContext, 6); { - this.state = 838; + this.state = 826; this.match(OpenSearchPPLParser.CRC32); } break; case OpenSearchPPLParser.E: this.enterOuterAlt(localContext, 7); { - this.state = 839; + this.state = 827; this.match(OpenSearchPPLParser.E); } break; case OpenSearchPPLParser.EXP: this.enterOuterAlt(localContext, 8); { - this.state = 840; + this.state = 828; this.match(OpenSearchPPLParser.EXP); } break; case OpenSearchPPLParser.FLOOR: this.enterOuterAlt(localContext, 9); { - this.state = 841; + this.state = 829; this.match(OpenSearchPPLParser.FLOOR); } break; case OpenSearchPPLParser.LN: this.enterOuterAlt(localContext, 10); { - this.state = 842; + this.state = 830; this.match(OpenSearchPPLParser.LN); } break; case OpenSearchPPLParser.LOG: this.enterOuterAlt(localContext, 11); { - this.state = 843; + this.state = 831; this.match(OpenSearchPPLParser.LOG); } break; case OpenSearchPPLParser.LOG10: this.enterOuterAlt(localContext, 12); { - this.state = 844; + this.state = 832; this.match(OpenSearchPPLParser.LOG10); } break; case OpenSearchPPLParser.LOG2: this.enterOuterAlt(localContext, 13); { - this.state = 845; + this.state = 833; this.match(OpenSearchPPLParser.LOG2); } break; case OpenSearchPPLParser.MOD: this.enterOuterAlt(localContext, 14); { - this.state = 846; + this.state = 834; this.match(OpenSearchPPLParser.MOD); } break; case OpenSearchPPLParser.PI: this.enterOuterAlt(localContext, 15); { - this.state = 847; + this.state = 835; this.match(OpenSearchPPLParser.PI); } break; case OpenSearchPPLParser.POW: this.enterOuterAlt(localContext, 16); { - this.state = 848; + this.state = 836; this.match(OpenSearchPPLParser.POW); } break; case OpenSearchPPLParser.POWER: this.enterOuterAlt(localContext, 17); { - this.state = 849; + this.state = 837; this.match(OpenSearchPPLParser.POWER); } break; case OpenSearchPPLParser.RAND: this.enterOuterAlt(localContext, 18); { - this.state = 850; + this.state = 838; this.match(OpenSearchPPLParser.RAND); } break; case OpenSearchPPLParser.ROUND: this.enterOuterAlt(localContext, 19); { - this.state = 851; + this.state = 839; this.match(OpenSearchPPLParser.ROUND); } break; case OpenSearchPPLParser.SIGN: this.enterOuterAlt(localContext, 20); { - this.state = 852; + this.state = 840; this.match(OpenSearchPPLParser.SIGN); } break; case OpenSearchPPLParser.SQRT: this.enterOuterAlt(localContext, 21); { - this.state = 853; + this.state = 841; this.match(OpenSearchPPLParser.SQRT); } break; case OpenSearchPPLParser.TRUNCATE: this.enterOuterAlt(localContext, 22); { - this.state = 854; + this.state = 842; this.match(OpenSearchPPLParser.TRUNCATE); } break; @@ -4487,7 +4397,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.TAN: this.enterOuterAlt(localContext, 23); { - this.state = 855; + this.state = 843; this.trigonometricFunctionName(); } break; @@ -4515,7 +4425,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 858; + this.state = 846; _la = this.tokenStream.LA(1); if(!(((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -4546,7 +4456,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 860; + this.state = 848; _la = this.tokenStream.LA(1); if(!(((((_la - 68)) & ~0x1F) === 0 && ((1 << (_la - 68)) & 1038960967) !== 0) || ((((_la - 205)) & ~0x1F) === 0 && ((1 << (_la - 205)) & 4292607999) !== 0) || ((((_la - 237)) & ~0x1F) === 0 && ((1 << (_la - 237)) & 523903) !== 0))) { this.errorHandler.recoverInline(this); @@ -4576,17 +4486,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 862; + this.state = 850; this.match(OpenSearchPPLParser.GET_FORMAT); - this.state = 863; + this.state = 851; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 864; + this.state = 852; this.getFormatType(); - this.state = 865; + this.state = 853; this.match(OpenSearchPPLParser.COMMA); - this.state = 866; + this.state = 854; this.functionArg(); - this.state = 867; + this.state = 855; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4610,7 +4520,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 869; + this.state = 857; _la = this.tokenStream.LA(1); if(!(_la === 69 || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 2684354561) !== 0))) { this.errorHandler.recoverInline(this); @@ -4640,17 +4550,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 859; this.match(OpenSearchPPLParser.EXTRACT); - this.state = 872; + this.state = 860; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 873; + this.state = 861; this.datetimePart(); - this.state = 874; + this.state = 862; this.match(OpenSearchPPLParser.FROM); - this.state = 875; + this.state = 863; this.functionArg(); - this.state = 876; + this.state = 864; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4674,7 +4584,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 878; + this.state = 866; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174608449) !== 0))) { this.errorHandler.recoverInline(this); @@ -4705,7 +4615,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 880; + this.state = 868; _la = this.tokenStream.LA(1); if(!(((((_la - 71)) & ~0x1F) === 0 && ((1 << (_la - 71)) & 138560215) !== 0))) { this.errorHandler.recoverInline(this); @@ -4733,7 +4643,7 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimePartContext(this.context, this.state); this.enterRule(localContext, 168, OpenSearchPPLParser.RULE_datetimePart); try { - this.state = 884; + this.state = 872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DAY: @@ -4747,7 +4657,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR: this.enterOuterAlt(localContext, 1); { - this.state = 882; + this.state = 870; this.simpleDateTimePart(); } break; @@ -4764,7 +4674,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.YEAR_MONTH: this.enterOuterAlt(localContext, 2); { - this.state = 883; + this.state = 871; this.complexDateTimePart(); } break; @@ -4791,21 +4701,21 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 886; + this.state = 874; this.timestampFunctionName(); - this.state = 887; + this.state = 875; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 888; + this.state = 876; this.simpleDateTimePart(); - this.state = 889; + this.state = 877; this.match(OpenSearchPPLParser.COMMA); - this.state = 890; + this.state = 878; localContext._firstArg = this.functionArg(); - this.state = 891; + this.state = 879; this.match(OpenSearchPPLParser.COMMA); - this.state = 892; + this.state = 880; localContext._secondArg = this.functionArg(); - this.state = 893; + this.state = 881; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -4829,7 +4739,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 883; _la = this.tokenStream.LA(1); if(!(_la === 244 || _la === 245)) { this.errorHandler.recoverInline(this); @@ -4860,7 +4770,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 897; + this.state = 885; _la = this.tokenStream.LA(1); if(!(((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -4890,7 +4800,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 899; + this.state = 887; this.match(OpenSearchPPLParser.TYPEOF); } } @@ -4914,7 +4824,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 901; + this.state = 889; _la = this.tokenStream.LA(1); if(!(((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 262111) !== 0))) { this.errorHandler.recoverInline(this); @@ -4944,7 +4854,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 903; + this.state = 891; this.match(OpenSearchPPLParser.POSITION); } } @@ -4968,7 +4878,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 905; + this.state = 893; _la = this.tokenStream.LA(1); if(!(_la === 67 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -4999,7 +4909,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 895; _la = this.tokenStream.LA(1); if(!(((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -5030,7 +4940,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 909; + this.state = 897; _la = this.tokenStream.LA(1); if(!(((((_la - 286)) & ~0x1F) === 0 && ((1 << (_la - 286)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -5058,48 +4968,48 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new LiteralValueContext(this.context, this.state); this.enterRule(localContext, 188, OpenSearchPPLParser.RULE_literalValue); try { - this.state = 917; + this.state = 905; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 899; this.intervalLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 912; + this.state = 900; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 913; + this.state = 901; this.integerLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 914; + this.state = 902; this.decimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 915; + this.state = 903; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 916; + this.state = 904; this.datetimeLiteral(); } break; @@ -5124,11 +5034,11 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 919; + this.state = 907; this.match(OpenSearchPPLParser.INTERVAL); - this.state = 920; - this.valueExpression(0); - this.state = 921; + this.state = 908; + this.valueExpression(); + this.state = 909; this.intervalUnit(); } } @@ -5152,7 +5062,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 923; + this.state = 911; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -5183,12 +5093,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 926; + this.state = 914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 925; + this.state = 913; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5200,7 +5110,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 928; + this.state = 916; this.match(OpenSearchPPLParser.INTEGER_LITERAL); } } @@ -5224,12 +5134,12 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 931; + this.state = 919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 118 || _la === 119) { { - this.state = 930; + this.state = 918; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -5241,7 +5151,7 @@ export class OpenSearchPPLParser extends antlr.Parser { } } - this.state = 933; + this.state = 921; this.match(OpenSearchPPLParser.DECIMAL_LITERAL); } } @@ -5265,7 +5175,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 935; + this.state = 923; _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 66)) { this.errorHandler.recoverInline(this); @@ -5293,27 +5203,27 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new DatetimeLiteralContext(this.context, this.state); this.enterRule(localContext, 200, OpenSearchPPLParser.RULE_datetimeLiteral); try { - this.state = 940; + this.state = 928; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DATE: this.enterOuterAlt(localContext, 1); { - this.state = 937; + this.state = 925; this.dateLiteral(); } break; case OpenSearchPPLParser.TIME: this.enterOuterAlt(localContext, 2); { - this.state = 938; + this.state = 926; this.timeLiteral(); } break; case OpenSearchPPLParser.TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 939; + this.state = 927; this.timestampLiteral(); } break; @@ -5340,9 +5250,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 942; + this.state = 930; this.match(OpenSearchPPLParser.DATE); - this.state = 943; + this.state = 931; localContext._date = this.stringLiteral(); } } @@ -5365,9 +5275,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 945; + this.state = 933; this.match(OpenSearchPPLParser.TIME); - this.state = 946; + this.state = 934; localContext._time = this.stringLiteral(); } } @@ -5390,9 +5300,9 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; + this.state = 936; this.match(OpenSearchPPLParser.TIMESTAMP); - this.state = 949; + this.state = 937; localContext._timestamp = this.stringLiteral(); } } @@ -5416,7 +5326,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 951; + this.state = 939; _la = this.tokenStream.LA(1); if(!(((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 451728879) !== 0))) { this.errorHandler.recoverInline(this); @@ -5447,7 +5357,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 953; + this.state = 941; _la = this.tokenStream.LA(1); if(!(_la === 31 || ((((_la - 70)) & ~0x1F) === 0 && ((1 << (_la - 70)) & 174612545) !== 0) || ((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -5478,27 +5388,27 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 955; + this.state = 943; this.match(OpenSearchPPLParser.LT_PRTHS); - this.state = 956; + this.state = 944; this.literalValue(); - this.state = 961; + this.state = 949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 110) { { { - this.state = 957; + this.state = 945; this.match(OpenSearchPPLParser.COMMA); - this.state = 958; + this.state = 946; this.literalValue(); } } - this.state = 963; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 964; + this.state = 952; this.match(OpenSearchPPLParser.RT_PRTHS); } } @@ -5521,7 +5431,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 966; + this.state = 954; this.match(OpenSearchPPLParser.ID); } } @@ -5544,7 +5454,7 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 956; this.match(OpenSearchPPLParser.ID); } } @@ -5569,21 +5479,21 @@ export class OpenSearchPPLParser extends antlr.Parser { localContext = new IdentsAsWildcardQualifiedNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 970; + this.state = 958; this.wildcard(); - this.state = 975; + this.state = 963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 111) { { { - this.state = 971; + this.state = 959; this.match(OpenSearchPPLParser.DOT); - this.state = 972; + this.state = 960; this.wildcard(); } } - this.state = 977; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5607,42 +5517,42 @@ export class OpenSearchPPLParser extends antlr.Parser { this.enterRule(localContext, 220, OpenSearchPPLParser.RULE_ident); let _la: number; try { - this.state = 988; + this.state = 976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case OpenSearchPPLParser.DOT: case OpenSearchPPLParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 978; + this.state = 966; this.match(OpenSearchPPLParser.DOT); } } - this.state = 981; + this.state = 969; this.match(OpenSearchPPLParser.ID); } break; case OpenSearchPPLParser.BACKTICK: this.enterOuterAlt(localContext, 2); { - this.state = 982; + this.state = 970; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 983; + this.state = 971; this.ident(); - this.state = 984; + this.state = 972; this.match(OpenSearchPPLParser.BACKTICK); } break; case OpenSearchPPLParser.BQUOTA_STRING: this.enterOuterAlt(localContext, 3); { - this.state = 986; + this.state = 974; this.match(OpenSearchPPLParser.BQUOTA_STRING); } break; @@ -5912,7 +5822,7 @@ export class OpenSearchPPLParser extends antlr.Parser { case OpenSearchPPLParser.Y: this.enterOuterAlt(localContext, 4); { - this.state = 987; + this.state = 975; this.keywordsCanBeId(); } break; @@ -5940,17 +5850,17 @@ export class OpenSearchPPLParser extends antlr.Parser { try { this.enterOuterAlt(localContext, 1); { - this.state = 991; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 990; + this.state = 978; this.match(OpenSearchPPLParser.CLUSTER); } } - this.state = 993; + this.state = 981; this.ident(); } } @@ -5973,38 +5883,38 @@ export class OpenSearchPPLParser extends antlr.Parser { let _la: number; try { let alternative: number; - this.state = 1018; + this.state = 1006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 983; this.ident(); - this.state = 1000; + this.state = 988; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 74, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 996; + this.state = 984; this.match(OpenSearchPPLParser.MODULE); - this.state = 997; + this.state = 985; this.ident(); } } } - this.state = 1002; + this.state = 990; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 76, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 74, this.context); } - this.state = 1004; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1003; + this.state = 991; this.match(OpenSearchPPLParser.MODULE); } } @@ -6014,33 +5924,33 @@ export class OpenSearchPPLParser extends antlr.Parser { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1006; + this.state = 994; this.match(OpenSearchPPLParser.SINGLE_QUOTE); - this.state = 1007; + this.state = 995; this.wildcard(); - this.state = 1008; + this.state = 996; this.match(OpenSearchPPLParser.SINGLE_QUOTE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1010; + this.state = 998; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); - this.state = 1011; + this.state = 999; this.wildcard(); - this.state = 1012; + this.state = 1000; this.match(OpenSearchPPLParser.DOUBLE_QUOTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1014; + this.state = 1002; this.match(OpenSearchPPLParser.BACKTICK); - this.state = 1015; + this.state = 1003; this.wildcard(); - this.state = 1016; + this.state = 1004; this.match(OpenSearchPPLParser.BACKTICK); } break; @@ -6063,706 +5973,706 @@ export class OpenSearchPPLParser extends antlr.Parser { let localContext = new KeywordsCanBeIdContext(this.context, this.state); this.enterRule(localContext, 226, OpenSearchPPLParser.RULE_keywordsCanBeId); try { - this.state = 1120; + this.state = 1108; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1008; this.match(OpenSearchPPLParser.D); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1021; + this.state = 1009; this.timespanUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1022; + this.state = 1010; this.match(OpenSearchPPLParser.SPAN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1023; + this.state = 1011; this.evalFunctionName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1024; + this.state = 1012; this.relevanceArgName(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1025; + this.state = 1013; this.intervalUnit(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1026; + this.state = 1014; this.dateTimeFunctionName(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1027; + this.state = 1015; this.textFunctionName(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1028; + this.state = 1016; this.mathematicalFunctionName(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1029; + this.state = 1017; this.positionFunctionName(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1030; + this.state = 1018; this.match(OpenSearchPPLParser.SEARCH); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1031; + this.state = 1019; this.match(OpenSearchPPLParser.DESCRIBE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1032; + this.state = 1020; this.match(OpenSearchPPLParser.SHOW); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1033; + this.state = 1021; this.match(OpenSearchPPLParser.FROM); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1034; + this.state = 1022; this.match(OpenSearchPPLParser.WHERE); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1035; + this.state = 1023; this.match(OpenSearchPPLParser.FIELDS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1036; + this.state = 1024; this.match(OpenSearchPPLParser.RENAME); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1037; + this.state = 1025; this.match(OpenSearchPPLParser.STATS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1038; + this.state = 1026; this.match(OpenSearchPPLParser.DEDUP); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1039; + this.state = 1027; this.match(OpenSearchPPLParser.SORT); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1040; + this.state = 1028; this.match(OpenSearchPPLParser.EVAL); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1041; + this.state = 1029; this.match(OpenSearchPPLParser.HEAD); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1042; + this.state = 1030; this.match(OpenSearchPPLParser.TOP); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1043; + this.state = 1031; this.match(OpenSearchPPLParser.RARE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1044; + this.state = 1032; this.match(OpenSearchPPLParser.PARSE); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1045; + this.state = 1033; this.match(OpenSearchPPLParser.METHOD); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1046; + this.state = 1034; this.match(OpenSearchPPLParser.REGEX); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1047; + this.state = 1035; this.match(OpenSearchPPLParser.PUNCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1048; + this.state = 1036; this.match(OpenSearchPPLParser.GROK); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1049; + this.state = 1037; this.match(OpenSearchPPLParser.PATTERN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1050; + this.state = 1038; this.match(OpenSearchPPLParser.PATTERNS); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1051; + this.state = 1039; this.match(OpenSearchPPLParser.NEW_FIELD); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1052; + this.state = 1040; this.match(OpenSearchPPLParser.KMEANS); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1053; + this.state = 1041; this.match(OpenSearchPPLParser.AD); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1054; + this.state = 1042; this.match(OpenSearchPPLParser.ML); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1055; + this.state = 1043; this.match(OpenSearchPPLParser.SOURCE); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1056; + this.state = 1044; this.match(OpenSearchPPLParser.INDEX); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1057; + this.state = 1045; this.match(OpenSearchPPLParser.DESC); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1058; + this.state = 1046; this.match(OpenSearchPPLParser.DATASOURCES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1059; + this.state = 1047; this.match(OpenSearchPPLParser.SORTBY); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1060; + this.state = 1048; this.match(OpenSearchPPLParser.STR); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1061; + this.state = 1049; this.match(OpenSearchPPLParser.IP); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1062; + this.state = 1050; this.match(OpenSearchPPLParser.NUM); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1063; + this.state = 1051; this.match(OpenSearchPPLParser.KEEPEMPTY); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 1064; + this.state = 1052; this.match(OpenSearchPPLParser.CONSECUTIVE); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 1065; + this.state = 1053; this.match(OpenSearchPPLParser.DEDUP_SPLITVALUES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 1066; + this.state = 1054; this.match(OpenSearchPPLParser.PARTITIONS); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 1067; + this.state = 1055; this.match(OpenSearchPPLParser.ALLNUM); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1068; + this.state = 1056; this.match(OpenSearchPPLParser.DELIM); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1069; + this.state = 1057; this.match(OpenSearchPPLParser.CENTROIDS); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1070; + this.state = 1058; this.match(OpenSearchPPLParser.ITERATIONS); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1071; + this.state = 1059; this.match(OpenSearchPPLParser.DISTANCE_TYPE); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1072; + this.state = 1060; this.match(OpenSearchPPLParser.NUMBER_OF_TREES); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1073; + this.state = 1061; this.match(OpenSearchPPLParser.SHINGLE_SIZE); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1074; + this.state = 1062; this.match(OpenSearchPPLParser.SAMPLE_SIZE); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1075; + this.state = 1063; this.match(OpenSearchPPLParser.OUTPUT_AFTER); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1076; + this.state = 1064; this.match(OpenSearchPPLParser.TIME_DECAY); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1077; + this.state = 1065; this.match(OpenSearchPPLParser.ANOMALY_RATE); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1078; + this.state = 1066; this.match(OpenSearchPPLParser.CATEGORY_FIELD); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1079; + this.state = 1067; this.match(OpenSearchPPLParser.TIME_FIELD); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1080; + this.state = 1068; this.match(OpenSearchPPLParser.TIME_ZONE); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1081; + this.state = 1069; this.match(OpenSearchPPLParser.TRAINING_DATA_SIZE); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1082; + this.state = 1070; this.match(OpenSearchPPLParser.ANOMALY_SCORE_THRESHOLD); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1083; + this.state = 1071; this.match(OpenSearchPPLParser.AVG); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1084; + this.state = 1072; this.match(OpenSearchPPLParser.COUNT); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1085; + this.state = 1073; this.match(OpenSearchPPLParser.DISTINCT_COUNT); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1086; + this.state = 1074; this.match(OpenSearchPPLParser.ESTDC); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1087; + this.state = 1075; this.match(OpenSearchPPLParser.ESTDC_ERROR); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1088; + this.state = 1076; this.match(OpenSearchPPLParser.MAX); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1089; + this.state = 1077; this.match(OpenSearchPPLParser.MEAN); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1090; + this.state = 1078; this.match(OpenSearchPPLParser.MEDIAN); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1091; + this.state = 1079; this.match(OpenSearchPPLParser.MIN); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1092; + this.state = 1080; this.match(OpenSearchPPLParser.MODE); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1093; + this.state = 1081; this.match(OpenSearchPPLParser.RANGE); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1094; + this.state = 1082; this.match(OpenSearchPPLParser.STDEV); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1095; + this.state = 1083; this.match(OpenSearchPPLParser.STDEVP); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1096; + this.state = 1084; this.match(OpenSearchPPLParser.SUM); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1097; + this.state = 1085; this.match(OpenSearchPPLParser.SUMSQ); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1098; + this.state = 1086; this.match(OpenSearchPPLParser.VAR_SAMP); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1099; + this.state = 1087; this.match(OpenSearchPPLParser.VAR_POP); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1100; + this.state = 1088; this.match(OpenSearchPPLParser.STDDEV_SAMP); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1101; + this.state = 1089; this.match(OpenSearchPPLParser.STDDEV_POP); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1102; + this.state = 1090; this.match(OpenSearchPPLParser.PERCENTILE); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1103; + this.state = 1091; this.match(OpenSearchPPLParser.TAKE); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1104; + this.state = 1092; this.match(OpenSearchPPLParser.FIRST); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1105; + this.state = 1093; this.match(OpenSearchPPLParser.LAST); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1106; + this.state = 1094; this.match(OpenSearchPPLParser.LIST); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1107; + this.state = 1095; this.match(OpenSearchPPLParser.VALUES); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1108; + this.state = 1096; this.match(OpenSearchPPLParser.EARLIEST); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1109; + this.state = 1097; this.match(OpenSearchPPLParser.EARLIEST_TIME); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1110; + this.state = 1098; this.match(OpenSearchPPLParser.LATEST); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1111; + this.state = 1099; this.match(OpenSearchPPLParser.LATEST_TIME); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1112; + this.state = 1100; this.match(OpenSearchPPLParser.PER_DAY); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1113; + this.state = 1101; this.match(OpenSearchPPLParser.PER_HOUR); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1114; + this.state = 1102; this.match(OpenSearchPPLParser.PER_MINUTE); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1115; + this.state = 1103; this.match(OpenSearchPPLParser.PER_SECOND); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1116; + this.state = 1104; this.match(OpenSearchPPLParser.RATE); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1117; + this.state = 1105; this.match(OpenSearchPPLParser.SPARKLINE); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1118; + this.state = 1106; this.match(OpenSearchPPLParser.C); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1119; + this.state = 1107; this.match(OpenSearchPPLParser.DC); } break; @@ -6786,8 +6696,6 @@ export class OpenSearchPPLParser extends antlr.Parser { switch (ruleIndex) { case 45: return this.logicalExpression_sempred(localContext as LogicalExpressionContext, predIndex); - case 47: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); } return true; } @@ -6802,18 +6710,9 @@ export class OpenSearchPPLParser extends antlr.Parser { } return true; } - private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { - switch (predIndex) { - case 3: - return this.precpred(this.context, 8); - case 4: - return this.precpred(this.context, 7); - } - return true; - } public static readonly _serializedATN: number[] = [ - 4,1,336,1123,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, + 4,1,336,1111,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, @@ -6863,43 +6762,42 @@ export class OpenSearchPPLParser extends antlr.Parser { 44,578,8,44,1,45,1,45,1,45,1,45,1,45,1,45,3,45,586,8,45,1,45,1,45, 1,45,1,45,1,45,3,45,593,8,45,1,45,1,45,1,45,1,45,5,45,599,8,45,10, 45,12,45,602,9,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,612, - 8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,624, - 8,47,1,47,1,47,1,47,1,47,1,47,1,47,5,47,632,8,47,10,47,12,47,635, - 9,47,1,48,1,48,1,48,1,48,3,48,641,8,48,1,49,1,49,1,49,1,49,1,49, - 1,49,1,49,1,50,1,50,1,51,1,51,3,51,654,8,51,1,52,1,52,1,52,1,52, - 1,52,1,52,1,52,5,52,663,8,52,10,52,12,52,666,9,52,1,52,1,52,1,53, - 1,53,1,53,1,53,1,53,1,53,5,53,676,8,53,10,53,12,53,679,9,53,1,53, - 1,53,1,53,1,53,1,53,5,53,686,8,53,10,53,12,53,689,9,53,1,53,1,53, - 1,54,1,54,3,54,695,8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56, - 5,56,705,8,56,10,56,12,56,708,9,56,1,57,1,57,1,57,5,57,713,8,57, - 10,57,12,57,716,9,57,1,58,3,58,719,8,58,1,58,1,58,1,59,1,59,1,59, + 8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,623,8,47, + 1,48,1,48,1,48,1,48,3,48,629,8,48,1,49,1,49,1,49,1,49,1,49,1,49, + 1,49,1,50,1,50,1,51,1,51,3,51,642,8,51,1,52,1,52,1,52,1,52,1,52, + 1,52,1,52,5,52,651,8,52,10,52,12,52,654,9,52,1,52,1,52,1,53,1,53, + 1,53,1,53,1,53,1,53,5,53,664,8,53,10,53,12,53,667,9,53,1,53,1,53, + 1,53,1,53,1,53,5,53,674,8,53,10,53,12,53,677,9,53,1,53,1,53,1,54, + 1,54,3,54,683,8,54,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,5,56, + 693,8,56,10,56,12,56,696,9,56,1,57,1,57,1,57,5,57,701,8,57,10,57, + 12,57,704,9,57,1,58,3,58,707,8,58,1,58,1,58,1,59,1,59,1,59,1,59, 1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59, - 1,59,1,59,1,59,1,59,1,59,3,59,744,8,59,1,60,1,60,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,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,65, - 3,65,777,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3,66,785,8,66,1,67,1, - 67,1,67,5,67,790,8,67,10,67,12,67,793,9,67,3,67,795,8,67,1,68,1, - 68,1,68,3,68,800,8,68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70,1, - 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,818,8,71,1,72,1,72,3, - 72,822,8,72,1,73,1,73,3,73,826,8,73,1,74,1,74,1,75,1,75,3,75,832, - 8,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,857, - 8,76,1,77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80, - 1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84, - 1,84,3,84,885,8,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92, - 1,92,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3,94,918,8,94,1,95, - 1,95,1,95,1,95,1,96,1,96,1,97,3,97,927,8,97,1,97,1,97,1,98,3,98, - 932,8,98,1,98,1,98,1,99,1,99,1,100,1,100,1,100,3,100,941,8,100,1, - 101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1,103,1,104,1,104, - 1,105,1,105,1,106,1,106,1,106,1,106,5,106,960,8,106,10,106,12,106, - 963,9,106,1,106,1,106,1,107,1,107,1,108,1,108,1,109,1,109,1,109, - 5,109,974,8,109,10,109,12,109,977,9,109,1,110,3,110,980,8,110,1, - 110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,989,8,110,1,111,3, - 111,992,8,111,1,111,1,111,1,112,1,112,1,112,5,112,999,8,112,10,112, - 12,112,1002,9,112,1,112,3,112,1005,8,112,1,112,1,112,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,1019,8,112, - 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, + 1,59,1,59,1,59,1,59,3,59,732,8,59,1,60,1,60,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,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,65,3,65, + 765,8,65,1,66,1,66,1,66,1,66,1,66,1,66,3,66,773,8,66,1,67,1,67,1, + 67,5,67,778,8,67,10,67,12,67,781,9,67,3,67,783,8,67,1,68,1,68,1, + 68,3,68,788,8,68,1,68,1,68,1,69,1,69,1,69,1,69,1,70,1,70,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,806,8,71,1,72,1,72,3,72,810, + 8,72,1,73,1,73,3,73,814,8,73,1,74,1,74,1,75,1,75,3,75,820,8,75,1, + 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, + 76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,3,76,845,8,76,1, + 77,1,77,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,1,84,1,84,3, + 84,873,8,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1, + 86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1, + 93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,3,94,906,8,94,1,95,1,95,1, + 95,1,95,1,96,1,96,1,97,3,97,915,8,97,1,97,1,97,1,98,3,98,920,8,98, + 1,98,1,98,1,99,1,99,1,100,1,100,1,100,3,100,929,8,100,1,101,1,101, + 1,101,1,102,1,102,1,102,1,103,1,103,1,103,1,104,1,104,1,105,1,105, + 1,106,1,106,1,106,1,106,5,106,948,8,106,10,106,12,106,951,9,106, + 1,106,1,106,1,107,1,107,1,108,1,108,1,109,1,109,1,109,5,109,962, + 8,109,10,109,12,109,965,9,109,1,110,3,110,968,8,110,1,110,1,110, + 1,110,1,110,1,110,1,110,1,110,3,110,977,8,110,1,111,3,111,980,8, + 111,1,111,1,111,1,112,1,112,1,112,5,112,987,8,112,10,112,12,112, + 990,9,112,1,112,3,112,993,8,112,1,112,1,112,1,112,1,112,1,112,1, + 112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,1007,8,112,1,113,1, + 113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, @@ -6908,364 +6806,360 @@ export class OpenSearchPPLParser extends antlr.Parser { 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, 1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113, - 1,113,3,113,1121,8,113,1,113,0,2,90,94,114,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,0,21,1,0, - 118,119,1,0,18,19,2,0,137,137,171,171,5,0,135,136,140,140,143,143, - 148,148,150,153,1,0,120,122,3,0,7,7,56,56,289,319,1,0,195,204,13, - 0,68,70,74,74,76,76,79,79,82,82,84,84,86,87,89,92,94,97,205,222, - 224,225,227,243,246,255,4,0,69,69,212,212,241,241,243,243,8,0,70, - 70,76,76,82,82,84,84,89,89,91,92,95,95,97,97,8,0,71,73,75,75,77, - 78,80,80,85,85,88,88,93,93,98,98,1,0,244,245,1,0,275,280,2,0,256, - 260,262,273,2,0,67,67,112,117,1,0,282,285,1,0,286,288,1,0,333,334, - 1,0,65,66,9,0,70,73,75,78,80,80,82,82,84,85,88,89,91,93,95,95,97, - 98,9,0,31,31,70,70,76,76,83,84,89,89,91,92,95,95,97,97,321,327,1272, - 0,229,1,0,0,0,2,233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248,1, - 0,0,0,10,266,1,0,0,0,12,269,1,0,0,0,14,273,1,0,0,0,16,276,1,0,0, - 0,18,279,1,0,0,0,20,282,1,0,0,0,22,288,1,0,0,0,24,297,1,0,0,0,26, - 329,1,0,0,0,28,344,1,0,0,0,30,347,1,0,0,0,32,356,1,0,0,0,34,364, - 1,0,0,0,36,372,1,0,0,0,38,377,1,0,0,0,40,381,1,0,0,0,42,385,1,0, - 0,0,44,400,1,0,0,0,46,402,1,0,0,0,48,404,1,0,0,0,50,420,1,0,0,0, - 52,422,1,0,0,0,54,465,1,0,0,0,56,467,1,0,0,0,58,474,1,0,0,0,60,484, - 1,0,0,0,62,486,1,0,0,0,64,488,1,0,0,0,66,492,1,0,0,0,68,504,1,0, - 0,0,70,506,1,0,0,0,72,511,1,0,0,0,74,521,1,0,0,0,76,529,1,0,0,0, - 78,533,1,0,0,0,80,553,1,0,0,0,82,555,1,0,0,0,84,557,1,0,0,0,86,566, - 1,0,0,0,88,577,1,0,0,0,90,585,1,0,0,0,92,611,1,0,0,0,94,623,1,0, - 0,0,96,640,1,0,0,0,98,642,1,0,0,0,100,649,1,0,0,0,102,653,1,0,0, - 0,104,655,1,0,0,0,106,669,1,0,0,0,108,694,1,0,0,0,110,696,1,0,0, - 0,112,701,1,0,0,0,114,709,1,0,0,0,116,718,1,0,0,0,118,743,1,0,0, - 0,120,745,1,0,0,0,122,747,1,0,0,0,124,749,1,0,0,0,126,754,1,0,0, - 0,128,761,1,0,0,0,130,776,1,0,0,0,132,784,1,0,0,0,134,794,1,0,0, - 0,136,799,1,0,0,0,138,803,1,0,0,0,140,807,1,0,0,0,142,817,1,0,0, - 0,144,821,1,0,0,0,146,825,1,0,0,0,148,827,1,0,0,0,150,831,1,0,0, - 0,152,856,1,0,0,0,154,858,1,0,0,0,156,860,1,0,0,0,158,862,1,0,0, - 0,160,869,1,0,0,0,162,871,1,0,0,0,164,878,1,0,0,0,166,880,1,0,0, - 0,168,884,1,0,0,0,170,886,1,0,0,0,172,895,1,0,0,0,174,897,1,0,0, - 0,176,899,1,0,0,0,178,901,1,0,0,0,180,903,1,0,0,0,182,905,1,0,0, - 0,184,907,1,0,0,0,186,909,1,0,0,0,188,917,1,0,0,0,190,919,1,0,0, - 0,192,923,1,0,0,0,194,926,1,0,0,0,196,931,1,0,0,0,198,935,1,0,0, - 0,200,940,1,0,0,0,202,942,1,0,0,0,204,945,1,0,0,0,206,948,1,0,0, - 0,208,951,1,0,0,0,210,953,1,0,0,0,212,955,1,0,0,0,214,966,1,0,0, - 0,216,968,1,0,0,0,218,970,1,0,0,0,220,988,1,0,0,0,222,991,1,0,0, - 0,224,1018,1,0,0,0,226,1120,1,0,0,0,228,230,3,2,1,0,229,228,1,0, - 0,0,229,230,1,0,0,0,230,231,1,0,0,0,231,232,5,0,0,1,232,1,1,0,0, - 0,233,234,3,4,2,0,234,3,1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0,237, - 242,3,8,4,0,238,239,5,109,0,0,239,241,3,10,5,0,240,238,1,0,0,0,241, - 244,1,0,0,0,242,240,1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0,244,242, - 1,0,0,0,245,249,3,12,6,0,246,249,3,14,7,0,247,249,3,16,8,0,248,245, - 1,0,0,0,248,246,1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0,250,267,3, - 18,9,0,251,267,3,20,10,0,252,267,3,22,11,0,253,267,3,24,12,0,254, - 267,3,26,13,0,255,267,3,28,14,0,256,267,3,30,15,0,257,267,3,32,16, - 0,258,267,3,34,17,0,259,267,3,36,18,0,260,267,3,38,19,0,261,267, - 3,40,20,0,262,267,3,42,21,0,263,267,3,48,24,0,264,267,3,52,26,0, - 265,267,3,56,28,0,266,250,1,0,0,0,266,251,1,0,0,0,266,252,1,0,0, - 0,266,253,1,0,0,0,266,254,1,0,0,0,266,255,1,0,0,0,266,256,1,0,0, - 0,266,257,1,0,0,0,266,258,1,0,0,0,266,259,1,0,0,0,266,260,1,0,0, - 0,266,261,1,0,0,0,266,262,1,0,0,0,266,263,1,0,0,0,266,264,1,0,0, - 0,266,265,1,0,0,0,267,11,1,0,0,0,268,270,5,2,0,0,269,268,1,0,0,0, - 269,270,1,0,0,0,270,271,1,0,0,0,271,272,3,60,30,0,272,13,1,0,0,0, - 273,274,5,3,0,0,274,275,3,62,31,0,275,15,1,0,0,0,276,277,5,4,0,0, - 277,278,5,33,0,0,278,17,1,0,0,0,279,280,5,6,0,0,280,281,3,90,45, - 0,281,19,1,0,0,0,282,284,5,7,0,0,283,285,7,0,0,0,284,283,1,0,0,0, - 284,285,1,0,0,0,285,286,1,0,0,0,286,287,3,112,56,0,287,21,1,0,0, - 0,288,289,5,8,0,0,289,294,3,64,32,0,290,291,5,110,0,0,291,293,3, - 64,32,0,292,290,1,0,0,0,293,296,1,0,0,0,294,292,1,0,0,0,294,295, - 1,0,0,0,295,23,1,0,0,0,296,294,1,0,0,0,297,301,5,9,0,0,298,299,5, - 42,0,0,299,300,5,112,0,0,300,302,3,194,97,0,301,298,1,0,0,0,301, - 302,1,0,0,0,302,306,1,0,0,0,303,304,5,43,0,0,304,305,5,112,0,0,305, - 307,3,198,99,0,306,303,1,0,0,0,306,307,1,0,0,0,307,311,1,0,0,0,308, - 309,5,44,0,0,309,310,5,112,0,0,310,312,3,192,96,0,311,308,1,0,0, - 0,311,312,1,0,0,0,312,313,1,0,0,0,313,318,3,78,39,0,314,315,5,110, - 0,0,315,317,3,78,39,0,316,314,1,0,0,0,317,320,1,0,0,0,318,316,1, - 0,0,0,318,319,1,0,0,0,319,322,1,0,0,0,320,318,1,0,0,0,321,323,3, - 68,34,0,322,321,1,0,0,0,322,323,1,0,0,0,323,327,1,0,0,0,324,325, - 5,41,0,0,325,326,5,112,0,0,326,328,3,198,99,0,327,324,1,0,0,0,327, - 328,1,0,0,0,328,25,1,0,0,0,329,331,5,10,0,0,330,332,3,194,97,0,331, - 330,1,0,0,0,331,332,1,0,0,0,332,333,1,0,0,0,333,337,3,112,56,0,334, - 335,5,39,0,0,335,336,5,112,0,0,336,338,3,198,99,0,337,334,1,0,0, - 0,337,338,1,0,0,0,338,342,1,0,0,0,339,340,5,40,0,0,340,341,5,112, - 0,0,341,343,3,198,99,0,342,339,1,0,0,0,342,343,1,0,0,0,343,27,1, - 0,0,0,344,345,5,11,0,0,345,346,3,74,37,0,346,29,1,0,0,0,347,348, - 5,12,0,0,348,353,3,76,38,0,349,350,5,110,0,0,350,352,3,76,38,0,351, - 349,1,0,0,0,352,355,1,0,0,0,353,351,1,0,0,0,353,354,1,0,0,0,354, - 31,1,0,0,0,355,353,1,0,0,0,356,358,5,13,0,0,357,359,3,194,97,0,358, - 357,1,0,0,0,358,359,1,0,0,0,359,362,1,0,0,0,360,361,5,5,0,0,361, - 363,3,194,97,0,362,360,1,0,0,0,362,363,1,0,0,0,363,33,1,0,0,0,364, - 366,5,14,0,0,365,367,3,194,97,0,366,365,1,0,0,0,366,367,1,0,0,0, - 367,368,1,0,0,0,368,370,3,112,56,0,369,371,3,66,33,0,370,369,1,0, - 0,0,370,371,1,0,0,0,371,35,1,0,0,0,372,373,5,15,0,0,373,375,3,112, - 56,0,374,376,3,66,33,0,375,374,1,0,0,0,375,376,1,0,0,0,376,37,1, - 0,0,0,377,378,5,20,0,0,378,379,3,88,44,0,379,380,3,192,96,0,380, - 39,1,0,0,0,381,382,5,16,0,0,382,383,3,88,44,0,383,384,3,192,96,0, - 384,41,1,0,0,0,385,389,5,22,0,0,386,388,3,44,22,0,387,386,1,0,0, - 0,388,391,1,0,0,0,389,387,1,0,0,0,389,390,1,0,0,0,390,392,1,0,0, - 0,391,389,1,0,0,0,392,393,3,88,44,0,393,43,1,0,0,0,394,395,5,23, - 0,0,395,396,5,112,0,0,396,401,3,192,96,0,397,398,5,21,0,0,398,399, - 5,112,0,0,399,401,3,192,96,0,400,394,1,0,0,0,400,397,1,0,0,0,401, - 45,1,0,0,0,402,403,7,1,0,0,403,47,1,0,0,0,404,408,5,24,0,0,405,407, - 3,50,25,0,406,405,1,0,0,0,407,410,1,0,0,0,408,406,1,0,0,0,408,409, - 1,0,0,0,409,49,1,0,0,0,410,408,1,0,0,0,411,412,5,45,0,0,412,413, - 5,112,0,0,413,421,3,194,97,0,414,415,5,46,0,0,415,416,5,112,0,0, - 416,421,3,194,97,0,417,418,5,47,0,0,418,419,5,112,0,0,419,421,3, - 192,96,0,420,411,1,0,0,0,420,414,1,0,0,0,420,417,1,0,0,0,421,51, - 1,0,0,0,422,426,5,25,0,0,423,425,3,54,27,0,424,423,1,0,0,0,425,428, - 1,0,0,0,426,424,1,0,0,0,426,427,1,0,0,0,427,53,1,0,0,0,428,426,1, - 0,0,0,429,430,5,48,0,0,430,431,5,112,0,0,431,466,3,194,97,0,432, - 433,5,49,0,0,433,434,5,112,0,0,434,466,3,194,97,0,435,436,5,50,0, - 0,436,437,5,112,0,0,437,466,3,194,97,0,438,439,5,51,0,0,439,440, - 5,112,0,0,440,466,3,194,97,0,441,442,5,52,0,0,442,443,5,112,0,0, - 443,466,3,196,98,0,444,445,5,53,0,0,445,446,5,112,0,0,446,466,3, - 196,98,0,447,448,5,54,0,0,448,449,5,112,0,0,449,466,3,192,96,0,450, - 451,5,55,0,0,451,452,5,112,0,0,452,466,3,192,96,0,453,454,5,215, - 0,0,454,455,5,112,0,0,455,466,3,192,96,0,456,457,5,56,0,0,457,458, - 5,112,0,0,458,466,3,192,96,0,459,460,5,57,0,0,460,461,5,112,0,0, - 461,466,3,194,97,0,462,463,5,58,0,0,463,464,5,112,0,0,464,466,3, - 196,98,0,465,429,1,0,0,0,465,432,1,0,0,0,465,435,1,0,0,0,465,438, - 1,0,0,0,465,441,1,0,0,0,465,444,1,0,0,0,465,447,1,0,0,0,465,450, - 1,0,0,0,465,453,1,0,0,0,465,456,1,0,0,0,465,459,1,0,0,0,465,462, - 1,0,0,0,466,55,1,0,0,0,467,471,5,26,0,0,468,470,3,58,29,0,469,468, - 1,0,0,0,470,473,1,0,0,0,471,469,1,0,0,0,471,472,1,0,0,0,472,57,1, - 0,0,0,473,471,1,0,0,0,474,475,3,220,110,0,475,476,5,112,0,0,476, - 477,3,188,94,0,477,59,1,0,0,0,478,479,5,29,0,0,479,480,5,112,0,0, - 480,485,3,62,31,0,481,482,5,30,0,0,482,483,5,112,0,0,483,485,3,62, - 31,0,484,478,1,0,0,0,484,481,1,0,0,0,485,61,1,0,0,0,486,487,3,108, - 54,0,487,63,1,0,0,0,488,489,3,122,61,0,489,490,5,27,0,0,490,491, - 3,122,61,0,491,65,1,0,0,0,492,493,5,28,0,0,493,494,3,112,56,0,494, - 67,1,0,0,0,495,496,5,28,0,0,496,505,3,112,56,0,497,498,5,28,0,0, - 498,505,3,70,35,0,499,500,5,28,0,0,500,501,3,70,35,0,501,502,5,110, - 0,0,502,503,3,112,56,0,503,505,1,0,0,0,504,495,1,0,0,0,504,497,1, - 0,0,0,504,499,1,0,0,0,505,69,1,0,0,0,506,509,3,72,36,0,507,508,5, - 27,0,0,508,510,3,214,107,0,509,507,1,0,0,0,509,510,1,0,0,0,510,71, - 1,0,0,0,511,512,5,320,0,0,512,513,5,125,0,0,513,514,3,120,60,0,514, - 515,5,110,0,0,515,517,3,188,94,0,516,518,3,210,105,0,517,516,1,0, - 0,0,517,518,1,0,0,0,518,519,1,0,0,0,519,520,5,126,0,0,520,73,1,0, - 0,0,521,526,3,116,58,0,522,523,5,110,0,0,523,525,3,116,58,0,524, - 522,1,0,0,0,525,528,1,0,0,0,526,524,1,0,0,0,526,527,1,0,0,0,527, - 75,1,0,0,0,528,526,1,0,0,0,529,530,3,120,60,0,530,531,5,112,0,0, - 531,532,3,88,44,0,532,77,1,0,0,0,533,536,3,80,40,0,534,535,5,27, - 0,0,535,537,3,122,61,0,536,534,1,0,0,0,536,537,1,0,0,0,537,79,1, - 0,0,0,538,539,3,82,41,0,539,540,5,125,0,0,540,541,3,94,47,0,541, - 542,5,126,0,0,542,554,1,0,0,0,543,544,5,136,0,0,544,545,5,125,0, - 0,545,554,5,126,0,0,546,547,7,2,0,0,547,548,5,125,0,0,548,549,3, - 94,47,0,549,550,5,126,0,0,550,554,1,0,0,0,551,554,3,86,43,0,552, - 554,3,84,42,0,553,538,1,0,0,0,553,543,1,0,0,0,553,546,1,0,0,0,553, - 551,1,0,0,0,553,552,1,0,0,0,554,81,1,0,0,0,555,556,7,3,0,0,556,83, - 1,0,0,0,557,558,5,155,0,0,558,559,5,125,0,0,559,562,3,120,60,0,560, - 561,5,110,0,0,561,563,3,194,97,0,562,560,1,0,0,0,562,563,1,0,0,0, - 563,564,1,0,0,0,564,565,5,126,0,0,565,85,1,0,0,0,566,567,5,154,0, - 0,567,568,5,114,0,0,568,569,3,194,97,0,569,570,5,113,0,0,570,571, - 5,125,0,0,571,572,3,120,60,0,572,573,5,126,0,0,573,87,1,0,0,0,574, - 578,3,90,45,0,575,578,3,92,46,0,576,578,3,94,47,0,577,574,1,0,0, - 0,577,575,1,0,0,0,577,576,1,0,0,0,578,89,1,0,0,0,579,580,6,45,-1, - 0,580,586,3,92,46,0,581,582,5,61,0,0,582,586,3,90,45,6,583,586,3, - 100,50,0,584,586,3,102,51,0,585,579,1,0,0,0,585,581,1,0,0,0,585, - 583,1,0,0,0,585,584,1,0,0,0,586,600,1,0,0,0,587,588,10,5,0,0,588, - 589,5,62,0,0,589,599,3,90,45,6,590,592,10,4,0,0,591,593,5,63,0,0, - 592,591,1,0,0,0,592,593,1,0,0,0,593,594,1,0,0,0,594,599,3,90,45, - 5,595,596,10,3,0,0,596,597,5,64,0,0,597,599,3,90,45,4,598,587,1, - 0,0,0,598,590,1,0,0,0,598,595,1,0,0,0,599,602,1,0,0,0,600,598,1, - 0,0,0,600,601,1,0,0,0,601,91,1,0,0,0,602,600,1,0,0,0,603,604,3,94, - 47,0,604,605,3,182,91,0,605,606,3,94,47,0,606,612,1,0,0,0,607,608, - 3,94,47,0,608,609,5,60,0,0,609,610,3,212,106,0,610,612,1,0,0,0,611, - 603,1,0,0,0,611,607,1,0,0,0,612,93,1,0,0,0,613,614,6,47,-1,0,614, - 624,3,96,48,0,615,624,3,98,49,0,616,624,3,162,81,0,617,624,3,158, - 79,0,618,624,3,170,85,0,619,620,5,125,0,0,620,621,3,94,47,0,621, - 622,5,126,0,0,622,624,1,0,0,0,623,613,1,0,0,0,623,615,1,0,0,0,623, - 616,1,0,0,0,623,617,1,0,0,0,623,618,1,0,0,0,623,619,1,0,0,0,624, - 633,1,0,0,0,625,626,10,8,0,0,626,627,7,4,0,0,627,632,3,94,47,9,628, - 629,10,7,0,0,629,630,7,0,0,0,630,632,3,94,47,8,631,625,1,0,0,0,631, - 628,1,0,0,0,632,635,1,0,0,0,633,631,1,0,0,0,633,634,1,0,0,0,634, - 95,1,0,0,0,635,633,1,0,0,0,636,641,3,124,62,0,637,641,3,126,63,0, - 638,641,3,120,60,0,639,641,3,188,94,0,640,636,1,0,0,0,640,637,1, - 0,0,0,640,638,1,0,0,0,640,639,1,0,0,0,641,97,1,0,0,0,642,643,3,180, - 90,0,643,644,5,125,0,0,644,645,3,136,68,0,645,646,5,60,0,0,646,647, - 3,136,68,0,647,648,5,126,0,0,648,99,1,0,0,0,649,650,3,128,64,0,650, - 101,1,0,0,0,651,654,3,104,52,0,652,654,3,106,53,0,653,651,1,0,0, - 0,653,652,1,0,0,0,654,103,1,0,0,0,655,656,3,184,92,0,656,657,5,125, - 0,0,657,658,3,146,73,0,658,659,5,110,0,0,659,664,3,148,74,0,660, - 661,5,110,0,0,661,663,3,138,69,0,662,660,1,0,0,0,663,666,1,0,0,0, - 664,662,1,0,0,0,664,665,1,0,0,0,665,667,1,0,0,0,666,664,1,0,0,0, - 667,668,5,126,0,0,668,105,1,0,0,0,669,670,3,186,93,0,670,671,5,125, - 0,0,671,672,5,127,0,0,672,677,3,142,71,0,673,674,5,110,0,0,674,676, - 3,142,71,0,675,673,1,0,0,0,676,679,1,0,0,0,677,675,1,0,0,0,677,678, - 1,0,0,0,678,680,1,0,0,0,679,677,1,0,0,0,680,681,5,128,0,0,681,682, - 5,110,0,0,682,687,3,148,74,0,683,684,5,110,0,0,684,686,3,138,69, - 0,685,683,1,0,0,0,686,689,1,0,0,0,687,685,1,0,0,0,687,688,1,0,0, - 0,688,690,1,0,0,0,689,687,1,0,0,0,690,691,5,126,0,0,691,107,1,0, - 0,0,692,695,3,216,108,0,693,695,5,332,0,0,694,692,1,0,0,0,694,693, - 1,0,0,0,695,109,1,0,0,0,696,697,3,214,107,0,697,698,5,125,0,0,698, - 699,3,134,67,0,699,700,5,126,0,0,700,111,1,0,0,0,701,706,3,120,60, - 0,702,703,5,110,0,0,703,705,3,120,60,0,704,702,1,0,0,0,705,708,1, - 0,0,0,706,704,1,0,0,0,706,707,1,0,0,0,707,113,1,0,0,0,708,706,1, - 0,0,0,709,714,3,122,61,0,710,711,5,110,0,0,711,713,3,122,61,0,712, - 710,1,0,0,0,713,716,1,0,0,0,714,712,1,0,0,0,714,715,1,0,0,0,715, - 115,1,0,0,0,716,714,1,0,0,0,717,719,7,0,0,0,718,717,1,0,0,0,718, - 719,1,0,0,0,719,720,1,0,0,0,720,721,3,118,59,0,721,117,1,0,0,0,722, - 744,3,120,60,0,723,724,5,35,0,0,724,725,5,125,0,0,725,726,3,120, - 60,0,726,727,5,126,0,0,727,744,1,0,0,0,728,729,5,36,0,0,729,730, - 5,125,0,0,730,731,3,120,60,0,731,732,5,126,0,0,732,744,1,0,0,0,733, - 734,5,37,0,0,734,735,5,125,0,0,735,736,3,120,60,0,736,737,5,126, - 0,0,737,744,1,0,0,0,738,739,5,38,0,0,739,740,5,125,0,0,740,741,3, - 120,60,0,741,742,5,126,0,0,742,744,1,0,0,0,743,722,1,0,0,0,743,723, - 1,0,0,0,743,728,1,0,0,0,743,733,1,0,0,0,743,738,1,0,0,0,744,119, - 1,0,0,0,745,746,3,214,107,0,746,121,1,0,0,0,747,748,3,218,109,0, - 748,123,1,0,0,0,749,750,3,132,66,0,750,751,5,125,0,0,751,752,3,134, - 67,0,752,753,5,126,0,0,753,125,1,0,0,0,754,755,5,274,0,0,755,756, - 5,125,0,0,756,757,3,88,44,0,757,758,5,27,0,0,758,759,3,130,65,0, - 759,760,5,126,0,0,760,127,1,0,0,0,761,762,3,174,87,0,762,763,5,125, - 0,0,763,764,3,134,67,0,764,765,5,126,0,0,765,129,1,0,0,0,766,777, - 5,212,0,0,767,777,5,241,0,0,768,777,5,243,0,0,769,777,5,102,0,0, - 770,777,5,103,0,0,771,777,5,104,0,0,772,777,5,105,0,0,773,777,5, - 106,0,0,774,777,5,107,0,0,775,777,5,108,0,0,776,766,1,0,0,0,776, - 767,1,0,0,0,776,768,1,0,0,0,776,769,1,0,0,0,776,770,1,0,0,0,776, - 771,1,0,0,0,776,772,1,0,0,0,776,773,1,0,0,0,776,774,1,0,0,0,776, - 775,1,0,0,0,777,131,1,0,0,0,778,785,3,152,76,0,779,785,3,156,78, - 0,780,785,3,178,89,0,781,785,3,174,87,0,782,785,3,176,88,0,783,785, - 3,180,90,0,784,778,1,0,0,0,784,779,1,0,0,0,784,780,1,0,0,0,784,781, - 1,0,0,0,784,782,1,0,0,0,784,783,1,0,0,0,785,133,1,0,0,0,786,791, - 3,136,68,0,787,788,5,110,0,0,788,790,3,136,68,0,789,787,1,0,0,0, - 790,793,1,0,0,0,791,789,1,0,0,0,791,792,1,0,0,0,792,795,1,0,0,0, - 793,791,1,0,0,0,794,786,1,0,0,0,794,795,1,0,0,0,795,135,1,0,0,0, - 796,797,3,220,110,0,797,798,5,112,0,0,798,800,1,0,0,0,799,796,1, - 0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,802,3,94,47,0,802,137, - 1,0,0,0,803,804,3,140,70,0,804,805,5,112,0,0,805,806,3,150,75,0, - 806,139,1,0,0,0,807,808,7,5,0,0,808,141,1,0,0,0,809,818,3,146,73, - 0,810,811,3,146,73,0,811,812,3,144,72,0,812,818,1,0,0,0,813,814, - 3,146,73,0,814,815,5,134,0,0,815,816,3,144,72,0,816,818,1,0,0,0, - 817,809,1,0,0,0,817,810,1,0,0,0,817,813,1,0,0,0,818,143,1,0,0,0, - 819,822,3,194,97,0,820,822,3,196,98,0,821,819,1,0,0,0,821,820,1, - 0,0,0,822,145,1,0,0,0,823,826,3,214,107,0,824,826,3,192,96,0,825, - 823,1,0,0,0,825,824,1,0,0,0,826,147,1,0,0,0,827,828,3,150,75,0,828, - 149,1,0,0,0,829,832,3,214,107,0,830,832,3,188,94,0,831,829,1,0,0, - 0,831,830,1,0,0,0,832,151,1,0,0,0,833,857,5,172,0,0,834,857,5,173, - 0,0,835,857,5,174,0,0,836,857,5,175,0,0,837,857,5,176,0,0,838,857, - 5,177,0,0,839,857,5,178,0,0,840,857,5,179,0,0,841,857,5,180,0,0, - 842,857,5,181,0,0,843,857,5,182,0,0,844,857,5,183,0,0,845,857,5, - 184,0,0,846,857,5,185,0,0,847,857,5,186,0,0,848,857,5,188,0,0,849, - 857,5,189,0,0,850,857,5,190,0,0,851,857,5,191,0,0,852,857,5,192, - 0,0,853,857,5,193,0,0,854,857,5,194,0,0,855,857,3,154,77,0,856,833, - 1,0,0,0,856,834,1,0,0,0,856,835,1,0,0,0,856,836,1,0,0,0,856,837, - 1,0,0,0,856,838,1,0,0,0,856,839,1,0,0,0,856,840,1,0,0,0,856,841, - 1,0,0,0,856,842,1,0,0,0,856,843,1,0,0,0,856,844,1,0,0,0,856,845, - 1,0,0,0,856,846,1,0,0,0,856,847,1,0,0,0,856,848,1,0,0,0,856,849, - 1,0,0,0,856,850,1,0,0,0,856,851,1,0,0,0,856,852,1,0,0,0,856,853, - 1,0,0,0,856,854,1,0,0,0,856,855,1,0,0,0,857,153,1,0,0,0,858,859, - 7,6,0,0,859,155,1,0,0,0,860,861,7,7,0,0,861,157,1,0,0,0,862,863, - 5,226,0,0,863,864,5,125,0,0,864,865,3,160,80,0,865,866,5,110,0,0, - 866,867,3,136,68,0,867,868,5,126,0,0,868,159,1,0,0,0,869,870,7,8, - 0,0,870,161,1,0,0,0,871,872,5,223,0,0,872,873,5,125,0,0,873,874, - 3,168,84,0,874,875,5,5,0,0,875,876,3,136,68,0,876,877,5,126,0,0, - 877,163,1,0,0,0,878,879,7,9,0,0,879,165,1,0,0,0,880,881,7,10,0,0, - 881,167,1,0,0,0,882,885,3,164,82,0,883,885,3,166,83,0,884,882,1, - 0,0,0,884,883,1,0,0,0,885,169,1,0,0,0,886,887,3,172,86,0,887,888, - 5,125,0,0,888,889,3,164,82,0,889,890,5,110,0,0,890,891,3,136,68, - 0,891,892,5,110,0,0,892,893,3,136,68,0,893,894,5,126,0,0,894,171, - 1,0,0,0,895,896,7,11,0,0,896,173,1,0,0,0,897,898,7,12,0,0,898,175, - 1,0,0,0,899,900,5,281,0,0,900,177,1,0,0,0,901,902,7,13,0,0,902,179, - 1,0,0,0,903,904,5,187,0,0,904,181,1,0,0,0,905,906,7,14,0,0,906,183, - 1,0,0,0,907,908,7,15,0,0,908,185,1,0,0,0,909,910,7,16,0,0,910,187, - 1,0,0,0,911,918,3,190,95,0,912,918,3,192,96,0,913,918,3,194,97,0, - 914,918,3,196,98,0,915,918,3,198,99,0,916,918,3,200,100,0,917,911, - 1,0,0,0,917,912,1,0,0,0,917,913,1,0,0,0,917,914,1,0,0,0,917,915, - 1,0,0,0,917,916,1,0,0,0,918,189,1,0,0,0,919,920,5,81,0,0,920,921, - 3,94,47,0,921,922,3,208,104,0,922,191,1,0,0,0,923,924,7,17,0,0,924, - 193,1,0,0,0,925,927,7,0,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927, - 928,1,0,0,0,928,929,5,330,0,0,929,195,1,0,0,0,930,932,7,0,0,0,931, - 930,1,0,0,0,931,932,1,0,0,0,932,933,1,0,0,0,933,934,5,331,0,0,934, - 197,1,0,0,0,935,936,7,18,0,0,936,199,1,0,0,0,937,941,3,202,101,0, - 938,941,3,204,102,0,939,941,3,206,103,0,940,937,1,0,0,0,940,938, - 1,0,0,0,940,939,1,0,0,0,941,201,1,0,0,0,942,943,5,212,0,0,943,944, - 3,192,96,0,944,203,1,0,0,0,945,946,5,241,0,0,946,947,3,192,96,0, - 947,205,1,0,0,0,948,949,5,243,0,0,949,950,3,192,96,0,950,207,1,0, - 0,0,951,952,7,19,0,0,952,209,1,0,0,0,953,954,7,20,0,0,954,211,1, - 0,0,0,955,956,5,125,0,0,956,961,3,188,94,0,957,958,5,110,0,0,958, - 960,3,188,94,0,959,957,1,0,0,0,960,963,1,0,0,0,961,959,1,0,0,0,961, - 962,1,0,0,0,962,964,1,0,0,0,963,961,1,0,0,0,964,965,5,126,0,0,965, - 213,1,0,0,0,966,967,5,328,0,0,967,215,1,0,0,0,968,969,5,328,0,0, - 969,217,1,0,0,0,970,975,3,224,112,0,971,972,5,111,0,0,972,974,3, - 224,112,0,973,971,1,0,0,0,974,977,1,0,0,0,975,973,1,0,0,0,975,976, - 1,0,0,0,976,219,1,0,0,0,977,975,1,0,0,0,978,980,5,111,0,0,979,978, - 1,0,0,0,979,980,1,0,0,0,980,981,1,0,0,0,981,989,5,328,0,0,982,983, - 5,131,0,0,983,984,3,220,110,0,984,985,5,131,0,0,985,989,1,0,0,0, - 986,989,5,335,0,0,987,989,3,226,113,0,988,979,1,0,0,0,988,982,1, - 0,0,0,988,986,1,0,0,0,988,987,1,0,0,0,989,221,1,0,0,0,990,992,5, - 329,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,994, - 3,220,110,0,994,223,1,0,0,0,995,1000,3,220,110,0,996,997,5,122,0, - 0,997,999,3,220,110,0,998,996,1,0,0,0,999,1002,1,0,0,0,1000,998, - 1,0,0,0,1000,1001,1,0,0,0,1001,1004,1,0,0,0,1002,1000,1,0,0,0,1003, - 1005,5,122,0,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1019,1,0, - 0,0,1006,1007,5,129,0,0,1007,1008,3,224,112,0,1008,1009,5,129,0, - 0,1009,1019,1,0,0,0,1010,1011,5,130,0,0,1011,1012,3,224,112,0,1012, - 1013,5,130,0,0,1013,1019,1,0,0,0,1014,1015,5,131,0,0,1015,1016,3, - 224,112,0,1016,1017,5,131,0,0,1017,1019,1,0,0,0,1018,995,1,0,0,0, - 1018,1006,1,0,0,0,1018,1010,1,0,0,0,1018,1014,1,0,0,0,1019,225,1, - 0,0,0,1020,1121,5,31,0,0,1021,1121,3,210,105,0,1022,1121,5,320,0, - 0,1023,1121,3,132,66,0,1024,1121,3,140,70,0,1025,1121,3,208,104, - 0,1026,1121,3,156,78,0,1027,1121,3,178,89,0,1028,1121,3,152,76,0, - 1029,1121,3,180,90,0,1030,1121,5,2,0,0,1031,1121,5,3,0,0,1032,1121, - 5,4,0,0,1033,1121,5,5,0,0,1034,1121,5,6,0,0,1035,1121,5,7,0,0,1036, - 1121,5,8,0,0,1037,1121,5,9,0,0,1038,1121,5,10,0,0,1039,1121,5,11, - 0,0,1040,1121,5,12,0,0,1041,1121,5,13,0,0,1042,1121,5,14,0,0,1043, - 1121,5,15,0,0,1044,1121,5,16,0,0,1045,1121,5,17,0,0,1046,1121,5, - 18,0,0,1047,1121,5,19,0,0,1048,1121,5,20,0,0,1049,1121,5,21,0,0, - 1050,1121,5,22,0,0,1051,1121,5,23,0,0,1052,1121,5,24,0,0,1053,1121, - 5,25,0,0,1054,1121,5,26,0,0,1055,1121,5,29,0,0,1056,1121,5,30,0, - 0,1057,1121,5,32,0,0,1058,1121,5,33,0,0,1059,1121,5,34,0,0,1060, - 1121,5,36,0,0,1061,1121,5,37,0,0,1062,1121,5,38,0,0,1063,1121,5, - 39,0,0,1064,1121,5,40,0,0,1065,1121,5,41,0,0,1066,1121,5,42,0,0, - 1067,1121,5,43,0,0,1068,1121,5,44,0,0,1069,1121,5,45,0,0,1070,1121, - 5,46,0,0,1071,1121,5,47,0,0,1072,1121,5,48,0,0,1073,1121,5,49,0, - 0,1074,1121,5,50,0,0,1075,1121,5,51,0,0,1076,1121,5,52,0,0,1077, - 1121,5,53,0,0,1078,1121,5,54,0,0,1079,1121,5,55,0,0,1080,1121,5, - 56,0,0,1081,1121,5,57,0,0,1082,1121,5,58,0,0,1083,1121,5,135,0,0, - 1084,1121,5,136,0,0,1085,1121,5,137,0,0,1086,1121,5,138,0,0,1087, - 1121,5,139,0,0,1088,1121,5,140,0,0,1089,1121,5,141,0,0,1090,1121, - 5,142,0,0,1091,1121,5,143,0,0,1092,1121,5,144,0,0,1093,1121,5,145, - 0,0,1094,1121,5,146,0,0,1095,1121,5,147,0,0,1096,1121,5,148,0,0, - 1097,1121,5,149,0,0,1098,1121,5,150,0,0,1099,1121,5,151,0,0,1100, - 1121,5,152,0,0,1101,1121,5,153,0,0,1102,1121,5,154,0,0,1103,1121, - 5,155,0,0,1104,1121,5,156,0,0,1105,1121,5,157,0,0,1106,1121,5,158, - 0,0,1107,1121,5,159,0,0,1108,1121,5,160,0,0,1109,1121,5,161,0,0, - 1110,1121,5,162,0,0,1111,1121,5,163,0,0,1112,1121,5,164,0,0,1113, - 1121,5,165,0,0,1114,1121,5,166,0,0,1115,1121,5,167,0,0,1116,1121, - 5,168,0,0,1117,1121,5,169,0,0,1118,1121,5,170,0,0,1119,1121,5,171, - 0,0,1120,1020,1,0,0,0,1120,1021,1,0,0,0,1120,1022,1,0,0,0,1120,1023, - 1,0,0,0,1120,1024,1,0,0,0,1120,1025,1,0,0,0,1120,1026,1,0,0,0,1120, - 1027,1,0,0,0,1120,1028,1,0,0,0,1120,1029,1,0,0,0,1120,1030,1,0,0, - 0,1120,1031,1,0,0,0,1120,1032,1,0,0,0,1120,1033,1,0,0,0,1120,1034, - 1,0,0,0,1120,1035,1,0,0,0,1120,1036,1,0,0,0,1120,1037,1,0,0,0,1120, - 1038,1,0,0,0,1120,1039,1,0,0,0,1120,1040,1,0,0,0,1120,1041,1,0,0, - 0,1120,1042,1,0,0,0,1120,1043,1,0,0,0,1120,1044,1,0,0,0,1120,1045, - 1,0,0,0,1120,1046,1,0,0,0,1120,1047,1,0,0,0,1120,1048,1,0,0,0,1120, - 1049,1,0,0,0,1120,1050,1,0,0,0,1120,1051,1,0,0,0,1120,1052,1,0,0, - 0,1120,1053,1,0,0,0,1120,1054,1,0,0,0,1120,1055,1,0,0,0,1120,1056, - 1,0,0,0,1120,1057,1,0,0,0,1120,1058,1,0,0,0,1120,1059,1,0,0,0,1120, - 1060,1,0,0,0,1120,1061,1,0,0,0,1120,1062,1,0,0,0,1120,1063,1,0,0, - 0,1120,1064,1,0,0,0,1120,1065,1,0,0,0,1120,1066,1,0,0,0,1120,1067, - 1,0,0,0,1120,1068,1,0,0,0,1120,1069,1,0,0,0,1120,1070,1,0,0,0,1120, - 1071,1,0,0,0,1120,1072,1,0,0,0,1120,1073,1,0,0,0,1120,1074,1,0,0, - 0,1120,1075,1,0,0,0,1120,1076,1,0,0,0,1120,1077,1,0,0,0,1120,1078, - 1,0,0,0,1120,1079,1,0,0,0,1120,1080,1,0,0,0,1120,1081,1,0,0,0,1120, - 1082,1,0,0,0,1120,1083,1,0,0,0,1120,1084,1,0,0,0,1120,1085,1,0,0, - 0,1120,1086,1,0,0,0,1120,1087,1,0,0,0,1120,1088,1,0,0,0,1120,1089, - 1,0,0,0,1120,1090,1,0,0,0,1120,1091,1,0,0,0,1120,1092,1,0,0,0,1120, - 1093,1,0,0,0,1120,1094,1,0,0,0,1120,1095,1,0,0,0,1120,1096,1,0,0, - 0,1120,1097,1,0,0,0,1120,1098,1,0,0,0,1120,1099,1,0,0,0,1120,1100, - 1,0,0,0,1120,1101,1,0,0,0,1120,1102,1,0,0,0,1120,1103,1,0,0,0,1120, - 1104,1,0,0,0,1120,1105,1,0,0,0,1120,1106,1,0,0,0,1120,1107,1,0,0, - 0,1120,1108,1,0,0,0,1120,1109,1,0,0,0,1120,1110,1,0,0,0,1120,1111, - 1,0,0,0,1120,1112,1,0,0,0,1120,1113,1,0,0,0,1120,1114,1,0,0,0,1120, - 1115,1,0,0,0,1120,1116,1,0,0,0,1120,1117,1,0,0,0,1120,1118,1,0,0, - 0,1120,1119,1,0,0,0,1121,227,1,0,0,0,80,229,242,248,266,269,284, - 294,301,306,311,318,322,327,331,337,342,353,358,362,366,370,375, - 389,400,408,420,426,465,471,484,504,509,517,526,536,553,562,577, - 585,592,598,600,611,623,631,633,640,653,664,677,687,694,706,714, - 718,743,776,784,791,794,799,817,821,825,831,856,884,917,926,931, - 940,961,975,979,988,991,1000,1004,1018,1120 + 3,113,1109,8,113,1,113,0,1,90,114,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,0,20,1,0,118,119, + 1,0,18,19,2,0,137,137,171,171,5,0,135,136,140,140,143,143,148,148, + 150,153,3,0,7,7,56,56,289,319,1,0,195,204,13,0,68,70,74,74,76,76, + 79,79,82,82,84,84,86,87,89,92,94,97,205,222,224,225,227,243,246, + 255,4,0,69,69,212,212,241,241,243,243,8,0,70,70,76,76,82,82,84,84, + 89,89,91,92,95,95,97,97,8,0,71,73,75,75,77,78,80,80,85,85,88,88, + 93,93,98,98,1,0,244,245,1,0,275,280,2,0,256,260,262,273,2,0,67,67, + 112,117,1,0,282,285,1,0,286,288,1,0,333,334,1,0,65,66,9,0,70,73, + 75,78,80,80,82,82,84,85,88,89,91,93,95,95,97,98,9,0,31,31,70,70, + 76,76,83,84,89,89,91,92,95,95,97,97,321,327,1258,0,229,1,0,0,0,2, + 233,1,0,0,0,4,235,1,0,0,0,6,237,1,0,0,0,8,248,1,0,0,0,10,266,1,0, + 0,0,12,269,1,0,0,0,14,273,1,0,0,0,16,276,1,0,0,0,18,279,1,0,0,0, + 20,282,1,0,0,0,22,288,1,0,0,0,24,297,1,0,0,0,26,329,1,0,0,0,28,344, + 1,0,0,0,30,347,1,0,0,0,32,356,1,0,0,0,34,364,1,0,0,0,36,372,1,0, + 0,0,38,377,1,0,0,0,40,381,1,0,0,0,42,385,1,0,0,0,44,400,1,0,0,0, + 46,402,1,0,0,0,48,404,1,0,0,0,50,420,1,0,0,0,52,422,1,0,0,0,54,465, + 1,0,0,0,56,467,1,0,0,0,58,474,1,0,0,0,60,484,1,0,0,0,62,486,1,0, + 0,0,64,488,1,0,0,0,66,492,1,0,0,0,68,504,1,0,0,0,70,506,1,0,0,0, + 72,511,1,0,0,0,74,521,1,0,0,0,76,529,1,0,0,0,78,533,1,0,0,0,80,553, + 1,0,0,0,82,555,1,0,0,0,84,557,1,0,0,0,86,566,1,0,0,0,88,577,1,0, + 0,0,90,585,1,0,0,0,92,611,1,0,0,0,94,622,1,0,0,0,96,628,1,0,0,0, + 98,630,1,0,0,0,100,637,1,0,0,0,102,641,1,0,0,0,104,643,1,0,0,0,106, + 657,1,0,0,0,108,682,1,0,0,0,110,684,1,0,0,0,112,689,1,0,0,0,114, + 697,1,0,0,0,116,706,1,0,0,0,118,731,1,0,0,0,120,733,1,0,0,0,122, + 735,1,0,0,0,124,737,1,0,0,0,126,742,1,0,0,0,128,749,1,0,0,0,130, + 764,1,0,0,0,132,772,1,0,0,0,134,782,1,0,0,0,136,787,1,0,0,0,138, + 791,1,0,0,0,140,795,1,0,0,0,142,805,1,0,0,0,144,809,1,0,0,0,146, + 813,1,0,0,0,148,815,1,0,0,0,150,819,1,0,0,0,152,844,1,0,0,0,154, + 846,1,0,0,0,156,848,1,0,0,0,158,850,1,0,0,0,160,857,1,0,0,0,162, + 859,1,0,0,0,164,866,1,0,0,0,166,868,1,0,0,0,168,872,1,0,0,0,170, + 874,1,0,0,0,172,883,1,0,0,0,174,885,1,0,0,0,176,887,1,0,0,0,178, + 889,1,0,0,0,180,891,1,0,0,0,182,893,1,0,0,0,184,895,1,0,0,0,186, + 897,1,0,0,0,188,905,1,0,0,0,190,907,1,0,0,0,192,911,1,0,0,0,194, + 914,1,0,0,0,196,919,1,0,0,0,198,923,1,0,0,0,200,928,1,0,0,0,202, + 930,1,0,0,0,204,933,1,0,0,0,206,936,1,0,0,0,208,939,1,0,0,0,210, + 941,1,0,0,0,212,943,1,0,0,0,214,954,1,0,0,0,216,956,1,0,0,0,218, + 958,1,0,0,0,220,976,1,0,0,0,222,979,1,0,0,0,224,1006,1,0,0,0,226, + 1108,1,0,0,0,228,230,3,2,1,0,229,228,1,0,0,0,229,230,1,0,0,0,230, + 231,1,0,0,0,231,232,5,0,0,1,232,1,1,0,0,0,233,234,3,4,2,0,234,3, + 1,0,0,0,235,236,3,6,3,0,236,5,1,0,0,0,237,242,3,8,4,0,238,239,5, + 109,0,0,239,241,3,10,5,0,240,238,1,0,0,0,241,244,1,0,0,0,242,240, + 1,0,0,0,242,243,1,0,0,0,243,7,1,0,0,0,244,242,1,0,0,0,245,249,3, + 12,6,0,246,249,3,14,7,0,247,249,3,16,8,0,248,245,1,0,0,0,248,246, + 1,0,0,0,248,247,1,0,0,0,249,9,1,0,0,0,250,267,3,18,9,0,251,267,3, + 20,10,0,252,267,3,22,11,0,253,267,3,24,12,0,254,267,3,26,13,0,255, + 267,3,28,14,0,256,267,3,30,15,0,257,267,3,32,16,0,258,267,3,34,17, + 0,259,267,3,36,18,0,260,267,3,38,19,0,261,267,3,40,20,0,262,267, + 3,42,21,0,263,267,3,48,24,0,264,267,3,52,26,0,265,267,3,56,28,0, + 266,250,1,0,0,0,266,251,1,0,0,0,266,252,1,0,0,0,266,253,1,0,0,0, + 266,254,1,0,0,0,266,255,1,0,0,0,266,256,1,0,0,0,266,257,1,0,0,0, + 266,258,1,0,0,0,266,259,1,0,0,0,266,260,1,0,0,0,266,261,1,0,0,0, + 266,262,1,0,0,0,266,263,1,0,0,0,266,264,1,0,0,0,266,265,1,0,0,0, + 267,11,1,0,0,0,268,270,5,2,0,0,269,268,1,0,0,0,269,270,1,0,0,0,270, + 271,1,0,0,0,271,272,3,60,30,0,272,13,1,0,0,0,273,274,5,3,0,0,274, + 275,3,62,31,0,275,15,1,0,0,0,276,277,5,4,0,0,277,278,5,33,0,0,278, + 17,1,0,0,0,279,280,5,6,0,0,280,281,3,90,45,0,281,19,1,0,0,0,282, + 284,5,7,0,0,283,285,7,0,0,0,284,283,1,0,0,0,284,285,1,0,0,0,285, + 286,1,0,0,0,286,287,3,112,56,0,287,21,1,0,0,0,288,289,5,8,0,0,289, + 294,3,64,32,0,290,291,5,110,0,0,291,293,3,64,32,0,292,290,1,0,0, + 0,293,296,1,0,0,0,294,292,1,0,0,0,294,295,1,0,0,0,295,23,1,0,0,0, + 296,294,1,0,0,0,297,301,5,9,0,0,298,299,5,42,0,0,299,300,5,112,0, + 0,300,302,3,194,97,0,301,298,1,0,0,0,301,302,1,0,0,0,302,306,1,0, + 0,0,303,304,5,43,0,0,304,305,5,112,0,0,305,307,3,198,99,0,306,303, + 1,0,0,0,306,307,1,0,0,0,307,311,1,0,0,0,308,309,5,44,0,0,309,310, + 5,112,0,0,310,312,3,192,96,0,311,308,1,0,0,0,311,312,1,0,0,0,312, + 313,1,0,0,0,313,318,3,78,39,0,314,315,5,110,0,0,315,317,3,78,39, + 0,316,314,1,0,0,0,317,320,1,0,0,0,318,316,1,0,0,0,318,319,1,0,0, + 0,319,322,1,0,0,0,320,318,1,0,0,0,321,323,3,68,34,0,322,321,1,0, + 0,0,322,323,1,0,0,0,323,327,1,0,0,0,324,325,5,41,0,0,325,326,5,112, + 0,0,326,328,3,198,99,0,327,324,1,0,0,0,327,328,1,0,0,0,328,25,1, + 0,0,0,329,331,5,10,0,0,330,332,3,194,97,0,331,330,1,0,0,0,331,332, + 1,0,0,0,332,333,1,0,0,0,333,337,3,112,56,0,334,335,5,39,0,0,335, + 336,5,112,0,0,336,338,3,198,99,0,337,334,1,0,0,0,337,338,1,0,0,0, + 338,342,1,0,0,0,339,340,5,40,0,0,340,341,5,112,0,0,341,343,3,198, + 99,0,342,339,1,0,0,0,342,343,1,0,0,0,343,27,1,0,0,0,344,345,5,11, + 0,0,345,346,3,74,37,0,346,29,1,0,0,0,347,348,5,12,0,0,348,353,3, + 76,38,0,349,350,5,110,0,0,350,352,3,76,38,0,351,349,1,0,0,0,352, + 355,1,0,0,0,353,351,1,0,0,0,353,354,1,0,0,0,354,31,1,0,0,0,355,353, + 1,0,0,0,356,358,5,13,0,0,357,359,3,194,97,0,358,357,1,0,0,0,358, + 359,1,0,0,0,359,362,1,0,0,0,360,361,5,5,0,0,361,363,3,194,97,0,362, + 360,1,0,0,0,362,363,1,0,0,0,363,33,1,0,0,0,364,366,5,14,0,0,365, + 367,3,194,97,0,366,365,1,0,0,0,366,367,1,0,0,0,367,368,1,0,0,0,368, + 370,3,112,56,0,369,371,3,66,33,0,370,369,1,0,0,0,370,371,1,0,0,0, + 371,35,1,0,0,0,372,373,5,15,0,0,373,375,3,112,56,0,374,376,3,66, + 33,0,375,374,1,0,0,0,375,376,1,0,0,0,376,37,1,0,0,0,377,378,5,20, + 0,0,378,379,3,88,44,0,379,380,3,192,96,0,380,39,1,0,0,0,381,382, + 5,16,0,0,382,383,3,88,44,0,383,384,3,192,96,0,384,41,1,0,0,0,385, + 389,5,22,0,0,386,388,3,44,22,0,387,386,1,0,0,0,388,391,1,0,0,0,389, + 387,1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,389,1,0,0,0,392, + 393,3,88,44,0,393,43,1,0,0,0,394,395,5,23,0,0,395,396,5,112,0,0, + 396,401,3,192,96,0,397,398,5,21,0,0,398,399,5,112,0,0,399,401,3, + 192,96,0,400,394,1,0,0,0,400,397,1,0,0,0,401,45,1,0,0,0,402,403, + 7,1,0,0,403,47,1,0,0,0,404,408,5,24,0,0,405,407,3,50,25,0,406,405, + 1,0,0,0,407,410,1,0,0,0,408,406,1,0,0,0,408,409,1,0,0,0,409,49,1, + 0,0,0,410,408,1,0,0,0,411,412,5,45,0,0,412,413,5,112,0,0,413,421, + 3,194,97,0,414,415,5,46,0,0,415,416,5,112,0,0,416,421,3,194,97,0, + 417,418,5,47,0,0,418,419,5,112,0,0,419,421,3,192,96,0,420,411,1, + 0,0,0,420,414,1,0,0,0,420,417,1,0,0,0,421,51,1,0,0,0,422,426,5,25, + 0,0,423,425,3,54,27,0,424,423,1,0,0,0,425,428,1,0,0,0,426,424,1, + 0,0,0,426,427,1,0,0,0,427,53,1,0,0,0,428,426,1,0,0,0,429,430,5,48, + 0,0,430,431,5,112,0,0,431,466,3,194,97,0,432,433,5,49,0,0,433,434, + 5,112,0,0,434,466,3,194,97,0,435,436,5,50,0,0,436,437,5,112,0,0, + 437,466,3,194,97,0,438,439,5,51,0,0,439,440,5,112,0,0,440,466,3, + 194,97,0,441,442,5,52,0,0,442,443,5,112,0,0,443,466,3,196,98,0,444, + 445,5,53,0,0,445,446,5,112,0,0,446,466,3,196,98,0,447,448,5,54,0, + 0,448,449,5,112,0,0,449,466,3,192,96,0,450,451,5,55,0,0,451,452, + 5,112,0,0,452,466,3,192,96,0,453,454,5,215,0,0,454,455,5,112,0,0, + 455,466,3,192,96,0,456,457,5,56,0,0,457,458,5,112,0,0,458,466,3, + 192,96,0,459,460,5,57,0,0,460,461,5,112,0,0,461,466,3,194,97,0,462, + 463,5,58,0,0,463,464,5,112,0,0,464,466,3,196,98,0,465,429,1,0,0, + 0,465,432,1,0,0,0,465,435,1,0,0,0,465,438,1,0,0,0,465,441,1,0,0, + 0,465,444,1,0,0,0,465,447,1,0,0,0,465,450,1,0,0,0,465,453,1,0,0, + 0,465,456,1,0,0,0,465,459,1,0,0,0,465,462,1,0,0,0,466,55,1,0,0,0, + 467,471,5,26,0,0,468,470,3,58,29,0,469,468,1,0,0,0,470,473,1,0,0, + 0,471,469,1,0,0,0,471,472,1,0,0,0,472,57,1,0,0,0,473,471,1,0,0,0, + 474,475,3,220,110,0,475,476,5,112,0,0,476,477,3,188,94,0,477,59, + 1,0,0,0,478,479,5,29,0,0,479,480,5,112,0,0,480,485,3,62,31,0,481, + 482,5,30,0,0,482,483,5,112,0,0,483,485,3,62,31,0,484,478,1,0,0,0, + 484,481,1,0,0,0,485,61,1,0,0,0,486,487,3,108,54,0,487,63,1,0,0,0, + 488,489,3,122,61,0,489,490,5,27,0,0,490,491,3,122,61,0,491,65,1, + 0,0,0,492,493,5,28,0,0,493,494,3,112,56,0,494,67,1,0,0,0,495,496, + 5,28,0,0,496,505,3,112,56,0,497,498,5,28,0,0,498,505,3,70,35,0,499, + 500,5,28,0,0,500,501,3,70,35,0,501,502,5,110,0,0,502,503,3,112,56, + 0,503,505,1,0,0,0,504,495,1,0,0,0,504,497,1,0,0,0,504,499,1,0,0, + 0,505,69,1,0,0,0,506,509,3,72,36,0,507,508,5,27,0,0,508,510,3,214, + 107,0,509,507,1,0,0,0,509,510,1,0,0,0,510,71,1,0,0,0,511,512,5,320, + 0,0,512,513,5,125,0,0,513,514,3,120,60,0,514,515,5,110,0,0,515,517, + 3,188,94,0,516,518,3,210,105,0,517,516,1,0,0,0,517,518,1,0,0,0,518, + 519,1,0,0,0,519,520,5,126,0,0,520,73,1,0,0,0,521,526,3,116,58,0, + 522,523,5,110,0,0,523,525,3,116,58,0,524,522,1,0,0,0,525,528,1,0, + 0,0,526,524,1,0,0,0,526,527,1,0,0,0,527,75,1,0,0,0,528,526,1,0,0, + 0,529,530,3,120,60,0,530,531,5,112,0,0,531,532,3,88,44,0,532,77, + 1,0,0,0,533,536,3,80,40,0,534,535,5,27,0,0,535,537,3,122,61,0,536, + 534,1,0,0,0,536,537,1,0,0,0,537,79,1,0,0,0,538,539,3,82,41,0,539, + 540,5,125,0,0,540,541,3,94,47,0,541,542,5,126,0,0,542,554,1,0,0, + 0,543,544,5,136,0,0,544,545,5,125,0,0,545,554,5,126,0,0,546,547, + 7,2,0,0,547,548,5,125,0,0,548,549,3,94,47,0,549,550,5,126,0,0,550, + 554,1,0,0,0,551,554,3,86,43,0,552,554,3,84,42,0,553,538,1,0,0,0, + 553,543,1,0,0,0,553,546,1,0,0,0,553,551,1,0,0,0,553,552,1,0,0,0, + 554,81,1,0,0,0,555,556,7,3,0,0,556,83,1,0,0,0,557,558,5,155,0,0, + 558,559,5,125,0,0,559,562,3,120,60,0,560,561,5,110,0,0,561,563,3, + 194,97,0,562,560,1,0,0,0,562,563,1,0,0,0,563,564,1,0,0,0,564,565, + 5,126,0,0,565,85,1,0,0,0,566,567,5,154,0,0,567,568,5,114,0,0,568, + 569,3,194,97,0,569,570,5,113,0,0,570,571,5,125,0,0,571,572,3,120, + 60,0,572,573,5,126,0,0,573,87,1,0,0,0,574,578,3,90,45,0,575,578, + 3,92,46,0,576,578,3,94,47,0,577,574,1,0,0,0,577,575,1,0,0,0,577, + 576,1,0,0,0,578,89,1,0,0,0,579,580,6,45,-1,0,580,586,3,92,46,0,581, + 582,5,61,0,0,582,586,3,90,45,6,583,586,3,100,50,0,584,586,3,102, + 51,0,585,579,1,0,0,0,585,581,1,0,0,0,585,583,1,0,0,0,585,584,1,0, + 0,0,586,600,1,0,0,0,587,588,10,5,0,0,588,589,5,62,0,0,589,599,3, + 90,45,6,590,592,10,4,0,0,591,593,5,63,0,0,592,591,1,0,0,0,592,593, + 1,0,0,0,593,594,1,0,0,0,594,599,3,90,45,5,595,596,10,3,0,0,596,597, + 5,64,0,0,597,599,3,90,45,4,598,587,1,0,0,0,598,590,1,0,0,0,598,595, + 1,0,0,0,599,602,1,0,0,0,600,598,1,0,0,0,600,601,1,0,0,0,601,91,1, + 0,0,0,602,600,1,0,0,0,603,604,3,94,47,0,604,605,3,182,91,0,605,606, + 3,94,47,0,606,612,1,0,0,0,607,608,3,94,47,0,608,609,5,60,0,0,609, + 610,3,212,106,0,610,612,1,0,0,0,611,603,1,0,0,0,611,607,1,0,0,0, + 612,93,1,0,0,0,613,623,3,96,48,0,614,623,3,98,49,0,615,623,3,162, + 81,0,616,623,3,158,79,0,617,623,3,170,85,0,618,619,5,125,0,0,619, + 620,3,94,47,0,620,621,5,126,0,0,621,623,1,0,0,0,622,613,1,0,0,0, + 622,614,1,0,0,0,622,615,1,0,0,0,622,616,1,0,0,0,622,617,1,0,0,0, + 622,618,1,0,0,0,623,95,1,0,0,0,624,629,3,124,62,0,625,629,3,126, + 63,0,626,629,3,120,60,0,627,629,3,188,94,0,628,624,1,0,0,0,628,625, + 1,0,0,0,628,626,1,0,0,0,628,627,1,0,0,0,629,97,1,0,0,0,630,631,3, + 180,90,0,631,632,5,125,0,0,632,633,3,136,68,0,633,634,5,60,0,0,634, + 635,3,136,68,0,635,636,5,126,0,0,636,99,1,0,0,0,637,638,3,128,64, + 0,638,101,1,0,0,0,639,642,3,104,52,0,640,642,3,106,53,0,641,639, + 1,0,0,0,641,640,1,0,0,0,642,103,1,0,0,0,643,644,3,184,92,0,644,645, + 5,125,0,0,645,646,3,146,73,0,646,647,5,110,0,0,647,652,3,148,74, + 0,648,649,5,110,0,0,649,651,3,138,69,0,650,648,1,0,0,0,651,654,1, + 0,0,0,652,650,1,0,0,0,652,653,1,0,0,0,653,655,1,0,0,0,654,652,1, + 0,0,0,655,656,5,126,0,0,656,105,1,0,0,0,657,658,3,186,93,0,658,659, + 5,125,0,0,659,660,5,127,0,0,660,665,3,142,71,0,661,662,5,110,0,0, + 662,664,3,142,71,0,663,661,1,0,0,0,664,667,1,0,0,0,665,663,1,0,0, + 0,665,666,1,0,0,0,666,668,1,0,0,0,667,665,1,0,0,0,668,669,5,128, + 0,0,669,670,5,110,0,0,670,675,3,148,74,0,671,672,5,110,0,0,672,674, + 3,138,69,0,673,671,1,0,0,0,674,677,1,0,0,0,675,673,1,0,0,0,675,676, + 1,0,0,0,676,678,1,0,0,0,677,675,1,0,0,0,678,679,5,126,0,0,679,107, + 1,0,0,0,680,683,3,216,108,0,681,683,5,332,0,0,682,680,1,0,0,0,682, + 681,1,0,0,0,683,109,1,0,0,0,684,685,3,214,107,0,685,686,5,125,0, + 0,686,687,3,134,67,0,687,688,5,126,0,0,688,111,1,0,0,0,689,694,3, + 120,60,0,690,691,5,110,0,0,691,693,3,120,60,0,692,690,1,0,0,0,693, + 696,1,0,0,0,694,692,1,0,0,0,694,695,1,0,0,0,695,113,1,0,0,0,696, + 694,1,0,0,0,697,702,3,122,61,0,698,699,5,110,0,0,699,701,3,122,61, + 0,700,698,1,0,0,0,701,704,1,0,0,0,702,700,1,0,0,0,702,703,1,0,0, + 0,703,115,1,0,0,0,704,702,1,0,0,0,705,707,7,0,0,0,706,705,1,0,0, + 0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,3,118,59,0,709,117,1,0, + 0,0,710,732,3,120,60,0,711,712,5,35,0,0,712,713,5,125,0,0,713,714, + 3,120,60,0,714,715,5,126,0,0,715,732,1,0,0,0,716,717,5,36,0,0,717, + 718,5,125,0,0,718,719,3,120,60,0,719,720,5,126,0,0,720,732,1,0,0, + 0,721,722,5,37,0,0,722,723,5,125,0,0,723,724,3,120,60,0,724,725, + 5,126,0,0,725,732,1,0,0,0,726,727,5,38,0,0,727,728,5,125,0,0,728, + 729,3,120,60,0,729,730,5,126,0,0,730,732,1,0,0,0,731,710,1,0,0,0, + 731,711,1,0,0,0,731,716,1,0,0,0,731,721,1,0,0,0,731,726,1,0,0,0, + 732,119,1,0,0,0,733,734,3,214,107,0,734,121,1,0,0,0,735,736,3,218, + 109,0,736,123,1,0,0,0,737,738,3,132,66,0,738,739,5,125,0,0,739,740, + 3,134,67,0,740,741,5,126,0,0,741,125,1,0,0,0,742,743,5,274,0,0,743, + 744,5,125,0,0,744,745,3,88,44,0,745,746,5,27,0,0,746,747,3,130,65, + 0,747,748,5,126,0,0,748,127,1,0,0,0,749,750,3,174,87,0,750,751,5, + 125,0,0,751,752,3,134,67,0,752,753,5,126,0,0,753,129,1,0,0,0,754, + 765,5,212,0,0,755,765,5,241,0,0,756,765,5,243,0,0,757,765,5,102, + 0,0,758,765,5,103,0,0,759,765,5,104,0,0,760,765,5,105,0,0,761,765, + 5,106,0,0,762,765,5,107,0,0,763,765,5,108,0,0,764,754,1,0,0,0,764, + 755,1,0,0,0,764,756,1,0,0,0,764,757,1,0,0,0,764,758,1,0,0,0,764, + 759,1,0,0,0,764,760,1,0,0,0,764,761,1,0,0,0,764,762,1,0,0,0,764, + 763,1,0,0,0,765,131,1,0,0,0,766,773,3,152,76,0,767,773,3,156,78, + 0,768,773,3,178,89,0,769,773,3,174,87,0,770,773,3,176,88,0,771,773, + 3,180,90,0,772,766,1,0,0,0,772,767,1,0,0,0,772,768,1,0,0,0,772,769, + 1,0,0,0,772,770,1,0,0,0,772,771,1,0,0,0,773,133,1,0,0,0,774,779, + 3,136,68,0,775,776,5,110,0,0,776,778,3,136,68,0,777,775,1,0,0,0, + 778,781,1,0,0,0,779,777,1,0,0,0,779,780,1,0,0,0,780,783,1,0,0,0, + 781,779,1,0,0,0,782,774,1,0,0,0,782,783,1,0,0,0,783,135,1,0,0,0, + 784,785,3,220,110,0,785,786,5,112,0,0,786,788,1,0,0,0,787,784,1, + 0,0,0,787,788,1,0,0,0,788,789,1,0,0,0,789,790,3,94,47,0,790,137, + 1,0,0,0,791,792,3,140,70,0,792,793,5,112,0,0,793,794,3,150,75,0, + 794,139,1,0,0,0,795,796,7,4,0,0,796,141,1,0,0,0,797,806,3,146,73, + 0,798,799,3,146,73,0,799,800,3,144,72,0,800,806,1,0,0,0,801,802, + 3,146,73,0,802,803,5,134,0,0,803,804,3,144,72,0,804,806,1,0,0,0, + 805,797,1,0,0,0,805,798,1,0,0,0,805,801,1,0,0,0,806,143,1,0,0,0, + 807,810,3,194,97,0,808,810,3,196,98,0,809,807,1,0,0,0,809,808,1, + 0,0,0,810,145,1,0,0,0,811,814,3,214,107,0,812,814,3,192,96,0,813, + 811,1,0,0,0,813,812,1,0,0,0,814,147,1,0,0,0,815,816,3,150,75,0,816, + 149,1,0,0,0,817,820,3,214,107,0,818,820,3,188,94,0,819,817,1,0,0, + 0,819,818,1,0,0,0,820,151,1,0,0,0,821,845,5,172,0,0,822,845,5,173, + 0,0,823,845,5,174,0,0,824,845,5,175,0,0,825,845,5,176,0,0,826,845, + 5,177,0,0,827,845,5,178,0,0,828,845,5,179,0,0,829,845,5,180,0,0, + 830,845,5,181,0,0,831,845,5,182,0,0,832,845,5,183,0,0,833,845,5, + 184,0,0,834,845,5,185,0,0,835,845,5,186,0,0,836,845,5,188,0,0,837, + 845,5,189,0,0,838,845,5,190,0,0,839,845,5,191,0,0,840,845,5,192, + 0,0,841,845,5,193,0,0,842,845,5,194,0,0,843,845,3,154,77,0,844,821, + 1,0,0,0,844,822,1,0,0,0,844,823,1,0,0,0,844,824,1,0,0,0,844,825, + 1,0,0,0,844,826,1,0,0,0,844,827,1,0,0,0,844,828,1,0,0,0,844,829, + 1,0,0,0,844,830,1,0,0,0,844,831,1,0,0,0,844,832,1,0,0,0,844,833, + 1,0,0,0,844,834,1,0,0,0,844,835,1,0,0,0,844,836,1,0,0,0,844,837, + 1,0,0,0,844,838,1,0,0,0,844,839,1,0,0,0,844,840,1,0,0,0,844,841, + 1,0,0,0,844,842,1,0,0,0,844,843,1,0,0,0,845,153,1,0,0,0,846,847, + 7,5,0,0,847,155,1,0,0,0,848,849,7,6,0,0,849,157,1,0,0,0,850,851, + 5,226,0,0,851,852,5,125,0,0,852,853,3,160,80,0,853,854,5,110,0,0, + 854,855,3,136,68,0,855,856,5,126,0,0,856,159,1,0,0,0,857,858,7,7, + 0,0,858,161,1,0,0,0,859,860,5,223,0,0,860,861,5,125,0,0,861,862, + 3,168,84,0,862,863,5,5,0,0,863,864,3,136,68,0,864,865,5,126,0,0, + 865,163,1,0,0,0,866,867,7,8,0,0,867,165,1,0,0,0,868,869,7,9,0,0, + 869,167,1,0,0,0,870,873,3,164,82,0,871,873,3,166,83,0,872,870,1, + 0,0,0,872,871,1,0,0,0,873,169,1,0,0,0,874,875,3,172,86,0,875,876, + 5,125,0,0,876,877,3,164,82,0,877,878,5,110,0,0,878,879,3,136,68, + 0,879,880,5,110,0,0,880,881,3,136,68,0,881,882,5,126,0,0,882,171, + 1,0,0,0,883,884,7,10,0,0,884,173,1,0,0,0,885,886,7,11,0,0,886,175, + 1,0,0,0,887,888,5,281,0,0,888,177,1,0,0,0,889,890,7,12,0,0,890,179, + 1,0,0,0,891,892,5,187,0,0,892,181,1,0,0,0,893,894,7,13,0,0,894,183, + 1,0,0,0,895,896,7,14,0,0,896,185,1,0,0,0,897,898,7,15,0,0,898,187, + 1,0,0,0,899,906,3,190,95,0,900,906,3,192,96,0,901,906,3,194,97,0, + 902,906,3,196,98,0,903,906,3,198,99,0,904,906,3,200,100,0,905,899, + 1,0,0,0,905,900,1,0,0,0,905,901,1,0,0,0,905,902,1,0,0,0,905,903, + 1,0,0,0,905,904,1,0,0,0,906,189,1,0,0,0,907,908,5,81,0,0,908,909, + 3,94,47,0,909,910,3,208,104,0,910,191,1,0,0,0,911,912,7,16,0,0,912, + 193,1,0,0,0,913,915,7,0,0,0,914,913,1,0,0,0,914,915,1,0,0,0,915, + 916,1,0,0,0,916,917,5,330,0,0,917,195,1,0,0,0,918,920,7,0,0,0,919, + 918,1,0,0,0,919,920,1,0,0,0,920,921,1,0,0,0,921,922,5,331,0,0,922, + 197,1,0,0,0,923,924,7,17,0,0,924,199,1,0,0,0,925,929,3,202,101,0, + 926,929,3,204,102,0,927,929,3,206,103,0,928,925,1,0,0,0,928,926, + 1,0,0,0,928,927,1,0,0,0,929,201,1,0,0,0,930,931,5,212,0,0,931,932, + 3,192,96,0,932,203,1,0,0,0,933,934,5,241,0,0,934,935,3,192,96,0, + 935,205,1,0,0,0,936,937,5,243,0,0,937,938,3,192,96,0,938,207,1,0, + 0,0,939,940,7,18,0,0,940,209,1,0,0,0,941,942,7,19,0,0,942,211,1, + 0,0,0,943,944,5,125,0,0,944,949,3,188,94,0,945,946,5,110,0,0,946, + 948,3,188,94,0,947,945,1,0,0,0,948,951,1,0,0,0,949,947,1,0,0,0,949, + 950,1,0,0,0,950,952,1,0,0,0,951,949,1,0,0,0,952,953,5,126,0,0,953, + 213,1,0,0,0,954,955,5,328,0,0,955,215,1,0,0,0,956,957,5,328,0,0, + 957,217,1,0,0,0,958,963,3,224,112,0,959,960,5,111,0,0,960,962,3, + 224,112,0,961,959,1,0,0,0,962,965,1,0,0,0,963,961,1,0,0,0,963,964, + 1,0,0,0,964,219,1,0,0,0,965,963,1,0,0,0,966,968,5,111,0,0,967,966, + 1,0,0,0,967,968,1,0,0,0,968,969,1,0,0,0,969,977,5,328,0,0,970,971, + 5,131,0,0,971,972,3,220,110,0,972,973,5,131,0,0,973,977,1,0,0,0, + 974,977,5,335,0,0,975,977,3,226,113,0,976,967,1,0,0,0,976,970,1, + 0,0,0,976,974,1,0,0,0,976,975,1,0,0,0,977,221,1,0,0,0,978,980,5, + 329,0,0,979,978,1,0,0,0,979,980,1,0,0,0,980,981,1,0,0,0,981,982, + 3,220,110,0,982,223,1,0,0,0,983,988,3,220,110,0,984,985,5,122,0, + 0,985,987,3,220,110,0,986,984,1,0,0,0,987,990,1,0,0,0,988,986,1, + 0,0,0,988,989,1,0,0,0,989,992,1,0,0,0,990,988,1,0,0,0,991,993,5, + 122,0,0,992,991,1,0,0,0,992,993,1,0,0,0,993,1007,1,0,0,0,994,995, + 5,129,0,0,995,996,3,224,112,0,996,997,5,129,0,0,997,1007,1,0,0,0, + 998,999,5,130,0,0,999,1000,3,224,112,0,1000,1001,5,130,0,0,1001, + 1007,1,0,0,0,1002,1003,5,131,0,0,1003,1004,3,224,112,0,1004,1005, + 5,131,0,0,1005,1007,1,0,0,0,1006,983,1,0,0,0,1006,994,1,0,0,0,1006, + 998,1,0,0,0,1006,1002,1,0,0,0,1007,225,1,0,0,0,1008,1109,5,31,0, + 0,1009,1109,3,210,105,0,1010,1109,5,320,0,0,1011,1109,3,132,66,0, + 1012,1109,3,140,70,0,1013,1109,3,208,104,0,1014,1109,3,156,78,0, + 1015,1109,3,178,89,0,1016,1109,3,152,76,0,1017,1109,3,180,90,0,1018, + 1109,5,2,0,0,1019,1109,5,3,0,0,1020,1109,5,4,0,0,1021,1109,5,5,0, + 0,1022,1109,5,6,0,0,1023,1109,5,7,0,0,1024,1109,5,8,0,0,1025,1109, + 5,9,0,0,1026,1109,5,10,0,0,1027,1109,5,11,0,0,1028,1109,5,12,0,0, + 1029,1109,5,13,0,0,1030,1109,5,14,0,0,1031,1109,5,15,0,0,1032,1109, + 5,16,0,0,1033,1109,5,17,0,0,1034,1109,5,18,0,0,1035,1109,5,19,0, + 0,1036,1109,5,20,0,0,1037,1109,5,21,0,0,1038,1109,5,22,0,0,1039, + 1109,5,23,0,0,1040,1109,5,24,0,0,1041,1109,5,25,0,0,1042,1109,5, + 26,0,0,1043,1109,5,29,0,0,1044,1109,5,30,0,0,1045,1109,5,32,0,0, + 1046,1109,5,33,0,0,1047,1109,5,34,0,0,1048,1109,5,36,0,0,1049,1109, + 5,37,0,0,1050,1109,5,38,0,0,1051,1109,5,39,0,0,1052,1109,5,40,0, + 0,1053,1109,5,41,0,0,1054,1109,5,42,0,0,1055,1109,5,43,0,0,1056, + 1109,5,44,0,0,1057,1109,5,45,0,0,1058,1109,5,46,0,0,1059,1109,5, + 47,0,0,1060,1109,5,48,0,0,1061,1109,5,49,0,0,1062,1109,5,50,0,0, + 1063,1109,5,51,0,0,1064,1109,5,52,0,0,1065,1109,5,53,0,0,1066,1109, + 5,54,0,0,1067,1109,5,55,0,0,1068,1109,5,56,0,0,1069,1109,5,57,0, + 0,1070,1109,5,58,0,0,1071,1109,5,135,0,0,1072,1109,5,136,0,0,1073, + 1109,5,137,0,0,1074,1109,5,138,0,0,1075,1109,5,139,0,0,1076,1109, + 5,140,0,0,1077,1109,5,141,0,0,1078,1109,5,142,0,0,1079,1109,5,143, + 0,0,1080,1109,5,144,0,0,1081,1109,5,145,0,0,1082,1109,5,146,0,0, + 1083,1109,5,147,0,0,1084,1109,5,148,0,0,1085,1109,5,149,0,0,1086, + 1109,5,150,0,0,1087,1109,5,151,0,0,1088,1109,5,152,0,0,1089,1109, + 5,153,0,0,1090,1109,5,154,0,0,1091,1109,5,155,0,0,1092,1109,5,156, + 0,0,1093,1109,5,157,0,0,1094,1109,5,158,0,0,1095,1109,5,159,0,0, + 1096,1109,5,160,0,0,1097,1109,5,161,0,0,1098,1109,5,162,0,0,1099, + 1109,5,163,0,0,1100,1109,5,164,0,0,1101,1109,5,165,0,0,1102,1109, + 5,166,0,0,1103,1109,5,167,0,0,1104,1109,5,168,0,0,1105,1109,5,169, + 0,0,1106,1109,5,170,0,0,1107,1109,5,171,0,0,1108,1008,1,0,0,0,1108, + 1009,1,0,0,0,1108,1010,1,0,0,0,1108,1011,1,0,0,0,1108,1012,1,0,0, + 0,1108,1013,1,0,0,0,1108,1014,1,0,0,0,1108,1015,1,0,0,0,1108,1016, + 1,0,0,0,1108,1017,1,0,0,0,1108,1018,1,0,0,0,1108,1019,1,0,0,0,1108, + 1020,1,0,0,0,1108,1021,1,0,0,0,1108,1022,1,0,0,0,1108,1023,1,0,0, + 0,1108,1024,1,0,0,0,1108,1025,1,0,0,0,1108,1026,1,0,0,0,1108,1027, + 1,0,0,0,1108,1028,1,0,0,0,1108,1029,1,0,0,0,1108,1030,1,0,0,0,1108, + 1031,1,0,0,0,1108,1032,1,0,0,0,1108,1033,1,0,0,0,1108,1034,1,0,0, + 0,1108,1035,1,0,0,0,1108,1036,1,0,0,0,1108,1037,1,0,0,0,1108,1038, + 1,0,0,0,1108,1039,1,0,0,0,1108,1040,1,0,0,0,1108,1041,1,0,0,0,1108, + 1042,1,0,0,0,1108,1043,1,0,0,0,1108,1044,1,0,0,0,1108,1045,1,0,0, + 0,1108,1046,1,0,0,0,1108,1047,1,0,0,0,1108,1048,1,0,0,0,1108,1049, + 1,0,0,0,1108,1050,1,0,0,0,1108,1051,1,0,0,0,1108,1052,1,0,0,0,1108, + 1053,1,0,0,0,1108,1054,1,0,0,0,1108,1055,1,0,0,0,1108,1056,1,0,0, + 0,1108,1057,1,0,0,0,1108,1058,1,0,0,0,1108,1059,1,0,0,0,1108,1060, + 1,0,0,0,1108,1061,1,0,0,0,1108,1062,1,0,0,0,1108,1063,1,0,0,0,1108, + 1064,1,0,0,0,1108,1065,1,0,0,0,1108,1066,1,0,0,0,1108,1067,1,0,0, + 0,1108,1068,1,0,0,0,1108,1069,1,0,0,0,1108,1070,1,0,0,0,1108,1071, + 1,0,0,0,1108,1072,1,0,0,0,1108,1073,1,0,0,0,1108,1074,1,0,0,0,1108, + 1075,1,0,0,0,1108,1076,1,0,0,0,1108,1077,1,0,0,0,1108,1078,1,0,0, + 0,1108,1079,1,0,0,0,1108,1080,1,0,0,0,1108,1081,1,0,0,0,1108,1082, + 1,0,0,0,1108,1083,1,0,0,0,1108,1084,1,0,0,0,1108,1085,1,0,0,0,1108, + 1086,1,0,0,0,1108,1087,1,0,0,0,1108,1088,1,0,0,0,1108,1089,1,0,0, + 0,1108,1090,1,0,0,0,1108,1091,1,0,0,0,1108,1092,1,0,0,0,1108,1093, + 1,0,0,0,1108,1094,1,0,0,0,1108,1095,1,0,0,0,1108,1096,1,0,0,0,1108, + 1097,1,0,0,0,1108,1098,1,0,0,0,1108,1099,1,0,0,0,1108,1100,1,0,0, + 0,1108,1101,1,0,0,0,1108,1102,1,0,0,0,1108,1103,1,0,0,0,1108,1104, + 1,0,0,0,1108,1105,1,0,0,0,1108,1106,1,0,0,0,1108,1107,1,0,0,0,1109, + 227,1,0,0,0,78,229,242,248,266,269,284,294,301,306,311,318,322,327, + 331,337,342,353,358,362,366,370,375,389,400,408,420,426,465,471, + 484,504,509,517,526,536,553,562,577,585,592,598,600,611,622,628, + 641,652,665,675,682,694,702,706,731,764,772,779,782,787,805,809, + 813,819,844,872,905,914,919,928,949,963,967,976,979,988,992,1006, + 1108 ]; private static __ATN: antlr.ATN; @@ -9178,46 +9072,6 @@ export class ExtractFunctionCallContext extends ValueExpressionContext { } } } -export class BinaryArithmeticContext extends ValueExpressionContext { - public _left?: ValueExpressionContext; - public _binaryOperator?: Token | null; - public _right?: ValueExpressionContext; - public constructor(ctx: ValueExpressionContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public valueExpression(): ValueExpressionContext[]; - public valueExpression(i: number): ValueExpressionContext | null; - public valueExpression(i?: number): ValueExpressionContext[] | ValueExpressionContext | null { - if (i === undefined) { - return this.getRuleContexts(ValueExpressionContext); - } - - return this.getRuleContext(i, ValueExpressionContext); - } - public STAR(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.STAR, 0); - } - public DIVIDE(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.DIVIDE, 0); - } - public MODULE(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.MODULE, 0); - } - public PLUS(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.PLUS, 0); - } - public MINUS(): antlr.TerminalNode | null { - return this.getToken(OpenSearchPPLParser.MINUS, 0); - } - public override accept(visitor: OpenSearchPPLParserVisitor): Result | null { - if (visitor.visitBinaryArithmetic) { - return visitor.visitBinaryArithmetic(this); - } else { - return visitor.visitChildren(this); - } - } -} export class TimestampFunctionCallContext extends ValueExpressionContext { public constructor(ctx: ValueExpressionContext) { super(ctx.parent, ctx.invokingState); diff --git a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts index d795e6959cb4..44088c262bd1 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/.generated/OpenSearchPPLParserVisitor.ts @@ -61,13 +61,12 @@ import { LogicalXorContext } from "./OpenSearchPPLParser.js"; import { LogicalOrContext } from "./OpenSearchPPLParser.js"; import { CompareExprContext } from "./OpenSearchPPLParser.js"; import { InExprContext } from "./OpenSearchPPLParser.js"; -import { PositionFunctionCallContext } from "./OpenSearchPPLParser.js"; import { ValueExpressionDefaultContext } from "./OpenSearchPPLParser.js"; -import { ParentheticValueExprContext } from "./OpenSearchPPLParser.js"; -import { GetFormatFunctionCallContext } from "./OpenSearchPPLParser.js"; +import { PositionFunctionCallContext } from "./OpenSearchPPLParser.js"; import { ExtractFunctionCallContext } from "./OpenSearchPPLParser.js"; -import { BinaryArithmeticContext } from "./OpenSearchPPLParser.js"; +import { GetFormatFunctionCallContext } from "./OpenSearchPPLParser.js"; import { TimestampFunctionCallContext } from "./OpenSearchPPLParser.js"; +import { ParentheticValueExprContext } from "./OpenSearchPPLParser.js"; import { PrimaryExpressionContext } from "./OpenSearchPPLParser.js"; import { PositionFunctionContext } from "./OpenSearchPPLParser.js"; import { BooleanExpressionContext } from "./OpenSearchPPLParser.js"; @@ -507,13 +506,6 @@ export class OpenSearchPPLParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitInExpr?: (ctx: InExprContext) => Result; - /** - * Visit a parse tree produced by the `positionFunctionCall` - * labeled alternative in `OpenSearchPPLParser.valueExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPositionFunctionCall?: (ctx: PositionFunctionCallContext) => Result; /** * Visit a parse tree produced by the `valueExpressionDefault` * labeled alternative in `OpenSearchPPLParser.valueExpression`. @@ -522,40 +514,40 @@ export class OpenSearchPPLParserVisitor extends AbstractParseTreeVisitor */ visitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => Result; /** - * Visit a parse tree produced by the `parentheticValueExpr` + * Visit a parse tree produced by the `positionFunctionCall` * labeled alternative in `OpenSearchPPLParser.valueExpression`. * @param ctx the parse tree * @return the visitor result */ - visitParentheticValueExpr?: (ctx: ParentheticValueExprContext) => Result; + visitPositionFunctionCall?: (ctx: PositionFunctionCallContext) => Result; /** - * Visit a parse tree produced by the `getFormatFunctionCall` + * Visit a parse tree produced by the `extractFunctionCall` * labeled alternative in `OpenSearchPPLParser.valueExpression`. * @param ctx the parse tree * @return the visitor result */ - visitGetFormatFunctionCall?: (ctx: GetFormatFunctionCallContext) => Result; + visitExtractFunctionCall?: (ctx: ExtractFunctionCallContext) => Result; /** - * Visit a parse tree produced by the `extractFunctionCall` + * Visit a parse tree produced by the `getFormatFunctionCall` * labeled alternative in `OpenSearchPPLParser.valueExpression`. * @param ctx the parse tree * @return the visitor result */ - visitExtractFunctionCall?: (ctx: ExtractFunctionCallContext) => Result; + visitGetFormatFunctionCall?: (ctx: GetFormatFunctionCallContext) => Result; /** - * Visit a parse tree produced by the `binaryArithmetic` + * Visit a parse tree produced by the `timestampFunctionCall` * labeled alternative in `OpenSearchPPLParser.valueExpression`. * @param ctx the parse tree * @return the visitor result */ - visitBinaryArithmetic?: (ctx: BinaryArithmeticContext) => Result; + visitTimestampFunctionCall?: (ctx: TimestampFunctionCallContext) => Result; /** - * Visit a parse tree produced by the `timestampFunctionCall` + * Visit a parse tree produced by the `parentheticValueExpr` * labeled alternative in `OpenSearchPPLParser.valueExpression`. * @param ctx the parse tree * @return the visitor result */ - visitTimestampFunctionCall?: (ctx: TimestampFunctionCallContext) => Result; + visitParentheticValueExpr?: (ctx: ParentheticValueExprContext) => Result; /** * Visit a parse tree produced by `OpenSearchPPLParser.primaryExpression`. * @param ctx the parse tree diff --git a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 index 85a591e7d70c..1c75937f6f37 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 +++ b/src/plugins/data/public/antlr/opensearch_ppl/grammar/OpenSearchPPLParser.g4 @@ -263,9 +263,9 @@ comparisonExpression ; valueExpression - : left = valueExpression binaryOperator = (STAR | DIVIDE | MODULE) right = valueExpression # binaryArithmetic - | left = valueExpression binaryOperator = (PLUS | MINUS) right = valueExpression # binaryArithmetic - | primaryExpression # valueExpressionDefault + // : left = valueExpression binaryOperator = (STAR | DIVIDE | MODULE) right = valueExpression # binaryArithmetic + // | left = valueExpression binaryOperator = (PLUS | MINUS) right = valueExpression # binaryArithmetic + : primaryExpression # valueExpressionDefault | positionFunction # positionFunctionCall | extractFunction # extractFunctionCall | getFormatFunction # getFormatFunctionCall diff --git a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts index c08496f14012..6f32d301f553 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts @@ -33,6 +33,8 @@ export function getIgnoredTokens(): number[] { OpenSearchPPLParser.PIPE, OpenSearchPPLParser.EQUAL, OpenSearchPPLParser.COMMA, + OpenSearchPPLParser.PLUS, + OpenSearchPPLParser.MINUS, // OpenSearchPPLParser.EQUAL, // OpenSearchPPLParser.NOT_EQUAL, // OpenSearchPPLParser.LESS, From d98632ac689cce4640bb096842160a405cadc07a Mon Sep 17 00:00:00 2001 From: "opensearch-changeset-bot[bot]" <154024398+opensearch-changeset-bot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:39:12 +0000 Subject: [PATCH 08/10] Changeset file for PR #8087 created/updated --- changelogs/fragments/8087.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 changelogs/fragments/8087.yml diff --git a/changelogs/fragments/8087.yml b/changelogs/fragments/8087.yml new file mode 100644 index 000000000000..3c6a8fd9cafb --- /dev/null +++ b/changelogs/fragments/8087.yml @@ -0,0 +1,2 @@ +fix: +- PPL Autocomplete functions, fields, & table suggestion ([#8087](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/8087)) \ No newline at end of file From 9f7cac19786f377967b7917b7518165e212ef3fb Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Tue, 10 Sep 2024 20:38:09 -0700 Subject: [PATCH 09/10] update user hints Signed-off-by: Paul Sebastian --- src/plugins/data/public/ui/query_editor/_query_editor.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/data/public/ui/query_editor/_query_editor.scss b/src/plugins/data/public/ui/query_editor/_query_editor.scss index 744f49d26e93..285cc5711e77 100644 --- a/src/plugins/data/public/ui/query_editor/_query_editor.scss +++ b/src/plugins/data/public/ui/query_editor/_query_editor.scss @@ -214,8 +214,8 @@ &.visible::after { position: absolute; - height: 31px; - bottom: -31px; + height: auto; + bottom: calc(-1 * ($euiFontSizeXS * 2 + $euiSizeXS) + 1px); left: 0; width: 100%; background-color: $euiColorLightestShade; From 66896fa40a56d0e4d999dc0c61a688f371330d05 Mon Sep 17 00:00:00 2001 From: Paul Sebastian Date: Tue, 10 Sep 2024 20:43:06 -0700 Subject: [PATCH 10/10] update types Signed-off-by: Paul Sebastian --- .../opensearch_ppl/opensearch_ppl_autocomplete.ts | 10 ++++++---- src/plugins/data/public/antlr/shared/utils.ts | 1 + 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts index 6f32d301f553..7b04ab685adf 100644 --- a/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts +++ b/src/plugins/data/public/antlr/opensearch_ppl/opensearch_ppl_autocomplete.ts @@ -12,6 +12,7 @@ import { OpenSearchPplAutocompleteResult, ProcessVisitedRulesResult, SourceOrTableSuggestion, + TableContextSuggestion, } from '../shared/types'; import { OpenSearchPPLLexer } from './.generated/OpenSearchPPLLexer'; import { OpenSearchPPLParser } from './.generated/OpenSearchPPLParser'; @@ -111,7 +112,10 @@ export function processVisitedRules( }; } -export function getParseTree(parser: OpenSearchPPLParser, type?: 'search' | 'from'): ParseTree { +export function getParseTree( + parser: OpenSearchPPLParser, + type?: 'from' | 'alter' | 'insert' | 'update' | 'select' +): ParseTree { if (!type) { return parser.root(); } @@ -119,8 +123,6 @@ export function getParseTree(parser: OpenSearchPPLParser, type?: 'search' | 'fro switch (type) { case 'from': return parser.fromClause(); - case 'search': - return parser.searchCommand(); default: return parser.root(); } @@ -143,7 +145,7 @@ export function enrichAutocompleteResult( const result: OpenSearchPplAutocompleteResult = { ...baseResult, ...suggestionsFromRules, - suggestColumns: shouldSuggestColumns ? shouldSuggestColumns : undefined, + suggestColumns: shouldSuggestColumns ? ({ name: '' } as TableContextSuggestion) : undefined, }; return result; } diff --git a/src/plugins/data/public/antlr/shared/utils.ts b/src/plugins/data/public/antlr/shared/utils.ts index 7f40eaecf4ae..80a8498c56b7 100644 --- a/src/plugins/data/public/antlr/shared/utils.ts +++ b/src/plugins/data/public/antlr/shared/utils.ts @@ -41,6 +41,7 @@ export const getRawSuggestionData$ = ( } const dataSourceId = query.dataset?.dataSource?.id; const title = query.dataset?.dataSource?.title; + if (!dataSourceId || !title) throw new Error(); return from(dataSourceRequestHandler({ dataSourceId, title })); }) );