diff --git a/docs/changelog/127636.yaml b/docs/changelog/127636.yaml new file mode 100644 index 0000000000000..e329eb4bce333 --- /dev/null +++ b/docs/changelog/127636.yaml @@ -0,0 +1,17 @@ +pr: 127636 +summary: Disallow mixed quoted/unquoted patterns in FROM +area: ES|QL +type: breaking +issues: + - 122651 +breaking: + title: Disallow mixed quoted/unquoted patterns in FROM + area: ES|QL + details: "Previously, the ES|QL grammar allowed users to individually quote constituent strings in index patterns\ + \ such as \"remote_cluster\":\"index_name\". This would allow users to write complex malformed index patterns\ + \ that often slip through grammar and the subsequent validation. This could result in runtime errors\ + \ that can be misleading. This change simplifies the grammar to early reject such malformed index patterns\ + \ at the parsing stage, allowing users to write simpler queries and see more relevant and meaningful\ + \ errors." + impact: "Users can write queries with simpler index patterns and see more meaningful and relevant errors." + notable: false diff --git a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java index fe6936d86d406..03df868e1d0ed 100644 --- a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java +++ b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java @@ -251,10 +251,12 @@ static CsvSpecReader.CsvTestCase convertToRemoteIndices(CsvSpecReader.CsvTestCas String[] localIndices = fromStatement.substring("FROM ".length()).split(","); final String remoteIndices; if (canUseRemoteIndicesOnly() && randomBoolean()) { - remoteIndices = Arrays.stream(localIndices).map(index -> "*:" + index.trim()).collect(Collectors.joining(",")); + remoteIndices = Arrays.stream(localIndices) + .map(index -> unquoteAndRequoteAsRemote(index.trim(), true)) + .collect(Collectors.joining(",")); } else { remoteIndices = Arrays.stream(localIndices) - .map(index -> "*:" + index.trim() + "," + index.trim()) + .map(index -> unquoteAndRequoteAsRemote(index.trim(), false)) .collect(Collectors.joining(",")); } var newFrom = "FROM " + remoteIndices + " " + commands[0].substring(fromStatement.length()); @@ -265,9 +267,13 @@ static CsvSpecReader.CsvTestCase convertToRemoteIndices(CsvSpecReader.CsvTestCas assert parts.length >= 2 : commands[0]; String[] indices = parts[1].split(","); if (canUseRemoteIndicesOnly() && randomBoolean()) { - parts[1] = Arrays.stream(indices).map(index -> "*:" + index.trim()).collect(Collectors.joining(",")); + parts[1] = Arrays.stream(indices) + .map(index -> unquoteAndRequoteAsRemote(index.trim(), true)) + .collect(Collectors.joining(",")); } else { - parts[1] = Arrays.stream(indices).map(index -> "*:" + index.trim() + "," + index.trim()).collect(Collectors.joining(",")); + parts[1] = Arrays.stream(indices) + .map(index -> unquoteAndRequoteAsRemote(index.trim(), false)) + .collect(Collectors.joining(",")); } String newNewMetrics = String.join(" ", parts); testCase.query = newNewMetrics + query.substring(first.length()); @@ -300,6 +306,40 @@ static boolean hasIndexMetadata(String query) { return false; } + /** + * Since partial quoting is prohibited, we need to take the index name, unquote it, + * convert it to a remote index, and then requote it. For example, "employees" is unquoted, + * turned into the remote index *:employees, and then requoted to get "*:employees". + * @param index Name of the index. + * @param asRemoteIndexOnly If the return needs to be in the form of "*:idx,idx" or "*:idx". + * @return A remote index pattern that's requoted. + */ + private static String unquoteAndRequoteAsRemote(String index, boolean asRemoteIndexOnly) { + index = index.trim(); + + int numOfQuotes = 0; + for (; numOfQuotes < index.length(); numOfQuotes++) { + if (index.charAt(numOfQuotes) != '"') { + break; + } + } + + String unquoted = unquote(index, numOfQuotes); + if (asRemoteIndexOnly) { + return quote("*:" + unquoted, numOfQuotes); + } else { + return quote("*:" + unquoted + "," + unquoted, numOfQuotes); + } + } + + private static String quote(String index, int numOfQuotes) { + return "\"".repeat(numOfQuotes) + index + "\"".repeat(numOfQuotes); + } + + private static String unquote(String index, int numOfQuotes) { + return index.substring(numOfQuotes, index.length() - numOfQuotes); + } + @Override protected boolean enableRoundingDoubleValuesOnAsserting() { return true; diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java index 66c704eb1bb23..6fd092c98d4b9 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/EsqlActionIT.java @@ -1071,8 +1071,6 @@ public void testDataStreamPatterns() throws Exception { testCases.put("test_ds_patterns*::data,test_ds_patterns*::failures,-test_ds_patterns_2*::data", 19L); testCases.put("test_ds_patterns*::data,test_ds_patterns*::failures,-test_ds_patterns_2*::failures", 21L); - testCases.put("\"test_ds_patterns_1,test_ds_patterns_2\"::failures", 8L); - runDataStreamTest(testCases, new String[] { "test_ds_patterns_1", "test_ds_patterns_2", "test_ds_patterns_3" }, (key, value) -> { try (var results = run("from " + key + " | stats count(@timestamp)")) { assertEquals(key, 1, getValuesList(results).size()); @@ -1097,7 +1095,7 @@ public void testDataStreamInvalidPatterns() throws Exception { // Only one selector separator is allowed per expression testCases.put("::::data", "mismatched input '::' expecting {"); // Suffix case is not supported because there is no component named with the empty string - testCases.put("index::", "missing {QUOTED_STRING, UNQUOTED_SOURCE} at '|'"); + testCases.put("index::", "missing UNQUOTED_SOURCE at '|'"); runDataStreamTest(testCases, new String[] { "test_ds_patterns_1" }, (key, value) -> { logger.info(key); diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 8dad3f9ab36ef..c13b0f4f522c6 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -150,18 +150,21 @@ fromCommand ; indexPattern - : (clusterString COLON)? indexString - | indexString (CAST_OP selectorString)? + : clusterString COLON unquotedIndexString + | unquotedIndexString CAST_OP selectorString + | indexString ; clusterString : UNQUOTED_SOURCE - | QUOTED_STRING ; selectorString : UNQUOTED_SOURCE - | QUOTED_STRING + ; + +unquotedIndexString + : UNQUOTED_SOURCE ; indexString diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp index 57925d2a5fd41..1a374b6c34452 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp @@ -306,6 +306,7 @@ fromCommand indexPattern clusterString selectorString +unquotedIndexString indexString metadata metadataOption @@ -359,4 +360,4 @@ completionCommand atn: -[4, 1, 138, 752, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 160, 8, 1, 10, 1, 12, 1, 163, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 171, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 194, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 206, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 213, 8, 5, 10, 5, 12, 5, 216, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 223, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 228, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 236, 8, 5, 10, 5, 12, 5, 239, 9, 5, 1, 6, 1, 6, 3, 6, 243, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 250, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 257, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 264, 8, 6, 10, 6, 12, 6, 267, 9, 6, 1, 6, 1, 6, 3, 6, 271, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 276, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 286, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 292, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 300, 8, 9, 10, 9, 12, 9, 303, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 313, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 318, 8, 10, 10, 10, 12, 10, 321, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 329, 8, 11, 10, 11, 12, 11, 332, 9, 11, 1, 11, 1, 11, 3, 11, 336, 8, 11, 3, 11, 338, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 348, 8, 13, 10, 13, 12, 13, 351, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 367, 8, 17, 10, 17, 12, 17, 370, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 375, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 382, 8, 19, 10, 19, 12, 19, 385, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 390, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 396, 8, 21, 10, 21, 12, 21, 399, 9, 21, 1, 21, 3, 21, 402, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 407, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 413, 8, 22, 3, 22, 415, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 425, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 431, 8, 27, 10, 27, 12, 27, 434, 9, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 444, 8, 29, 10, 29, 12, 29, 447, 9, 29, 1, 29, 3, 29, 450, 8, 29, 1, 29, 1, 29, 3, 29, 454, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 461, 8, 31, 1, 31, 1, 31, 3, 31, 465, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 470, 8, 32, 10, 32, 12, 32, 473, 9, 32, 1, 33, 1, 33, 1, 33, 3, 33, 478, 8, 33, 1, 34, 1, 34, 1, 34, 5, 34, 483, 8, 34, 10, 34, 12, 34, 486, 9, 34, 1, 35, 1, 35, 1, 35, 5, 35, 491, 8, 35, 10, 35, 12, 35, 494, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 499, 8, 36, 10, 36, 12, 36, 502, 9, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 509, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 524, 8, 39, 10, 39, 12, 39, 527, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 535, 8, 39, 10, 39, 12, 39, 538, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 546, 8, 39, 10, 39, 12, 39, 549, 9, 39, 1, 39, 1, 39, 3, 39, 553, 8, 39, 1, 40, 1, 40, 3, 40, 557, 8, 40, 1, 41, 1, 41, 3, 41, 561, 8, 41, 1, 42, 1, 42, 1, 42, 3, 42, 566, 8, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 575, 8, 44, 10, 44, 12, 44, 578, 9, 44, 1, 45, 1, 45, 3, 45, 582, 8, 45, 1, 45, 1, 45, 3, 45, 586, 8, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 598, 8, 48, 10, 48, 12, 48, 601, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 611, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 5, 53, 629, 8, 53, 10, 53, 12, 53, 632, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 642, 8, 56, 1, 57, 3, 57, 645, 8, 57, 1, 57, 1, 57, 1, 58, 3, 58, 650, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 672, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 678, 8, 64, 10, 64, 12, 64, 681, 9, 64, 3, 64, 683, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 688, 8, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 696, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 703, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 714, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 727, 8, 71, 10, 71, 12, 71, 730, 9, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 740, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 0, 4, 2, 10, 18, 20, 75, 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, 0, 9, 1, 0, 68, 69, 1, 0, 70, 72, 2, 0, 32, 32, 89, 89, 1, 0, 80, 81, 2, 0, 36, 36, 42, 42, 2, 0, 45, 45, 48, 48, 2, 0, 44, 44, 59, 59, 2, 0, 61, 61, 63, 67, 2, 0, 18, 18, 25, 26, 787, 0, 150, 1, 0, 0, 0, 2, 153, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 6, 193, 1, 0, 0, 0, 8, 195, 1, 0, 0, 0, 10, 227, 1, 0, 0, 0, 12, 270, 1, 0, 0, 0, 14, 272, 1, 0, 0, 0, 16, 285, 1, 0, 0, 0, 18, 291, 1, 0, 0, 0, 20, 312, 1, 0, 0, 0, 22, 322, 1, 0, 0, 0, 24, 341, 1, 0, 0, 0, 26, 343, 1, 0, 0, 0, 28, 354, 1, 0, 0, 0, 30, 358, 1, 0, 0, 0, 32, 360, 1, 0, 0, 0, 34, 363, 1, 0, 0, 0, 36, 374, 1, 0, 0, 0, 38, 378, 1, 0, 0, 0, 40, 386, 1, 0, 0, 0, 42, 391, 1, 0, 0, 0, 44, 414, 1, 0, 0, 0, 46, 416, 1, 0, 0, 0, 48, 418, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 424, 1, 0, 0, 0, 54, 426, 1, 0, 0, 0, 56, 435, 1, 0, 0, 0, 58, 439, 1, 0, 0, 0, 60, 455, 1, 0, 0, 0, 62, 458, 1, 0, 0, 0, 64, 466, 1, 0, 0, 0, 66, 474, 1, 0, 0, 0, 68, 479, 1, 0, 0, 0, 70, 487, 1, 0, 0, 0, 72, 495, 1, 0, 0, 0, 74, 503, 1, 0, 0, 0, 76, 508, 1, 0, 0, 0, 78, 552, 1, 0, 0, 0, 80, 556, 1, 0, 0, 0, 82, 560, 1, 0, 0, 0, 84, 565, 1, 0, 0, 0, 86, 567, 1, 0, 0, 0, 88, 570, 1, 0, 0, 0, 90, 579, 1, 0, 0, 0, 92, 587, 1, 0, 0, 0, 94, 590, 1, 0, 0, 0, 96, 593, 1, 0, 0, 0, 98, 610, 1, 0, 0, 0, 100, 612, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 622, 1, 0, 0, 0, 106, 625, 1, 0, 0, 0, 108, 633, 1, 0, 0, 0, 110, 637, 1, 0, 0, 0, 112, 641, 1, 0, 0, 0, 114, 644, 1, 0, 0, 0, 116, 649, 1, 0, 0, 0, 118, 653, 1, 0, 0, 0, 120, 655, 1, 0, 0, 0, 122, 657, 1, 0, 0, 0, 124, 660, 1, 0, 0, 0, 126, 664, 1, 0, 0, 0, 128, 667, 1, 0, 0, 0, 130, 687, 1, 0, 0, 0, 132, 691, 1, 0, 0, 0, 134, 704, 1, 0, 0, 0, 136, 709, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 720, 1, 0, 0, 0, 142, 722, 1, 0, 0, 0, 144, 731, 1, 0, 0, 0, 146, 733, 1, 0, 0, 0, 148, 741, 1, 0, 0, 0, 150, 151, 3, 2, 1, 0, 151, 152, 5, 0, 0, 1, 152, 1, 1, 0, 0, 0, 153, 154, 6, 1, -1, 0, 154, 155, 3, 4, 2, 0, 155, 161, 1, 0, 0, 0, 156, 157, 10, 1, 0, 0, 157, 158, 5, 31, 0, 0, 158, 160, 3, 6, 3, 0, 159, 156, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 3, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 171, 3, 122, 61, 0, 165, 171, 3, 42, 21, 0, 166, 171, 3, 32, 16, 0, 167, 171, 3, 126, 63, 0, 168, 169, 4, 2, 1, 0, 169, 171, 3, 58, 29, 0, 170, 164, 1, 0, 0, 0, 170, 165, 1, 0, 0, 0, 170, 166, 1, 0, 0, 0, 170, 167, 1, 0, 0, 0, 170, 168, 1, 0, 0, 0, 171, 5, 1, 0, 0, 0, 172, 194, 3, 60, 30, 0, 173, 194, 3, 8, 4, 0, 174, 194, 3, 92, 46, 0, 175, 194, 3, 86, 43, 0, 176, 194, 3, 62, 31, 0, 177, 194, 3, 88, 44, 0, 178, 194, 3, 94, 47, 0, 179, 194, 3, 96, 48, 0, 180, 194, 3, 100, 50, 0, 181, 194, 3, 102, 51, 0, 182, 194, 3, 128, 64, 0, 183, 194, 3, 104, 52, 0, 184, 194, 3, 138, 69, 0, 185, 194, 3, 132, 66, 0, 186, 194, 3, 148, 74, 0, 187, 188, 4, 3, 2, 0, 188, 194, 3, 136, 68, 0, 189, 190, 4, 3, 3, 0, 190, 194, 3, 134, 67, 0, 191, 192, 4, 3, 4, 0, 192, 194, 3, 146, 73, 0, 193, 172, 1, 0, 0, 0, 193, 173, 1, 0, 0, 0, 193, 174, 1, 0, 0, 0, 193, 175, 1, 0, 0, 0, 193, 176, 1, 0, 0, 0, 193, 177, 1, 0, 0, 0, 193, 178, 1, 0, 0, 0, 193, 179, 1, 0, 0, 0, 193, 180, 1, 0, 0, 0, 193, 181, 1, 0, 0, 0, 193, 182, 1, 0, 0, 0, 193, 183, 1, 0, 0, 0, 193, 184, 1, 0, 0, 0, 193, 185, 1, 0, 0, 0, 193, 186, 1, 0, 0, 0, 193, 187, 1, 0, 0, 0, 193, 189, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 7, 1, 0, 0, 0, 195, 196, 5, 17, 0, 0, 196, 197, 3, 10, 5, 0, 197, 9, 1, 0, 0, 0, 198, 199, 6, 5, -1, 0, 199, 200, 5, 51, 0, 0, 200, 228, 3, 10, 5, 8, 201, 228, 3, 16, 8, 0, 202, 228, 3, 12, 6, 0, 203, 205, 3, 16, 8, 0, 204, 206, 5, 51, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 46, 0, 0, 208, 209, 5, 50, 0, 0, 209, 214, 3, 16, 8, 0, 210, 211, 5, 41, 0, 0, 211, 213, 3, 16, 8, 0, 212, 210, 1, 0, 0, 0, 213, 216, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 215, 1, 0, 0, 0, 215, 217, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 218, 5, 58, 0, 0, 218, 228, 1, 0, 0, 0, 219, 220, 3, 16, 8, 0, 220, 222, 5, 47, 0, 0, 221, 223, 5, 51, 0, 0, 222, 221, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 5, 52, 0, 0, 225, 228, 1, 0, 0, 0, 226, 228, 3, 14, 7, 0, 227, 198, 1, 0, 0, 0, 227, 201, 1, 0, 0, 0, 227, 202, 1, 0, 0, 0, 227, 203, 1, 0, 0, 0, 227, 219, 1, 0, 0, 0, 227, 226, 1, 0, 0, 0, 228, 237, 1, 0, 0, 0, 229, 230, 10, 5, 0, 0, 230, 231, 5, 35, 0, 0, 231, 236, 3, 10, 5, 6, 232, 233, 10, 4, 0, 0, 233, 234, 5, 55, 0, 0, 234, 236, 3, 10, 5, 5, 235, 229, 1, 0, 0, 0, 235, 232, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 11, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 16, 8, 0, 241, 243, 5, 51, 0, 0, 242, 241, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 245, 5, 49, 0, 0, 245, 246, 3, 118, 59, 0, 246, 271, 1, 0, 0, 0, 247, 249, 3, 16, 8, 0, 248, 250, 5, 51, 0, 0, 249, 248, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 252, 5, 57, 0, 0, 252, 253, 3, 118, 59, 0, 253, 271, 1, 0, 0, 0, 254, 256, 3, 16, 8, 0, 255, 257, 5, 51, 0, 0, 256, 255, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 259, 5, 49, 0, 0, 259, 260, 5, 50, 0, 0, 260, 265, 3, 118, 59, 0, 261, 262, 5, 41, 0, 0, 262, 264, 3, 118, 59, 0, 263, 261, 1, 0, 0, 0, 264, 267, 1, 0, 0, 0, 265, 263, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 268, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 268, 269, 5, 58, 0, 0, 269, 271, 1, 0, 0, 0, 270, 240, 1, 0, 0, 0, 270, 247, 1, 0, 0, 0, 270, 254, 1, 0, 0, 0, 271, 13, 1, 0, 0, 0, 272, 275, 3, 68, 34, 0, 273, 274, 5, 39, 0, 0, 274, 276, 3, 30, 15, 0, 275, 273, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 278, 5, 40, 0, 0, 278, 279, 3, 78, 39, 0, 279, 15, 1, 0, 0, 0, 280, 286, 3, 18, 9, 0, 281, 282, 3, 18, 9, 0, 282, 283, 3, 120, 60, 0, 283, 284, 3, 18, 9, 0, 284, 286, 1, 0, 0, 0, 285, 280, 1, 0, 0, 0, 285, 281, 1, 0, 0, 0, 286, 17, 1, 0, 0, 0, 287, 288, 6, 9, -1, 0, 288, 292, 3, 20, 10, 0, 289, 290, 7, 0, 0, 0, 290, 292, 3, 18, 9, 3, 291, 287, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 292, 301, 1, 0, 0, 0, 293, 294, 10, 2, 0, 0, 294, 295, 7, 1, 0, 0, 295, 300, 3, 18, 9, 3, 296, 297, 10, 1, 0, 0, 297, 298, 7, 0, 0, 0, 298, 300, 3, 18, 9, 2, 299, 293, 1, 0, 0, 0, 299, 296, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 19, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 305, 6, 10, -1, 0, 305, 313, 3, 78, 39, 0, 306, 313, 3, 68, 34, 0, 307, 313, 3, 22, 11, 0, 308, 309, 5, 50, 0, 0, 309, 310, 3, 10, 5, 0, 310, 311, 5, 58, 0, 0, 311, 313, 1, 0, 0, 0, 312, 304, 1, 0, 0, 0, 312, 306, 1, 0, 0, 0, 312, 307, 1, 0, 0, 0, 312, 308, 1, 0, 0, 0, 313, 319, 1, 0, 0, 0, 314, 315, 10, 1, 0, 0, 315, 316, 5, 39, 0, 0, 316, 318, 3, 30, 15, 0, 317, 314, 1, 0, 0, 0, 318, 321, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 21, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 322, 323, 3, 24, 12, 0, 323, 337, 5, 50, 0, 0, 324, 338, 5, 70, 0, 0, 325, 330, 3, 10, 5, 0, 326, 327, 5, 41, 0, 0, 327, 329, 3, 10, 5, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 335, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 5, 41, 0, 0, 334, 336, 3, 26, 13, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 324, 1, 0, 0, 0, 337, 325, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 340, 5, 58, 0, 0, 340, 23, 1, 0, 0, 0, 341, 342, 3, 84, 42, 0, 342, 25, 1, 0, 0, 0, 343, 344, 5, 73, 0, 0, 344, 349, 3, 28, 14, 0, 345, 346, 5, 41, 0, 0, 346, 348, 3, 28, 14, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 5, 74, 0, 0, 353, 27, 1, 0, 0, 0, 354, 355, 3, 118, 59, 0, 355, 356, 5, 40, 0, 0, 356, 357, 3, 78, 39, 0, 357, 29, 1, 0, 0, 0, 358, 359, 3, 74, 37, 0, 359, 31, 1, 0, 0, 0, 360, 361, 5, 13, 0, 0, 361, 362, 3, 34, 17, 0, 362, 33, 1, 0, 0, 0, 363, 368, 3, 36, 18, 0, 364, 365, 5, 41, 0, 0, 365, 367, 3, 36, 18, 0, 366, 364, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 35, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 3, 68, 34, 0, 372, 373, 5, 37, 0, 0, 373, 375, 1, 0, 0, 0, 374, 371, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 3, 10, 5, 0, 377, 37, 1, 0, 0, 0, 378, 383, 3, 40, 20, 0, 379, 380, 5, 41, 0, 0, 380, 382, 3, 40, 20, 0, 381, 379, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 39, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 386, 389, 3, 68, 34, 0, 387, 388, 5, 37, 0, 0, 388, 390, 3, 10, 5, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 41, 1, 0, 0, 0, 391, 392, 5, 7, 0, 0, 392, 397, 3, 44, 22, 0, 393, 394, 5, 41, 0, 0, 394, 396, 3, 44, 22, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 402, 3, 52, 26, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 43, 1, 0, 0, 0, 403, 404, 3, 46, 23, 0, 404, 405, 5, 40, 0, 0, 405, 407, 1, 0, 0, 0, 406, 403, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 415, 3, 50, 25, 0, 409, 412, 3, 50, 25, 0, 410, 411, 5, 39, 0, 0, 411, 413, 3, 48, 24, 0, 412, 410, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 415, 1, 0, 0, 0, 414, 406, 1, 0, 0, 0, 414, 409, 1, 0, 0, 0, 415, 45, 1, 0, 0, 0, 416, 417, 7, 2, 0, 0, 417, 47, 1, 0, 0, 0, 418, 419, 7, 2, 0, 0, 419, 49, 1, 0, 0, 0, 420, 421, 7, 2, 0, 0, 421, 51, 1, 0, 0, 0, 422, 425, 3, 54, 27, 0, 423, 425, 3, 56, 28, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 425, 53, 1, 0, 0, 0, 426, 427, 5, 88, 0, 0, 427, 432, 5, 89, 0, 0, 428, 429, 5, 41, 0, 0, 429, 431, 5, 89, 0, 0, 430, 428, 1, 0, 0, 0, 431, 434, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 55, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 435, 436, 5, 78, 0, 0, 436, 437, 3, 54, 27, 0, 437, 438, 5, 79, 0, 0, 438, 57, 1, 0, 0, 0, 439, 440, 5, 22, 0, 0, 440, 445, 3, 44, 22, 0, 441, 442, 5, 41, 0, 0, 442, 444, 3, 44, 22, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 450, 3, 64, 32, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 452, 5, 38, 0, 0, 452, 454, 3, 34, 17, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 59, 1, 0, 0, 0, 455, 456, 5, 5, 0, 0, 456, 457, 3, 34, 17, 0, 457, 61, 1, 0, 0, 0, 458, 460, 5, 16, 0, 0, 459, 461, 3, 64, 32, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 463, 5, 38, 0, 0, 463, 465, 3, 34, 17, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 63, 1, 0, 0, 0, 466, 471, 3, 66, 33, 0, 467, 468, 5, 41, 0, 0, 468, 470, 3, 66, 33, 0, 469, 467, 1, 0, 0, 0, 470, 473, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 65, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 474, 477, 3, 36, 18, 0, 475, 476, 5, 17, 0, 0, 476, 478, 3, 10, 5, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 484, 3, 84, 42, 0, 480, 481, 5, 43, 0, 0, 481, 483, 3, 84, 42, 0, 482, 480, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 69, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 492, 3, 76, 38, 0, 488, 489, 5, 43, 0, 0, 489, 491, 3, 76, 38, 0, 490, 488, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 71, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 500, 3, 70, 35, 0, 496, 497, 5, 41, 0, 0, 497, 499, 3, 70, 35, 0, 498, 496, 1, 0, 0, 0, 499, 502, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 73, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 503, 504, 7, 3, 0, 0, 504, 75, 1, 0, 0, 0, 505, 509, 5, 93, 0, 0, 506, 509, 3, 80, 40, 0, 507, 509, 3, 82, 41, 0, 508, 505, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 507, 1, 0, 0, 0, 509, 77, 1, 0, 0, 0, 510, 553, 5, 52, 0, 0, 511, 512, 3, 116, 58, 0, 512, 513, 5, 80, 0, 0, 513, 553, 1, 0, 0, 0, 514, 553, 3, 114, 57, 0, 515, 553, 3, 116, 58, 0, 516, 553, 3, 110, 55, 0, 517, 553, 3, 80, 40, 0, 518, 553, 3, 118, 59, 0, 519, 520, 5, 78, 0, 0, 520, 525, 3, 112, 56, 0, 521, 522, 5, 41, 0, 0, 522, 524, 3, 112, 56, 0, 523, 521, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 528, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 528, 529, 5, 79, 0, 0, 529, 553, 1, 0, 0, 0, 530, 531, 5, 78, 0, 0, 531, 536, 3, 110, 55, 0, 532, 533, 5, 41, 0, 0, 533, 535, 3, 110, 55, 0, 534, 532, 1, 0, 0, 0, 535, 538, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 539, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 539, 540, 5, 79, 0, 0, 540, 553, 1, 0, 0, 0, 541, 542, 5, 78, 0, 0, 542, 547, 3, 118, 59, 0, 543, 544, 5, 41, 0, 0, 544, 546, 3, 118, 59, 0, 545, 543, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 550, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 551, 5, 79, 0, 0, 551, 553, 1, 0, 0, 0, 552, 510, 1, 0, 0, 0, 552, 511, 1, 0, 0, 0, 552, 514, 1, 0, 0, 0, 552, 515, 1, 0, 0, 0, 552, 516, 1, 0, 0, 0, 552, 517, 1, 0, 0, 0, 552, 518, 1, 0, 0, 0, 552, 519, 1, 0, 0, 0, 552, 530, 1, 0, 0, 0, 552, 541, 1, 0, 0, 0, 553, 79, 1, 0, 0, 0, 554, 557, 5, 56, 0, 0, 555, 557, 5, 76, 0, 0, 556, 554, 1, 0, 0, 0, 556, 555, 1, 0, 0, 0, 557, 81, 1, 0, 0, 0, 558, 561, 5, 75, 0, 0, 559, 561, 5, 77, 0, 0, 560, 558, 1, 0, 0, 0, 560, 559, 1, 0, 0, 0, 561, 83, 1, 0, 0, 0, 562, 566, 3, 74, 37, 0, 563, 566, 3, 80, 40, 0, 564, 566, 3, 82, 41, 0, 565, 562, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 565, 564, 1, 0, 0, 0, 566, 85, 1, 0, 0, 0, 567, 568, 5, 10, 0, 0, 568, 569, 3, 78, 39, 0, 569, 87, 1, 0, 0, 0, 570, 571, 5, 15, 0, 0, 571, 576, 3, 90, 45, 0, 572, 573, 5, 41, 0, 0, 573, 575, 3, 90, 45, 0, 574, 572, 1, 0, 0, 0, 575, 578, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 89, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 579, 581, 3, 10, 5, 0, 580, 582, 7, 4, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 585, 1, 0, 0, 0, 583, 584, 5, 53, 0, 0, 584, 586, 7, 5, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 91, 1, 0, 0, 0, 587, 588, 5, 9, 0, 0, 588, 589, 3, 72, 36, 0, 589, 93, 1, 0, 0, 0, 590, 591, 5, 3, 0, 0, 591, 592, 3, 72, 36, 0, 592, 95, 1, 0, 0, 0, 593, 594, 5, 12, 0, 0, 594, 599, 3, 98, 49, 0, 595, 596, 5, 41, 0, 0, 596, 598, 3, 98, 49, 0, 597, 595, 1, 0, 0, 0, 598, 601, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 97, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 602, 603, 3, 70, 35, 0, 603, 604, 5, 97, 0, 0, 604, 605, 3, 70, 35, 0, 605, 611, 1, 0, 0, 0, 606, 607, 3, 70, 35, 0, 607, 608, 5, 37, 0, 0, 608, 609, 3, 70, 35, 0, 609, 611, 1, 0, 0, 0, 610, 602, 1, 0, 0, 0, 610, 606, 1, 0, 0, 0, 611, 99, 1, 0, 0, 0, 612, 613, 5, 2, 0, 0, 613, 614, 3, 20, 10, 0, 614, 616, 3, 118, 59, 0, 615, 617, 3, 106, 53, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 8, 0, 0, 619, 620, 3, 20, 10, 0, 620, 621, 3, 118, 59, 0, 621, 103, 1, 0, 0, 0, 622, 623, 5, 11, 0, 0, 623, 624, 3, 68, 34, 0, 624, 105, 1, 0, 0, 0, 625, 630, 3, 108, 54, 0, 626, 627, 5, 41, 0, 0, 627, 629, 3, 108, 54, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 107, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 3, 74, 37, 0, 634, 635, 5, 37, 0, 0, 635, 636, 3, 78, 39, 0, 636, 109, 1, 0, 0, 0, 637, 638, 7, 6, 0, 0, 638, 111, 1, 0, 0, 0, 639, 642, 3, 114, 57, 0, 640, 642, 3, 116, 58, 0, 641, 639, 1, 0, 0, 0, 641, 640, 1, 0, 0, 0, 642, 113, 1, 0, 0, 0, 643, 645, 7, 0, 0, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 5, 34, 0, 0, 647, 115, 1, 0, 0, 0, 648, 650, 7, 0, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 5, 33, 0, 0, 652, 117, 1, 0, 0, 0, 653, 654, 5, 32, 0, 0, 654, 119, 1, 0, 0, 0, 655, 656, 7, 7, 0, 0, 656, 121, 1, 0, 0, 0, 657, 658, 5, 6, 0, 0, 658, 659, 3, 124, 62, 0, 659, 123, 1, 0, 0, 0, 660, 661, 5, 78, 0, 0, 661, 662, 3, 2, 1, 0, 662, 663, 5, 79, 0, 0, 663, 125, 1, 0, 0, 0, 664, 665, 5, 14, 0, 0, 665, 666, 5, 111, 0, 0, 666, 127, 1, 0, 0, 0, 667, 668, 5, 4, 0, 0, 668, 671, 5, 101, 0, 0, 669, 670, 5, 54, 0, 0, 670, 672, 3, 70, 35, 0, 671, 669, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 682, 1, 0, 0, 0, 673, 674, 5, 60, 0, 0, 674, 679, 3, 130, 65, 0, 675, 676, 5, 41, 0, 0, 676, 678, 3, 130, 65, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 673, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 129, 1, 0, 0, 0, 684, 685, 3, 70, 35, 0, 685, 686, 5, 37, 0, 0, 686, 688, 1, 0, 0, 0, 687, 684, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 3, 70, 35, 0, 690, 131, 1, 0, 0, 0, 691, 692, 5, 19, 0, 0, 692, 695, 3, 68, 34, 0, 693, 694, 5, 54, 0, 0, 694, 696, 3, 68, 34, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 702, 1, 0, 0, 0, 697, 698, 5, 97, 0, 0, 698, 699, 3, 68, 34, 0, 699, 700, 5, 41, 0, 0, 700, 701, 3, 68, 34, 0, 701, 703, 1, 0, 0, 0, 702, 697, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 133, 1, 0, 0, 0, 704, 705, 5, 21, 0, 0, 705, 706, 3, 44, 22, 0, 706, 707, 5, 54, 0, 0, 707, 708, 3, 72, 36, 0, 708, 135, 1, 0, 0, 0, 709, 710, 5, 20, 0, 0, 710, 713, 3, 64, 32, 0, 711, 712, 5, 38, 0, 0, 712, 714, 3, 34, 17, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 137, 1, 0, 0, 0, 715, 716, 7, 8, 0, 0, 716, 717, 5, 125, 0, 0, 717, 718, 3, 140, 70, 0, 718, 719, 3, 142, 71, 0, 719, 139, 1, 0, 0, 0, 720, 721, 3, 44, 22, 0, 721, 141, 1, 0, 0, 0, 722, 723, 5, 54, 0, 0, 723, 728, 3, 144, 72, 0, 724, 725, 5, 41, 0, 0, 725, 727, 3, 144, 72, 0, 726, 724, 1, 0, 0, 0, 727, 730, 1, 0, 0, 0, 728, 726, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 143, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 731, 732, 3, 16, 8, 0, 732, 145, 1, 0, 0, 0, 733, 734, 5, 23, 0, 0, 734, 735, 3, 78, 39, 0, 735, 736, 5, 54, 0, 0, 736, 739, 3, 38, 19, 0, 737, 738, 5, 60, 0, 0, 738, 740, 3, 84, 42, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 147, 1, 0, 0, 0, 741, 745, 5, 1, 0, 0, 742, 743, 3, 68, 34, 0, 743, 744, 5, 37, 0, 0, 744, 746, 1, 0, 0, 0, 745, 742, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 3, 20, 10, 0, 748, 749, 5, 60, 0, 0, 749, 750, 3, 84, 42, 0, 750, 149, 1, 0, 0, 0, 74, 161, 170, 193, 205, 214, 222, 227, 235, 237, 242, 249, 256, 265, 270, 275, 285, 291, 299, 301, 312, 319, 330, 335, 337, 349, 368, 374, 383, 389, 397, 401, 406, 412, 414, 424, 432, 445, 449, 453, 460, 464, 471, 477, 484, 492, 500, 508, 525, 536, 547, 552, 556, 560, 565, 576, 581, 585, 599, 610, 616, 630, 641, 644, 649, 671, 679, 682, 687, 695, 702, 713, 728, 739, 745] \ No newline at end of file +[4, 1, 138, 754, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 162, 8, 1, 10, 1, 12, 1, 165, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 173, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 196, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 208, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 215, 8, 5, 10, 5, 12, 5, 218, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 225, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 230, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 238, 8, 5, 10, 5, 12, 5, 241, 9, 5, 1, 6, 1, 6, 3, 6, 245, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 252, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 259, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 266, 8, 6, 10, 6, 12, 6, 269, 9, 6, 1, 6, 1, 6, 3, 6, 273, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 278, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 288, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 294, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 302, 8, 9, 10, 9, 12, 9, 305, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 315, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 320, 8, 10, 10, 10, 12, 10, 323, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 331, 8, 11, 10, 11, 12, 11, 334, 9, 11, 1, 11, 1, 11, 3, 11, 338, 8, 11, 3, 11, 340, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 350, 8, 13, 10, 13, 12, 13, 353, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 369, 8, 17, 10, 17, 12, 17, 372, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 377, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 384, 8, 19, 10, 19, 12, 19, 387, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 392, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 398, 8, 21, 10, 21, 12, 21, 401, 9, 21, 1, 21, 3, 21, 404, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 415, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 427, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 433, 8, 28, 10, 28, 12, 28, 436, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 446, 8, 30, 10, 30, 12, 30, 449, 9, 30, 1, 30, 3, 30, 452, 8, 30, 1, 30, 1, 30, 3, 30, 456, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 463, 8, 32, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 472, 8, 33, 10, 33, 12, 33, 475, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 480, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 485, 8, 35, 10, 35, 12, 35, 488, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 493, 8, 36, 10, 36, 12, 36, 496, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 501, 8, 37, 10, 37, 12, 37, 504, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 511, 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, 5, 40, 526, 8, 40, 10, 40, 12, 40, 529, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 537, 8, 40, 10, 40, 12, 40, 540, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 548, 8, 40, 10, 40, 12, 40, 551, 9, 40, 1, 40, 1, 40, 3, 40, 555, 8, 40, 1, 41, 1, 41, 3, 41, 559, 8, 41, 1, 42, 1, 42, 3, 42, 563, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 568, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 577, 8, 45, 10, 45, 12, 45, 580, 9, 45, 1, 46, 1, 46, 3, 46, 584, 8, 46, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 600, 8, 49, 10, 49, 12, 49, 603, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 613, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 619, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 631, 8, 54, 10, 54, 12, 54, 634, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 644, 8, 57, 1, 58, 3, 58, 647, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 652, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 674, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 680, 8, 65, 10, 65, 12, 65, 683, 9, 65, 3, 65, 685, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 690, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 698, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 705, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 716, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 729, 8, 72, 10, 72, 12, 72, 732, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 742, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 748, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 0, 4, 2, 10, 18, 20, 76, 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, 0, 9, 1, 0, 68, 69, 1, 0, 70, 72, 2, 0, 32, 32, 89, 89, 1, 0, 80, 81, 2, 0, 36, 36, 42, 42, 2, 0, 45, 45, 48, 48, 2, 0, 44, 44, 59, 59, 2, 0, 61, 61, 63, 67, 2, 0, 18, 18, 25, 26, 787, 0, 152, 1, 0, 0, 0, 2, 155, 1, 0, 0, 0, 4, 172, 1, 0, 0, 0, 6, 195, 1, 0, 0, 0, 8, 197, 1, 0, 0, 0, 10, 229, 1, 0, 0, 0, 12, 272, 1, 0, 0, 0, 14, 274, 1, 0, 0, 0, 16, 287, 1, 0, 0, 0, 18, 293, 1, 0, 0, 0, 20, 314, 1, 0, 0, 0, 22, 324, 1, 0, 0, 0, 24, 343, 1, 0, 0, 0, 26, 345, 1, 0, 0, 0, 28, 356, 1, 0, 0, 0, 30, 360, 1, 0, 0, 0, 32, 362, 1, 0, 0, 0, 34, 365, 1, 0, 0, 0, 36, 376, 1, 0, 0, 0, 38, 380, 1, 0, 0, 0, 40, 388, 1, 0, 0, 0, 42, 393, 1, 0, 0, 0, 44, 414, 1, 0, 0, 0, 46, 416, 1, 0, 0, 0, 48, 418, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 426, 1, 0, 0, 0, 56, 428, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 457, 1, 0, 0, 0, 64, 460, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 476, 1, 0, 0, 0, 70, 481, 1, 0, 0, 0, 72, 489, 1, 0, 0, 0, 74, 497, 1, 0, 0, 0, 76, 505, 1, 0, 0, 0, 78, 510, 1, 0, 0, 0, 80, 554, 1, 0, 0, 0, 82, 558, 1, 0, 0, 0, 84, 562, 1, 0, 0, 0, 86, 567, 1, 0, 0, 0, 88, 569, 1, 0, 0, 0, 90, 572, 1, 0, 0, 0, 92, 581, 1, 0, 0, 0, 94, 589, 1, 0, 0, 0, 96, 592, 1, 0, 0, 0, 98, 595, 1, 0, 0, 0, 100, 612, 1, 0, 0, 0, 102, 614, 1, 0, 0, 0, 104, 620, 1, 0, 0, 0, 106, 624, 1, 0, 0, 0, 108, 627, 1, 0, 0, 0, 110, 635, 1, 0, 0, 0, 112, 639, 1, 0, 0, 0, 114, 643, 1, 0, 0, 0, 116, 646, 1, 0, 0, 0, 118, 651, 1, 0, 0, 0, 120, 655, 1, 0, 0, 0, 122, 657, 1, 0, 0, 0, 124, 659, 1, 0, 0, 0, 126, 662, 1, 0, 0, 0, 128, 666, 1, 0, 0, 0, 130, 669, 1, 0, 0, 0, 132, 689, 1, 0, 0, 0, 134, 693, 1, 0, 0, 0, 136, 706, 1, 0, 0, 0, 138, 711, 1, 0, 0, 0, 140, 717, 1, 0, 0, 0, 142, 722, 1, 0, 0, 0, 144, 724, 1, 0, 0, 0, 146, 733, 1, 0, 0, 0, 148, 735, 1, 0, 0, 0, 150, 743, 1, 0, 0, 0, 152, 153, 3, 2, 1, 0, 153, 154, 5, 0, 0, 1, 154, 1, 1, 0, 0, 0, 155, 156, 6, 1, -1, 0, 156, 157, 3, 4, 2, 0, 157, 163, 1, 0, 0, 0, 158, 159, 10, 1, 0, 0, 159, 160, 5, 31, 0, 0, 160, 162, 3, 6, 3, 0, 161, 158, 1, 0, 0, 0, 162, 165, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 3, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 166, 173, 3, 124, 62, 0, 167, 173, 3, 42, 21, 0, 168, 173, 3, 32, 16, 0, 169, 173, 3, 128, 64, 0, 170, 171, 4, 2, 1, 0, 171, 173, 3, 60, 30, 0, 172, 166, 1, 0, 0, 0, 172, 167, 1, 0, 0, 0, 172, 168, 1, 0, 0, 0, 172, 169, 1, 0, 0, 0, 172, 170, 1, 0, 0, 0, 173, 5, 1, 0, 0, 0, 174, 196, 3, 62, 31, 0, 175, 196, 3, 8, 4, 0, 176, 196, 3, 94, 47, 0, 177, 196, 3, 88, 44, 0, 178, 196, 3, 64, 32, 0, 179, 196, 3, 90, 45, 0, 180, 196, 3, 96, 48, 0, 181, 196, 3, 98, 49, 0, 182, 196, 3, 102, 51, 0, 183, 196, 3, 104, 52, 0, 184, 196, 3, 130, 65, 0, 185, 196, 3, 106, 53, 0, 186, 196, 3, 140, 70, 0, 187, 196, 3, 134, 67, 0, 188, 196, 3, 150, 75, 0, 189, 190, 4, 3, 2, 0, 190, 196, 3, 138, 69, 0, 191, 192, 4, 3, 3, 0, 192, 196, 3, 136, 68, 0, 193, 194, 4, 3, 4, 0, 194, 196, 3, 148, 74, 0, 195, 174, 1, 0, 0, 0, 195, 175, 1, 0, 0, 0, 195, 176, 1, 0, 0, 0, 195, 177, 1, 0, 0, 0, 195, 178, 1, 0, 0, 0, 195, 179, 1, 0, 0, 0, 195, 180, 1, 0, 0, 0, 195, 181, 1, 0, 0, 0, 195, 182, 1, 0, 0, 0, 195, 183, 1, 0, 0, 0, 195, 184, 1, 0, 0, 0, 195, 185, 1, 0, 0, 0, 195, 186, 1, 0, 0, 0, 195, 187, 1, 0, 0, 0, 195, 188, 1, 0, 0, 0, 195, 189, 1, 0, 0, 0, 195, 191, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 7, 1, 0, 0, 0, 197, 198, 5, 17, 0, 0, 198, 199, 3, 10, 5, 0, 199, 9, 1, 0, 0, 0, 200, 201, 6, 5, -1, 0, 201, 202, 5, 51, 0, 0, 202, 230, 3, 10, 5, 8, 203, 230, 3, 16, 8, 0, 204, 230, 3, 12, 6, 0, 205, 207, 3, 16, 8, 0, 206, 208, 5, 51, 0, 0, 207, 206, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 210, 5, 46, 0, 0, 210, 211, 5, 50, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 41, 0, 0, 213, 215, 3, 16, 8, 0, 214, 212, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 219, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 5, 58, 0, 0, 220, 230, 1, 0, 0, 0, 221, 222, 3, 16, 8, 0, 222, 224, 5, 47, 0, 0, 223, 225, 5, 51, 0, 0, 224, 223, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 227, 5, 52, 0, 0, 227, 230, 1, 0, 0, 0, 228, 230, 3, 14, 7, 0, 229, 200, 1, 0, 0, 0, 229, 203, 1, 0, 0, 0, 229, 204, 1, 0, 0, 0, 229, 205, 1, 0, 0, 0, 229, 221, 1, 0, 0, 0, 229, 228, 1, 0, 0, 0, 230, 239, 1, 0, 0, 0, 231, 232, 10, 5, 0, 0, 232, 233, 5, 35, 0, 0, 233, 238, 3, 10, 5, 6, 234, 235, 10, 4, 0, 0, 235, 236, 5, 55, 0, 0, 236, 238, 3, 10, 5, 5, 237, 231, 1, 0, 0, 0, 237, 234, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 11, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, 244, 3, 16, 8, 0, 243, 245, 5, 51, 0, 0, 244, 243, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 247, 5, 49, 0, 0, 247, 248, 3, 120, 60, 0, 248, 273, 1, 0, 0, 0, 249, 251, 3, 16, 8, 0, 250, 252, 5, 51, 0, 0, 251, 250, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 5, 57, 0, 0, 254, 255, 3, 120, 60, 0, 255, 273, 1, 0, 0, 0, 256, 258, 3, 16, 8, 0, 257, 259, 5, 51, 0, 0, 258, 257, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 261, 5, 49, 0, 0, 261, 262, 5, 50, 0, 0, 262, 267, 3, 120, 60, 0, 263, 264, 5, 41, 0, 0, 264, 266, 3, 120, 60, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 270, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 271, 5, 58, 0, 0, 271, 273, 1, 0, 0, 0, 272, 242, 1, 0, 0, 0, 272, 249, 1, 0, 0, 0, 272, 256, 1, 0, 0, 0, 273, 13, 1, 0, 0, 0, 274, 277, 3, 70, 35, 0, 275, 276, 5, 39, 0, 0, 276, 278, 3, 30, 15, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 280, 5, 40, 0, 0, 280, 281, 3, 80, 40, 0, 281, 15, 1, 0, 0, 0, 282, 288, 3, 18, 9, 0, 283, 284, 3, 18, 9, 0, 284, 285, 3, 122, 61, 0, 285, 286, 3, 18, 9, 0, 286, 288, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 283, 1, 0, 0, 0, 288, 17, 1, 0, 0, 0, 289, 290, 6, 9, -1, 0, 290, 294, 3, 20, 10, 0, 291, 292, 7, 0, 0, 0, 292, 294, 3, 18, 9, 3, 293, 289, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 303, 1, 0, 0, 0, 295, 296, 10, 2, 0, 0, 296, 297, 7, 1, 0, 0, 297, 302, 3, 18, 9, 3, 298, 299, 10, 1, 0, 0, 299, 300, 7, 0, 0, 0, 300, 302, 3, 18, 9, 2, 301, 295, 1, 0, 0, 0, 301, 298, 1, 0, 0, 0, 302, 305, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 19, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 306, 307, 6, 10, -1, 0, 307, 315, 3, 80, 40, 0, 308, 315, 3, 70, 35, 0, 309, 315, 3, 22, 11, 0, 310, 311, 5, 50, 0, 0, 311, 312, 3, 10, 5, 0, 312, 313, 5, 58, 0, 0, 313, 315, 1, 0, 0, 0, 314, 306, 1, 0, 0, 0, 314, 308, 1, 0, 0, 0, 314, 309, 1, 0, 0, 0, 314, 310, 1, 0, 0, 0, 315, 321, 1, 0, 0, 0, 316, 317, 10, 1, 0, 0, 317, 318, 5, 39, 0, 0, 318, 320, 3, 30, 15, 0, 319, 316, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 21, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 325, 3, 24, 12, 0, 325, 339, 5, 50, 0, 0, 326, 340, 5, 70, 0, 0, 327, 332, 3, 10, 5, 0, 328, 329, 5, 41, 0, 0, 329, 331, 3, 10, 5, 0, 330, 328, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 335, 336, 5, 41, 0, 0, 336, 338, 3, 26, 13, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 326, 1, 0, 0, 0, 339, 327, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 5, 58, 0, 0, 342, 23, 1, 0, 0, 0, 343, 344, 3, 86, 43, 0, 344, 25, 1, 0, 0, 0, 345, 346, 5, 73, 0, 0, 346, 351, 3, 28, 14, 0, 347, 348, 5, 41, 0, 0, 348, 350, 3, 28, 14, 0, 349, 347, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 5, 74, 0, 0, 355, 27, 1, 0, 0, 0, 356, 357, 3, 120, 60, 0, 357, 358, 5, 40, 0, 0, 358, 359, 3, 80, 40, 0, 359, 29, 1, 0, 0, 0, 360, 361, 3, 76, 38, 0, 361, 31, 1, 0, 0, 0, 362, 363, 5, 13, 0, 0, 363, 364, 3, 34, 17, 0, 364, 33, 1, 0, 0, 0, 365, 370, 3, 36, 18, 0, 366, 367, 5, 41, 0, 0, 367, 369, 3, 36, 18, 0, 368, 366, 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 373, 374, 3, 70, 35, 0, 374, 375, 5, 37, 0, 0, 375, 377, 1, 0, 0, 0, 376, 373, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 3, 10, 5, 0, 379, 37, 1, 0, 0, 0, 380, 385, 3, 40, 20, 0, 381, 382, 5, 41, 0, 0, 382, 384, 3, 40, 20, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 39, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 391, 3, 70, 35, 0, 389, 390, 5, 37, 0, 0, 390, 392, 3, 10, 5, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 41, 1, 0, 0, 0, 393, 394, 5, 7, 0, 0, 394, 399, 3, 44, 22, 0, 395, 396, 5, 41, 0, 0, 396, 398, 3, 44, 22, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 404, 3, 54, 27, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 43, 1, 0, 0, 0, 405, 406, 3, 46, 23, 0, 406, 407, 5, 40, 0, 0, 407, 408, 3, 50, 25, 0, 408, 415, 1, 0, 0, 0, 409, 410, 3, 50, 25, 0, 410, 411, 5, 39, 0, 0, 411, 412, 3, 48, 24, 0, 412, 415, 1, 0, 0, 0, 413, 415, 3, 52, 26, 0, 414, 405, 1, 0, 0, 0, 414, 409, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 45, 1, 0, 0, 0, 416, 417, 5, 89, 0, 0, 417, 47, 1, 0, 0, 0, 418, 419, 5, 89, 0, 0, 419, 49, 1, 0, 0, 0, 420, 421, 5, 89, 0, 0, 421, 51, 1, 0, 0, 0, 422, 423, 7, 2, 0, 0, 423, 53, 1, 0, 0, 0, 424, 427, 3, 56, 28, 0, 425, 427, 3, 58, 29, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 55, 1, 0, 0, 0, 428, 429, 5, 88, 0, 0, 429, 434, 5, 89, 0, 0, 430, 431, 5, 41, 0, 0, 431, 433, 5, 89, 0, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 57, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 78, 0, 0, 438, 439, 3, 56, 28, 0, 439, 440, 5, 79, 0, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 22, 0, 0, 442, 447, 3, 44, 22, 0, 443, 444, 5, 41, 0, 0, 444, 446, 3, 44, 22, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 452, 3, 66, 33, 0, 451, 450, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 454, 5, 38, 0, 0, 454, 456, 3, 34, 17, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 61, 1, 0, 0, 0, 457, 458, 5, 5, 0, 0, 458, 459, 3, 34, 17, 0, 459, 63, 1, 0, 0, 0, 460, 462, 5, 16, 0, 0, 461, 463, 3, 66, 33, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 465, 5, 38, 0, 0, 465, 467, 3, 34, 17, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 65, 1, 0, 0, 0, 468, 473, 3, 68, 34, 0, 469, 470, 5, 41, 0, 0, 470, 472, 3, 68, 34, 0, 471, 469, 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 67, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 476, 479, 3, 36, 18, 0, 477, 478, 5, 17, 0, 0, 478, 480, 3, 10, 5, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 69, 1, 0, 0, 0, 481, 486, 3, 86, 43, 0, 482, 483, 5, 43, 0, 0, 483, 485, 3, 86, 43, 0, 484, 482, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 71, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 494, 3, 78, 39, 0, 490, 491, 5, 43, 0, 0, 491, 493, 3, 78, 39, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 73, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 502, 3, 72, 36, 0, 498, 499, 5, 41, 0, 0, 499, 501, 3, 72, 36, 0, 500, 498, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 75, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 506, 7, 3, 0, 0, 506, 77, 1, 0, 0, 0, 507, 511, 5, 93, 0, 0, 508, 511, 3, 82, 41, 0, 509, 511, 3, 84, 42, 0, 510, 507, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 79, 1, 0, 0, 0, 512, 555, 5, 52, 0, 0, 513, 514, 3, 118, 59, 0, 514, 515, 5, 80, 0, 0, 515, 555, 1, 0, 0, 0, 516, 555, 3, 116, 58, 0, 517, 555, 3, 118, 59, 0, 518, 555, 3, 112, 56, 0, 519, 555, 3, 82, 41, 0, 520, 555, 3, 120, 60, 0, 521, 522, 5, 78, 0, 0, 522, 527, 3, 114, 57, 0, 523, 524, 5, 41, 0, 0, 524, 526, 3, 114, 57, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 530, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 5, 79, 0, 0, 531, 555, 1, 0, 0, 0, 532, 533, 5, 78, 0, 0, 533, 538, 3, 112, 56, 0, 534, 535, 5, 41, 0, 0, 535, 537, 3, 112, 56, 0, 536, 534, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 542, 5, 79, 0, 0, 542, 555, 1, 0, 0, 0, 543, 544, 5, 78, 0, 0, 544, 549, 3, 120, 60, 0, 545, 546, 5, 41, 0, 0, 546, 548, 3, 120, 60, 0, 547, 545, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 553, 5, 79, 0, 0, 553, 555, 1, 0, 0, 0, 554, 512, 1, 0, 0, 0, 554, 513, 1, 0, 0, 0, 554, 516, 1, 0, 0, 0, 554, 517, 1, 0, 0, 0, 554, 518, 1, 0, 0, 0, 554, 519, 1, 0, 0, 0, 554, 520, 1, 0, 0, 0, 554, 521, 1, 0, 0, 0, 554, 532, 1, 0, 0, 0, 554, 543, 1, 0, 0, 0, 555, 81, 1, 0, 0, 0, 556, 559, 5, 56, 0, 0, 557, 559, 5, 76, 0, 0, 558, 556, 1, 0, 0, 0, 558, 557, 1, 0, 0, 0, 559, 83, 1, 0, 0, 0, 560, 563, 5, 75, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 85, 1, 0, 0, 0, 564, 568, 3, 76, 38, 0, 565, 568, 3, 82, 41, 0, 566, 568, 3, 84, 42, 0, 567, 564, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 566, 1, 0, 0, 0, 568, 87, 1, 0, 0, 0, 569, 570, 5, 10, 0, 0, 570, 571, 3, 80, 40, 0, 571, 89, 1, 0, 0, 0, 572, 573, 5, 15, 0, 0, 573, 578, 3, 92, 46, 0, 574, 575, 5, 41, 0, 0, 575, 577, 3, 92, 46, 0, 576, 574, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 91, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 583, 3, 10, 5, 0, 582, 584, 7, 4, 0, 0, 583, 582, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 586, 5, 53, 0, 0, 586, 588, 7, 5, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 93, 1, 0, 0, 0, 589, 590, 5, 9, 0, 0, 590, 591, 3, 74, 37, 0, 591, 95, 1, 0, 0, 0, 592, 593, 5, 3, 0, 0, 593, 594, 3, 74, 37, 0, 594, 97, 1, 0, 0, 0, 595, 596, 5, 12, 0, 0, 596, 601, 3, 100, 50, 0, 597, 598, 5, 41, 0, 0, 598, 600, 3, 100, 50, 0, 599, 597, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 99, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 3, 72, 36, 0, 605, 606, 5, 97, 0, 0, 606, 607, 3, 72, 36, 0, 607, 613, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 37, 0, 0, 610, 611, 3, 72, 36, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 101, 1, 0, 0, 0, 614, 615, 5, 2, 0, 0, 615, 616, 3, 20, 10, 0, 616, 618, 3, 120, 60, 0, 617, 619, 3, 108, 54, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 103, 1, 0, 0, 0, 620, 621, 5, 8, 0, 0, 621, 622, 3, 20, 10, 0, 622, 623, 3, 120, 60, 0, 623, 105, 1, 0, 0, 0, 624, 625, 5, 11, 0, 0, 625, 626, 3, 70, 35, 0, 626, 107, 1, 0, 0, 0, 627, 632, 3, 110, 55, 0, 628, 629, 5, 41, 0, 0, 629, 631, 3, 110, 55, 0, 630, 628, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 109, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 3, 76, 38, 0, 636, 637, 5, 37, 0, 0, 637, 638, 3, 80, 40, 0, 638, 111, 1, 0, 0, 0, 639, 640, 7, 6, 0, 0, 640, 113, 1, 0, 0, 0, 641, 644, 3, 116, 58, 0, 642, 644, 3, 118, 59, 0, 643, 641, 1, 0, 0, 0, 643, 642, 1, 0, 0, 0, 644, 115, 1, 0, 0, 0, 645, 647, 7, 0, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 34, 0, 0, 649, 117, 1, 0, 0, 0, 650, 652, 7, 0, 0, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 33, 0, 0, 654, 119, 1, 0, 0, 0, 655, 656, 5, 32, 0, 0, 656, 121, 1, 0, 0, 0, 657, 658, 7, 7, 0, 0, 658, 123, 1, 0, 0, 0, 659, 660, 5, 6, 0, 0, 660, 661, 3, 126, 63, 0, 661, 125, 1, 0, 0, 0, 662, 663, 5, 78, 0, 0, 663, 664, 3, 2, 1, 0, 664, 665, 5, 79, 0, 0, 665, 127, 1, 0, 0, 0, 666, 667, 5, 14, 0, 0, 667, 668, 5, 111, 0, 0, 668, 129, 1, 0, 0, 0, 669, 670, 5, 4, 0, 0, 670, 673, 5, 101, 0, 0, 671, 672, 5, 54, 0, 0, 672, 674, 3, 72, 36, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 684, 1, 0, 0, 0, 675, 676, 5, 60, 0, 0, 676, 681, 3, 132, 66, 0, 677, 678, 5, 41, 0, 0, 678, 680, 3, 132, 66, 0, 679, 677, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 684, 675, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 131, 1, 0, 0, 0, 686, 687, 3, 72, 36, 0, 687, 688, 5, 37, 0, 0, 688, 690, 1, 0, 0, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 3, 72, 36, 0, 692, 133, 1, 0, 0, 0, 693, 694, 5, 19, 0, 0, 694, 697, 3, 70, 35, 0, 695, 696, 5, 54, 0, 0, 696, 698, 3, 70, 35, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 704, 1, 0, 0, 0, 699, 700, 5, 97, 0, 0, 700, 701, 3, 70, 35, 0, 701, 702, 5, 41, 0, 0, 702, 703, 3, 70, 35, 0, 703, 705, 1, 0, 0, 0, 704, 699, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 135, 1, 0, 0, 0, 706, 707, 5, 21, 0, 0, 707, 708, 3, 44, 22, 0, 708, 709, 5, 54, 0, 0, 709, 710, 3, 74, 37, 0, 710, 137, 1, 0, 0, 0, 711, 712, 5, 20, 0, 0, 712, 715, 3, 66, 33, 0, 713, 714, 5, 38, 0, 0, 714, 716, 3, 34, 17, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 139, 1, 0, 0, 0, 717, 718, 7, 8, 0, 0, 718, 719, 5, 125, 0, 0, 719, 720, 3, 142, 71, 0, 720, 721, 3, 144, 72, 0, 721, 141, 1, 0, 0, 0, 722, 723, 3, 44, 22, 0, 723, 143, 1, 0, 0, 0, 724, 725, 5, 54, 0, 0, 725, 730, 3, 146, 73, 0, 726, 727, 5, 41, 0, 0, 727, 729, 3, 146, 73, 0, 728, 726, 1, 0, 0, 0, 729, 732, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 145, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 3, 16, 8, 0, 734, 147, 1, 0, 0, 0, 735, 736, 5, 23, 0, 0, 736, 737, 3, 80, 40, 0, 737, 738, 5, 54, 0, 0, 738, 741, 3, 38, 19, 0, 739, 740, 5, 60, 0, 0, 740, 742, 3, 86, 43, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 149, 1, 0, 0, 0, 743, 747, 5, 1, 0, 0, 744, 745, 3, 70, 35, 0, 745, 746, 5, 37, 0, 0, 746, 748, 1, 0, 0, 0, 747, 744, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 3, 20, 10, 0, 750, 751, 5, 60, 0, 0, 751, 752, 3, 86, 43, 0, 752, 151, 1, 0, 0, 0, 72, 163, 172, 195, 207, 216, 224, 229, 237, 239, 244, 251, 258, 267, 272, 277, 287, 293, 301, 303, 314, 321, 332, 337, 339, 351, 370, 376, 385, 391, 399, 403, 414, 426, 434, 447, 451, 455, 462, 466, 473, 479, 486, 494, 502, 510, 527, 538, 549, 554, 558, 562, 567, 578, 583, 587, 601, 612, 618, 632, 643, 646, 651, 673, 681, 684, 689, 697, 704, 715, 730, 741, 747] \ No newline at end of file diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java index dc9496bf6ebea..4884d964e3299 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java @@ -62,23 +62,23 @@ public class EsqlBaseParser extends ParserConfig { RULE_mapExpression = 13, RULE_entryExpression = 14, RULE_dataType = 15, RULE_rowCommand = 16, RULE_fields = 17, RULE_field = 18, RULE_rerankFields = 19, RULE_rerankField = 20, RULE_fromCommand = 21, RULE_indexPattern = 22, - RULE_clusterString = 23, RULE_selectorString = 24, RULE_indexString = 25, - RULE_metadata = 26, RULE_metadataOption = 27, RULE_deprecated_metadata = 28, - RULE_metricsCommand = 29, RULE_evalCommand = 30, RULE_statsCommand = 31, - RULE_aggFields = 32, RULE_aggField = 33, RULE_qualifiedName = 34, RULE_qualifiedNamePattern = 35, - RULE_qualifiedNamePatterns = 36, RULE_identifier = 37, RULE_identifierPattern = 38, - RULE_constant = 39, RULE_parameter = 40, RULE_doubleParameter = 41, RULE_identifierOrParameter = 42, - RULE_limitCommand = 43, RULE_sortCommand = 44, RULE_orderExpression = 45, - RULE_keepCommand = 46, RULE_dropCommand = 47, RULE_renameCommand = 48, - RULE_renameClause = 49, RULE_dissectCommand = 50, RULE_grokCommand = 51, - RULE_mvExpandCommand = 52, RULE_commandOptions = 53, RULE_commandOption = 54, - RULE_booleanValue = 55, RULE_numericValue = 56, RULE_decimalValue = 57, - RULE_integerValue = 58, RULE_string = 59, RULE_comparisonOperator = 60, - RULE_explainCommand = 61, RULE_subqueryExpression = 62, RULE_showCommand = 63, - RULE_enrichCommand = 64, RULE_enrichWithClause = 65, RULE_changePointCommand = 66, - RULE_lookupCommand = 67, RULE_inlinestatsCommand = 68, RULE_joinCommand = 69, - RULE_joinTarget = 70, RULE_joinCondition = 71, RULE_joinPredicate = 72, - RULE_rerankCommand = 73, RULE_completionCommand = 74; + RULE_clusterString = 23, RULE_selectorString = 24, RULE_unquotedIndexString = 25, + RULE_indexString = 26, RULE_metadata = 27, RULE_metadataOption = 28, RULE_deprecated_metadata = 29, + RULE_metricsCommand = 30, RULE_evalCommand = 31, RULE_statsCommand = 32, + RULE_aggFields = 33, RULE_aggField = 34, RULE_qualifiedName = 35, RULE_qualifiedNamePattern = 36, + RULE_qualifiedNamePatterns = 37, RULE_identifier = 38, RULE_identifierPattern = 39, + RULE_constant = 40, RULE_parameter = 41, RULE_doubleParameter = 42, RULE_identifierOrParameter = 43, + RULE_limitCommand = 44, RULE_sortCommand = 45, RULE_orderExpression = 46, + RULE_keepCommand = 47, RULE_dropCommand = 48, RULE_renameCommand = 49, + RULE_renameClause = 50, RULE_dissectCommand = 51, RULE_grokCommand = 52, + RULE_mvExpandCommand = 53, RULE_commandOptions = 54, RULE_commandOption = 55, + RULE_booleanValue = 56, RULE_numericValue = 57, RULE_decimalValue = 58, + RULE_integerValue = 59, RULE_string = 60, RULE_comparisonOperator = 61, + RULE_explainCommand = 62, RULE_subqueryExpression = 63, RULE_showCommand = 64, + RULE_enrichCommand = 65, RULE_enrichWithClause = 66, RULE_changePointCommand = 67, + RULE_lookupCommand = 68, RULE_inlinestatsCommand = 69, RULE_joinCommand = 70, + RULE_joinTarget = 71, RULE_joinCondition = 72, RULE_joinPredicate = 73, + RULE_rerankCommand = 74, RULE_completionCommand = 75; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -86,18 +86,18 @@ private static String[] makeRuleNames() { "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", "functionName", "mapExpression", "entryExpression", "dataType", "rowCommand", "fields", "field", "rerankFields", "rerankField", "fromCommand", "indexPattern", - "clusterString", "selectorString", "indexString", "metadata", "metadataOption", - "deprecated_metadata", "metricsCommand", "evalCommand", "statsCommand", - "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", - "identifier", "identifierPattern", "constant", "parameter", "doubleParameter", - "identifierOrParameter", "limitCommand", "sortCommand", "orderExpression", - "keepCommand", "dropCommand", "renameCommand", "renameClause", "dissectCommand", - "grokCommand", "mvExpandCommand", "commandOptions", "commandOption", - "booleanValue", "numericValue", "decimalValue", "integerValue", "string", - "comparisonOperator", "explainCommand", "subqueryExpression", "showCommand", - "enrichCommand", "enrichWithClause", "changePointCommand", "lookupCommand", - "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition", "joinPredicate", - "rerankCommand", "completionCommand" + "clusterString", "selectorString", "unquotedIndexString", "indexString", + "metadata", "metadataOption", "deprecated_metadata", "metricsCommand", + "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName", + "qualifiedNamePattern", "qualifiedNamePatterns", "identifier", "identifierPattern", + "constant", "parameter", "doubleParameter", "identifierOrParameter", + "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", + "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", + "commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue", + "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression", + "showCommand", "enrichCommand", "enrichWithClause", "changePointCommand", + "lookupCommand", "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition", + "joinPredicate", "rerankCommand", "completionCommand" }; } public static final String[] ruleNames = makeRuleNames(); @@ -237,9 +237,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(150); + setState(152); query(0); - setState(151); + setState(153); match(EOF); } } @@ -335,11 +335,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(154); + setState(156); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(161); + setState(163); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -350,16 +350,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(156); + setState(158); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(157); + setState(159); match(PIPE); - setState(158); + setState(160); processingCommand(); } } } - setState(163); + setState(165); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -417,43 +417,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(170); + setState(172); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(164); + setState(166); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(165); + setState(167); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(166); + setState(168); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(167); + setState(169); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(168); + setState(170); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(169); + setState(171); metricsCommand(); } break; @@ -550,138 +550,138 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(193); + setState(195); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(172); + setState(174); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(173); + setState(175); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(174); + setState(176); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(175); + setState(177); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(176); + setState(178); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(177); + setState(179); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(178); + setState(180); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(179); + setState(181); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(180); + setState(182); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(181); + setState(183); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(182); + setState(184); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(183); + setState(185); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(184); + setState(186); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(185); + setState(187); changePointCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(186); + setState(188); completionCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(187); + setState(189); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(188); + setState(190); inlinestatsCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(189); + setState(191); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(190); + setState(192); lookupCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(191); + setState(193); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(192); + setState(194); rerankCommand(); } break; @@ -730,9 +730,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(195); + setState(197); match(WHERE); - setState(196); + setState(198); booleanExpression(0); } } @@ -948,7 +948,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(227); + setState(229); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: @@ -957,9 +957,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(199); + setState(201); match(NOT); - setState(200); + setState(202); booleanExpression(8); } break; @@ -968,7 +968,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(201); + setState(203); valueExpression(); } break; @@ -977,7 +977,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(202); + setState(204); regexBooleanExpression(); } break; @@ -986,41 +986,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(203); - valueExpression(); setState(205); + valueExpression(); + setState(207); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(204); + setState(206); match(NOT); } } - setState(207); + setState(209); match(IN); - setState(208); + setState(210); match(LP); - setState(209); + setState(211); valueExpression(); - setState(214); + setState(216); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(210); + setState(212); match(COMMA); - setState(211); + setState(213); valueExpression(); } } - setState(216); + setState(218); _errHandler.sync(this); _la = _input.LA(1); } - setState(217); + setState(219); match(RP); } break; @@ -1029,21 +1029,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(219); + setState(221); valueExpression(); - setState(220); - match(IS); setState(222); + match(IS); + setState(224); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(221); + setState(223); match(NOT); } } - setState(224); + setState(226); match(NULL); } break; @@ -1052,13 +1052,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(226); + setState(228); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(237); + setState(239); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1066,7 +1066,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(235); + setState(237); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: @@ -1074,11 +1074,11 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(229); + setState(231); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(230); + setState(232); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(231); + setState(233); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -1087,18 +1087,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(232); + setState(234); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(233); + setState(235); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(234); + setState(236); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(239); + setState(241); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); } @@ -1222,28 +1222,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 12, RULE_regexBooleanExpression); int _la; try { - setState(270); + setState(272); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(240); - valueExpression(); setState(242); + valueExpression(); + setState(244); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(241); + setState(243); match(NOT); } } - setState(244); + setState(246); match(LIKE); - setState(245); + setState(247); string(); } break; @@ -1251,21 +1251,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(247); - valueExpression(); setState(249); + valueExpression(); + setState(251); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(248); + setState(250); match(NOT); } } - setState(251); + setState(253); match(RLIKE); - setState(252); + setState(254); string(); } break; @@ -1273,41 +1273,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(254); - valueExpression(); setState(256); + valueExpression(); + setState(258); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(255); + setState(257); match(NOT); } } - setState(258); + setState(260); match(LIKE); - setState(259); + setState(261); match(LP); - setState(260); + setState(262); string(); - setState(265); + setState(267); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(261); + setState(263); match(COMMA); - setState(262); + setState(264); string(); } } - setState(267); + setState(269); _errHandler.sync(this); _la = _input.LA(1); } - setState(268); + setState(270); match(RP); } break; @@ -1367,23 +1367,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(272); + setState(274); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(275); + setState(277); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(273); + setState(275); match(CAST_OP); - setState(274); + setState(276); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(277); + setState(279); match(COLON); - setState(278); + setState(280); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -1467,14 +1467,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 16, RULE_valueExpression); try { - setState(285); + setState(287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(280); + setState(282); operatorExpression(0); } break; @@ -1482,11 +1482,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(281); + setState(283); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(282); + setState(284); comparisonOperator(); - setState(283); + setState(285); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -1611,7 +1611,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(291); + setState(293); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: @@ -1620,7 +1620,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(288); + setState(290); primaryExpression(0); } break; @@ -1629,7 +1629,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(289); + setState(291); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1640,13 +1640,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(290); + setState(292); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(301); + setState(303); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1654,7 +1654,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(299); + setState(301); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { case 1: @@ -1662,9 +1662,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(293); + setState(295); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(294); + setState(296); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & 7L) != 0)) ) { @@ -1675,7 +1675,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(295); + setState(297); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -1684,9 +1684,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(296); + setState(298); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(297); + setState(299); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1697,14 +1697,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(298); + setState(300); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(303); + setState(305); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); } @@ -1862,7 +1862,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(312); + setState(314); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) { case 1: @@ -1871,7 +1871,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(305); + setState(307); constant(); } break; @@ -1880,7 +1880,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(306); + setState(308); qualifiedName(); } break; @@ -1889,7 +1889,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(307); + setState(309); functionExpression(); } break; @@ -1898,17 +1898,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(308); + setState(310); match(LP); - setState(309); + setState(311); booleanExpression(0); - setState(310); + setState(312); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(319); + setState(321); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1919,16 +1919,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(314); + setState(316); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(315); + setState(317); match(CAST_OP); - setState(316); + setState(318); dataType(); } } } - setState(321); + setState(323); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); } @@ -1994,16 +1994,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(322); + setState(324); functionName(); - setState(323); + setState(325); match(LP); - setState(337); + setState(339); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(324); + setState(326); match(ASTERISK); } break; @@ -2026,34 +2026,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(325); + setState(327); booleanExpression(0); - setState(330); + setState(332); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,21,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(326); + setState(328); match(COMMA); - setState(327); + setState(329); booleanExpression(0); } } } - setState(332); + setState(334); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,21,_ctx); } - setState(335); + setState(337); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(333); + setState(335); match(COMMA); - setState(334); + setState(336); mapExpression(); } } @@ -2066,7 +2066,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(339); + setState(341); match(RP); } } @@ -2112,7 +2112,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(341); + setState(343); identifierOrParameter(); } } @@ -2168,27 +2168,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(343); + setState(345); match(LEFT_BRACES); - setState(344); + setState(346); entryExpression(); - setState(349); + setState(351); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(345); + setState(347); match(COMMA); - setState(346); + setState(348); entryExpression(); } } - setState(351); + setState(353); _errHandler.sync(this); _la = _input.LA(1); } - setState(352); + setState(354); match(RIGHT_BRACES); } } @@ -2240,11 +2240,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(354); + setState(356); ((EntryExpressionContext)_localctx).key = string(); - setState(355); + setState(357); match(COLON); - setState(356); + setState(358); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -2302,7 +2302,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(358); + setState(360); identifier(); } } @@ -2349,9 +2349,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(360); + setState(362); match(ROW); - setState(361); + setState(363); fields(); } } @@ -2405,23 +2405,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(363); + setState(365); field(); - setState(368); + setState(370); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(364); + setState(366); match(COMMA); - setState(365); + setState(367); field(); } } } - setState(370); + setState(372); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } @@ -2473,19 +2473,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(374); + setState(376); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(371); + setState(373); qualifiedName(); - setState(372); + setState(374); match(ASSIGN); } break; } - setState(376); + setState(378); booleanExpression(0); } } @@ -2539,23 +2539,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(378); + setState(380); rerankField(); - setState(383); + setState(385); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,27,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(379); + setState(381); match(COMMA); - setState(380); + setState(382); rerankField(); } } } - setState(385); + setState(387); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } @@ -2607,16 +2607,16 @@ public final RerankFieldContext rerankField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(386); + setState(388); qualifiedName(); - setState(389); + setState(391); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: { - setState(387); + setState(389); match(ASSIGN); - setState(388); + setState(390); booleanExpression(0); } break; @@ -2677,34 +2677,34 @@ public final FromCommandContext fromCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(391); + setState(393); match(FROM); - setState(392); + setState(394); indexPattern(); - setState(397); + setState(399); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(393); + setState(395); match(COMMA); - setState(394); + setState(396); indexPattern(); } } } - setState(399); + setState(401); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(401); + setState(403); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(400); + setState(402); metadata(); } break; @@ -2724,17 +2724,20 @@ public final FromCommandContext fromCommand() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class IndexPatternContext extends ParserRuleContext { - public IndexStringContext indexString() { - return getRuleContext(IndexStringContext.class,0); - } public ClusterStringContext clusterString() { return getRuleContext(ClusterStringContext.class,0); } public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } + public UnquotedIndexStringContext unquotedIndexString() { + return getRuleContext(UnquotedIndexStringContext.class,0); + } public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } public SelectorStringContext selectorString() { return getRuleContext(SelectorStringContext.class,0); } + public IndexStringContext indexString() { + return getRuleContext(IndexStringContext.class,0); + } @SuppressWarnings("this-escape") public IndexPatternContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -2761,43 +2764,34 @@ public final IndexPatternContext indexPattern() throws RecognitionException { try { setState(414); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { + setState(405); + clusterString(); setState(406); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { - case 1: - { - setState(403); - clusterString(); - setState(404); - match(COLON); - } - break; - } - setState(408); - indexString(); + match(COLON); + setState(407); + unquotedIndexString(); } break; case 2: enterOuterAlt(_localctx, 2); { setState(409); - indexString(); - setState(412); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { - case 1: - { - setState(410); - match(CAST_OP); - setState(411); - selectorString(); - } - break; + unquotedIndexString(); + setState(410); + match(CAST_OP); + setState(411); + selectorString(); } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(413); + indexString(); } break; } @@ -2816,7 +2810,6 @@ public final IndexPatternContext indexPattern() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class ClusterStringContext extends ParserRuleContext { public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } - public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } @SuppressWarnings("this-escape") public ClusterStringContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -2840,20 +2833,11 @@ public T accept(ParseTreeVisitor visitor) { public final ClusterStringContext clusterString() throws RecognitionException { ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState()); enterRule(_localctx, 46, RULE_clusterString); - int _la; try { enterOuterAlt(_localctx, 1); { setState(416); - _la = _input.LA(1); - if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } + match(UNQUOTED_SOURCE); } } catch (RecognitionException re) { @@ -2870,7 +2854,6 @@ public final ClusterStringContext clusterString() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class SelectorStringContext extends ParserRuleContext { public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } - public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } @SuppressWarnings("this-escape") public SelectorStringContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -2894,20 +2877,55 @@ public T accept(ParseTreeVisitor visitor) { public final SelectorStringContext selectorString() throws RecognitionException { SelectorStringContext _localctx = new SelectorStringContext(_ctx, getState()); enterRule(_localctx, 48, RULE_selectorString); - int _la; try { enterOuterAlt(_localctx, 1); { setState(418); - _la = _input.LA(1); - if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); + match(UNQUOTED_SOURCE); } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class UnquotedIndexStringContext extends ParserRuleContext { + public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } + @SuppressWarnings("this-escape") + public UnquotedIndexStringContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_unquotedIndexString; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterUnquotedIndexString(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitUnquotedIndexString(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitUnquotedIndexString(this); + else return visitor.visitChildren(this); + } + } + + public final UnquotedIndexStringContext unquotedIndexString() throws RecognitionException { + UnquotedIndexStringContext _localctx = new UnquotedIndexStringContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_unquotedIndexString); + try { + enterOuterAlt(_localctx, 1); + { + setState(420); + match(UNQUOTED_SOURCE); } } catch (RecognitionException re) { @@ -2947,12 +2965,12 @@ public T accept(ParseTreeVisitor visitor) { public final IndexStringContext indexString() throws RecognitionException { IndexStringContext _localctx = new IndexStringContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_indexString); + enterRule(_localctx, 52, RULE_indexString); int _la; try { enterOuterAlt(_localctx, 1); { - setState(420); + setState(422); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -3005,22 +3023,22 @@ public T accept(ParseTreeVisitor visitor) { public final MetadataContext metadata() throws RecognitionException { MetadataContext _localctx = new MetadataContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_metadata); + enterRule(_localctx, 54, RULE_metadata); try { - setState(424); + setState(426); _errHandler.sync(this); switch (_input.LA(1)) { case METADATA: enterOuterAlt(_localctx, 1); { - setState(422); + setState(424); metadataOption(); } break; case OPENING_BRACKET: enterOuterAlt(_localctx, 2); { - setState(423); + setState(425); deprecated_metadata(); } break; @@ -3072,32 +3090,32 @@ public T accept(ParseTreeVisitor visitor) { public final MetadataOptionContext metadataOption() throws RecognitionException { MetadataOptionContext _localctx = new MetadataOptionContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_metadataOption); + enterRule(_localctx, 56, RULE_metadataOption); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(426); + setState(428); match(METADATA); - setState(427); + setState(429); match(UNQUOTED_SOURCE); - setState(432); + setState(434); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(428); + setState(430); match(COMMA); - setState(429); + setState(431); match(UNQUOTED_SOURCE); } } } - setState(434); + setState(436); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); } } } @@ -3140,15 +3158,15 @@ public T accept(ParseTreeVisitor visitor) { public final Deprecated_metadataContext deprecated_metadata() throws RecognitionException { Deprecated_metadataContext _localctx = new Deprecated_metadataContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_deprecated_metadata); + enterRule(_localctx, 58, RULE_deprecated_metadata); try { enterOuterAlt(_localctx, 1); { - setState(435); + setState(437); match(OPENING_BRACKET); - setState(436); + setState(438); metadataOption(); - setState(437); + setState(439); match(CLOSING_BRACKET); } } @@ -3207,51 +3225,51 @@ public T accept(ParseTreeVisitor visitor) { public final MetricsCommandContext metricsCommand() throws RecognitionException { MetricsCommandContext _localctx = new MetricsCommandContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_metricsCommand); + enterRule(_localctx, 60, RULE_metricsCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(439); + setState(441); match(DEV_METRICS); - setState(440); + setState(442); indexPattern(); - setState(445); + setState(447); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(441); + setState(443); match(COMMA); - setState(442); + setState(444); indexPattern(); } } } - setState(447); + setState(449); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } - setState(449); + setState(451); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(448); + setState(450); ((MetricsCommandContext)_localctx).aggregates = aggFields(); } break; } - setState(453); + setState(455); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: { - setState(451); + setState(453); match(BY); - setState(452); + setState(454); ((MetricsCommandContext)_localctx).grouping = fields(); } break; @@ -3297,13 +3315,13 @@ public T accept(ParseTreeVisitor visitor) { public final EvalCommandContext evalCommand() throws RecognitionException { EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_evalCommand); + enterRule(_localctx, 62, RULE_evalCommand); try { enterOuterAlt(_localctx, 1); { - setState(455); + setState(457); match(EVAL); - setState(456); + setState(458); fields(); } } @@ -3352,30 +3370,30 @@ public T accept(ParseTreeVisitor visitor) { public final StatsCommandContext statsCommand() throws RecognitionException { StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_statsCommand); + enterRule(_localctx, 64, RULE_statsCommand); try { enterOuterAlt(_localctx, 1); { - setState(458); - match(STATS); setState(460); + match(STATS); + setState(462); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(459); + setState(461); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(464); + setState(466); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(462); + setState(464); match(BY); - setState(463); + setState(465); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -3427,30 +3445,30 @@ public T accept(ParseTreeVisitor visitor) { public final AggFieldsContext aggFields() throws RecognitionException { AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_aggFields); + enterRule(_localctx, 66, RULE_aggFields); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(466); + setState(468); aggField(); - setState(471); + setState(473); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(467); + setState(469); match(COMMA); - setState(468); + setState(470); aggField(); } } } - setState(473); + setState(475); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,41,_ctx); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); } } } @@ -3496,20 +3514,20 @@ public T accept(ParseTreeVisitor visitor) { public final AggFieldContext aggField() throws RecognitionException { AggFieldContext _localctx = new AggFieldContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_aggField); + enterRule(_localctx, 68, RULE_aggField); try { enterOuterAlt(_localctx, 1); { - setState(474); + setState(476); field(); - setState(477); + setState(479); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(475); + setState(477); match(WHERE); - setState(476); + setState(478); booleanExpression(0); } break; @@ -3561,30 +3579,30 @@ public T accept(ParseTreeVisitor visitor) { public final QualifiedNameContext qualifiedName() throws RecognitionException { QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_qualifiedName); + enterRule(_localctx, 70, RULE_qualifiedName); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(479); + setState(481); identifierOrParameter(); - setState(484); + setState(486); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(480); + setState(482); match(DOT); - setState(481); + setState(483); identifierOrParameter(); } } } - setState(486); + setState(488); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } } } @@ -3633,30 +3651,30 @@ public T accept(ParseTreeVisitor visitor) { public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException { QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_qualifiedNamePattern); + enterRule(_localctx, 72, RULE_qualifiedNamePattern); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(487); + setState(489); identifierPattern(); - setState(492); + setState(494); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,42,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(488); + setState(490); match(DOT); - setState(489); + setState(491); identifierPattern(); } } } - setState(494); + setState(496); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,42,_ctx); } } } @@ -3705,30 +3723,30 @@ public T accept(ParseTreeVisitor visitor) { public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException { QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_qualifiedNamePatterns); + enterRule(_localctx, 74, RULE_qualifiedNamePatterns); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(495); + setState(497); qualifiedNamePattern(); - setState(500); + setState(502); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,43,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(496); + setState(498); match(COMMA); - setState(497); + setState(499); qualifiedNamePattern(); } } } - setState(502); + setState(504); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } } } @@ -3769,12 +3787,12 @@ public T accept(ParseTreeVisitor visitor) { public final IdentifierContext identifier() throws RecognitionException { IdentifierContext _localctx = new IdentifierContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_identifier); + enterRule(_localctx, 76, RULE_identifier); int _la; try { enterOuterAlt(_localctx, 1); { - setState(503); + setState(505); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -3828,15 +3846,15 @@ public T accept(ParseTreeVisitor visitor) { public final IdentifierPatternContext identifierPattern() throws RecognitionException { IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_identifierPattern); + enterRule(_localctx, 78, RULE_identifierPattern); try { - setState(508); + setState(510); _errHandler.sync(this); switch (_input.LA(1)) { case ID_PATTERN: enterOuterAlt(_localctx, 1); { - setState(505); + setState(507); match(ID_PATTERN); } break; @@ -3844,7 +3862,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(506); + setState(508); parameter(); } break; @@ -3852,7 +3870,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(507); + setState(509); doubleParameter(); } break; @@ -4124,17 +4142,17 @@ public T accept(ParseTreeVisitor visitor) { public final ConstantContext constant() throws RecognitionException { ConstantContext _localctx = new ConstantContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_constant); + enterRule(_localctx, 80, RULE_constant); int _la; try { - setState(552); + setState(554); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(510); + setState(512); match(NULL); } break; @@ -4142,9 +4160,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(511); + setState(513); integerValue(); - setState(512); + setState(514); match(UNQUOTED_IDENTIFIER); } break; @@ -4152,7 +4170,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(514); + setState(516); decimalValue(); } break; @@ -4160,7 +4178,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(515); + setState(517); integerValue(); } break; @@ -4168,7 +4186,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(516); + setState(518); booleanValue(); } break; @@ -4176,7 +4194,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(517); + setState(519); parameter(); } break; @@ -4184,7 +4202,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(518); + setState(520); string(); } break; @@ -4192,27 +4210,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(519); + setState(521); match(OPENING_BRACKET); - setState(520); + setState(522); numericValue(); - setState(525); + setState(527); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(521); + setState(523); match(COMMA); - setState(522); + setState(524); numericValue(); } } - setState(527); + setState(529); _errHandler.sync(this); _la = _input.LA(1); } - setState(528); + setState(530); match(CLOSING_BRACKET); } break; @@ -4220,27 +4238,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(530); + setState(532); match(OPENING_BRACKET); - setState(531); + setState(533); booleanValue(); - setState(536); + setState(538); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(532); + setState(534); match(COMMA); - setState(533); + setState(535); booleanValue(); } } - setState(538); + setState(540); _errHandler.sync(this); _la = _input.LA(1); } - setState(539); + setState(541); match(CLOSING_BRACKET); } break; @@ -4248,27 +4266,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(541); + setState(543); match(OPENING_BRACKET); - setState(542); + setState(544); string(); - setState(547); + setState(549); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(543); + setState(545); match(COMMA); - setState(544); + setState(546); string(); } } - setState(549); + setState(551); _errHandler.sync(this); _la = _input.LA(1); } - setState(550); + setState(552); match(CLOSING_BRACKET); } break; @@ -4340,16 +4358,16 @@ public T accept(ParseTreeVisitor visitor) { public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_parameter); + enterRule(_localctx, 82, RULE_parameter); try { - setState(556); + setState(558); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(554); + setState(556); match(PARAM); } break; @@ -4357,7 +4375,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(555); + setState(557); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -4431,16 +4449,16 @@ public T accept(ParseTreeVisitor visitor) { public final DoubleParameterContext doubleParameter() throws RecognitionException { DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_doubleParameter); + enterRule(_localctx, 84, RULE_doubleParameter); try { - setState(560); + setState(562); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(558); + setState(560); match(DOUBLE_PARAMS); } break; @@ -4448,7 +4466,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(559); + setState(561); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -4500,16 +4518,16 @@ public T accept(ParseTreeVisitor visitor) { public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException { IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_identifierOrParameter); + enterRule(_localctx, 86, RULE_identifierOrParameter); try { - setState(565); + setState(567); _errHandler.sync(this); switch (_input.LA(1)) { case UNQUOTED_IDENTIFIER: case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(562); + setState(564); identifier(); } break; @@ -4517,7 +4535,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(563); + setState(565); parameter(); } break; @@ -4525,7 +4543,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(564); + setState(566); doubleParameter(); } break; @@ -4572,13 +4590,13 @@ public T accept(ParseTreeVisitor visitor) { public final LimitCommandContext limitCommand() throws RecognitionException { LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_limitCommand); + enterRule(_localctx, 88, RULE_limitCommand); try { enterOuterAlt(_localctx, 1); { - setState(567); + setState(569); match(LIMIT); - setState(568); + setState(570); constant(); } } @@ -4628,32 +4646,32 @@ public T accept(ParseTreeVisitor visitor) { public final SortCommandContext sortCommand() throws RecognitionException { SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_sortCommand); + enterRule(_localctx, 90, RULE_sortCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(570); + setState(572); match(SORT); - setState(571); + setState(573); orderExpression(); - setState(576); + setState(578); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(572); + setState(574); match(COMMA); - setState(573); + setState(575); orderExpression(); } } } - setState(578); + setState(580); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } } } @@ -4702,19 +4720,19 @@ public T accept(ParseTreeVisitor visitor) { public final OrderExpressionContext orderExpression() throws RecognitionException { OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_orderExpression); + enterRule(_localctx, 92, RULE_orderExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(579); - booleanExpression(0); setState(581); + booleanExpression(0); + setState(583); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { - setState(580); + setState(582); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -4728,14 +4746,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(585); + setState(587); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { - setState(583); + setState(585); match(NULLS); - setState(584); + setState(586); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -4790,13 +4808,13 @@ public T accept(ParseTreeVisitor visitor) { public final KeepCommandContext keepCommand() throws RecognitionException { KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_keepCommand); + enterRule(_localctx, 94, RULE_keepCommand); try { enterOuterAlt(_localctx, 1); { - setState(587); + setState(589); match(KEEP); - setState(588); + setState(590); qualifiedNamePatterns(); } } @@ -4839,13 +4857,13 @@ public T accept(ParseTreeVisitor visitor) { public final DropCommandContext dropCommand() throws RecognitionException { DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_dropCommand); + enterRule(_localctx, 96, RULE_dropCommand); try { enterOuterAlt(_localctx, 1); { - setState(590); + setState(592); match(DROP); - setState(591); + setState(593); qualifiedNamePatterns(); } } @@ -4895,32 +4913,32 @@ public T accept(ParseTreeVisitor visitor) { public final RenameCommandContext renameCommand() throws RecognitionException { RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_renameCommand); + enterRule(_localctx, 98, RULE_renameCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(593); + setState(595); match(RENAME); - setState(594); + setState(596); renameClause(); - setState(599); + setState(601); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,57,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(595); + setState(597); match(COMMA); - setState(596); + setState(598); renameClause(); } } } - setState(601); + setState(603); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,57,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } } } @@ -4969,30 +4987,30 @@ public T accept(ParseTreeVisitor visitor) { public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_renameClause); + enterRule(_localctx, 100, RULE_renameClause); try { - setState(610); + setState(612); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(602); + setState(604); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(603); + setState(605); match(AS); - setState(604); + setState(606); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(606); + setState(608); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(607); + setState(609); match(ASSIGN); - setState(608); + setState(610); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); } break; @@ -5043,22 +5061,22 @@ public T accept(ParseTreeVisitor visitor) { public final DissectCommandContext dissectCommand() throws RecognitionException { DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_dissectCommand); + enterRule(_localctx, 102, RULE_dissectCommand); try { enterOuterAlt(_localctx, 1); { - setState(612); + setState(614); match(DISSECT); - setState(613); + setState(615); primaryExpression(0); - setState(614); - string(); setState(616); + string(); + setState(618); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { - setState(615); + setState(617); commandOptions(); } break; @@ -5107,15 +5125,15 @@ public T accept(ParseTreeVisitor visitor) { public final GrokCommandContext grokCommand() throws RecognitionException { GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_grokCommand); + enterRule(_localctx, 104, RULE_grokCommand); try { enterOuterAlt(_localctx, 1); { - setState(618); + setState(620); match(GROK); - setState(619); + setState(621); primaryExpression(0); - setState(620); + setState(622); string(); } } @@ -5158,13 +5176,13 @@ public T accept(ParseTreeVisitor visitor) { public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_mvExpandCommand); + enterRule(_localctx, 106, RULE_mvExpandCommand); try { enterOuterAlt(_localctx, 1); { - setState(622); + setState(624); match(MV_EXPAND); - setState(623); + setState(625); qualifiedName(); } } @@ -5213,30 +5231,30 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionsContext commandOptions() throws RecognitionException { CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_commandOptions); + enterRule(_localctx, 108, RULE_commandOptions); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(625); + setState(627); commandOption(); - setState(630); + setState(632); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,58,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(626); + setState(628); match(COMMA); - setState(627); + setState(629); commandOption(); } } } - setState(632); + setState(634); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,58,_ctx); } } } @@ -5282,15 +5300,15 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionContext commandOption() throws RecognitionException { CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_commandOption); + enterRule(_localctx, 110, RULE_commandOption); try { enterOuterAlt(_localctx, 1); { - setState(633); + setState(635); identifier(); - setState(634); + setState(636); match(ASSIGN); - setState(635); + setState(637); constant(); } } @@ -5331,12 +5349,12 @@ public T accept(ParseTreeVisitor visitor) { public final BooleanValueContext booleanValue() throws RecognitionException { BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_booleanValue); + enterRule(_localctx, 112, RULE_booleanValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(637); + setState(639); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -5389,22 +5407,22 @@ public T accept(ParseTreeVisitor visitor) { public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_numericValue); + enterRule(_localctx, 114, RULE_numericValue); try { - setState(641); + setState(643); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(639); + setState(641); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(640); + setState(642); integerValue(); } break; @@ -5448,17 +5466,17 @@ public T accept(ParseTreeVisitor visitor) { public final DecimalValueContext decimalValue() throws RecognitionException { DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_decimalValue); + enterRule(_localctx, 116, RULE_decimalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(644); + setState(646); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(643); + setState(645); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5471,7 +5489,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(646); + setState(648); match(DECIMAL_LITERAL); } } @@ -5513,17 +5531,17 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerValueContext integerValue() throws RecognitionException { IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_integerValue); + enterRule(_localctx, 118, RULE_integerValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(649); + setState(651); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(648); + setState(650); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5536,7 +5554,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(651); + setState(653); match(INTEGER_LITERAL); } } @@ -5576,11 +5594,11 @@ public T accept(ParseTreeVisitor visitor) { public final StringContext string() throws RecognitionException { StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_string); + enterRule(_localctx, 120, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(653); + setState(655); match(QUOTED_STRING); } } @@ -5625,12 +5643,12 @@ public T accept(ParseTreeVisitor visitor) { public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_comparisonOperator); + enterRule(_localctx, 122, RULE_comparisonOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(655); + setState(657); _la = _input.LA(1); if ( !(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -5681,13 +5699,13 @@ public T accept(ParseTreeVisitor visitor) { public final ExplainCommandContext explainCommand() throws RecognitionException { ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_explainCommand); + enterRule(_localctx, 124, RULE_explainCommand); try { enterOuterAlt(_localctx, 1); { - setState(657); + setState(659); match(EXPLAIN); - setState(658); + setState(660); subqueryExpression(); } } @@ -5731,15 +5749,15 @@ public T accept(ParseTreeVisitor visitor) { public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_subqueryExpression); + enterRule(_localctx, 126, RULE_subqueryExpression); try { enterOuterAlt(_localctx, 1); { - setState(660); + setState(662); match(OPENING_BRACKET); - setState(661); + setState(663); query(0); - setState(662); + setState(664); match(CLOSING_BRACKET); } } @@ -5791,14 +5809,14 @@ public T accept(ParseTreeVisitor visitor) { public final ShowCommandContext showCommand() throws RecognitionException { ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_showCommand); + enterRule(_localctx, 128, RULE_showCommand); try { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(664); + setState(666); match(SHOW); - setState(665); + setState(667); match(INFO); } } @@ -5856,53 +5874,53 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichCommandContext enrichCommand() throws RecognitionException { EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_enrichCommand); + enterRule(_localctx, 130, RULE_enrichCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(667); + setState(669); match(ENRICH); - setState(668); + setState(670); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(671); + setState(673); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: { - setState(669); + setState(671); match(ON); - setState(670); + setState(672); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(682); + setState(684); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(673); + setState(675); match(WITH); - setState(674); + setState(676); enrichWithClause(); - setState(679); + setState(681); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + _alt = getInterpreter().adaptivePredict(_input,63,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(675); + setState(677); match(COMMA); - setState(676); + setState(678); enrichWithClause(); } } } - setState(681); + setState(683); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } } break; @@ -5953,23 +5971,23 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_enrichWithClause); + enterRule(_localctx, 132, RULE_enrichWithClause); try { enterOuterAlt(_localctx, 1); { - setState(687); + setState(689); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(684); + setState(686); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(685); + setState(687); match(ASSIGN); } break; } - setState(689); + setState(691); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -6022,38 +6040,38 @@ public T accept(ParseTreeVisitor visitor) { public final ChangePointCommandContext changePointCommand() throws RecognitionException { ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_changePointCommand); + enterRule(_localctx, 134, RULE_changePointCommand); try { enterOuterAlt(_localctx, 1); { - setState(691); + setState(693); match(CHANGE_POINT); - setState(692); + setState(694); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(695); + setState(697); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: { - setState(693); + setState(695); match(ON); - setState(694); + setState(696); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(702); + setState(704); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(697); + setState(699); match(AS); - setState(698); + setState(700); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(699); + setState(701); match(COMMA); - setState(700); + setState(702); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -6105,17 +6123,17 @@ public T accept(ParseTreeVisitor visitor) { public final LookupCommandContext lookupCommand() throws RecognitionException { LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_lookupCommand); + enterRule(_localctx, 136, RULE_lookupCommand); try { enterOuterAlt(_localctx, 1); { - setState(704); + setState(706); match(DEV_LOOKUP); - setState(705); + setState(707); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(706); + setState(708); match(ON); - setState(707); + setState(709); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -6164,22 +6182,22 @@ public T accept(ParseTreeVisitor visitor) { public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_inlinestatsCommand); + enterRule(_localctx, 138, RULE_inlinestatsCommand); try { enterOuterAlt(_localctx, 1); { - setState(709); + setState(711); match(DEV_INLINESTATS); - setState(710); + setState(712); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(713); + setState(715); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { - setState(711); + setState(713); match(BY); - setState(712); + setState(714); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -6232,12 +6250,12 @@ public T accept(ParseTreeVisitor visitor) { public final JoinCommandContext joinCommand() throws RecognitionException { JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_joinCommand); + enterRule(_localctx, 140, RULE_joinCommand); int _la; try { enterOuterAlt(_localctx, 1); { - setState(715); + setState(717); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 100925440L) != 0)) ) { @@ -6248,11 +6266,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(716); + setState(718); match(JOIN); - setState(717); + setState(719); joinTarget(); - setState(718); + setState(720); joinCondition(); } } @@ -6295,11 +6313,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinTargetContext joinTarget() throws RecognitionException { JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_joinTarget); + enterRule(_localctx, 142, RULE_joinTarget); try { enterOuterAlt(_localctx, 1); { - setState(720); + setState(722); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6349,32 +6367,32 @@ public T accept(ParseTreeVisitor visitor) { public final JoinConditionContext joinCondition() throws RecognitionException { JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_joinCondition); + enterRule(_localctx, 144, RULE_joinCondition); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(722); + setState(724); match(ON); - setState(723); + setState(725); joinPredicate(); - setState(728); + setState(730); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,71,_ctx); + _alt = getInterpreter().adaptivePredict(_input,69,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(724); + setState(726); match(COMMA); - setState(725); + setState(727); joinPredicate(); } } } - setState(730); + setState(732); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,71,_ctx); + _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } } } @@ -6416,11 +6434,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinPredicateContext joinPredicate() throws RecognitionException { JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_joinPredicate); + enterRule(_localctx, 146, RULE_joinPredicate); try { enterOuterAlt(_localctx, 1); { - setState(731); + setState(733); valueExpression(); } } @@ -6473,26 +6491,26 @@ public T accept(ParseTreeVisitor visitor) { public final RerankCommandContext rerankCommand() throws RecognitionException { RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_rerankCommand); + enterRule(_localctx, 148, RULE_rerankCommand); try { enterOuterAlt(_localctx, 1); { - setState(733); + setState(735); match(DEV_RERANK); - setState(734); + setState(736); ((RerankCommandContext)_localctx).queryText = constant(); - setState(735); + setState(737); match(ON); - setState(736); + setState(738); rerankFields(); - setState(739); + setState(741); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: { - setState(737); + setState(739); match(WITH); - setState(738); + setState(740); ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter(); } break; @@ -6549,29 +6567,29 @@ public T accept(ParseTreeVisitor visitor) { public final CompletionCommandContext completionCommand() throws RecognitionException { CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_completionCommand); + enterRule(_localctx, 150, RULE_completionCommand); try { enterOuterAlt(_localctx, 1); { - setState(741); + setState(743); match(COMPLETION); - setState(745); + setState(747); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { case 1: { - setState(742); + setState(744); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(743); + setState(745); match(ASSIGN); } break; } - setState(747); + setState(749); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(748); + setState(750); match(WITH); - setState(749); + setState(751); ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter(); } } @@ -6655,7 +6673,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u008a\u02f0\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u008a\u02f2\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ "\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+ "\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+ "\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+ @@ -6674,459 +6692,458 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+ "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ - "J\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00a0\b\u0001\n\u0001"+ - "\f\u0001\u00a3\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0003\u0002\u00ab\b\u0002\u0001\u0003\u0001\u0003"+ + "J\u0002K\u0007K\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00a2"+ + "\b\u0001\n\u0001\f\u0001\u00a5\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00ad\b\u0002\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0003\u0003\u00c2\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0003\u0005\u00ce\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0005\u0005\u00d5\b\u0005\n\u0005\f\u0005\u00d8"+ - "\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003"+ - "\u0005\u00df\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e4"+ - "\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0005\u0005\u00ec\b\u0005\n\u0005\f\u0005\u00ef\t\u0005\u0001\u0006"+ - "\u0001\u0006\u0003\u0006\u00f3\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0003\u0006\u00fa\b\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u0101\b\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0005\u0006\u0108\b\u0006"+ - "\n\u0006\f\u0006\u010b\t\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u010f"+ - "\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0114\b\u0007"+ - "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ - "\b\u0003\b\u011e\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0124\b\t"+ - "\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u012c\b\t\n\t"+ - "\f\t\u012f\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+ - "\u0001\n\u0003\n\u0139\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u013e\b\n\n"+ - "\n\f\n\u0141\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ - "\u000b\u0001\u000b\u0005\u000b\u0149\b\u000b\n\u000b\f\u000b\u014c\t\u000b"+ - "\u0001\u000b\u0001\u000b\u0003\u000b\u0150\b\u000b\u0003\u000b\u0152\b"+ - "\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r"+ - "\u0001\r\u0005\r\u015c\b\r\n\r\f\r\u015f\t\r\u0001\r\u0001\r\u0001\u000e"+ - "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010"+ - "\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011"+ - "\u016f\b\u0011\n\u0011\f\u0011\u0172\t\u0011\u0001\u0012\u0001\u0012\u0001"+ - "\u0012\u0003\u0012\u0177\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001"+ - "\u0013\u0001\u0013\u0005\u0013\u017e\b\u0013\n\u0013\f\u0013\u0181\t\u0013"+ - "\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0186\b\u0014\u0001\u0015"+ - "\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u018c\b\u0015\n\u0015"+ - "\f\u0015\u018f\t\u0015\u0001\u0015\u0003\u0015\u0192\b\u0015\u0001\u0016"+ - "\u0001\u0016\u0001\u0016\u0003\u0016\u0197\b\u0016\u0001\u0016\u0001\u0016"+ - "\u0001\u0016\u0001\u0016\u0003\u0016\u019d\b\u0016\u0003\u0016\u019f\b"+ - "\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001"+ - "\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u01a9\b\u001a\u0001\u001b\u0001"+ - "\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u01af\b\u001b\n\u001b\f\u001b"+ - "\u01b2\t\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d"+ - "\u0001\u001d\u0001\u001d\u0001\u001d\u0005\u001d\u01bc\b\u001d\n\u001d"+ - "\f\u001d\u01bf\t\u001d\u0001\u001d\u0003\u001d\u01c2\b\u001d\u0001\u001d"+ - "\u0001\u001d\u0003\u001d\u01c6\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e"+ - "\u0001\u001f\u0001\u001f\u0003\u001f\u01cd\b\u001f\u0001\u001f\u0001\u001f"+ - "\u0003\u001f\u01d1\b\u001f\u0001 \u0001 \u0001 \u0005 \u01d6\b \n \f "+ - "\u01d9\t \u0001!\u0001!\u0001!\u0003!\u01de\b!\u0001\"\u0001\"\u0001\""+ - "\u0005\"\u01e3\b\"\n\"\f\"\u01e6\t\"\u0001#\u0001#\u0001#\u0005#\u01eb"+ - "\b#\n#\f#\u01ee\t#\u0001$\u0001$\u0001$\u0005$\u01f3\b$\n$\f$\u01f6\t"+ - "$\u0001%\u0001%\u0001&\u0001&\u0001&\u0003&\u01fd\b&\u0001\'\u0001\'\u0001"+ - "\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+ - "\'\u0001\'\u0005\'\u020c\b\'\n\'\f\'\u020f\t\'\u0001\'\u0001\'\u0001\'"+ - "\u0001\'\u0001\'\u0001\'\u0005\'\u0217\b\'\n\'\f\'\u021a\t\'\u0001\'\u0001"+ - "\'\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u0222\b\'\n\'\f\'\u0225\t\'"+ - "\u0001\'\u0001\'\u0003\'\u0229\b\'\u0001(\u0001(\u0003(\u022d\b(\u0001"+ - ")\u0001)\u0003)\u0231\b)\u0001*\u0001*\u0001*\u0003*\u0236\b*\u0001+\u0001"+ - "+\u0001+\u0001,\u0001,\u0001,\u0001,\u0005,\u023f\b,\n,\f,\u0242\t,\u0001"+ - "-\u0001-\u0003-\u0246\b-\u0001-\u0001-\u0003-\u024a\b-\u0001.\u0001.\u0001"+ - ".\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u00050\u0256\b0\n0"+ - "\f0\u0259\t0\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u0003"+ - "1\u0263\b1\u00012\u00012\u00012\u00012\u00032\u0269\b2\u00013\u00013\u0001"+ - "3\u00013\u00014\u00014\u00014\u00015\u00015\u00015\u00055\u0275\b5\n5"+ - "\f5\u0278\t5\u00016\u00016\u00016\u00016\u00017\u00017\u00018\u00018\u0003"+ - "8\u0282\b8\u00019\u00039\u0285\b9\u00019\u00019\u0001:\u0003:\u028a\b"+ - ":\u0001:\u0001:\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+ - ">\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001"+ - "@\u0003@\u02a0\b@\u0001@\u0001@\u0001@\u0001@\u0005@\u02a6\b@\n@\f@\u02a9"+ - "\t@\u0003@\u02ab\b@\u0001A\u0001A\u0001A\u0003A\u02b0\bA\u0001A\u0001"+ - "A\u0001B\u0001B\u0001B\u0001B\u0003B\u02b8\bB\u0001B\u0001B\u0001B\u0001"+ - "B\u0001B\u0003B\u02bf\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001"+ - "D\u0001D\u0001D\u0003D\u02ca\bD\u0001E\u0001E\u0001E\u0001E\u0001E\u0001"+ - "F\u0001F\u0001G\u0001G\u0001G\u0001G\u0005G\u02d7\bG\nG\fG\u02da\tG\u0001"+ - "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02e4\bI\u0001"+ - "J\u0001J\u0001J\u0001J\u0003J\u02ea\bJ\u0001J\u0001J\u0001J\u0001J\u0001"+ - "J\u0000\u0004\u0002\n\u0012\u0014K\u0000\u0002\u0004\u0006\b\n\f\u000e"+ - "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDF"+ - "HJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c"+ - "\u008e\u0090\u0092\u0094\u0000\t\u0001\u0000DE\u0001\u0000FH\u0002\u0000"+ - " YY\u0001\u0000PQ\u0002\u0000$$**\u0002\u0000--00\u0002\u0000,,;;\u0002"+ - "\u0000==?C\u0002\u0000\u0012\u0012\u0019\u001a\u0313\u0000\u0096\u0001"+ - "\u0000\u0000\u0000\u0002\u0099\u0001\u0000\u0000\u0000\u0004\u00aa\u0001"+ - "\u0000\u0000\u0000\u0006\u00c1\u0001\u0000\u0000\u0000\b\u00c3\u0001\u0000"+ - "\u0000\u0000\n\u00e3\u0001\u0000\u0000\u0000\f\u010e\u0001\u0000\u0000"+ - "\u0000\u000e\u0110\u0001\u0000\u0000\u0000\u0010\u011d\u0001\u0000\u0000"+ - "\u0000\u0012\u0123\u0001\u0000\u0000\u0000\u0014\u0138\u0001\u0000\u0000"+ - "\u0000\u0016\u0142\u0001\u0000\u0000\u0000\u0018\u0155\u0001\u0000\u0000"+ - "\u0000\u001a\u0157\u0001\u0000\u0000\u0000\u001c\u0162\u0001\u0000\u0000"+ - "\u0000\u001e\u0166\u0001\u0000\u0000\u0000 \u0168\u0001\u0000\u0000\u0000"+ - "\"\u016b\u0001\u0000\u0000\u0000$\u0176\u0001\u0000\u0000\u0000&\u017a"+ - "\u0001\u0000\u0000\u0000(\u0182\u0001\u0000\u0000\u0000*\u0187\u0001\u0000"+ - "\u0000\u0000,\u019e\u0001\u0000\u0000\u0000.\u01a0\u0001\u0000\u0000\u0000"+ - "0\u01a2\u0001\u0000\u0000\u00002\u01a4\u0001\u0000\u0000\u00004\u01a8"+ - "\u0001\u0000\u0000\u00006\u01aa\u0001\u0000\u0000\u00008\u01b3\u0001\u0000"+ - "\u0000\u0000:\u01b7\u0001\u0000\u0000\u0000<\u01c7\u0001\u0000\u0000\u0000"+ - ">\u01ca\u0001\u0000\u0000\u0000@\u01d2\u0001\u0000\u0000\u0000B\u01da"+ - "\u0001\u0000\u0000\u0000D\u01df\u0001\u0000\u0000\u0000F\u01e7\u0001\u0000"+ - "\u0000\u0000H\u01ef\u0001\u0000\u0000\u0000J\u01f7\u0001\u0000\u0000\u0000"+ - "L\u01fc\u0001\u0000\u0000\u0000N\u0228\u0001\u0000\u0000\u0000P\u022c"+ - "\u0001\u0000\u0000\u0000R\u0230\u0001\u0000\u0000\u0000T\u0235\u0001\u0000"+ - "\u0000\u0000V\u0237\u0001\u0000\u0000\u0000X\u023a\u0001\u0000\u0000\u0000"+ - "Z\u0243\u0001\u0000\u0000\u0000\\\u024b\u0001\u0000\u0000\u0000^\u024e"+ - "\u0001\u0000\u0000\u0000`\u0251\u0001\u0000\u0000\u0000b\u0262\u0001\u0000"+ - "\u0000\u0000d\u0264\u0001\u0000\u0000\u0000f\u026a\u0001\u0000\u0000\u0000"+ - "h\u026e\u0001\u0000\u0000\u0000j\u0271\u0001\u0000\u0000\u0000l\u0279"+ - "\u0001\u0000\u0000\u0000n\u027d\u0001\u0000\u0000\u0000p\u0281\u0001\u0000"+ - "\u0000\u0000r\u0284\u0001\u0000\u0000\u0000t\u0289\u0001\u0000\u0000\u0000"+ - "v\u028d\u0001\u0000\u0000\u0000x\u028f\u0001\u0000\u0000\u0000z\u0291"+ - "\u0001\u0000\u0000\u0000|\u0294\u0001\u0000\u0000\u0000~\u0298\u0001\u0000"+ - "\u0000\u0000\u0080\u029b\u0001\u0000\u0000\u0000\u0082\u02af\u0001\u0000"+ - "\u0000\u0000\u0084\u02b3\u0001\u0000\u0000\u0000\u0086\u02c0\u0001\u0000"+ - "\u0000\u0000\u0088\u02c5\u0001\u0000\u0000\u0000\u008a\u02cb\u0001\u0000"+ - "\u0000\u0000\u008c\u02d0\u0001\u0000\u0000\u0000\u008e\u02d2\u0001\u0000"+ - "\u0000\u0000\u0090\u02db\u0001\u0000\u0000\u0000\u0092\u02dd\u0001\u0000"+ - "\u0000\u0000\u0094\u02e5\u0001\u0000\u0000\u0000\u0096\u0097\u0003\u0002"+ - "\u0001\u0000\u0097\u0098\u0005\u0000\u0000\u0001\u0098\u0001\u0001\u0000"+ - "\u0000\u0000\u0099\u009a\u0006\u0001\uffff\uffff\u0000\u009a\u009b\u0003"+ - "\u0004\u0002\u0000\u009b\u00a1\u0001\u0000\u0000\u0000\u009c\u009d\n\u0001"+ - "\u0000\u0000\u009d\u009e\u0005\u001f\u0000\u0000\u009e\u00a0\u0003\u0006"+ - "\u0003\u0000\u009f\u009c\u0001\u0000\u0000\u0000\u00a0\u00a3\u0001\u0000"+ - "\u0000\u0000\u00a1\u009f\u0001\u0000\u0000\u0000\u00a1\u00a2\u0001\u0000"+ - "\u0000\u0000\u00a2\u0003\u0001\u0000\u0000\u0000\u00a3\u00a1\u0001\u0000"+ - "\u0000\u0000\u00a4\u00ab\u0003z=\u0000\u00a5\u00ab\u0003*\u0015\u0000"+ - "\u00a6\u00ab\u0003 \u0010\u0000\u00a7\u00ab\u0003~?\u0000\u00a8\u00a9"+ - "\u0004\u0002\u0001\u0000\u00a9\u00ab\u0003:\u001d\u0000\u00aa\u00a4\u0001"+ - "\u0000\u0000\u0000\u00aa\u00a5\u0001\u0000\u0000\u0000\u00aa\u00a6\u0001"+ - "\u0000\u0000\u0000\u00aa\u00a7\u0001\u0000\u0000\u0000\u00aa\u00a8\u0001"+ - "\u0000\u0000\u0000\u00ab\u0005\u0001\u0000\u0000\u0000\u00ac\u00c2\u0003"+ - "<\u001e\u0000\u00ad\u00c2\u0003\b\u0004\u0000\u00ae\u00c2\u0003\\.\u0000"+ - "\u00af\u00c2\u0003V+\u0000\u00b0\u00c2\u0003>\u001f\u0000\u00b1\u00c2"+ - "\u0003X,\u0000\u00b2\u00c2\u0003^/\u0000\u00b3\u00c2\u0003`0\u0000\u00b4"+ - "\u00c2\u0003d2\u0000\u00b5\u00c2\u0003f3\u0000\u00b6\u00c2\u0003\u0080"+ - "@\u0000\u00b7\u00c2\u0003h4\u0000\u00b8\u00c2\u0003\u008aE\u0000\u00b9"+ - "\u00c2\u0003\u0084B\u0000\u00ba\u00c2\u0003\u0094J\u0000\u00bb\u00bc\u0004"+ - "\u0003\u0002\u0000\u00bc\u00c2\u0003\u0088D\u0000\u00bd\u00be\u0004\u0003"+ - "\u0003\u0000\u00be\u00c2\u0003\u0086C\u0000\u00bf\u00c0\u0004\u0003\u0004"+ - "\u0000\u00c0\u00c2\u0003\u0092I\u0000\u00c1\u00ac\u0001\u0000\u0000\u0000"+ - "\u00c1\u00ad\u0001\u0000\u0000\u0000\u00c1\u00ae\u0001\u0000\u0000\u0000"+ - "\u00c1\u00af\u0001\u0000\u0000\u0000\u00c1\u00b0\u0001\u0000\u0000\u0000"+ - "\u00c1\u00b1\u0001\u0000\u0000\u0000\u00c1\u00b2\u0001\u0000\u0000\u0000"+ - "\u00c1\u00b3\u0001\u0000\u0000\u0000\u00c1\u00b4\u0001\u0000\u0000\u0000"+ - "\u00c1\u00b5\u0001\u0000\u0000\u0000\u00c1\u00b6\u0001\u0000\u0000\u0000"+ - "\u00c1\u00b7\u0001\u0000\u0000\u0000\u00c1\u00b8\u0001\u0000\u0000\u0000"+ - "\u00c1\u00b9\u0001\u0000\u0000\u0000\u00c1\u00ba\u0001\u0000\u0000\u0000"+ - "\u00c1\u00bb\u0001\u0000\u0000\u0000\u00c1\u00bd\u0001\u0000\u0000\u0000"+ - "\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c2\u0007\u0001\u0000\u0000\u0000"+ - "\u00c3\u00c4\u0005\u0011\u0000\u0000\u00c4\u00c5\u0003\n\u0005\u0000\u00c5"+ - "\t\u0001\u0000\u0000\u0000\u00c6\u00c7\u0006\u0005\uffff\uffff\u0000\u00c7"+ - "\u00c8\u00053\u0000\u0000\u00c8\u00e4\u0003\n\u0005\b\u00c9\u00e4\u0003"+ - "\u0010\b\u0000\u00ca\u00e4\u0003\f\u0006\u0000\u00cb\u00cd\u0003\u0010"+ - "\b\u0000\u00cc\u00ce\u00053\u0000\u0000\u00cd\u00cc\u0001\u0000\u0000"+ - "\u0000\u00cd\u00ce\u0001\u0000\u0000\u0000\u00ce\u00cf\u0001\u0000\u0000"+ - "\u0000\u00cf\u00d0\u0005.\u0000\u0000\u00d0\u00d1\u00052\u0000\u0000\u00d1"+ - "\u00d6\u0003\u0010\b\u0000\u00d2\u00d3\u0005)\u0000\u0000\u00d3\u00d5"+ - "\u0003\u0010\b\u0000\u00d4\u00d2\u0001\u0000\u0000\u0000\u00d5\u00d8\u0001"+ - "\u0000\u0000\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000\u00d6\u00d7\u0001"+ - "\u0000\u0000\u0000\u00d7\u00d9\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001"+ - "\u0000\u0000\u0000\u00d9\u00da\u0005:\u0000\u0000\u00da\u00e4\u0001\u0000"+ - "\u0000\u0000\u00db\u00dc\u0003\u0010\b\u0000\u00dc\u00de\u0005/\u0000"+ - "\u0000\u00dd\u00df\u00053\u0000\u0000\u00de\u00dd\u0001\u0000\u0000\u0000"+ - "\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0\u0001\u0000\u0000\u0000"+ - "\u00e0\u00e1\u00054\u0000\u0000\u00e1\u00e4\u0001\u0000\u0000\u0000\u00e2"+ - "\u00e4\u0003\u000e\u0007\u0000\u00e3\u00c6\u0001\u0000\u0000\u0000\u00e3"+ - "\u00c9\u0001\u0000\u0000\u0000\u00e3\u00ca\u0001\u0000\u0000\u0000\u00e3"+ - "\u00cb\u0001\u0000\u0000\u0000\u00e3\u00db\u0001\u0000\u0000\u0000\u00e3"+ - "\u00e2\u0001\u0000\u0000\u0000\u00e4\u00ed\u0001\u0000\u0000\u0000\u00e5"+ - "\u00e6\n\u0005\u0000\u0000\u00e6\u00e7\u0005#\u0000\u0000\u00e7\u00ec"+ - "\u0003\n\u0005\u0006\u00e8\u00e9\n\u0004\u0000\u0000\u00e9\u00ea\u0005"+ - "7\u0000\u0000\u00ea\u00ec\u0003\n\u0005\u0005\u00eb\u00e5\u0001\u0000"+ - "\u0000\u0000\u00eb\u00e8\u0001\u0000\u0000\u0000\u00ec\u00ef\u0001\u0000"+ - "\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ed\u00ee\u0001\u0000"+ - "\u0000\u0000\u00ee\u000b\u0001\u0000\u0000\u0000\u00ef\u00ed\u0001\u0000"+ - "\u0000\u0000\u00f0\u00f2\u0003\u0010\b\u0000\u00f1\u00f3\u00053\u0000"+ - "\u0000\u00f2\u00f1\u0001\u0000\u0000\u0000\u00f2\u00f3\u0001\u0000\u0000"+ - "\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4\u00f5\u00051\u0000\u0000"+ - "\u00f5\u00f6\u0003v;\u0000\u00f6\u010f\u0001\u0000\u0000\u0000\u00f7\u00f9"+ - "\u0003\u0010\b\u0000\u00f8\u00fa\u00053\u0000\u0000\u00f9\u00f8\u0001"+ - "\u0000\u0000\u0000\u00f9\u00fa\u0001\u0000\u0000\u0000\u00fa\u00fb\u0001"+ - "\u0000\u0000\u0000\u00fb\u00fc\u00059\u0000\u0000\u00fc\u00fd\u0003v;"+ - "\u0000\u00fd\u010f\u0001\u0000\u0000\u0000\u00fe\u0100\u0003\u0010\b\u0000"+ - "\u00ff\u0101\u00053\u0000\u0000\u0100\u00ff\u0001\u0000\u0000\u0000\u0100"+ - "\u0101\u0001\u0000\u0000\u0000\u0101\u0102\u0001\u0000\u0000\u0000\u0102"+ - "\u0103\u00051\u0000\u0000\u0103\u0104\u00052\u0000\u0000\u0104\u0109\u0003"+ - "v;\u0000\u0105\u0106\u0005)\u0000\u0000\u0106\u0108\u0003v;\u0000\u0107"+ - "\u0105\u0001\u0000\u0000\u0000\u0108\u010b\u0001\u0000\u0000\u0000\u0109"+ - "\u0107\u0001\u0000\u0000\u0000\u0109\u010a\u0001\u0000\u0000\u0000\u010a"+ - "\u010c\u0001\u0000\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c"+ - "\u010d\u0005:\u0000\u0000\u010d\u010f\u0001\u0000\u0000\u0000\u010e\u00f0"+ - "\u0001\u0000\u0000\u0000\u010e\u00f7\u0001\u0000\u0000\u0000\u010e\u00fe"+ - "\u0001\u0000\u0000\u0000\u010f\r\u0001\u0000\u0000\u0000\u0110\u0113\u0003"+ - "D\"\u0000\u0111\u0112\u0005\'\u0000\u0000\u0112\u0114\u0003\u001e\u000f"+ - "\u0000\u0113\u0111\u0001\u0000\u0000\u0000\u0113\u0114\u0001\u0000\u0000"+ - "\u0000\u0114\u0115\u0001\u0000\u0000\u0000\u0115\u0116\u0005(\u0000\u0000"+ - "\u0116\u0117\u0003N\'\u0000\u0117\u000f\u0001\u0000\u0000\u0000\u0118"+ - "\u011e\u0003\u0012\t\u0000\u0119\u011a\u0003\u0012\t\u0000\u011a\u011b"+ - "\u0003x<\u0000\u011b\u011c\u0003\u0012\t\u0000\u011c\u011e\u0001\u0000"+ - "\u0000\u0000\u011d\u0118\u0001\u0000\u0000\u0000\u011d\u0119\u0001\u0000"+ - "\u0000\u0000\u011e\u0011\u0001\u0000\u0000\u0000\u011f\u0120\u0006\t\uffff"+ - "\uffff\u0000\u0120\u0124\u0003\u0014\n\u0000\u0121\u0122\u0007\u0000\u0000"+ - "\u0000\u0122\u0124\u0003\u0012\t\u0003\u0123\u011f\u0001\u0000\u0000\u0000"+ - "\u0123\u0121\u0001\u0000\u0000\u0000\u0124\u012d\u0001\u0000\u0000\u0000"+ - "\u0125\u0126\n\u0002\u0000\u0000\u0126\u0127\u0007\u0001\u0000\u0000\u0127"+ - "\u012c\u0003\u0012\t\u0003\u0128\u0129\n\u0001\u0000\u0000\u0129\u012a"+ - "\u0007\u0000\u0000\u0000\u012a\u012c\u0003\u0012\t\u0002\u012b\u0125\u0001"+ - "\u0000\u0000\u0000\u012b\u0128\u0001\u0000\u0000\u0000\u012c\u012f\u0001"+ - "\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e\u0001"+ - "\u0000\u0000\u0000\u012e\u0013\u0001\u0000\u0000\u0000\u012f\u012d\u0001"+ - "\u0000\u0000\u0000\u0130\u0131\u0006\n\uffff\uffff\u0000\u0131\u0139\u0003"+ - "N\'\u0000\u0132\u0139\u0003D\"\u0000\u0133\u0139\u0003\u0016\u000b\u0000"+ - "\u0134\u0135\u00052\u0000\u0000\u0135\u0136\u0003\n\u0005\u0000\u0136"+ - "\u0137\u0005:\u0000\u0000\u0137\u0139\u0001\u0000\u0000\u0000\u0138\u0130"+ - "\u0001\u0000\u0000\u0000\u0138\u0132\u0001\u0000\u0000\u0000\u0138\u0133"+ - "\u0001\u0000\u0000\u0000\u0138\u0134\u0001\u0000\u0000\u0000\u0139\u013f"+ - "\u0001\u0000\u0000\u0000\u013a\u013b\n\u0001\u0000\u0000\u013b\u013c\u0005"+ - "\'\u0000\u0000\u013c\u013e\u0003\u001e\u000f\u0000\u013d\u013a\u0001\u0000"+ - "\u0000\u0000\u013e\u0141\u0001\u0000\u0000\u0000\u013f\u013d\u0001\u0000"+ - "\u0000\u0000\u013f\u0140\u0001\u0000\u0000\u0000\u0140\u0015\u0001\u0000"+ - "\u0000\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0142\u0143\u0003\u0018"+ - "\f\u0000\u0143\u0151\u00052\u0000\u0000\u0144\u0152\u0005F\u0000\u0000"+ - "\u0145\u014a\u0003\n\u0005\u0000\u0146\u0147\u0005)\u0000\u0000\u0147"+ - "\u0149\u0003\n\u0005\u0000\u0148\u0146\u0001\u0000\u0000\u0000\u0149\u014c"+ - "\u0001\u0000\u0000\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a\u014b"+ - "\u0001\u0000\u0000\u0000\u014b\u014f\u0001\u0000\u0000\u0000\u014c\u014a"+ - "\u0001\u0000\u0000\u0000\u014d\u014e\u0005)\u0000\u0000\u014e\u0150\u0003"+ - "\u001a\r\u0000\u014f\u014d\u0001\u0000\u0000\u0000\u014f\u0150\u0001\u0000"+ - "\u0000\u0000\u0150\u0152\u0001\u0000\u0000\u0000\u0151\u0144\u0001\u0000"+ - "\u0000\u0000\u0151\u0145\u0001\u0000\u0000\u0000\u0151\u0152\u0001\u0000"+ - "\u0000\u0000\u0152\u0153\u0001\u0000\u0000\u0000\u0153\u0154\u0005:\u0000"+ - "\u0000\u0154\u0017\u0001\u0000\u0000\u0000\u0155\u0156\u0003T*\u0000\u0156"+ - "\u0019\u0001\u0000\u0000\u0000\u0157\u0158\u0005I\u0000\u0000\u0158\u015d"+ - "\u0003\u001c\u000e\u0000\u0159\u015a\u0005)\u0000\u0000\u015a\u015c\u0003"+ - "\u001c\u000e\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015c\u015f\u0001"+ - "\u0000\u0000\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015d\u015e\u0001"+ - "\u0000\u0000\u0000\u015e\u0160\u0001\u0000\u0000\u0000\u015f\u015d\u0001"+ - "\u0000\u0000\u0000\u0160\u0161\u0005J\u0000\u0000\u0161\u001b\u0001\u0000"+ - "\u0000\u0000\u0162\u0163\u0003v;\u0000\u0163\u0164\u0005(\u0000\u0000"+ - "\u0164\u0165\u0003N\'\u0000\u0165\u001d\u0001\u0000\u0000\u0000\u0166"+ - "\u0167\u0003J%\u0000\u0167\u001f\u0001\u0000\u0000\u0000\u0168\u0169\u0005"+ - "\r\u0000\u0000\u0169\u016a\u0003\"\u0011\u0000\u016a!\u0001\u0000\u0000"+ - "\u0000\u016b\u0170\u0003$\u0012\u0000\u016c\u016d\u0005)\u0000\u0000\u016d"+ - "\u016f\u0003$\u0012\u0000\u016e\u016c\u0001\u0000\u0000\u0000\u016f\u0172"+ - "\u0001\u0000\u0000\u0000\u0170\u016e\u0001\u0000\u0000\u0000\u0170\u0171"+ - "\u0001\u0000\u0000\u0000\u0171#\u0001\u0000\u0000\u0000\u0172\u0170\u0001"+ - "\u0000\u0000\u0000\u0173\u0174\u0003D\"\u0000\u0174\u0175\u0005%\u0000"+ - "\u0000\u0175\u0177\u0001\u0000\u0000\u0000\u0176\u0173\u0001\u0000\u0000"+ - "\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177\u0178\u0001\u0000\u0000"+ - "\u0000\u0178\u0179\u0003\n\u0005\u0000\u0179%\u0001\u0000\u0000\u0000"+ - "\u017a\u017f\u0003(\u0014\u0000\u017b\u017c\u0005)\u0000\u0000\u017c\u017e"+ - "\u0003(\u0014\u0000\u017d\u017b\u0001\u0000\u0000\u0000\u017e\u0181\u0001"+ - "\u0000\u0000\u0000\u017f\u017d\u0001\u0000\u0000\u0000\u017f\u0180\u0001"+ - "\u0000\u0000\u0000\u0180\'\u0001\u0000\u0000\u0000\u0181\u017f\u0001\u0000"+ - "\u0000\u0000\u0182\u0185\u0003D\"\u0000\u0183\u0184\u0005%\u0000\u0000"+ - "\u0184\u0186\u0003\n\u0005\u0000\u0185\u0183\u0001\u0000\u0000\u0000\u0185"+ - "\u0186\u0001\u0000\u0000\u0000\u0186)\u0001\u0000\u0000\u0000\u0187\u0188"+ - "\u0005\u0007\u0000\u0000\u0188\u018d\u0003,\u0016\u0000\u0189\u018a\u0005"+ - ")\u0000\u0000\u018a\u018c\u0003,\u0016\u0000\u018b\u0189\u0001\u0000\u0000"+ - "\u0000\u018c\u018f\u0001\u0000\u0000\u0000\u018d\u018b\u0001\u0000\u0000"+ - "\u0000\u018d\u018e\u0001\u0000\u0000\u0000\u018e\u0191\u0001\u0000\u0000"+ - "\u0000\u018f\u018d\u0001\u0000\u0000\u0000\u0190\u0192\u00034\u001a\u0000"+ - "\u0191\u0190\u0001\u0000\u0000\u0000\u0191\u0192\u0001\u0000\u0000\u0000"+ - "\u0192+\u0001\u0000\u0000\u0000\u0193\u0194\u0003.\u0017\u0000\u0194\u0195"+ - "\u0005(\u0000\u0000\u0195\u0197\u0001\u0000\u0000\u0000\u0196\u0193\u0001"+ - "\u0000\u0000\u0000\u0196\u0197\u0001\u0000\u0000\u0000\u0197\u0198\u0001"+ - "\u0000\u0000\u0000\u0198\u019f\u00032\u0019\u0000\u0199\u019c\u00032\u0019"+ - "\u0000\u019a\u019b\u0005\'\u0000\u0000\u019b\u019d\u00030\u0018\u0000"+ - "\u019c\u019a\u0001\u0000\u0000\u0000\u019c\u019d\u0001\u0000\u0000\u0000"+ - "\u019d\u019f\u0001\u0000\u0000\u0000\u019e\u0196\u0001\u0000\u0000\u0000"+ - "\u019e\u0199\u0001\u0000\u0000\u0000\u019f-\u0001\u0000\u0000\u0000\u01a0"+ - "\u01a1\u0007\u0002\u0000\u0000\u01a1/\u0001\u0000\u0000\u0000\u01a2\u01a3"+ - "\u0007\u0002\u0000\u0000\u01a31\u0001\u0000\u0000\u0000\u01a4\u01a5\u0007"+ - "\u0002\u0000\u0000\u01a53\u0001\u0000\u0000\u0000\u01a6\u01a9\u00036\u001b"+ - "\u0000\u01a7\u01a9\u00038\u001c\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000"+ - "\u01a8\u01a7\u0001\u0000\u0000\u0000\u01a95\u0001\u0000\u0000\u0000\u01aa"+ - "\u01ab\u0005X\u0000\u0000\u01ab\u01b0\u0005Y\u0000\u0000\u01ac\u01ad\u0005"+ - ")\u0000\u0000\u01ad\u01af\u0005Y\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000"+ - "\u0000\u01af\u01b2\u0001\u0000\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000"+ - "\u0000\u01b0\u01b1\u0001\u0000\u0000\u0000\u01b17\u0001\u0000\u0000\u0000"+ - "\u01b2\u01b0\u0001\u0000\u0000\u0000\u01b3\u01b4\u0005N\u0000\u0000\u01b4"+ - "\u01b5\u00036\u001b\u0000\u01b5\u01b6\u0005O\u0000\u0000\u01b69\u0001"+ - "\u0000\u0000\u0000\u01b7\u01b8\u0005\u0016\u0000\u0000\u01b8\u01bd\u0003"+ - ",\u0016\u0000\u01b9\u01ba\u0005)\u0000\u0000\u01ba\u01bc\u0003,\u0016"+ - "\u0000\u01bb\u01b9\u0001\u0000\u0000\u0000\u01bc\u01bf\u0001\u0000\u0000"+ - "\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000"+ - "\u0000\u01be\u01c1\u0001\u0000\u0000\u0000\u01bf\u01bd\u0001\u0000\u0000"+ - "\u0000\u01c0\u01c2\u0003@ \u0000\u01c1\u01c0\u0001\u0000\u0000\u0000\u01c1"+ - "\u01c2\u0001\u0000\u0000\u0000\u01c2\u01c5\u0001\u0000\u0000\u0000\u01c3"+ - "\u01c4\u0005&\u0000\u0000\u01c4\u01c6\u0003\"\u0011\u0000\u01c5\u01c3"+ - "\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6;\u0001"+ - "\u0000\u0000\u0000\u01c7\u01c8\u0005\u0005\u0000\u0000\u01c8\u01c9\u0003"+ - "\"\u0011\u0000\u01c9=\u0001\u0000\u0000\u0000\u01ca\u01cc\u0005\u0010"+ - "\u0000\u0000\u01cb\u01cd\u0003@ \u0000\u01cc\u01cb\u0001\u0000\u0000\u0000"+ - "\u01cc\u01cd\u0001\u0000\u0000\u0000\u01cd\u01d0\u0001\u0000\u0000\u0000"+ - "\u01ce\u01cf\u0005&\u0000\u0000\u01cf\u01d1\u0003\"\u0011\u0000\u01d0"+ - "\u01ce\u0001\u0000\u0000\u0000\u01d0\u01d1\u0001\u0000\u0000\u0000\u01d1"+ - "?\u0001\u0000\u0000\u0000\u01d2\u01d7\u0003B!\u0000\u01d3\u01d4\u0005"+ - ")\u0000\u0000\u01d4\u01d6\u0003B!\u0000\u01d5\u01d3\u0001\u0000\u0000"+ - "\u0000\u01d6\u01d9\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001\u0000\u0000"+ - "\u0000\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8A\u0001\u0000\u0000\u0000"+ - "\u01d9\u01d7\u0001\u0000\u0000\u0000\u01da\u01dd\u0003$\u0012\u0000\u01db"+ - "\u01dc\u0005\u0011\u0000\u0000\u01dc\u01de\u0003\n\u0005\u0000\u01dd\u01db"+ - "\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01deC\u0001"+ - "\u0000\u0000\u0000\u01df\u01e4\u0003T*\u0000\u01e0\u01e1\u0005+\u0000"+ - "\u0000\u01e1\u01e3\u0003T*\u0000\u01e2\u01e0\u0001\u0000\u0000\u0000\u01e3"+ - "\u01e6\u0001\u0000\u0000\u0000\u01e4\u01e2\u0001\u0000\u0000\u0000\u01e4"+ - "\u01e5\u0001\u0000\u0000\u0000\u01e5E\u0001\u0000\u0000\u0000\u01e6\u01e4"+ - "\u0001\u0000\u0000\u0000\u01e7\u01ec\u0003L&\u0000\u01e8\u01e9\u0005+"+ - "\u0000\u0000\u01e9\u01eb\u0003L&\u0000\u01ea\u01e8\u0001\u0000\u0000\u0000"+ - "\u01eb\u01ee\u0001\u0000\u0000\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000"+ - "\u01ec\u01ed\u0001\u0000\u0000\u0000\u01edG\u0001\u0000\u0000\u0000\u01ee"+ - "\u01ec\u0001\u0000\u0000\u0000\u01ef\u01f4\u0003F#\u0000\u01f0\u01f1\u0005"+ - ")\u0000\u0000\u01f1\u01f3\u0003F#\u0000\u01f2\u01f0\u0001\u0000\u0000"+ - "\u0000\u01f3\u01f6\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001\u0000\u0000"+ - "\u0000\u01f4\u01f5\u0001\u0000\u0000\u0000\u01f5I\u0001\u0000\u0000\u0000"+ - "\u01f6\u01f4\u0001\u0000\u0000\u0000\u01f7\u01f8\u0007\u0003\u0000\u0000"+ - "\u01f8K\u0001\u0000\u0000\u0000\u01f9\u01fd\u0005]\u0000\u0000\u01fa\u01fd"+ - "\u0003P(\u0000\u01fb\u01fd\u0003R)\u0000\u01fc\u01f9\u0001\u0000\u0000"+ - "\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fc\u01fb\u0001\u0000\u0000"+ - "\u0000\u01fdM\u0001\u0000\u0000\u0000\u01fe\u0229\u00054\u0000\u0000\u01ff"+ - "\u0200\u0003t:\u0000\u0200\u0201\u0005P\u0000\u0000\u0201\u0229\u0001"+ - "\u0000\u0000\u0000\u0202\u0229\u0003r9\u0000\u0203\u0229\u0003t:\u0000"+ - "\u0204\u0229\u0003n7\u0000\u0205\u0229\u0003P(\u0000\u0206\u0229\u0003"+ - "v;\u0000\u0207\u0208\u0005N\u0000\u0000\u0208\u020d\u0003p8\u0000\u0209"+ - "\u020a\u0005)\u0000\u0000\u020a\u020c\u0003p8\u0000\u020b\u0209\u0001"+ - "\u0000\u0000\u0000\u020c\u020f\u0001\u0000\u0000\u0000\u020d\u020b\u0001"+ - "\u0000\u0000\u0000\u020d\u020e\u0001\u0000\u0000\u0000\u020e\u0210\u0001"+ - "\u0000\u0000\u0000\u020f\u020d\u0001\u0000\u0000\u0000\u0210\u0211\u0005"+ - "O\u0000\u0000\u0211\u0229\u0001\u0000\u0000\u0000\u0212\u0213\u0005N\u0000"+ - "\u0000\u0213\u0218\u0003n7\u0000\u0214\u0215\u0005)\u0000\u0000\u0215"+ - "\u0217\u0003n7\u0000\u0216\u0214\u0001\u0000\u0000\u0000\u0217\u021a\u0001"+ - "\u0000\u0000\u0000\u0218\u0216\u0001\u0000\u0000\u0000\u0218\u0219\u0001"+ - "\u0000\u0000\u0000\u0219\u021b\u0001\u0000\u0000\u0000\u021a\u0218\u0001"+ - "\u0000\u0000\u0000\u021b\u021c\u0005O\u0000\u0000\u021c\u0229\u0001\u0000"+ - "\u0000\u0000\u021d\u021e\u0005N\u0000\u0000\u021e\u0223\u0003v;\u0000"+ - "\u021f\u0220\u0005)\u0000\u0000\u0220\u0222\u0003v;\u0000\u0221\u021f"+ - "\u0001\u0000\u0000\u0000\u0222\u0225\u0001\u0000\u0000\u0000\u0223\u0221"+ - "\u0001\u0000\u0000\u0000\u0223\u0224\u0001\u0000\u0000\u0000\u0224\u0226"+ - "\u0001\u0000\u0000\u0000\u0225\u0223\u0001\u0000\u0000\u0000\u0226\u0227"+ - "\u0005O\u0000\u0000\u0227\u0229\u0001\u0000\u0000\u0000\u0228\u01fe\u0001"+ - "\u0000\u0000\u0000\u0228\u01ff\u0001\u0000\u0000\u0000\u0228\u0202\u0001"+ - "\u0000\u0000\u0000\u0228\u0203\u0001\u0000\u0000\u0000\u0228\u0204\u0001"+ - "\u0000\u0000\u0000\u0228\u0205\u0001\u0000\u0000\u0000\u0228\u0206\u0001"+ - "\u0000\u0000\u0000\u0228\u0207\u0001\u0000\u0000\u0000\u0228\u0212\u0001"+ - "\u0000\u0000\u0000\u0228\u021d\u0001\u0000\u0000\u0000\u0229O\u0001\u0000"+ - "\u0000\u0000\u022a\u022d\u00058\u0000\u0000\u022b\u022d\u0005L\u0000\u0000"+ - "\u022c\u022a\u0001\u0000\u0000\u0000\u022c\u022b\u0001\u0000\u0000\u0000"+ - "\u022dQ\u0001\u0000\u0000\u0000\u022e\u0231\u0005K\u0000\u0000\u022f\u0231"+ - "\u0005M\u0000\u0000\u0230\u022e\u0001\u0000\u0000\u0000\u0230\u022f\u0001"+ - "\u0000\u0000\u0000\u0231S\u0001\u0000\u0000\u0000\u0232\u0236\u0003J%"+ - "\u0000\u0233\u0236\u0003P(\u0000\u0234\u0236\u0003R)\u0000\u0235\u0232"+ - "\u0001\u0000\u0000\u0000\u0235\u0233\u0001\u0000\u0000\u0000\u0235\u0234"+ - "\u0001\u0000\u0000\u0000\u0236U\u0001\u0000\u0000\u0000\u0237\u0238\u0005"+ - "\n\u0000\u0000\u0238\u0239\u0003N\'\u0000\u0239W\u0001\u0000\u0000\u0000"+ - "\u023a\u023b\u0005\u000f\u0000\u0000\u023b\u0240\u0003Z-\u0000\u023c\u023d"+ - "\u0005)\u0000\u0000\u023d\u023f\u0003Z-\u0000\u023e\u023c\u0001\u0000"+ - "\u0000\u0000\u023f\u0242\u0001\u0000\u0000\u0000\u0240\u023e\u0001\u0000"+ - "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241Y\u0001\u0000\u0000"+ - "\u0000\u0242\u0240\u0001\u0000\u0000\u0000\u0243\u0245\u0003\n\u0005\u0000"+ - "\u0244\u0246\u0007\u0004\u0000\u0000\u0245\u0244\u0001\u0000\u0000\u0000"+ - "\u0245\u0246\u0001\u0000\u0000\u0000\u0246\u0249\u0001\u0000\u0000\u0000"+ - "\u0247\u0248\u00055\u0000\u0000\u0248\u024a\u0007\u0005\u0000\u0000\u0249"+ - "\u0247\u0001\u0000\u0000\u0000\u0249\u024a\u0001\u0000\u0000\u0000\u024a"+ - "[\u0001\u0000\u0000\u0000\u024b\u024c\u0005\t\u0000\u0000\u024c\u024d"+ - "\u0003H$\u0000\u024d]\u0001\u0000\u0000\u0000\u024e\u024f\u0005\u0003"+ - "\u0000\u0000\u024f\u0250\u0003H$\u0000\u0250_\u0001\u0000\u0000\u0000"+ - "\u0251\u0252\u0005\f\u0000\u0000\u0252\u0257\u0003b1\u0000\u0253\u0254"+ - "\u0005)\u0000\u0000\u0254\u0256\u0003b1\u0000\u0255\u0253\u0001\u0000"+ - "\u0000\u0000\u0256\u0259\u0001\u0000\u0000\u0000\u0257\u0255\u0001\u0000"+ - "\u0000\u0000\u0257\u0258\u0001\u0000\u0000\u0000\u0258a\u0001\u0000\u0000"+ - "\u0000\u0259\u0257\u0001\u0000\u0000\u0000\u025a\u025b\u0003F#\u0000\u025b"+ - "\u025c\u0005a\u0000\u0000\u025c\u025d\u0003F#\u0000\u025d\u0263\u0001"+ - "\u0000\u0000\u0000\u025e\u025f\u0003F#\u0000\u025f\u0260\u0005%\u0000"+ - "\u0000\u0260\u0261\u0003F#\u0000\u0261\u0263\u0001\u0000\u0000\u0000\u0262"+ - "\u025a\u0001\u0000\u0000\u0000\u0262\u025e\u0001\u0000\u0000\u0000\u0263"+ - "c\u0001\u0000\u0000\u0000\u0264\u0265\u0005\u0002\u0000\u0000\u0265\u0266"+ - "\u0003\u0014\n\u0000\u0266\u0268\u0003v;\u0000\u0267\u0269\u0003j5\u0000"+ - "\u0268\u0267\u0001\u0000\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000"+ - "\u0269e\u0001\u0000\u0000\u0000\u026a\u026b\u0005\b\u0000\u0000\u026b"+ - "\u026c\u0003\u0014\n\u0000\u026c\u026d\u0003v;\u0000\u026dg\u0001\u0000"+ - "\u0000\u0000\u026e\u026f\u0005\u000b\u0000\u0000\u026f\u0270\u0003D\""+ - "\u0000\u0270i\u0001\u0000\u0000\u0000\u0271\u0276\u0003l6\u0000\u0272"+ - "\u0273\u0005)\u0000\u0000\u0273\u0275\u0003l6\u0000\u0274\u0272\u0001"+ - "\u0000\u0000\u0000\u0275\u0278\u0001\u0000\u0000\u0000\u0276\u0274\u0001"+ - "\u0000\u0000\u0000\u0276\u0277\u0001\u0000\u0000\u0000\u0277k\u0001\u0000"+ - "\u0000\u0000\u0278\u0276\u0001\u0000\u0000\u0000\u0279\u027a\u0003J%\u0000"+ - "\u027a\u027b\u0005%\u0000\u0000\u027b\u027c\u0003N\'\u0000\u027cm\u0001"+ - "\u0000\u0000\u0000\u027d\u027e\u0007\u0006\u0000\u0000\u027eo\u0001\u0000"+ - "\u0000\u0000\u027f\u0282\u0003r9\u0000\u0280\u0282\u0003t:\u0000\u0281"+ - "\u027f\u0001\u0000\u0000\u0000\u0281\u0280\u0001\u0000\u0000\u0000\u0282"+ - "q\u0001\u0000\u0000\u0000\u0283\u0285\u0007\u0000\u0000\u0000\u0284\u0283"+ - "\u0001\u0000\u0000\u0000\u0284\u0285\u0001\u0000\u0000\u0000\u0285\u0286"+ - "\u0001\u0000\u0000\u0000\u0286\u0287\u0005\"\u0000\u0000\u0287s\u0001"+ - "\u0000\u0000\u0000\u0288\u028a\u0007\u0000\u0000\u0000\u0289\u0288\u0001"+ - "\u0000\u0000\u0000\u0289\u028a\u0001\u0000\u0000\u0000\u028a\u028b\u0001"+ - "\u0000\u0000\u0000\u028b\u028c\u0005!\u0000\u0000\u028cu\u0001\u0000\u0000"+ - "\u0000\u028d\u028e\u0005 \u0000\u0000\u028ew\u0001\u0000\u0000\u0000\u028f"+ - "\u0290\u0007\u0007\u0000\u0000\u0290y\u0001\u0000\u0000\u0000\u0291\u0292"+ - "\u0005\u0006\u0000\u0000\u0292\u0293\u0003|>\u0000\u0293{\u0001\u0000"+ - "\u0000\u0000\u0294\u0295\u0005N\u0000\u0000\u0295\u0296\u0003\u0002\u0001"+ - "\u0000\u0296\u0297\u0005O\u0000\u0000\u0297}\u0001\u0000\u0000\u0000\u0298"+ - "\u0299\u0005\u000e\u0000\u0000\u0299\u029a\u0005o\u0000\u0000\u029a\u007f"+ - "\u0001\u0000\u0000\u0000\u029b\u029c\u0005\u0004\u0000\u0000\u029c\u029f"+ - "\u0005e\u0000\u0000\u029d\u029e\u00056\u0000\u0000\u029e\u02a0\u0003F"+ - "#\u0000\u029f\u029d\u0001\u0000\u0000\u0000\u029f\u02a0\u0001\u0000\u0000"+ - "\u0000\u02a0\u02aa\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005<\u0000\u0000"+ - "\u02a2\u02a7\u0003\u0082A\u0000\u02a3\u02a4\u0005)\u0000\u0000\u02a4\u02a6"+ - "\u0003\u0082A\u0000\u02a5\u02a3\u0001\u0000\u0000\u0000\u02a6\u02a9\u0001"+ - "\u0000\u0000\u0000\u02a7\u02a5\u0001\u0000\u0000\u0000\u02a7\u02a8\u0001"+ - "\u0000\u0000\u0000\u02a8\u02ab\u0001\u0000\u0000\u0000\u02a9\u02a7\u0001"+ - "\u0000\u0000\u0000\u02aa\u02a1\u0001\u0000\u0000\u0000\u02aa\u02ab\u0001"+ - "\u0000\u0000\u0000\u02ab\u0081\u0001\u0000\u0000\u0000\u02ac\u02ad\u0003"+ - "F#\u0000\u02ad\u02ae\u0005%\u0000\u0000\u02ae\u02b0\u0001\u0000\u0000"+ - "\u0000\u02af\u02ac\u0001\u0000\u0000\u0000\u02af\u02b0\u0001\u0000\u0000"+ - "\u0000\u02b0\u02b1\u0001\u0000\u0000\u0000\u02b1\u02b2\u0003F#\u0000\u02b2"+ - "\u0083\u0001\u0000\u0000\u0000\u02b3\u02b4\u0005\u0013\u0000\u0000\u02b4"+ - "\u02b7\u0003D\"\u0000\u02b5\u02b6\u00056\u0000\u0000\u02b6\u02b8\u0003"+ - "D\"\u0000\u02b7\u02b5\u0001\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000"+ - "\u0000\u0000\u02b8\u02be\u0001\u0000\u0000\u0000\u02b9\u02ba\u0005a\u0000"+ - "\u0000\u02ba\u02bb\u0003D\"\u0000\u02bb\u02bc\u0005)\u0000\u0000\u02bc"+ - "\u02bd\u0003D\"\u0000\u02bd\u02bf\u0001\u0000\u0000\u0000\u02be\u02b9"+ - "\u0001\u0000\u0000\u0000\u02be\u02bf\u0001\u0000\u0000\u0000\u02bf\u0085"+ - "\u0001\u0000\u0000\u0000\u02c0\u02c1\u0005\u0015\u0000\u0000\u02c1\u02c2"+ - "\u0003,\u0016\u0000\u02c2\u02c3\u00056\u0000\u0000\u02c3\u02c4\u0003H"+ - "$\u0000\u02c4\u0087\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005\u0014\u0000"+ - "\u0000\u02c6\u02c9\u0003@ \u0000\u02c7\u02c8\u0005&\u0000\u0000\u02c8"+ - "\u02ca\u0003\"\u0011\u0000\u02c9\u02c7\u0001\u0000\u0000\u0000\u02c9\u02ca"+ - "\u0001\u0000\u0000\u0000\u02ca\u0089\u0001\u0000\u0000\u0000\u02cb\u02cc"+ - "\u0007\b\u0000\u0000\u02cc\u02cd\u0005}\u0000\u0000\u02cd\u02ce\u0003"+ - "\u008cF\u0000\u02ce\u02cf\u0003\u008eG\u0000\u02cf\u008b\u0001\u0000\u0000"+ - "\u0000\u02d0\u02d1\u0003,\u0016\u0000\u02d1\u008d\u0001\u0000\u0000\u0000"+ - "\u02d2\u02d3\u00056\u0000\u0000\u02d3\u02d8\u0003\u0090H\u0000\u02d4\u02d5"+ - "\u0005)\u0000\u0000\u02d5\u02d7\u0003\u0090H\u0000\u02d6\u02d4\u0001\u0000"+ - "\u0000\u0000\u02d7\u02da\u0001\u0000\u0000\u0000\u02d8\u02d6\u0001\u0000"+ - "\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000\u0000\u02d9\u008f\u0001\u0000"+ - "\u0000\u0000\u02da\u02d8\u0001\u0000\u0000\u0000\u02db\u02dc\u0003\u0010"+ - "\b\u0000\u02dc\u0091\u0001\u0000\u0000\u0000\u02dd\u02de\u0005\u0017\u0000"+ - "\u0000\u02de\u02df\u0003N\'\u0000\u02df\u02e0\u00056\u0000\u0000\u02e0"+ - "\u02e3\u0003&\u0013\u0000\u02e1\u02e2\u0005<\u0000\u0000\u02e2\u02e4\u0003"+ - "T*\u0000\u02e3\u02e1\u0001\u0000\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000"+ - "\u0000\u02e4\u0093\u0001\u0000\u0000\u0000\u02e5\u02e9\u0005\u0001\u0000"+ - "\u0000\u02e6\u02e7\u0003D\"\u0000\u02e7\u02e8\u0005%\u0000\u0000\u02e8"+ - "\u02ea\u0001\u0000\u0000\u0000\u02e9\u02e6\u0001\u0000\u0000\u0000\u02e9"+ - "\u02ea\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb"+ - "\u02ec\u0003\u0014\n\u0000\u02ec\u02ed\u0005<\u0000\u0000\u02ed\u02ee"+ - "\u0003T*\u0000\u02ee\u0095\u0001\u0000\u0000\u0000J\u00a1\u00aa\u00c1"+ - "\u00cd\u00d6\u00de\u00e3\u00eb\u00ed\u00f2\u00f9\u0100\u0109\u010e\u0113"+ - "\u011d\u0123\u012b\u012d\u0138\u013f\u014a\u014f\u0151\u015d\u0170\u0176"+ - "\u017f\u0185\u018d\u0191\u0196\u019c\u019e\u01a8\u01b0\u01bd\u01c1\u01c5"+ - "\u01cc\u01d0\u01d7\u01dd\u01e4\u01ec\u01f4\u01fc\u020d\u0218\u0223\u0228"+ - "\u022c\u0230\u0235\u0240\u0245\u0249\u0257\u0262\u0268\u0276\u0281\u0284"+ - "\u0289\u029f\u02a7\u02aa\u02af\u02b7\u02be\u02c9\u02d8\u02e3\u02e9"; + "\u0001\u0003\u0001\u0003\u0003\u0003\u00c4\b\u0003\u0001\u0004\u0001\u0004"+ + "\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0003\u0005\u00d0\b\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00d7\b\u0005\n\u0005"+ + "\f\u0005\u00da\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0003\u0005\u00e1\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0003\u0005\u00e6\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0005\u0005\u00ee\b\u0005\n\u0005\f\u0005\u00f1"+ + "\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00f5\b\u0006\u0001\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u00fc\b\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+ + "\u0103\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\u0005\u0006\u010a\b\u0006\n\u0006\f\u0006\u010d\t\u0006\u0001\u0006\u0001"+ + "\u0006\u0003\u0006\u0111\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003"+ + "\u0007\u0116\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0003\b\u0120\b\b\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0003\t\u0126\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005"+ + "\t\u012e\b\t\n\t\f\t\u0131\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+ + "\u0001\n\u0001\n\u0001\n\u0003\n\u013b\b\n\u0001\n\u0001\n\u0001\n\u0005"+ + "\n\u0140\b\n\n\n\f\n\u0143\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u014b\b\u000b\n\u000b\f\u000b"+ + "\u014e\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0152\b\u000b\u0003"+ + "\u000b\u0154\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001"+ + "\r\u0001\r\u0001\r\u0005\r\u015e\b\r\n\r\f\r\u0161\t\r\u0001\r\u0001\r"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+ + "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011"+ + "\u0005\u0011\u0171\b\u0011\n\u0011\f\u0011\u0174\t\u0011\u0001\u0012\u0001"+ + "\u0012\u0001\u0012\u0003\u0012\u0179\b\u0012\u0001\u0012\u0001\u0012\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0180\b\u0013\n\u0013\f\u0013"+ + "\u0183\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0188\b"+ + "\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u018e"+ + "\b\u0015\n\u0015\f\u0015\u0191\t\u0015\u0001\u0015\u0003\u0015\u0194\b"+ + "\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+ + "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u019f\b\u0016\u0001"+ + "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+ + "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01ab\b\u001b\u0001"+ + "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01b1\b\u001c\n"+ + "\u001c\f\u001c\u01b4\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ + "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01be"+ + "\b\u001e\n\u001e\f\u001e\u01c1\t\u001e\u0001\u001e\u0003\u001e\u01c4\b"+ + "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01c8\b\u001e\u0001\u001f\u0001"+ + "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01cf\b \u0001 \u0001 \u0003 "+ + "\u01d3\b \u0001!\u0001!\u0001!\u0005!\u01d8\b!\n!\f!\u01db\t!\u0001\""+ + "\u0001\"\u0001\"\u0003\"\u01e0\b\"\u0001#\u0001#\u0001#\u0005#\u01e5\b"+ + "#\n#\f#\u01e8\t#\u0001$\u0001$\u0001$\u0005$\u01ed\b$\n$\f$\u01f0\t$\u0001"+ + "%\u0001%\u0001%\u0005%\u01f5\b%\n%\f%\u01f8\t%\u0001&\u0001&\u0001\'\u0001"+ + "\'\u0001\'\u0003\'\u01ff\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+ + "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u020e\b(\n("+ + "\f(\u0211\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0219\b"+ + "(\n(\f(\u021c\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0224"+ + "\b(\n(\f(\u0227\t(\u0001(\u0001(\u0003(\u022b\b(\u0001)\u0001)\u0003)"+ + "\u022f\b)\u0001*\u0001*\u0003*\u0233\b*\u0001+\u0001+\u0001+\u0003+\u0238"+ + "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u0241\b-\n"+ + "-\f-\u0244\t-\u0001.\u0001.\u0003.\u0248\b.\u0001.\u0001.\u0003.\u024c"+ + "\b.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+ + "1\u00051\u0258\b1\n1\f1\u025b\t1\u00012\u00012\u00012\u00012\u00012\u0001"+ + "2\u00012\u00012\u00032\u0265\b2\u00013\u00013\u00013\u00013\u00033\u026b"+ + "\b3\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00016\u00016\u0001"+ + "6\u00056\u0277\b6\n6\f6\u027a\t6\u00017\u00017\u00017\u00017\u00018\u0001"+ + "8\u00019\u00019\u00039\u0284\b9\u0001:\u0003:\u0287\b:\u0001:\u0001:\u0001"+ + ";\u0003;\u028c\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+ + ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001"+ + "A\u0001A\u0001A\u0003A\u02a2\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02a8"+ + "\bA\nA\fA\u02ab\tA\u0003A\u02ad\bA\u0001B\u0001B\u0001B\u0003B\u02b2\b"+ + "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003C\u02ba\bC\u0001C\u0001"+ + "C\u0001C\u0001C\u0001C\u0003C\u02c1\bC\u0001D\u0001D\u0001D\u0001D\u0001"+ + "D\u0001E\u0001E\u0001E\u0001E\u0003E\u02cc\bE\u0001F\u0001F\u0001F\u0001"+ + "F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0005H\u02d9\bH\nH"+ + "\fH\u02dc\tH\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0003"+ + "J\u02e6\bJ\u0001K\u0001K\u0001K\u0001K\u0003K\u02ec\bK\u0001K\u0001K\u0001"+ + "K\u0001K\u0001K\u0000\u0004\u0002\n\u0012\u0014L\u0000\u0002\u0004\u0006"+ + "\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,."+ + "02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088"+ + "\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0000\t\u0001\u0000DE\u0001"+ + "\u0000FH\u0002\u0000 YY\u0001\u0000PQ\u0002\u0000$$**\u0002\u0000--0"+ + "0\u0002\u0000,,;;\u0002\u0000==?C\u0002\u0000\u0012\u0012\u0019\u001a"+ + "\u0313\u0000\u0098\u0001\u0000\u0000\u0000\u0002\u009b\u0001\u0000\u0000"+ + "\u0000\u0004\u00ac\u0001\u0000\u0000\u0000\u0006\u00c3\u0001\u0000\u0000"+ + "\u0000\b\u00c5\u0001\u0000\u0000\u0000\n\u00e5\u0001\u0000\u0000\u0000"+ + "\f\u0110\u0001\u0000\u0000\u0000\u000e\u0112\u0001\u0000\u0000\u0000\u0010"+ + "\u011f\u0001\u0000\u0000\u0000\u0012\u0125\u0001\u0000\u0000\u0000\u0014"+ + "\u013a\u0001\u0000\u0000\u0000\u0016\u0144\u0001\u0000\u0000\u0000\u0018"+ + "\u0157\u0001\u0000\u0000\u0000\u001a\u0159\u0001\u0000\u0000\u0000\u001c"+ + "\u0164\u0001\u0000\u0000\u0000\u001e\u0168\u0001\u0000\u0000\u0000 \u016a"+ + "\u0001\u0000\u0000\u0000\"\u016d\u0001\u0000\u0000\u0000$\u0178\u0001"+ + "\u0000\u0000\u0000&\u017c\u0001\u0000\u0000\u0000(\u0184\u0001\u0000\u0000"+ + "\u0000*\u0189\u0001\u0000\u0000\u0000,\u019e\u0001\u0000\u0000\u0000."+ + "\u01a0\u0001\u0000\u0000\u00000\u01a2\u0001\u0000\u0000\u00002\u01a4\u0001"+ + "\u0000\u0000\u00004\u01a6\u0001\u0000\u0000\u00006\u01aa\u0001\u0000\u0000"+ + "\u00008\u01ac\u0001\u0000\u0000\u0000:\u01b5\u0001\u0000\u0000\u0000<"+ + "\u01b9\u0001\u0000\u0000\u0000>\u01c9\u0001\u0000\u0000\u0000@\u01cc\u0001"+ + "\u0000\u0000\u0000B\u01d4\u0001\u0000\u0000\u0000D\u01dc\u0001\u0000\u0000"+ + "\u0000F\u01e1\u0001\u0000\u0000\u0000H\u01e9\u0001\u0000\u0000\u0000J"+ + "\u01f1\u0001\u0000\u0000\u0000L\u01f9\u0001\u0000\u0000\u0000N\u01fe\u0001"+ + "\u0000\u0000\u0000P\u022a\u0001\u0000\u0000\u0000R\u022e\u0001\u0000\u0000"+ + "\u0000T\u0232\u0001\u0000\u0000\u0000V\u0237\u0001\u0000\u0000\u0000X"+ + "\u0239\u0001\u0000\u0000\u0000Z\u023c\u0001\u0000\u0000\u0000\\\u0245"+ + "\u0001\u0000\u0000\u0000^\u024d\u0001\u0000\u0000\u0000`\u0250\u0001\u0000"+ + "\u0000\u0000b\u0253\u0001\u0000\u0000\u0000d\u0264\u0001\u0000\u0000\u0000"+ + "f\u0266\u0001\u0000\u0000\u0000h\u026c\u0001\u0000\u0000\u0000j\u0270"+ + "\u0001\u0000\u0000\u0000l\u0273\u0001\u0000\u0000\u0000n\u027b\u0001\u0000"+ + "\u0000\u0000p\u027f\u0001\u0000\u0000\u0000r\u0283\u0001\u0000\u0000\u0000"+ + "t\u0286\u0001\u0000\u0000\u0000v\u028b\u0001\u0000\u0000\u0000x\u028f"+ + "\u0001\u0000\u0000\u0000z\u0291\u0001\u0000\u0000\u0000|\u0293\u0001\u0000"+ + "\u0000\u0000~\u0296\u0001\u0000\u0000\u0000\u0080\u029a\u0001\u0000\u0000"+ + "\u0000\u0082\u029d\u0001\u0000\u0000\u0000\u0084\u02b1\u0001\u0000\u0000"+ + "\u0000\u0086\u02b5\u0001\u0000\u0000\u0000\u0088\u02c2\u0001\u0000\u0000"+ + "\u0000\u008a\u02c7\u0001\u0000\u0000\u0000\u008c\u02cd\u0001\u0000\u0000"+ + "\u0000\u008e\u02d2\u0001\u0000\u0000\u0000\u0090\u02d4\u0001\u0000\u0000"+ + "\u0000\u0092\u02dd\u0001\u0000\u0000\u0000\u0094\u02df\u0001\u0000\u0000"+ + "\u0000\u0096\u02e7\u0001\u0000\u0000\u0000\u0098\u0099\u0003\u0002\u0001"+ + "\u0000\u0099\u009a\u0005\u0000\u0000\u0001\u009a\u0001\u0001\u0000\u0000"+ + "\u0000\u009b\u009c\u0006\u0001\uffff\uffff\u0000\u009c\u009d\u0003\u0004"+ + "\u0002\u0000\u009d\u00a3\u0001\u0000\u0000\u0000\u009e\u009f\n\u0001\u0000"+ + "\u0000\u009f\u00a0\u0005\u001f\u0000\u0000\u00a0\u00a2\u0003\u0006\u0003"+ + "\u0000\u00a1\u009e\u0001\u0000\u0000\u0000\u00a2\u00a5\u0001\u0000\u0000"+ + "\u0000\u00a3\u00a1\u0001\u0000\u0000\u0000\u00a3\u00a4\u0001\u0000\u0000"+ + "\u0000\u00a4\u0003\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000"+ + "\u0000\u00a6\u00ad\u0003|>\u0000\u00a7\u00ad\u0003*\u0015\u0000\u00a8"+ + "\u00ad\u0003 \u0010\u0000\u00a9\u00ad\u0003\u0080@\u0000\u00aa\u00ab\u0004"+ + "\u0002\u0001\u0000\u00ab\u00ad\u0003<\u001e\u0000\u00ac\u00a6\u0001\u0000"+ + "\u0000\u0000\u00ac\u00a7\u0001\u0000\u0000\u0000\u00ac\u00a8\u0001\u0000"+ + "\u0000\u0000\u00ac\u00a9\u0001\u0000\u0000\u0000\u00ac\u00aa\u0001\u0000"+ + "\u0000\u0000\u00ad\u0005\u0001\u0000\u0000\u0000\u00ae\u00c4\u0003>\u001f"+ + "\u0000\u00af\u00c4\u0003\b\u0004\u0000\u00b0\u00c4\u0003^/\u0000\u00b1"+ + "\u00c4\u0003X,\u0000\u00b2\u00c4\u0003@ \u0000\u00b3\u00c4\u0003Z-\u0000"+ + "\u00b4\u00c4\u0003`0\u0000\u00b5\u00c4\u0003b1\u0000\u00b6\u00c4\u0003"+ + "f3\u0000\u00b7\u00c4\u0003h4\u0000\u00b8\u00c4\u0003\u0082A\u0000\u00b9"+ + "\u00c4\u0003j5\u0000\u00ba\u00c4\u0003\u008cF\u0000\u00bb\u00c4\u0003"+ + "\u0086C\u0000\u00bc\u00c4\u0003\u0096K\u0000\u00bd\u00be\u0004\u0003\u0002"+ + "\u0000\u00be\u00c4\u0003\u008aE\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000"+ + "\u00c0\u00c4\u0003\u0088D\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2"+ + "\u00c4\u0003\u0094J\u0000\u00c3\u00ae\u0001\u0000\u0000\u0000\u00c3\u00af"+ + "\u0001\u0000\u0000\u0000\u00c3\u00b0\u0001\u0000\u0000\u0000\u00c3\u00b1"+ + "\u0001\u0000\u0000\u0000\u00c3\u00b2\u0001\u0000\u0000\u0000\u00c3\u00b3"+ + "\u0001\u0000\u0000\u0000\u00c3\u00b4\u0001\u0000\u0000\u0000\u00c3\u00b5"+ + "\u0001\u0000\u0000\u0000\u00c3\u00b6\u0001\u0000\u0000\u0000\u00c3\u00b7"+ + "\u0001\u0000\u0000\u0000\u00c3\u00b8\u0001\u0000\u0000\u0000\u00c3\u00b9"+ + "\u0001\u0000\u0000\u0000\u00c3\u00ba\u0001\u0000\u0000\u0000\u00c3\u00bb"+ + "\u0001\u0000\u0000\u0000\u00c3\u00bc\u0001\u0000\u0000\u0000\u00c3\u00bd"+ + "\u0001\u0000\u0000\u0000\u00c3\u00bf\u0001\u0000\u0000\u0000\u00c3\u00c1"+ + "\u0001\u0000\u0000\u0000\u00c4\u0007\u0001\u0000\u0000\u0000\u00c5\u00c6"+ + "\u0005\u0011\u0000\u0000\u00c6\u00c7\u0003\n\u0005\u0000\u00c7\t\u0001"+ + "\u0000\u0000\u0000\u00c8\u00c9\u0006\u0005\uffff\uffff\u0000\u00c9\u00ca"+ + "\u00053\u0000\u0000\u00ca\u00e6\u0003\n\u0005\b\u00cb\u00e6\u0003\u0010"+ + "\b\u0000\u00cc\u00e6\u0003\f\u0006\u0000\u00cd\u00cf\u0003\u0010\b\u0000"+ + "\u00ce\u00d0\u00053\u0000\u0000\u00cf\u00ce\u0001\u0000\u0000\u0000\u00cf"+ + "\u00d0\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1"+ + "\u00d2\u0005.\u0000\u0000\u00d2\u00d3\u00052\u0000\u0000\u00d3\u00d8\u0003"+ + "\u0010\b\u0000\u00d4\u00d5\u0005)\u0000\u0000\u00d5\u00d7\u0003\u0010"+ + "\b\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000\u00d7\u00da\u0001\u0000\u0000"+ + "\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d8\u00d9\u0001\u0000\u0000"+ + "\u0000\u00d9\u00db\u0001\u0000\u0000\u0000\u00da\u00d8\u0001\u0000\u0000"+ + "\u0000\u00db\u00dc\u0005:\u0000\u0000\u00dc\u00e6\u0001\u0000\u0000\u0000"+ + "\u00dd\u00de\u0003\u0010\b\u0000\u00de\u00e0\u0005/\u0000\u0000\u00df"+ + "\u00e1\u00053\u0000\u0000\u00e0\u00df\u0001\u0000\u0000\u0000\u00e0\u00e1"+ + "\u0001\u0000\u0000\u0000\u00e1\u00e2\u0001\u0000\u0000\u0000\u00e2\u00e3"+ + "\u00054\u0000\u0000\u00e3\u00e6\u0001\u0000\u0000\u0000\u00e4\u00e6\u0003"+ + "\u000e\u0007\u0000\u00e5\u00c8\u0001\u0000\u0000\u0000\u00e5\u00cb\u0001"+ + "\u0000\u0000\u0000\u00e5\u00cc\u0001\u0000\u0000\u0000\u00e5\u00cd\u0001"+ + "\u0000\u0000\u0000\u00e5\u00dd\u0001\u0000\u0000\u0000\u00e5\u00e4\u0001"+ + "\u0000\u0000\u0000\u00e6\u00ef\u0001\u0000\u0000\u0000\u00e7\u00e8\n\u0005"+ + "\u0000\u0000\u00e8\u00e9\u0005#\u0000\u0000\u00e9\u00ee\u0003\n\u0005"+ + "\u0006\u00ea\u00eb\n\u0004\u0000\u0000\u00eb\u00ec\u00057\u0000\u0000"+ + "\u00ec\u00ee\u0003\n\u0005\u0005\u00ed\u00e7\u0001\u0000\u0000\u0000\u00ed"+ + "\u00ea\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000\u00ef"+ + "\u00ed\u0001\u0000\u0000\u0000\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0"+ + "\u000b\u0001\u0000\u0000\u0000\u00f1\u00ef\u0001\u0000\u0000\u0000\u00f2"+ + "\u00f4\u0003\u0010\b\u0000\u00f3\u00f5\u00053\u0000\u0000\u00f4\u00f3"+ + "\u0001\u0000\u0000\u0000\u00f4\u00f5\u0001\u0000\u0000\u0000\u00f5\u00f6"+ + "\u0001\u0000\u0000\u0000\u00f6\u00f7\u00051\u0000\u0000\u00f7\u00f8\u0003"+ + "x<\u0000\u00f8\u0111\u0001\u0000\u0000\u0000\u00f9\u00fb\u0003\u0010\b"+ + "\u0000\u00fa\u00fc\u00053\u0000\u0000\u00fb\u00fa\u0001\u0000\u0000\u0000"+ + "\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001\u0000\u0000\u0000"+ + "\u00fd\u00fe\u00059\u0000\u0000\u00fe\u00ff\u0003x<\u0000\u00ff\u0111"+ + "\u0001\u0000\u0000\u0000\u0100\u0102\u0003\u0010\b\u0000\u0101\u0103\u0005"+ + "3\u0000\u0000\u0102\u0101\u0001\u0000\u0000\u0000\u0102\u0103\u0001\u0000"+ + "\u0000\u0000\u0103\u0104\u0001\u0000\u0000\u0000\u0104\u0105\u00051\u0000"+ + "\u0000\u0105\u0106\u00052\u0000\u0000\u0106\u010b\u0003x<\u0000\u0107"+ + "\u0108\u0005)\u0000\u0000\u0108\u010a\u0003x<\u0000\u0109\u0107\u0001"+ + "\u0000\u0000\u0000\u010a\u010d\u0001\u0000\u0000\u0000\u010b\u0109\u0001"+ + "\u0000\u0000\u0000\u010b\u010c\u0001\u0000\u0000\u0000\u010c\u010e\u0001"+ + "\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e\u010f\u0005"+ + ":\u0000\u0000\u010f\u0111\u0001\u0000\u0000\u0000\u0110\u00f2\u0001\u0000"+ + "\u0000\u0000\u0110\u00f9\u0001\u0000\u0000\u0000\u0110\u0100\u0001\u0000"+ + "\u0000\u0000\u0111\r\u0001\u0000\u0000\u0000\u0112\u0115\u0003F#\u0000"+ + "\u0113\u0114\u0005\'\u0000\u0000\u0114\u0116\u0003\u001e\u000f\u0000\u0115"+ + "\u0113\u0001\u0000\u0000\u0000\u0115\u0116\u0001\u0000\u0000\u0000\u0116"+ + "\u0117\u0001\u0000\u0000\u0000\u0117\u0118\u0005(\u0000\u0000\u0118\u0119"+ + "\u0003P(\u0000\u0119\u000f\u0001\u0000\u0000\u0000\u011a\u0120\u0003\u0012"+ + "\t\u0000\u011b\u011c\u0003\u0012\t\u0000\u011c\u011d\u0003z=\u0000\u011d"+ + "\u011e\u0003\u0012\t\u0000\u011e\u0120\u0001\u0000\u0000\u0000\u011f\u011a"+ + "\u0001\u0000\u0000\u0000\u011f\u011b\u0001\u0000\u0000\u0000\u0120\u0011"+ + "\u0001\u0000\u0000\u0000\u0121\u0122\u0006\t\uffff\uffff\u0000\u0122\u0126"+ + "\u0003\u0014\n\u0000\u0123\u0124\u0007\u0000\u0000\u0000\u0124\u0126\u0003"+ + "\u0012\t\u0003\u0125\u0121\u0001\u0000\u0000\u0000\u0125\u0123\u0001\u0000"+ + "\u0000\u0000\u0126\u012f\u0001\u0000\u0000\u0000\u0127\u0128\n\u0002\u0000"+ + "\u0000\u0128\u0129\u0007\u0001\u0000\u0000\u0129\u012e\u0003\u0012\t\u0003"+ + "\u012a\u012b\n\u0001\u0000\u0000\u012b\u012c\u0007\u0000\u0000\u0000\u012c"+ + "\u012e\u0003\u0012\t\u0002\u012d\u0127\u0001\u0000\u0000\u0000\u012d\u012a"+ + "\u0001\u0000\u0000\u0000\u012e\u0131\u0001\u0000\u0000\u0000\u012f\u012d"+ + "\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130\u0013"+ + "\u0001\u0000\u0000\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0133"+ + "\u0006\n\uffff\uffff\u0000\u0133\u013b\u0003P(\u0000\u0134\u013b\u0003"+ + "F#\u0000\u0135\u013b\u0003\u0016\u000b\u0000\u0136\u0137\u00052\u0000"+ + "\u0000\u0137\u0138\u0003\n\u0005\u0000\u0138\u0139\u0005:\u0000\u0000"+ + "\u0139\u013b\u0001\u0000\u0000\u0000\u013a\u0132\u0001\u0000\u0000\u0000"+ + "\u013a\u0134\u0001\u0000\u0000\u0000\u013a\u0135\u0001\u0000\u0000\u0000"+ + "\u013a\u0136\u0001\u0000\u0000\u0000\u013b\u0141\u0001\u0000\u0000\u0000"+ + "\u013c\u013d\n\u0001\u0000\u0000\u013d\u013e\u0005\'\u0000\u0000\u013e"+ + "\u0140\u0003\u001e\u000f\u0000\u013f\u013c\u0001\u0000\u0000\u0000\u0140"+ + "\u0143\u0001\u0000\u0000\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0141"+ + "\u0142\u0001\u0000\u0000\u0000\u0142\u0015\u0001\u0000\u0000\u0000\u0143"+ + "\u0141\u0001\u0000\u0000\u0000\u0144\u0145\u0003\u0018\f\u0000\u0145\u0153"+ + "\u00052\u0000\u0000\u0146\u0154\u0005F\u0000\u0000\u0147\u014c\u0003\n"+ + "\u0005\u0000\u0148\u0149\u0005)\u0000\u0000\u0149\u014b\u0003\n\u0005"+ + "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014b\u014e\u0001\u0000\u0000"+ + "\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014c\u014d\u0001\u0000\u0000"+ + "\u0000\u014d\u0151\u0001\u0000\u0000\u0000\u014e\u014c\u0001\u0000\u0000"+ + "\u0000\u014f\u0150\u0005)\u0000\u0000\u0150\u0152\u0003\u001a\r\u0000"+ + "\u0151\u014f\u0001\u0000\u0000\u0000\u0151\u0152\u0001\u0000\u0000\u0000"+ + "\u0152\u0154\u0001\u0000\u0000\u0000\u0153\u0146\u0001\u0000\u0000\u0000"+ + "\u0153\u0147\u0001\u0000\u0000\u0000\u0153\u0154\u0001\u0000\u0000\u0000"+ + "\u0154\u0155\u0001\u0000\u0000\u0000\u0155\u0156\u0005:\u0000\u0000\u0156"+ + "\u0017\u0001\u0000\u0000\u0000\u0157\u0158\u0003V+\u0000\u0158\u0019\u0001"+ + "\u0000\u0000\u0000\u0159\u015a\u0005I\u0000\u0000\u015a\u015f\u0003\u001c"+ + "\u000e\u0000\u015b\u015c\u0005)\u0000\u0000\u015c\u015e\u0003\u001c\u000e"+ + "\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015e\u0161\u0001\u0000\u0000"+ + "\u0000\u015f\u015d\u0001\u0000\u0000\u0000\u015f\u0160\u0001\u0000\u0000"+ + "\u0000\u0160\u0162\u0001\u0000\u0000\u0000\u0161\u015f\u0001\u0000\u0000"+ + "\u0000\u0162\u0163\u0005J\u0000\u0000\u0163\u001b\u0001\u0000\u0000\u0000"+ + "\u0164\u0165\u0003x<\u0000\u0165\u0166\u0005(\u0000\u0000\u0166\u0167"+ + "\u0003P(\u0000\u0167\u001d\u0001\u0000\u0000\u0000\u0168\u0169\u0003L"+ + "&\u0000\u0169\u001f\u0001\u0000\u0000\u0000\u016a\u016b\u0005\r\u0000"+ + "\u0000\u016b\u016c\u0003\"\u0011\u0000\u016c!\u0001\u0000\u0000\u0000"+ + "\u016d\u0172\u0003$\u0012\u0000\u016e\u016f\u0005)\u0000\u0000\u016f\u0171"+ + "\u0003$\u0012\u0000\u0170\u016e\u0001\u0000\u0000\u0000\u0171\u0174\u0001"+ + "\u0000\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0172\u0173\u0001"+ + "\u0000\u0000\u0000\u0173#\u0001\u0000\u0000\u0000\u0174\u0172\u0001\u0000"+ + "\u0000\u0000\u0175\u0176\u0003F#\u0000\u0176\u0177\u0005%\u0000\u0000"+ + "\u0177\u0179\u0001\u0000\u0000\u0000\u0178\u0175\u0001\u0000\u0000\u0000"+ + "\u0178\u0179\u0001\u0000\u0000\u0000\u0179\u017a\u0001\u0000\u0000\u0000"+ + "\u017a\u017b\u0003\n\u0005\u0000\u017b%\u0001\u0000\u0000\u0000\u017c"+ + "\u0181\u0003(\u0014\u0000\u017d\u017e\u0005)\u0000\u0000\u017e\u0180\u0003"+ + "(\u0014\u0000\u017f\u017d\u0001\u0000\u0000\u0000\u0180\u0183\u0001\u0000"+ + "\u0000\u0000\u0181\u017f\u0001\u0000\u0000\u0000\u0181\u0182\u0001\u0000"+ + "\u0000\u0000\u0182\'\u0001\u0000\u0000\u0000\u0183\u0181\u0001\u0000\u0000"+ + "\u0000\u0184\u0187\u0003F#\u0000\u0185\u0186\u0005%\u0000\u0000\u0186"+ + "\u0188\u0003\n\u0005\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0187\u0188"+ + "\u0001\u0000\u0000\u0000\u0188)\u0001\u0000\u0000\u0000\u0189\u018a\u0005"+ + "\u0007\u0000\u0000\u018a\u018f\u0003,\u0016\u0000\u018b\u018c\u0005)\u0000"+ + "\u0000\u018c\u018e\u0003,\u0016\u0000\u018d\u018b\u0001\u0000\u0000\u0000"+ + "\u018e\u0191\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000\u0000"+ + "\u018f\u0190\u0001\u0000\u0000\u0000\u0190\u0193\u0001\u0000\u0000\u0000"+ + "\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0194\u00036\u001b\u0000\u0193"+ + "\u0192\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000\u0000\u0194"+ + "+\u0001\u0000\u0000\u0000\u0195\u0196\u0003.\u0017\u0000\u0196\u0197\u0005"+ + "(\u0000\u0000\u0197\u0198\u00032\u0019\u0000\u0198\u019f\u0001\u0000\u0000"+ + "\u0000\u0199\u019a\u00032\u0019\u0000\u019a\u019b\u0005\'\u0000\u0000"+ + "\u019b\u019c\u00030\u0018\u0000\u019c\u019f\u0001\u0000\u0000\u0000\u019d"+ + "\u019f\u00034\u001a\u0000\u019e\u0195\u0001\u0000\u0000\u0000\u019e\u0199"+ + "\u0001\u0000\u0000\u0000\u019e\u019d\u0001\u0000\u0000\u0000\u019f-\u0001"+ + "\u0000\u0000\u0000\u01a0\u01a1\u0005Y\u0000\u0000\u01a1/\u0001\u0000\u0000"+ + "\u0000\u01a2\u01a3\u0005Y\u0000\u0000\u01a31\u0001\u0000\u0000\u0000\u01a4"+ + "\u01a5\u0005Y\u0000\u0000\u01a53\u0001\u0000\u0000\u0000\u01a6\u01a7\u0007"+ + "\u0002\u0000\u0000\u01a75\u0001\u0000\u0000\u0000\u01a8\u01ab\u00038\u001c"+ + "\u0000\u01a9\u01ab\u0003:\u001d\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000"+ + "\u01aa\u01a9\u0001\u0000\u0000\u0000\u01ab7\u0001\u0000\u0000\u0000\u01ac"+ + "\u01ad\u0005X\u0000\u0000\u01ad\u01b2\u0005Y\u0000\u0000\u01ae\u01af\u0005"+ + ")\u0000\u0000\u01af\u01b1\u0005Y\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000"+ + "\u0000\u01b1\u01b4\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000"+ + "\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000\u01b39\u0001\u0000\u0000\u0000"+ + "\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005N\u0000\u0000\u01b6"+ + "\u01b7\u00038\u001c\u0000\u01b7\u01b8\u0005O\u0000\u0000\u01b8;\u0001"+ + "\u0000\u0000\u0000\u01b9\u01ba\u0005\u0016\u0000\u0000\u01ba\u01bf\u0003"+ + ",\u0016\u0000\u01bb\u01bc\u0005)\u0000\u0000\u01bc\u01be\u0003,\u0016"+ + "\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01be\u01c1\u0001\u0000\u0000"+ + "\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001\u0000\u0000"+ + "\u0000\u01c0\u01c3\u0001\u0000\u0000\u0000\u01c1\u01bf\u0001\u0000\u0000"+ + "\u0000\u01c2\u01c4\u0003B!\u0000\u01c3\u01c2\u0001\u0000\u0000\u0000\u01c3"+ + "\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5"+ + "\u01c6\u0005&\u0000\u0000\u01c6\u01c8\u0003\"\u0011\u0000\u01c7\u01c5"+ + "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0001\u0000\u0000\u0000\u01c8=\u0001"+ + "\u0000\u0000\u0000\u01c9\u01ca\u0005\u0005\u0000\u0000\u01ca\u01cb\u0003"+ + "\"\u0011\u0000\u01cb?\u0001\u0000\u0000\u0000\u01cc\u01ce\u0005\u0010"+ + "\u0000\u0000\u01cd\u01cf\u0003B!\u0000\u01ce\u01cd\u0001\u0000\u0000\u0000"+ + "\u01ce\u01cf\u0001\u0000\u0000\u0000\u01cf\u01d2\u0001\u0000\u0000\u0000"+ + "\u01d0\u01d1\u0005&\u0000\u0000\u01d1\u01d3\u0003\"\u0011\u0000\u01d2"+ + "\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3"+ + "A\u0001\u0000\u0000\u0000\u01d4\u01d9\u0003D\"\u0000\u01d5\u01d6\u0005"+ + ")\u0000\u0000\u01d6\u01d8\u0003D\"\u0000\u01d7\u01d5\u0001\u0000\u0000"+ + "\u0000\u01d8\u01db\u0001\u0000\u0000\u0000\u01d9\u01d7\u0001\u0000\u0000"+ + "\u0000\u01d9\u01da\u0001\u0000\u0000\u0000\u01daC\u0001\u0000\u0000\u0000"+ + "\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc\u01df\u0003$\u0012\u0000\u01dd"+ + "\u01de\u0005\u0011\u0000\u0000\u01de\u01e0\u0003\n\u0005\u0000\u01df\u01dd"+ + "\u0001\u0000\u0000\u0000\u01df\u01e0\u0001\u0000\u0000\u0000\u01e0E\u0001"+ + "\u0000\u0000\u0000\u01e1\u01e6\u0003V+\u0000\u01e2\u01e3\u0005+\u0000"+ + "\u0000\u01e3\u01e5\u0003V+\u0000\u01e4\u01e2\u0001\u0000\u0000\u0000\u01e5"+ + "\u01e8\u0001\u0000\u0000\u0000\u01e6\u01e4\u0001\u0000\u0000\u0000\u01e6"+ + "\u01e7\u0001\u0000\u0000\u0000\u01e7G\u0001\u0000\u0000\u0000\u01e8\u01e6"+ + "\u0001\u0000\u0000\u0000\u01e9\u01ee\u0003N\'\u0000\u01ea\u01eb\u0005"+ + "+\u0000\u0000\u01eb\u01ed\u0003N\'\u0000\u01ec\u01ea\u0001\u0000\u0000"+ + "\u0000\u01ed\u01f0\u0001\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000\u0000"+ + "\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01efI\u0001\u0000\u0000\u0000"+ + "\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f6\u0003H$\u0000\u01f2\u01f3"+ + "\u0005)\u0000\u0000\u01f3\u01f5\u0003H$\u0000\u01f4\u01f2\u0001\u0000"+ + "\u0000\u0000\u01f5\u01f8\u0001\u0000\u0000\u0000\u01f6\u01f4\u0001\u0000"+ + "\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7K\u0001\u0000\u0000"+ + "\u0000\u01f8\u01f6\u0001\u0000\u0000\u0000\u01f9\u01fa\u0007\u0003\u0000"+ + "\u0000\u01faM\u0001\u0000\u0000\u0000\u01fb\u01ff\u0005]\u0000\u0000\u01fc"+ + "\u01ff\u0003R)\u0000\u01fd\u01ff\u0003T*\u0000\u01fe\u01fb\u0001\u0000"+ + "\u0000\u0000\u01fe\u01fc\u0001\u0000\u0000\u0000\u01fe\u01fd\u0001\u0000"+ + "\u0000\u0000\u01ffO\u0001\u0000\u0000\u0000\u0200\u022b\u00054\u0000\u0000"+ + "\u0201\u0202\u0003v;\u0000\u0202\u0203\u0005P\u0000\u0000\u0203\u022b"+ + "\u0001\u0000\u0000\u0000\u0204\u022b\u0003t:\u0000\u0205\u022b\u0003v"+ + ";\u0000\u0206\u022b\u0003p8\u0000\u0207\u022b\u0003R)\u0000\u0208\u022b"+ + "\u0003x<\u0000\u0209\u020a\u0005N\u0000\u0000\u020a\u020f\u0003r9\u0000"+ + "\u020b\u020c\u0005)\u0000\u0000\u020c\u020e\u0003r9\u0000\u020d\u020b"+ + "\u0001\u0000\u0000\u0000\u020e\u0211\u0001\u0000\u0000\u0000\u020f\u020d"+ + "\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000\u0210\u0212"+ + "\u0001\u0000\u0000\u0000\u0211\u020f\u0001\u0000\u0000\u0000\u0212\u0213"+ + "\u0005O\u0000\u0000\u0213\u022b\u0001\u0000\u0000\u0000\u0214\u0215\u0005"+ + "N\u0000\u0000\u0215\u021a\u0003p8\u0000\u0216\u0217\u0005)\u0000\u0000"+ + "\u0217\u0219\u0003p8\u0000\u0218\u0216\u0001\u0000\u0000\u0000\u0219\u021c"+ + "\u0001\u0000\u0000\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021a\u021b"+ + "\u0001\u0000\u0000\u0000\u021b\u021d\u0001\u0000\u0000\u0000\u021c\u021a"+ + "\u0001\u0000\u0000\u0000\u021d\u021e\u0005O\u0000\u0000\u021e\u022b\u0001"+ + "\u0000\u0000\u0000\u021f\u0220\u0005N\u0000\u0000\u0220\u0225\u0003x<"+ + "\u0000\u0221\u0222\u0005)\u0000\u0000\u0222\u0224\u0003x<\u0000\u0223"+ + "\u0221\u0001\u0000\u0000\u0000\u0224\u0227\u0001\u0000\u0000\u0000\u0225"+ + "\u0223\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+ + "\u0228\u0001\u0000\u0000\u0000\u0227\u0225\u0001\u0000\u0000\u0000\u0228"+ + "\u0229\u0005O\u0000\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u0200"+ + "\u0001\u0000\u0000\u0000\u022a\u0201\u0001\u0000\u0000\u0000\u022a\u0204"+ + "\u0001\u0000\u0000\u0000\u022a\u0205\u0001\u0000\u0000\u0000\u022a\u0206"+ + "\u0001\u0000\u0000\u0000\u022a\u0207\u0001\u0000\u0000\u0000\u022a\u0208"+ + "\u0001\u0000\u0000\u0000\u022a\u0209\u0001\u0000\u0000\u0000\u022a\u0214"+ + "\u0001\u0000\u0000\u0000\u022a\u021f\u0001\u0000\u0000\u0000\u022bQ\u0001"+ + "\u0000\u0000\u0000\u022c\u022f\u00058\u0000\u0000\u022d\u022f\u0005L\u0000"+ + "\u0000\u022e\u022c\u0001\u0000\u0000\u0000\u022e\u022d\u0001\u0000\u0000"+ + "\u0000\u022fS\u0001\u0000\u0000\u0000\u0230\u0233\u0005K\u0000\u0000\u0231"+ + "\u0233\u0005M\u0000\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232\u0231"+ + "\u0001\u0000\u0000\u0000\u0233U\u0001\u0000\u0000\u0000\u0234\u0238\u0003"+ + "L&\u0000\u0235\u0238\u0003R)\u0000\u0236\u0238\u0003T*\u0000\u0237\u0234"+ + "\u0001\u0000\u0000\u0000\u0237\u0235\u0001\u0000\u0000\u0000\u0237\u0236"+ + "\u0001\u0000\u0000\u0000\u0238W\u0001\u0000\u0000\u0000\u0239\u023a\u0005"+ + "\n\u0000\u0000\u023a\u023b\u0003P(\u0000\u023bY\u0001\u0000\u0000\u0000"+ + "\u023c\u023d\u0005\u000f\u0000\u0000\u023d\u0242\u0003\\.\u0000\u023e"+ + "\u023f\u0005)\u0000\u0000\u023f\u0241\u0003\\.\u0000\u0240\u023e\u0001"+ + "\u0000\u0000\u0000\u0241\u0244\u0001\u0000\u0000\u0000\u0242\u0240\u0001"+ + "\u0000\u0000\u0000\u0242\u0243\u0001\u0000\u0000\u0000\u0243[\u0001\u0000"+ + "\u0000\u0000\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0247\u0003\n\u0005"+ + "\u0000\u0246\u0248\u0007\u0004\u0000\u0000\u0247\u0246\u0001\u0000\u0000"+ + "\u0000\u0247\u0248\u0001\u0000\u0000\u0000\u0248\u024b\u0001\u0000\u0000"+ + "\u0000\u0249\u024a\u00055\u0000\u0000\u024a\u024c\u0007\u0005\u0000\u0000"+ + "\u024b\u0249\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000"+ + "\u024c]\u0001\u0000\u0000\u0000\u024d\u024e\u0005\t\u0000\u0000\u024e"+ + "\u024f\u0003J%\u0000\u024f_\u0001\u0000\u0000\u0000\u0250\u0251\u0005"+ + "\u0003\u0000\u0000\u0251\u0252\u0003J%\u0000\u0252a\u0001\u0000\u0000"+ + "\u0000\u0253\u0254\u0005\f\u0000\u0000\u0254\u0259\u0003d2\u0000\u0255"+ + "\u0256\u0005)\u0000\u0000\u0256\u0258\u0003d2\u0000\u0257\u0255\u0001"+ + "\u0000\u0000\u0000\u0258\u025b\u0001\u0000\u0000\u0000\u0259\u0257\u0001"+ + "\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025ac\u0001\u0000"+ + "\u0000\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025c\u025d\u0003H$\u0000"+ + "\u025d\u025e\u0005a\u0000\u0000\u025e\u025f\u0003H$\u0000\u025f\u0265"+ + "\u0001\u0000\u0000\u0000\u0260\u0261\u0003H$\u0000\u0261\u0262\u0005%"+ + "\u0000\u0000\u0262\u0263\u0003H$\u0000\u0263\u0265\u0001\u0000\u0000\u0000"+ + "\u0264\u025c\u0001\u0000\u0000\u0000\u0264\u0260\u0001\u0000\u0000\u0000"+ + "\u0265e\u0001\u0000\u0000\u0000\u0266\u0267\u0005\u0002\u0000\u0000\u0267"+ + "\u0268\u0003\u0014\n\u0000\u0268\u026a\u0003x<\u0000\u0269\u026b\u0003"+ + "l6\u0000\u026a\u0269\u0001\u0000\u0000\u0000\u026a\u026b\u0001\u0000\u0000"+ + "\u0000\u026bg\u0001\u0000\u0000\u0000\u026c\u026d\u0005\b\u0000\u0000"+ + "\u026d\u026e\u0003\u0014\n\u0000\u026e\u026f\u0003x<\u0000\u026fi\u0001"+ + "\u0000\u0000\u0000\u0270\u0271\u0005\u000b\u0000\u0000\u0271\u0272\u0003"+ + "F#\u0000\u0272k\u0001\u0000\u0000\u0000\u0273\u0278\u0003n7\u0000\u0274"+ + "\u0275\u0005)\u0000\u0000\u0275\u0277\u0003n7\u0000\u0276\u0274\u0001"+ + "\u0000\u0000\u0000\u0277\u027a\u0001\u0000\u0000\u0000\u0278\u0276\u0001"+ + "\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000\u0279m\u0001\u0000"+ + "\u0000\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027b\u027c\u0003L&\u0000"+ + "\u027c\u027d\u0005%\u0000\u0000\u027d\u027e\u0003P(\u0000\u027eo\u0001"+ + "\u0000\u0000\u0000\u027f\u0280\u0007\u0006\u0000\u0000\u0280q\u0001\u0000"+ + "\u0000\u0000\u0281\u0284\u0003t:\u0000\u0282\u0284\u0003v;\u0000\u0283"+ + "\u0281\u0001\u0000\u0000\u0000\u0283\u0282\u0001\u0000\u0000\u0000\u0284"+ + "s\u0001\u0000\u0000\u0000\u0285\u0287\u0007\u0000\u0000\u0000\u0286\u0285"+ + "\u0001\u0000\u0000\u0000\u0286\u0287\u0001\u0000\u0000\u0000\u0287\u0288"+ + "\u0001\u0000\u0000\u0000\u0288\u0289\u0005\"\u0000\u0000\u0289u\u0001"+ + "\u0000\u0000\u0000\u028a\u028c\u0007\u0000\u0000\u0000\u028b\u028a\u0001"+ + "\u0000\u0000\u0000\u028b\u028c\u0001\u0000\u0000\u0000\u028c\u028d\u0001"+ + "\u0000\u0000\u0000\u028d\u028e\u0005!\u0000\u0000\u028ew\u0001\u0000\u0000"+ + "\u0000\u028f\u0290\u0005 \u0000\u0000\u0290y\u0001\u0000\u0000\u0000\u0291"+ + "\u0292\u0007\u0007\u0000\u0000\u0292{\u0001\u0000\u0000\u0000\u0293\u0294"+ + "\u0005\u0006\u0000\u0000\u0294\u0295\u0003~?\u0000\u0295}\u0001\u0000"+ + "\u0000\u0000\u0296\u0297\u0005N\u0000\u0000\u0297\u0298\u0003\u0002\u0001"+ + "\u0000\u0298\u0299\u0005O\u0000\u0000\u0299\u007f\u0001\u0000\u0000\u0000"+ + "\u029a\u029b\u0005\u000e\u0000\u0000\u029b\u029c\u0005o\u0000\u0000\u029c"+ + "\u0081\u0001\u0000\u0000\u0000\u029d\u029e\u0005\u0004\u0000\u0000\u029e"+ + "\u02a1\u0005e\u0000\u0000\u029f\u02a0\u00056\u0000\u0000\u02a0\u02a2\u0003"+ + "H$\u0000\u02a1\u029f\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+ + "\u0000\u02a2\u02ac\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005<\u0000\u0000"+ + "\u02a4\u02a9\u0003\u0084B\u0000\u02a5\u02a6\u0005)\u0000\u0000\u02a6\u02a8"+ + "\u0003\u0084B\u0000\u02a7\u02a5\u0001\u0000\u0000\u0000\u02a8\u02ab\u0001"+ + "\u0000\u0000\u0000\u02a9\u02a7\u0001\u0000\u0000\u0000\u02a9\u02aa\u0001"+ + "\u0000\u0000\u0000\u02aa\u02ad\u0001\u0000\u0000\u0000\u02ab\u02a9\u0001"+ + "\u0000\u0000\u0000\u02ac\u02a3\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001"+ + "\u0000\u0000\u0000\u02ad\u0083\u0001\u0000\u0000\u0000\u02ae\u02af\u0003"+ + "H$\u0000\u02af\u02b0\u0005%\u0000\u0000\u02b0\u02b2\u0001\u0000\u0000"+ + "\u0000\u02b1\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b2\u0001\u0000\u0000"+ + "\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b4\u0003H$\u0000\u02b4"+ + "\u0085\u0001\u0000\u0000\u0000\u02b5\u02b6\u0005\u0013\u0000\u0000\u02b6"+ + "\u02b9\u0003F#\u0000\u02b7\u02b8\u00056\u0000\u0000\u02b8\u02ba\u0003"+ + "F#\u0000\u02b9\u02b7\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000"+ + "\u0000\u02ba\u02c0\u0001\u0000\u0000\u0000\u02bb\u02bc\u0005a\u0000\u0000"+ + "\u02bc\u02bd\u0003F#\u0000\u02bd\u02be\u0005)\u0000\u0000\u02be\u02bf"+ + "\u0003F#\u0000\u02bf\u02c1\u0001\u0000\u0000\u0000\u02c0\u02bb\u0001\u0000"+ + "\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1\u0087\u0001\u0000"+ + "\u0000\u0000\u02c2\u02c3\u0005\u0015\u0000\u0000\u02c3\u02c4\u0003,\u0016"+ + "\u0000\u02c4\u02c5\u00056\u0000\u0000\u02c5\u02c6\u0003J%\u0000\u02c6"+ + "\u0089\u0001\u0000\u0000\u0000\u02c7\u02c8\u0005\u0014\u0000\u0000\u02c8"+ + "\u02cb\u0003B!\u0000\u02c9\u02ca\u0005&\u0000\u0000\u02ca\u02cc\u0003"+ + "\"\u0011\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cb\u02cc\u0001\u0000"+ + "\u0000\u0000\u02cc\u008b\u0001\u0000\u0000\u0000\u02cd\u02ce\u0007\b\u0000"+ + "\u0000\u02ce\u02cf\u0005}\u0000\u0000\u02cf\u02d0\u0003\u008eG\u0000\u02d0"+ + "\u02d1\u0003\u0090H\u0000\u02d1\u008d\u0001\u0000\u0000\u0000\u02d2\u02d3"+ + "\u0003,\u0016\u0000\u02d3\u008f\u0001\u0000\u0000\u0000\u02d4\u02d5\u0005"+ + "6\u0000\u0000\u02d5\u02da\u0003\u0092I\u0000\u02d6\u02d7\u0005)\u0000"+ + "\u0000\u02d7\u02d9\u0003\u0092I\u0000\u02d8\u02d6\u0001\u0000\u0000\u0000"+ + "\u02d9\u02dc\u0001\u0000\u0000\u0000\u02da\u02d8\u0001\u0000\u0000\u0000"+ + "\u02da\u02db\u0001\u0000\u0000\u0000\u02db\u0091\u0001\u0000\u0000\u0000"+ + "\u02dc\u02da\u0001\u0000\u0000\u0000\u02dd\u02de\u0003\u0010\b\u0000\u02de"+ + "\u0093\u0001\u0000\u0000\u0000\u02df\u02e0\u0005\u0017\u0000\u0000\u02e0"+ + "\u02e1\u0003P(\u0000\u02e1\u02e2\u00056\u0000\u0000\u02e2\u02e5\u0003"+ + "&\u0013\u0000\u02e3\u02e4\u0005<\u0000\u0000\u02e4\u02e6\u0003V+\u0000"+ + "\u02e5\u02e3\u0001\u0000\u0000\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000"+ + "\u02e6\u0095\u0001\u0000\u0000\u0000\u02e7\u02eb\u0005\u0001\u0000\u0000"+ + "\u02e8\u02e9\u0003F#\u0000\u02e9\u02ea\u0005%\u0000\u0000\u02ea\u02ec"+ + "\u0001\u0000\u0000\u0000\u02eb\u02e8\u0001\u0000\u0000\u0000\u02eb\u02ec"+ + "\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee"+ + "\u0003\u0014\n\u0000\u02ee\u02ef\u0005<\u0000\u0000\u02ef\u02f0\u0003"+ + "V+\u0000\u02f0\u0097\u0001\u0000\u0000\u0000H\u00a3\u00ac\u00c3\u00cf"+ + "\u00d8\u00e0\u00e5\u00ed\u00ef\u00f4\u00fb\u0102\u010b\u0110\u0115\u011f"+ + "\u0125\u012d\u012f\u013a\u0141\u014c\u0151\u0153\u015f\u0172\u0178\u0181"+ + "\u0187\u018f\u0193\u019e\u01aa\u01b2\u01bf\u01c3\u01c7\u01ce\u01d2\u01d9"+ + "\u01df\u01e6\u01ee\u01f6\u01fe\u020f\u021a\u0225\u022a\u022e\u0232\u0237"+ + "\u0242\u0247\u024b\u0259\u0264\u026a\u0278\u0283\u0286\u028b\u02a1\u02a9"+ + "\u02ac\u02b1\u02b9\u02c0\u02cb\u02da\u02e5\u02eb"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java index 95bf90e51b695..421e643321eea 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java @@ -512,6 +512,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

*/ @Override public void exitSelectorString(EsqlBaseParser.SelectorStringContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { } /** * {@inheritDoc} * diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java index 94d538d4ee4f2..39f1b6041a516 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java @@ -307,6 +307,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitSelectorString(EsqlBaseParser.SelectorStringContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java index 49f72cb1989f7..8850751c03e0e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java @@ -471,6 +471,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitSelectorString(EsqlBaseParser.SelectorStringContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}. + * @param ctx the parse tree + */ + void enterUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}. + * @param ctx the parse tree + */ + void exitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx); /** * Enter a parse tree produced by {@link EsqlBaseParser#indexString}. * @param ctx the parse tree diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java index 1479eb0e62569..ed54804e92a42 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java @@ -287,6 +287,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitSelectorString(EsqlBaseParser.SelectorStringContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#unquotedIndexString}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitUnquotedIndexString(EsqlBaseParser.UnquotedIndexStringContext ctx); /** * Visit a parse tree produced by {@link EsqlBaseParser#indexString}. * @param ctx the parse tree diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java index aeca4a1aac9c9..91b8606c40307 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/IdentifierBuilder.java @@ -58,10 +58,8 @@ protected static String quoteIdString(String unquotedString) { public String visitClusterString(EsqlBaseParser.ClusterStringContext ctx) { if (ctx == null) { return null; - } else if (ctx.UNQUOTED_SOURCE() != null) { - return ctx.UNQUOTED_SOURCE().getText(); } else { - return unquote(ctx.QUOTED_STRING().getText()); + return ctx.UNQUOTED_SOURCE().getText(); } } @@ -78,10 +76,8 @@ public String visitIndexString(IndexStringContext ctx) { public String visitSelectorString(EsqlBaseParser.SelectorStringContext ctx) { if (ctx == null) { return null; - } else if (ctx.UNQUOTED_SOURCE() != null) { - return ctx.UNQUOTED_SOURCE().getText(); } else { - return unquote(ctx.QUOTED_STRING().getText()); + return ctx.UNQUOTED_SOURCE().getText(); } } @@ -89,7 +85,7 @@ public String visitIndexPattern(List ctx) { List patterns = new ArrayList<>(ctx.size()); Holder hasSeenStar = new Holder<>(false); ctx.forEach(c -> { - String indexPattern = visitIndexString(c.indexString()); + String indexPattern = c.unquotedIndexString() != null ? c.unquotedIndexString().getText() : visitIndexString(c.indexString()); String clusterString = visitClusterString(c.clusterString()); String selectorString = visitSelectorString(c.selectorString()); // skip validating index on remote cluster, because the behavior of remote cluster is not consistent with local cluster diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java index 4a42f036c844a..bdda78f6dd5bc 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/IdentifierGenerator.java @@ -80,19 +80,23 @@ public static String randomIndexPattern(Feature... features) { index.insert(0, "-"); } + boolean requiresQuote = false; var pattern = index.toString(); if (pattern.contains("|")) { - pattern = quote(pattern); + requiresQuote = true; } - pattern = maybeQuote(pattern); if (canAdd(Features.CROSS_CLUSTER, features)) { - var cluster = maybeQuote(randomIdentifier()); - pattern = maybeQuote(cluster + ":" + pattern); + var cluster = randomIdentifier(); + pattern = cluster + ":" + pattern; } else if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled() && canAdd(Features.INDEX_SELECTOR, features)) { - var selector = ESTestCase.randomFrom(IndexComponentSelector.values()); - pattern = maybeQuote(pattern + "::" + selector.getKey()); + pattern = pattern + "::" + randomFrom(IndexComponentSelector.values()).getKey(); } + + if (requiresQuote) { + pattern = quote(pattern); + } + return pattern; } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index 547c522ec6b84..e16461b659b14 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -85,6 +85,7 @@ import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.DATE_MATH; import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.INDEX_SELECTOR; import static org.elasticsearch.xpack.esql.IdentifierGenerator.Features.WILDCARD_PATTERN; +import static org.elasticsearch.xpack.esql.IdentifierGenerator.quote; import static org.elasticsearch.xpack.esql.IdentifierGenerator.randomIndexPattern; import static org.elasticsearch.xpack.esql.IdentifierGenerator.randomIndexPatterns; import static org.elasticsearch.xpack.esql.IdentifierGenerator.unquoteIndexPattern; @@ -495,7 +496,16 @@ public void testStringAsIndexPattern() { assertStringAsIndexPattern("`backtick`,``multiple`back``ticks```", command + " `backtick`, ``multiple`back``ticks```"); assertStringAsIndexPattern("test,metadata,metaata,.metadata", command + " test,\"metadata\", metaata, .metadata"); assertStringAsIndexPattern(".dot", command + " .dot"); - assertStringAsIndexPattern("cluster:index|pattern", command + " cluster:\"index|pattern\""); + + String lineNumber = command.equals("FROM") ? "line 1:14: " : "line 1:17: "; + expectErrorWithLineNumber( + command + " cluster:\"index|pattern\"", + " cluster:\"index|pattern\"", + lineNumber, + command.equals("FROM") + ? "mismatched input '\"index|pattern\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"index|pattern\"'" + ); assertStringAsIndexPattern("*:index|pattern", command + " \"*:index|pattern\""); clusterAndIndexAsIndexPattern(command, "cluster:index"); clusterAndIndexAsIndexPattern(command, "cluster:.index"); @@ -508,13 +518,36 @@ public void testStringAsIndexPattern() { if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled()) { assertStringAsIndexPattern("foo::data", command + " foo::data"); assertStringAsIndexPattern("foo::failures", command + " foo::failures"); - assertStringAsIndexPattern("cluster:foo::failures", command + " cluster:\"foo::failures\""); - assertStringAsIndexPattern("*,-foo::data", command + " *, \"-foo\"::data"); + expectErrorWithLineNumber( + command + " cluster:\"foo::data\"", + " cluster:\"foo::data\"", + lineNumber, + command.equals("FROM") + ? "mismatched input '\"foo::data\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"foo::data\"" + ); + expectErrorWithLineNumber( + command + " cluster:\"foo::failures\"", + " cluster:\"foo::failures\"", + lineNumber, + command.equals("FROM") + ? "mismatched input '\"foo::failures\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"foo::failures\"'" + ); + lineNumber = command.equals("FROM") ? "line 1:15: " : "line 1:18: "; + expectErrorWithLineNumber(command + " *, \"-foo\"::data", " *, \"-foo\"::data", lineNumber, "mismatched input '::'"); assertStringAsIndexPattern("*,-foo::data", command + " *, \"-foo::data\""); assertStringAsIndexPattern("*::data", command + " *::data"); + lineNumber = command.equals("FROM") ? "line 1:79: " : "line 1:82: "; + expectErrorWithLineNumber( + command + " \"::data,\"::failures", + " \"::data,\"::failures", + lineNumber, + "mismatched input '::'" + ); assertStringAsIndexPattern( "::data,::failures", - command + " ::data, \"\"::failures" + command + " ::data, \"::failures\"" ); } } @@ -604,12 +637,34 @@ public void testInvalidCharacterInIndexPattern() { expectInvalidIndexNameErrorWithLineNumber(command, "index::failure", lineNumber); // Cluster name cannot be combined with selector yet. - var parseLineNumber = command.contains("FROM") ? 6 : 9; + int parseLineNumber = 6; + if (command.startsWith("METRICS")) { + parseLineNumber = 9; + } else if (command.startsWith("ROW")) { + parseLineNumber = 22; + } + expectDoubleColonErrorWithLineNumber(command, "cluster:foo::data", parseLineNumber + 11); expectDoubleColonErrorWithLineNumber(command, "cluster:foo::failures", parseLineNumber + 11); - expectDoubleColonErrorWithLineNumber(command, "cluster:\"foo\"::data", parseLineNumber + 13); - expectDoubleColonErrorWithLineNumber(command, "cluster:\"foo\"::failures", parseLineNumber + 13); + // Index pattern cannot be quoted if cluster string is present. + var partialQuotingBeginOffset = parseLineNumber + 8; + expectErrorWithLineNumber( + command, + "cluster:\"foo\"::data", + "line 1:" + partialQuotingBeginOffset + ": ", + command.startsWith("FROM") + ? "mismatched input '\"foo\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"foo\"'" + ); + expectErrorWithLineNumber( + command, + "cluster:\"foo\"::failures", + "line 1:" + partialQuotingBeginOffset + ": ", + command.startsWith("FROM") + ? "mismatched input '\"foo\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"foo\"'" + ); // TODO: Edge case that will be invalidated in follow up (https://github.com/elastic/elasticsearch/issues/122651) // expectDoubleColonErrorWithLineNumber(command, "\"cluster:foo\"::data", parseLineNumber + 13); @@ -654,8 +709,14 @@ public void testInvalidCharacterInIndexPattern() { "Invalid usage of :: separator" ); - // TODO: Edge case that will be invalidated in follow up (https://github.com/elastic/elasticsearch/issues/122651) - expectDoubleColonErrorWithLineNumber(command, "cluster:\"index,index2\"::failures", parseLineNumber + 22); + expectErrorWithLineNumber( + command, + "cluster:\"index,index2\"::failures", + "line 1:" + partialQuotingBeginOffset + ": ", + command.startsWith("FROM") + ? "mismatched input '\"index,index2\"' expecting UNQUOTED_SOURCE" + : "missing UNQUOTED_SOURCE at '\"index,index2\"'" + ); } } @@ -682,12 +743,13 @@ public void testInvalidCharacterInIndexPattern() { "-index", "must not start with '_', '-', or '+'" ); - expectInvalidIndexNameErrorWithLineNumber( + + var partialQuotingBeginOffset = (command.startsWith("FROM") ? 6 : 9) + 23; + expectErrorWithLineNumber( command, "indexpattern, \"--index\"::data", - lineNumber, - "-index", - "must not start with '_', '-', or '+'" + "line 1:" + partialQuotingBeginOffset + ": ", + "mismatched input '::'" ); expectInvalidIndexNameErrorWithLineNumber( command, @@ -722,7 +784,13 @@ public void testInvalidCharacterInIndexPattern() { clustersAndIndices(command, "*", "-<--logstash-{now/M{yyyy.MM}}>::data"); clustersAndIndices(command, "index*", "-<--logstash#-{now/M{yyyy.MM}}>::data"); // Throw on invalid date math - expectDateMathErrorWithLineNumber(command, "*, \"-<-logstash-{now/D}>\"::data", lineNumber, dateMathError); + var partialQuotingBeginOffset = (command.startsWith("FROM") ? 6 : 9) + 25; + expectDateMathErrorWithLineNumber( + command, + "*, \"-<-logstash-{now/D}>\"::data", + "line 1:" + partialQuotingBeginOffset + ": ", + "mismatched input '::'" + ); expectDateMathErrorWithLineNumber(command, "*, -<-logstash-{now/D}>::data", lineNumber, dateMathError); // Check that invalid selectors throw (they're resolved first in /_search, and always validated) expectInvalidIndexNameErrorWithLineNumber( @@ -2479,7 +2547,7 @@ public void testInvalidAlias() { } public void testInvalidRemoteClusterPattern() { - expectError("from \"rem:ote\":index", "cluster string [rem:ote] must not contain ':'"); + expectError("from \"rem:ote\":index", "mismatched input ':' expecting {, '|', ',', '[', 'metadata'}"); } private LogicalPlan unresolvedRelation(String index) { @@ -3162,6 +3230,32 @@ public void testInvalidJoinPatterns() { ); } + // If one or more patterns participating in LOOKUP JOINs are partially quoted, we expect the partial quoting + // error messages to take precedence over any LOOKUP JOIN error messages. + { + // Generate a syntactically invalid (partial quoted) pattern. + var fromPatterns = randomIdentifier() + ":" + quote(randomIndexPatterns(without(CROSS_CLUSTER))); + var joinPattern = randomIndexPattern(); + expectError( + "FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(), + // Since the from pattern is partially quoted, we get an error at the beginning of the partially quoted + // index name that we're expecting an unquoted string. + "expecting UNQUOTED_SOURCE" + ); + } + + { + var fromPatterns = randomIndexPattern(); + // Generate a syntactically invalid (partial quoted) pattern. + var joinPattern = randomIdentifier() + ":" + quote(randomIndexPattern(without(CROSS_CLUSTER))); + expectError( + "FROM " + fromPatterns + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(), + // Since the join pattern is partially quoted, we get an error at the beginning of the partially quoted + // index name that we're expecting an unquoted string. + "expecting UNQUOTED_SOURCE" + ); + } + if (EsqlCapabilities.Cap.INDEX_COMPONENT_SELECTORS.isEnabled()) { { // Selectors are not supported on the left of the join query if used with cluster ids. @@ -3199,7 +3293,7 @@ public void testInvalidJoinPatterns() { joinPattern = unquoteIndexPattern(joinPattern); expectError( "FROM " + randomIndexPatterns(without(CROSS_CLUSTER)) + " | LOOKUP JOIN " + joinPattern + " ON " + randomIdentifier(), - "extraneous input ':' expecting {QUOTED_STRING, UNQUOTED_SOURCE}" + "extraneous input ':' expecting UNQUOTED_SOURCE" ); } {